[
  {
    "path": ".github/ISSUE_TEMPLATE/bug_report.md",
    "content": "---\nname: Bug report\nabout: Create a report to help us improve\ntitle: ''\nlabels: 'bug'\nassignees: ''\n\n---\n\n- [ ] This is a new bug that hasn't been documented in a closed issue or in the Readme.\n\nmacOS version:\nRectangle version:\nLogs if applicable (In Rectangle menu, hold option, \"View Logging...\"): \n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/feature_request.md",
    "content": "---\nname: Feature idea\nabout: Please use the Discussions tab to share a feature idea ⬆️\ntitle: ''\nlabels: 'enhancement'\nassignees: ''\ncontact_links:\n  - name: Rectangle Discussions\n    url: https://github.com/rxhanson/Rectangle/discussions\n    about: Please discuss feature ideas here.\n---\n\nFeature ideas are now kept in the [discussions tab](https://github.com/rxhanson/Rectangle/discussions). Please create an issue there, not here.\n"
  },
  {
    "path": ".github/funding.yml",
    "content": "github: rxhanson\ncustom: https://rectangleapp.com\n"
  },
  {
    "path": ".github/workflows/build.yml",
    "content": "name: Build\n\non: [push, pull_request]\n\npermissions: read-all\n\nenv:\n  XCODE_PROJECT: \"Rectangle.xcodeproj\"\n  XCODE_SCHEME: \"Rectangle\"\n  CODE_SIGN_IDENTITY: \"-\"\n  BUILD_DIR: \"build\"\n  XCODE_ARCHIVE: \"Rectangle.xcarchive\"\n  APP_NAME: \"Rectangle.app\"\n  EXPORT_OPTIONS_PLIST: \"exportOptions.plist\"\n  DMG_NAME: \"Rectangle\"\n  DMG_FILE_NAME: \"Rectangle.dmg\"\n\njobs:\n  build:\n    runs-on: macos-26\n    steps:\n    - name: Checkout\n      uses: actions/checkout@v4\n    - name: Build\n      run: xcodebuild -project \"$XCODE_PROJECT\" -scheme \"$XCODE_SCHEME\" archive CODE_SIGN_IDENTITY=\"$CODE_SIGN_IDENTITY\" -archivePath \"$BUILD_DIR/$XCODE_ARCHIVE\"\n    - name: Export\n      run: |\n        plutil -convert xml1 - -o \"$EXPORT_OPTIONS_PLIST\" << EOF\n          {\n            \"destination\": \"export\",\n            \"method\": \"mac-application\"\n          }\n        EOF\n\n        xcodebuild -exportArchive -archivePath \"$BUILD_DIR/$XCODE_ARCHIVE\" -exportPath \"$BUILD_DIR\" -exportOptionsPlist \"$EXPORT_OPTIONS_PLIST\"\n    - name: Resign App\n      run: codesign --force --deep -s \"$CODE_SIGN_IDENTITY\" \"$BUILD_DIR/$APP_NAME\"\n    - name: Make DMG\n      run: hdiutil create -srcdir \"$BUILD_DIR\" -volname \"$DMG_NAME\" \"$DMG_FILE_NAME\"\n    - name: Upload\n      uses: actions/upload-artifact@v4\n      with:\n        name: Build\n        path: ${{ env.DMG_FILE_NAME }}\n"
  },
  {
    "path": ".gitignore",
    "content": ".idea\n**/.DS_Store\n*/xcuserdata/\nxcuserdata/\n**.xcuserstate\n*.xcworkspace\nPods\n\n## Xcode per-user config\n*.mode1\n*.mode1v3\n*.mode2v3\n*.perspective\n*.perspectivev3\n*.pbxuser\n\n## Xcode Patch\n*.xcodeproj/*\n!*.xcodeproj/project.pbxproj\n!*.xcodeproj/xcshareddata/\n!*.xcworkspace/contents.xcworkspacedata\n/*.gcno\n\n## Build products\nbuild/\n*.o\n*.LinkFileList\n*.hmap\n\n## Automatic backup files\n*~.nib/\n*.swp\n*~\n*.dat\n*.dep\n\n"
  },
  {
    "path": "CODE_OF_CONDUCT.md",
    "content": "# Contributor Covenant Code of Conduct\n\n## Our Pledge\n\nIn the interest of fostering an open and welcoming environment, we as\ncontributors and maintainers pledge to making participation in our project and\nour community a harassment-free experience for everyone, regardless of age, body\nsize, disability, ethnicity, sex characteristics, gender identity and expression,\nlevel of experience, education, socio-economic status, nationality, personal\nappearance, race, religion, or sexual identity and orientation.\n\n## Our Standards\n\nExamples of behavior that contributes to creating a positive environment\ninclude:\n\n* Using welcoming and inclusive language\n* Being respectful of differing viewpoints and experiences\n* Gracefully accepting constructive criticism\n* Focusing on what is best for the community\n* Showing empathy towards other community members\n\nExamples of unacceptable behavior by participants include:\n\n* The use of sexualized language or imagery and unwelcome sexual attention or\n advances\n* Trolling, insulting/derogatory comments, and personal or political attacks\n* Public or private harassment\n* Publishing others' private information, such as a physical or electronic\n address, without explicit permission\n* Other conduct which could reasonably be considered inappropriate in a\n professional setting\n\n## Our Responsibilities\n\nProject maintainers are responsible for clarifying the standards of acceptable\nbehavior and are expected to take appropriate and fair corrective action in\nresponse to any instances of unacceptable behavior.\n\nProject maintainers have the right and responsibility to remove, edit, or\nreject comments, commits, code, wiki edits, issues, and other contributions\nthat are not aligned to this Code of Conduct, or to ban temporarily or\npermanently any contributor for other behaviors that they deem inappropriate,\nthreatening, offensive, or harmful.\n\n## Scope\n\nThis Code of Conduct applies both within project spaces and in public spaces\nwhen an individual is representing the project or its community. Examples of\nrepresenting a project or community include using an official project e-mail\naddress, posting via an official social media account, or acting as an appointed\nrepresentative at an online or offline event. Representation of a project may be\nfurther defined and clarified by project maintainers.\n\n## Enforcement\n\nInstances of abusive, harassing, or otherwise unacceptable behavior may be\nreported by contacting the project team at ryan@ryanhanson.dev. All\ncomplaints will be reviewed and investigated and will result in a response that\nis deemed necessary and appropriate to the circumstances. The project team is\nobligated to maintain confidentiality with regard to the reporter of an incident.\nFurther details of specific enforcement policies may be posted separately.\n\nProject maintainers who do not follow or enforce the Code of Conduct in good\nfaith may face temporary or permanent repercussions as determined by other\nmembers of the project's leadership.\n\n## Attribution\n\nThis Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,\navailable at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html\n\n[homepage]: https://www.contributor-covenant.org\n\nFor answers to common questions about this code of conduct, see\nhttps://www.contributor-covenant.org/faq\n"
  },
  {
    "path": "CONTRIBUTING.md",
    "content": "# Contributing\n\n## Feature Requests\n\nRectangle is not accepting any new feature requests at this time, sorry. You can file a feature request for a feature that you plan to implement and submit a pull request for, so that the feature can be reviewed and you will know ahead of time if the feature will be rejected.  \n\n## Bugs\n\nPlease search through the existing issues, open and closed, before filing a new bug.\nAdd the version of Rectangle, the version of the OS, and screenshots or videos as necessary.\n\n## Coding Style\n\nPlease match the existing coding style as much as possible.\n\n## License\n\nBy contributing to Rectangle you agree that your contributions will be licensed under its MIT license.\n\n## Incentives\n\nLogic from Rectangle is used in the [Multitouch](https://multitouch.app) app. The [Rectangle Pro](https://rectangleapp.com/pro) app is entirely built on top of Rectangle. If you contribute significant code or localizations that get merged into Rectangle, you get a free license of Multitouch or Rectangle Pro. Contributors to Sparkle, MASShortcut, or Spectacle can also receive free Multitouch or Rectangle Pro licenses (just send me a direct message on [Gitter](https://gitter.im)).\n"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2019-2025 Ryan Hanson\nBased on the Spectacle app, Copyright (c) 2017 Eric Czarny eczarny@gmail.com\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "# Rectangle\n\n[![Build](https://github.com/rxhanson/Rectangle/actions/workflows/build.yml/badge.svg)](https://github.com/rxhanson/Rectangle/actions/workflows/build.yml)\n\nRectangle is a window management app based on Spectacle, written in Swift.\n\n<img width=\"962\" height=\"886\" alt=\"image\" src=\"https://github.com/user-attachments/assets/e8d88e5f-7d4f-43bc-a82e-146c42f92d68\" />\n\n## System Requirements\n\nRectangle supports macOS v10.15+. The last version that is supported for macOS 10.13 and 10.14 is https://github.com/rxhanson/Rectangle/releases/tag/v0.73.\n\n## Installation\n\nYou can download the latest dmg from <https://rectangleapp.com> or the [Releases page](https://github.com/rxhanson/Rectangle/releases).\n\nOr install with brew cask:\n\n```bash\nbrew install --cask rectangle\n```\n\n## How to use it\n\nThe [keyboard shortcuts](https://support.apple.com/guide/mac-help/what-are-those-symbols-shown-in-menus-cpmh0011/mac) are self explanatory, but the snap areas can use some explanation if you've never used them on Windows or other window management apps.\n\nDrag a window to the edge of the screen. When the mouse cursor reaches the edge of the screen, you'll see a footprint that Rectangle will attempt to resize and move the window to when the click is released.\n\n| Snap Area                                              | Resulting Action                       |\n|--------------------------------------------------------|----------------------------------------|\n| Left or right edge                                     | Left or right half                     |\n| Top                                                    | Maximize                               |\n| Corners                                                | Quarter in respective corner           |\n| Left or right edge, just above or below a corner       | Top or bottom half                     |\n| Bottom left, center, or right third                    | Respective third                       |\n| Bottom left or right third, then drag to bottom center | First or last two thirds, respectively |\n\n### Ignore an app\n\nIgnoring an app means that when the app is frontmost, keyboard shortcuts are un-registered from macOS. When the app is no longer frontmost, keyboard shortcuts are re-registered with macOS. This is useful for apps that have the same shortcuts like Rectangle and you do not want to change them.\n\n1. Focus the app that you want to ignore (make a window from that app frontmost).\n1. Open the Rectangle menu and select \"Ignore app\"\n\nTo un-ignore an app that you have selected to ignore, simply bring that app frontmost again, open the Rectangle menu, and deselect \"Ignore\".\n\n## Execute an action by URL\n\nOpen the URL `rectangle://execute-action?name=[name]`. Do not activate Rectangle if possible.\n\nAvailable values for `[name]`: `left-half`, `right-half`, `center-half`, `top-half`, `bottom-half`, `top-left`, `top-right`, `bottom-left`, `bottom-right`, `first-third`, `center-third`, `last-third`, `first-two-thirds`, `last-two-thirds`, `maximize`, `almost-maximize`, `maximize-height`, `smaller`, `larger`, `center`, `center-prominently`, `restore`, `next-display`, `previous-display`, `move-left`, `move-right`, `move-up`, `move-down`, `first-fourth`, `second-fourth`, `third-fourth`, `last-fourth`, `first-three-fourths`, `last-three-fourths`, `top-left-sixth`, `top-center-sixth`, `top-right-sixth`, `bottom-left-sixth`, `bottom-center-sixth`, `bottom-right-sixth`, `specified`, `reverse-all`, `top-left-ninth`, `top-center-ninth`, `top-right-ninth`, `middle-left-ninth`, `middle-center-ninth`, `middle-right-ninth`, `bottom-left-ninth`, `bottom-center-ninth`, `bottom-right-ninth`, `top-left-third`, `top-right-third`, `bottom-left-third`, `bottom-right-third`, `top-left-eighth`, `top-center-left-eighth`, `top-center-right-eighth`, `top-right-eighth`, `bottom-left-eighth`, `bottom-center-left-eighth`, `bottom-center-right-eighth`, `bottom-right-eighth`, `tile-all`, `cascade-all`, `cascade-active-app`\n\nExample, from a shell: `open -g \"rectangle://execute-action?name=left-half\"`\n\nURLs can also be used to ignore/unignore apps. \n\n```\nrectangle://execute-task?name=ignore-app\nrectangle://execute-task?name=unignore-app\n```\nA bundle identifier can also be specified, for example:\n```\nrectangle://execute-task?name=ignore-app&app-bundle-id=com.apple.Safari\n```\n\n## Terminal Commands for Hidden Preferences\n\nSee [TerminalCommands.md](TerminalCommands.md)\n\n## Differences with Spectacle\n\n* Rectangle uses [MASShortcut](https://github.com/rxhanson/MASShortcut) for keyboard shortcut recording. Spectacle used its own shortcut recorder.\n* Rectangle has additional window actions: move windows to each edge without resizing, maximize only the height of a window, almost maximizing a window.\n* Next/prev screen thirds is replaced with explicitly first third, first two thirds, center third, last two thirds, and last third. Screen orientation is taken into account, as in first third will be left third on landscape and top third on portrait.\n  * You can however emulate Spectacle's third cycling using first and last third actions. So, if you repeatedly execute first third, it will cycle through thirds (first, center, last) and vice-versa with the last third.\n* There's an option to have windows traverse across displays on subsequent left or right executions.\n* Windows will snap when dragged to edges/corners of the screen. This can be disabled.\n\n## Common Known Issues\n\n### Rectangle doesn't have the ability to move to other desktops/spaces\n\nApple never released a public API for doing this. Rectangle Pro has next/prev Space actions, but there are no plans to add those into Rectangle at this time.\n\n### Window resizing is off slightly for iTerm2\n\nBy default iTerm2 will only resize in increments of character widths. There might be a setting inside iTerm2 to disable this, but you can change it with the following command.\n\n```bash\ndefaults write com.googlecode.iterm2 DisableWindowSizeSnap -integer 1\n```\n\n### Rectangle appears to cause Notification Center to freeze\n\nThis appears to affect only a small amount of users. To prevent this from happening, uncheck the box for \"Snap windows by dragging\".\nSee issue [317](https://github.com/rxhanson/Rectangle/issues/317).\n\n### Troubleshooting\n\nIf windows aren't resizing or moving as you expect, here's some initial steps to get to the bottom of it. Most issues of this type have been caused by other apps.\n\n**Quick fixes (try these first):**\n\n1. **Lock and unlock your Mac** – This simple step resolves many issues, especially after system updates.\n1. Make sure macOS is up to date.\n1. Restart your Mac (this often fixes things right after a macOS update).\n\n**Diagnose the issue:**\n\n4. **Enable debug logging** (see instructions in the following section) – This helps identify whether Rectangle is working correctly.\n1. The logs are straightforward. If your calculated rect and your resulting rect are identical, chances are that there is another application causing issues.\n\n**Check for conflicts:**\n\n6. Make sure there are no other window manager applications running.\n1. Make sure that the app whose windows are not behaving properly does not have any conflicting keyboard shortcuts.\n1. Try using the menu items to execute a window action or changing the keyboard shortcut to something different so we can tell if it's a keyboard shortcut issue or not.\n\n**Advanced troubleshooting:**\n\n9. If you suspect there may be another application causing issues, try creating and logging in as a new macOS user.\n1. Save your logs to attach to an issue if you need to create one.\n\n#### Try resetting the macOS accessibility permissions for Rectangle:\n\n```bash\ntccutil reset All com.knollsoft.Rectangle\n```\n\nOr, this can be done with the following steps instead of the tccutil terminal command.\n1. Close Rectangle if it's running\n2. In System Settings -> Privacy & Security -> Accessibility, first disable Rectangle, then remove it with the minus button. (it's important to do both of those steps in that order)\n3. Restart your mac.\n4. Launch Rectangle and enable settings for it as prompted.\n\n## View Debug Logging\n\n1. Hold down the alt (option) key with the Rectangle menu open.\n1. Select the \"View Logging...\" menu item, which is in place of the \"About\" menu item.\n1. Logging will appear in the window as you perform Rectangle commands.\n\n## Import & export JSON config\n\nThere are buttons for importing and exporting the config as a JSON file in the settings tab of the preferences window. \n\nUpon launch, Rectangle will load a config file at `~/Library/Application Support/Rectangle/RectangleConfig.json` if it is present and will rename that file with a time/date stamp so that it isn't read on subsequent launches.\n\n## Preferences Storage\n\nThe configuration for Rectangle is stored using NSUserDefaults, meaning it is stored in the following location:\n`~/Library/Preferences/com.knollsoft.Rectangle.plist`\nNote that shortcuts in v0.41+ are stored in a different format and will not load in prior versions.\n\nThat file can be backed up or transferred to other machines.\n\nIf you are using Rectangle v0.44+, you can also use the import/export button in the Preferences pane to share to your preferences and keyboard shortcuts across machines using a JSON file.\n\n> [!NOTE]  \n> If you are having issues with configuration options persisting after an application restart and you've installed using Homebrew, you will need to uninstall and reinstall with the `--zap` flag.\n\n```\nbrew uninstall --zap rectangle\nbrew install rectangle\n```\n\n## Uninstallation\n\nRectangle can be uninstalled by quitting the app and moving it to the trash. You can remove the Rectangle defaults from your machine with the following terminal command:\n\n```bash\ndefaults delete com.knollsoft.Rectangle\n```\n\n> [!TIP]  \n> If you are uninstalling after installing with Homebrew, you should include the `--zap` flag to ensure it removes the plist entries too. \n\n```\nbrew uninstall --zap rectangle\n```\n\n---\n\n## Contributing\n\nLogic from Rectangle is used in the [Multitouch](https://multitouch.app) app. The [Rectangle Pro](https://rectangleapp.com/pro) app is entirely built on top of Rectangle. If you contribute significant code or localizations that get merged into Rectangle, send me an email for a free license of Multitouch or Rectangle Pro. Contributors to Sparkle, MASShortcut, or Spectacle can also receive free Multitouch or Rectangle Pro licenses.\n\n### Contributing additional sizes and positions\n\nRectangle's UI is intentionally simple. If you want to add a size and position that's not in the Shortcuts tab, then you can now add them into the \"Extra Shortcuts\" section accessed via the ellipsis button at the bottom of the General tab.\n\n### Localization\n\nIf you would like to contribute to localization, all of the translations are held in the Main.strings.\n\nPull requests for new localizations or improvements on existing localizations are welcome.\n\n### Running the app in Xcode (for developers)\n\nRectangle uses [Swift Package Manager](https://www.swift.org/package-manager/) to install Sparkle and MASShortcut.\n\nThe original repository for MASShortcut was archived, so Rectangle uses my [fork](https://github.com/rxhanson/MASShortcut). If you want to make any changes that involve MASShortcut, please make a pull request on my fork. \n\nDue to the addition of the Liquid Glass icon with a fallback for older versions of macOS, there will be a build failure on macOS versions < 26. You can delete the \"Asset Catalog Other Flags\" to build locally on versions < 26 (but don't check that change in if you create a pull request).\n\n## Credits\n\nAs mentioned above, Rectangle uses a forked version of [MASShortcut](https://github.com/rxhanson/MASShortcut), which still works great, and it uses [Sparkle](https://sparkle-project.org) for updates. \n\nThe Big Sur variant of the Rectangle app icon was created by Giovanni Maria Cusaro (@gmcusaro). The Liquid Glass variant of the app icon was created by [Alexander Käßner](https://www.alexkaessner.de) (@alexkaessner).\n\nAnd of course, there's been a lot of community contributions over the years :)\n"
  },
  {
    "path": "Rectangle/AccessibilityAuthorization/AccessibilityAuthorization.swift",
    "content": "//\n//  AccessibilityAuthorization.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 6/11/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\nimport Cocoa\n\nclass AccessibilityAuthorization {\n    \n    private var accessibilityWindowController: NSWindowController?\n    \n    public func checkAccessibility(completion: @escaping () -> Void) -> Bool {\n        if !AXIsProcessTrusted() {\n            \n            accessibilityWindowController = NSStoryboard(name: \"Main\", bundle: nil).instantiateController(withIdentifier: \"AccessibilityWindowController\") as? NSWindowController\n            \n            NSApp.activate(ignoringOtherApps: true)\n            accessibilityWindowController?.showWindow(self)\n            pollAccessibility(completion: completion)\n            return false\n        } else {\n            return true\n        }\n    }\n    \n    private func pollAccessibility(completion: @escaping () -> Void) {\n        DispatchQueue.main.asyncAfter(deadline: .now() + 0.3) {\n            if AXIsProcessTrusted() {\n                self.accessibilityWindowController?.close()\n                self.accessibilityWindowController = nil\n                completion()\n            } else {\n                self.pollAccessibility(completion: completion)\n            }\n        }\n    }\n    \n    func showAuthorizationWindow() {\n        if accessibilityWindowController?.window?.isMiniaturized == true {\n            accessibilityWindowController?.window?.deminiaturize(self)\n        }\n        NSApp.activate(ignoringOtherApps: true)\n    }\n    \n}\n"
  },
  {
    "path": "Rectangle/AccessibilityAuthorization/AccessibilityWindowController.swift",
    "content": "//\n//  AccessibilityWindow.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 6/13/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Cocoa\n\nclass AccessibilityWindowController: NSWindowController {\n    \n    override func windowDidLoad() {\n        super.windowDidLoad()\n        let closeButton = self.window?.standardWindowButton(.closeButton)\n        closeButton?.target = self\n        closeButton?.action = #selector(quit)\n    }\n    \n    @objc func quit() {\n        exit(1)\n    }\n    \n}\n\nclass AccessibilityViewController: NSViewController {\n    \n    @IBOutlet weak var sysPrefsPathField: NSTextField!\n    @IBOutlet weak var openSysPrefsButton: NSButton!\n    @IBOutlet weak var padlockField: NSTextField!\n    \n    override func viewDidLoad() {\n        if #available(OSX 13, *) {\n            sysPrefsPathField.stringValue =  NSLocalizedString(\n                \"Go to System Settings → Privacy & Security → Accessibility\", tableName: \"Main\", value: \"\", comment: \"\")\n            openSysPrefsButton.title = NSLocalizedString(\n                \"Open System Settings\", tableName: \"Main\", value: \"\", comment: \"\")\n            padlockField.isHidden = true\n        }\n    }\n    \n    @IBAction func openSystemPrefs(_ sender: Any) {\n        NSWorkspace.shared.open(URL(string:\"x-apple.systempreferences:com.apple.preference.security?Privacy_Accessibility\")!)\n    }\n}\n"
  },
  {
    "path": "Rectangle/AccessibilityElement.swift",
    "content": "//\n//  AccessibilityElement.swift\n//  Rectangle, Ported from Spectacle, Combined with snippets from ModMove\n//\n//  Created by Ryan Hanson on 6/12/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass AccessibilityElement {\n    fileprivate let wrappedElement: AXUIElement\n    \n    init(_ element: AXUIElement) {\n        wrappedElement = element\n    }\n    \n    convenience init(_ pid: pid_t) {\n        self.init(AXUIElementCreateApplication(pid))\n    }\n    \n    convenience init?(_ bundleIdentifier: String) {\n        guard let app = (NSWorkspace.shared.runningApplications.first { $0.bundleIdentifier == bundleIdentifier }) else { return nil }\n        self.init(app.processIdentifier)\n    }\n    \n    convenience init?(_ position: CGPoint) {\n        guard let element = AXUIElement.systemWide.getElementAtPosition(position) else { return nil }\n        self.init(element)\n    }\n    \n    private func getElementValue(_ attribute: NSAccessibility.Attribute) -> AccessibilityElement? {\n        guard let value = wrappedElement.getValue(attribute), CFGetTypeID(value) == AXUIElementGetTypeID() else { return nil }\n        return AccessibilityElement(value as! AXUIElement)\n    }\n    \n    private func getElementsValue(_ attribute: NSAccessibility.Attribute) -> [AccessibilityElement]? {\n        guard let value = wrappedElement.getValue(attribute), let array = value as? [AXUIElement] else { return nil }\n        return array.map { AccessibilityElement($0) }\n    }\n    \n    private var role: NSAccessibility.Role? {\n        guard let value = wrappedElement.getValue(.role) as? String else { return nil }\n        return NSAccessibility.Role(rawValue: value)\n    }\n    \n    private var isApplication: Bool? {\n        guard let role = role else { return nil }\n        return role == .application\n    }\n    \n    var isWindow: Bool? {\n        guard let role = role else { return nil }\n        return role == .window\n    }\n    \n    var isSheet: Bool? {\n        guard let role = role else { return nil }\n        return role == .sheet\n    }\n    \n    var isToolbar: Bool? {\n        guard let role = role else { return nil }\n        return role == .toolbar\n    }\n    \n    var isGroup: Bool? {\n        guard let role = role else { return nil }\n        return role == .group\n    }\n    \n    var isTabGroup: Bool? {\n        guard let role = role else { return nil }\n        return role == .tabGroup\n    }\n    \n    var isStaticText: Bool? {\n        guard let role = role else { return nil }\n        return role == .staticText\n    }\n    \n    private var subrole: NSAccessibility.Subrole? {\n        guard let value = wrappedElement.getValue(.subrole) as? String else { return nil }\n        return NSAccessibility.Subrole(rawValue: value)\n    }\n    \n    var isSystemDialog: Bool? {\n        guard let subrole = subrole else { return nil }\n        return subrole == .systemDialog\n    }\n    \n    private var position: CGPoint? {\n        get {\n            wrappedElement.getWrappedValue(.position)\n        }\n        set {\n            guard let newValue = newValue else { return }\n            wrappedElement.setValue(.position, newValue)\n            Logger.log(\"AX position proposed: \\(newValue.debugDescription), result: \\(position?.debugDescription ?? \"N/A\")\")\n        }\n    }\n    \n    func isResizable() -> Bool {\n        if let isResizable = wrappedElement.isValueSettable(.size) {\n            return isResizable\n        }\n        Logger.log(\"Unable to determine if window is resizeable. Assuming it is.\")\n        return true\n    }\n    \n    var size: CGSize? {\n        get {\n            wrappedElement.getWrappedValue(.size)\n        }\n        set {\n            guard let newValue = newValue else { return }\n            wrappedElement.setValue(.size, newValue)\n            Logger.log(\"AX sizing proposed: \\(newValue.debugDescription), result: \\(size?.debugDescription ?? \"N/A\")\")\n        }\n    }\n    \n    var frame: CGRect {\n        guard let position = position, let size = size else { return .null }\n        return .init(origin: position, size: size)\n    }\n    \n    /// The Accessebility API only allows size & position adjustments individually.\n    /// To handle moving to different displays, we have to adjust the size then the position, then the size again since macOS will enforce sizes that fit on the current display.\n    /// When windows take a long time to adjust size & position, there is some visual stutter with doing each of these actions. The stutter can be slightly reduced by removing the initial size adjustment, which can make unsnap restore appear smoother.\n    func setFrame(_ frame: CGRect, adjustSizeFirst: Bool = true) {\n        let appElement = applicationElement\n        var enhancedUI: Bool? = nil\n\n        if let appElement = appElement {\n            enhancedUI = appElement.enhancedUserInterface\n            if enhancedUI == true {\n                Logger.log(\"AXEnhancedUserInterface was enabled, will disable before resizing\")\n                appElement.enhancedUserInterface = false\n            }\n        }\n\n        if adjustSizeFirst {\n            size = frame.size\n        }\n        position = frame.origin\n        size = frame.size\n\n        // If \"enhanced user interface\" was originally enabled for the app, turn it back on\n        if Defaults.enhancedUI.value == .disableEnable, let appElement = appElement, enhancedUI == true {\n            appElement.enhancedUserInterface = true\n        }\n    }\n    \n    private var childElements: [AccessibilityElement]? {\n        getElementsValue(.children)\n    }\n    \n    func getChildElement(_ role: NSAccessibility.Role) -> AccessibilityElement? {\n        return childElements?.first { $0.role == role }\n    }\n    \n    func getChildElements(_ role: NSAccessibility.Role) -> [AccessibilityElement]? {\n        guard let elements = (childElements?.filter { $0.role == role }), elements.count > 0 else {\n            return nil\n        }\n        return elements\n    }\n    \n    func getChildElement(_ subrole: NSAccessibility.Subrole) -> AccessibilityElement? {\n        return childElements?.first { $0.subrole == subrole }\n    }\n    \n    func getChildElements(_ subrole: NSAccessibility.Subrole) -> [AccessibilityElement]? {\n        guard let elements = (childElements?.filter { $0.subrole == subrole }), elements.count > 0 else {\n            return nil\n        }\n        return elements\n    }\n    \n    func getSelfOrChildElementRecursively(_ position: CGPoint) -> AccessibilityElement? {\n        func getChildElement() -> AccessibilityElement? {\n            return element.childElements?\n                .map { (element: $0, frame: $0.frame) }\n                .filter { $0.frame.contains(position) }\n                .min { $0.frame.width * $0.frame.height < $1.frame.width * $1.frame.height }?\n                .element\n        }\n        var element = self\n        var elements = Set<AccessibilityElement>()\n        while let childElement = getChildElement(), elements.insert(childElement).inserted {\n            element = childElement\n        }\n        return element\n    }\n    \n    var windowId: CGWindowID? {\n        wrappedElement.getWindowId()\n    }\n\n    func getWindowId() -> CGWindowID? {\n        if let windowId = windowId {\n            return windowId\n        }\n        let frame = frame\n        // Take the first match because there's no real way to guarantee which window we're actually getting\n        if let pid = pid, let info = (WindowUtil.getWindowList().first { $0.pid == pid && $0.frame == frame }) {\n            return info.id\n        }\n        Logger.log(\"Unable to obtain window id\")\n        return nil\n    }\n    \n    var pid: pid_t? {\n        wrappedElement.getPid()\n    }\n    \n    var windowElement: AccessibilityElement? {\n        if isWindow == true { return self }\n        return getElementValue(.window)\n    }\n    \n    private var isMainWindow: Bool? {\n        get {\n            windowElement?.wrappedElement.getValue(.main) as? Bool\n        }\n        set {\n            guard let newValue = newValue else { return }\n            windowElement?.wrappedElement.setValue(.main, newValue)\n        }\n    }\n    \n    var isMinimized: Bool? {\n        windowElement?.wrappedElement.getValue(.minimized) as? Bool\n    }\n    \n    var isFullScreen: Bool? {\n        guard let subrole = windowElement?.getElementValue(.fullScreenButton)?.subrole else { return nil }\n        return subrole == .zoomButton\n    }\n    \n    var titleBarFrame: CGRect? {\n        guard\n            let windowElement,\n            case let windowFrame = windowElement.frame,\n            windowFrame != .null,\n            let closeButtonFrame = windowElement.getChildElement(.closeButton)?.frame,\n            closeButtonFrame != .null\n        else {\n            return nil\n        }\n        let gap = closeButtonFrame.minY - windowFrame.minY\n        let height = 2 * gap + closeButtonFrame.height\n        return CGRect(origin: windowFrame.origin, size: CGSize(width: windowFrame.width, height: height))\n    }\n    \n    private var applicationElement: AccessibilityElement? {\n        if isApplication == true { return self }\n        guard let pid = pid else { return nil }\n        return AccessibilityElement(pid)\n    }\n    \n    private var focusedWindowElement: AccessibilityElement? {\n        applicationElement?.getElementValue(.focusedWindow)\n    }\n    \n    var windowElements: [AccessibilityElement]? {\n        applicationElement?.getElementsValue(.windows)\n    }\n    \n    var isHidden: Bool? {\n        applicationElement?.wrappedElement.getValue(.hidden) as? Bool\n    }\n    \n    var enhancedUserInterface: Bool? {\n        get {\n            applicationElement?.wrappedElement.getValue(.enhancedUserInterface) as? Bool\n        }\n        set {\n            guard let newValue = newValue else { return }\n            applicationElement?.wrappedElement.setValue(.enhancedUserInterface, newValue)\n        }\n    }\n    \n    // Only for Stage Manager\n    var windowIds: [CGWindowID]? {\n        wrappedElement.getValue(.windowIds) as? [CGWindowID]\n    }\n    \n    func bringToFront(force: Bool = false) {\n        if isMainWindow != true {\n            isMainWindow = true\n        }\n        if let pid = pid, let app = NSRunningApplication(processIdentifier: pid), !app.isActive || force {\n            app.activate(options: .activateIgnoringOtherApps)\n        }\n    }\n}\n\nextension AccessibilityElement {\n    static func getFrontApplicationElement() -> AccessibilityElement? {\n        guard let app = NSWorkspace.shared.frontmostApplication else { return nil }\n        return AccessibilityElement(app.processIdentifier)\n    }\n    \n    static func getFrontWindowElement() -> AccessibilityElement? {\n        guard let appElement = getFrontApplicationElement() else {\n            Logger.log(\"Failed to find the application that currently has focus.\")\n            return nil\n        }\n        if let focusedWindowElement = appElement.focusedWindowElement {\n            return focusedWindowElement\n        }\n        if let firstWindowElement = appElement.windowElements?.first {\n            return firstWindowElement\n        }\n        Logger.log(\"Failed to find frontmost window.\")\n        return nil\n    }\n    \n    private static func getWindowInfo(_ location: CGPoint) -> WindowInfo? {\n        WindowUtil.getWindowList().first(where: {windowInfo in\n            windowInfo.level < 23 // 23 is the level of the Notification Center\n            && ![\"Dock\", \"WindowManager\"].contains(windowInfo.processName)\n            && windowInfo.frame.contains(location)\n        })\n    }\n\n    static func getWindowElementUnderCursor() -> AccessibilityElement? {\n        let position = NSEvent.mouseLocation.screenFlipped\n        \n        var systemWideFirst = Defaults.systemWideMouseDown.userEnabled\n        if Defaults.systemWideMouseDown.notSet, let frontAppId = ApplicationToggle.frontAppId {\n            systemWideFirst = Defaults.systemWideMouseDownApps.typedValue?.contains(frontAppId) == true\n        }\n        \n        if systemWideFirst,\n            let element = AccessibilityElement(position),\n            let windowElement = element.windowElement {\n                return windowElement\n        }\n\n        if let info = getWindowInfo(position) {\n            if !Defaults.dragFromStage.userDisabled {\n                if StageUtil.stageCapable && StageUtil.stageEnabled,\n                   let group = StageUtil.getStageStripWindowGroup(info.id),\n                   let windowId = group.first,\n                   windowId != info.id,\n                   let element = StageWindowAccessibilityElement(windowId) {\n                    return element\n                }\n            }\n            if let windowElements = AccessibilityElement(info.pid).windowElements {\n                if let windowElement = (windowElements.first { $0.windowId == info.id }) {\n                    return windowElement\n                }\n                if let windowElement = (windowElements.first { $0.frame == info.frame }) {\n                    return windowElement\n                }\n            }\n        }\n        \n        if !systemWideFirst,\n           let element = AccessibilityElement(position),\n           let windowElement = element.windowElement {\n            \n            if Logger.logging, let pid = windowElement.pid {\n                let appName = NSRunningApplication(processIdentifier: pid)?.localizedName ?? \"\"\n                Logger.log(\"Window under cursor fallback matched: \\(appName)\")\n            }\n            return windowElement\n        }\n        Logger.log(\"Unable to obtain the accessibility element with the specified attribute at mouse location\")\n        return nil\n    }\n    \n    static func getWindowElement(_ windowId: CGWindowID) -> AccessibilityElement? {\n        guard let pid = WindowUtil.getWindowList(ids: [windowId]).first?.pid else { return nil }\n        return AccessibilityElement(pid).windowElements?.first { $0.windowId == windowId }\n    }\n    \n    private static let excludedProcessNames: Set<String> = [\"Dock\", \"WindowManager\", \"Notification Center\"]\n\n    static func getAllWindowElements() -> [AccessibilityElement] {\n        return WindowUtil.getWindowList()\n            .filter { !excludedProcessNames.contains($0.processName ?? \"\") }\n            .uniqueMap { $0.pid }\n            .compactMap { AccessibilityElement($0).windowElements }\n            .flatMap { $0 }\n    }\n}\n\nextension AccessibilityElement: Equatable {\n    static func == (lhs: AccessibilityElement, rhs: AccessibilityElement) -> Bool {\n        return lhs.wrappedElement == rhs.wrappedElement\n    }\n}\n\nextension AccessibilityElement: Hashable {\n    func hash(into hasher: inout Hasher) {\n        hasher.combine(wrappedElement)\n    }\n}\n\nclass StageWindowAccessibilityElement: AccessibilityElement {\n    private let _windowId: CGWindowID\n    \n    init?(_ windowId: CGWindowID) {\n        guard let element = AccessibilityElement.getWindowElement(windowId) else { return nil }\n        _windowId = windowId\n        super.init(element.wrappedElement)\n    }\n    \n    override var frame: CGRect {\n        let frame = super.frame\n        guard !frame.isNull, let windowId = windowId, let info = WindowUtil.getWindowList(ids: [windowId]).first else { return frame }\n        return .init(origin: info.frame.origin, size: frame.size)\n    }\n    \n    override var windowId: CGWindowID? {\n        _windowId\n    }\n}\n\nenum EnhancedUI: Int {\n    case disableEnable = 1 /// The default behavior - disable Enhanced UI on every window move/resize\n    case disableOnly = 2 /// Don't re-enable enhanced UI after it gets disabled\n    case frontmostDisable = 3 /// Disable enhanced UI every time the frontmost app gets changed\n}\n"
  },
  {
    "path": "Rectangle/AppDelegate.swift",
    "content": "//\n//  AppDelegate.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 6/11/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Cocoa\nimport Sparkle\nimport ServiceManagement\nimport os.log\n\n@NSApplicationMain\nclass AppDelegate: NSObject, NSApplicationDelegate {\n\n    static let launcherAppId = \"com.knollsoft.RectangleLauncher\"\n\n    private let accessibilityAuthorization = AccessibilityAuthorization()\n    private let statusItem = RectangleStatusItem.instance\n    static let windowHistory = WindowHistory()\n    var updaterController: SPUStandardUpdaterController!\n    var hasPendingUpdate = false {\n        didSet {\n            Notification.Name.updateAvailability.post()\n        }\n    }\n\n    private var shortcutManager: ShortcutManager!\n    private var windowManager: WindowManager!\n    private var applicationToggle: ApplicationToggle!\n    private var windowCalculationFactory: WindowCalculationFactory!\n    private var snappingManager: SnappingManager!\n    private var titleBarManager: TitleBarManager!\n    \n    private var prefsWindowController: NSWindowController?\n    \n    private var prevActiveAppObservation: NSKeyValueObservation?\n    private var prevActiveApp: NSRunningApplication?\n    private var additionalSizeMenuItems: [NSMenuItem] = []\n    private var dynamicMenuItemCount: Int = 0\n\n    @IBOutlet weak var mainStatusMenu: NSMenu!\n    @IBOutlet weak var unauthorizedMenu: NSMenu!\n    @IBOutlet weak var ignoreMenuItem: NSMenuItem!\n    @IBOutlet weak var viewLoggingMenuItem: NSMenuItem!\n    @IBOutlet weak var updatesMenuItem: NSMenuItem!\n    @IBOutlet weak var quitMenuItem: NSMenuItem!\n    \n    static var instance: AppDelegate {\n        NSApp.delegate as! AppDelegate\n    }\n    \n    func applicationDidFinishLaunching(_ aNotification: Notification) {\n        Defaults.loadFromSupportDir()\n        migrateShowEighthsInMenu()\n\n        checkVersion()\n        mainStatusMenu.delegate = self\n        statusItem.refreshVisibility()\n        checkLaunchOnLogin()\n        \n        let alreadyTrusted = accessibilityAuthorization.checkAccessibility {\n            self.showWelcomeWindow()\n            self.checkForConflictingApps()\n            self.openPreferences(self)\n            self.statusItem.statusMenu = self.mainStatusMenu\n            self.accessibilityTrusted()\n        }\n        \n        if alreadyTrusted {\n            accessibilityTrusted()\n        }\n        \n        statusItem.statusMenu = alreadyTrusted\n            ? mainStatusMenu\n            : unauthorizedMenu\n        \n        mainStatusMenu.autoenablesItems = false\n        addWindowActionMenuItems()\n\n        NotificationCenter.default.addObserver(self, selector: #selector(rebuildMenu), name: .showAdditionalSizesInMenuChanged, object: nil)\n\n        updaterController = SPUStandardUpdaterController(updaterDelegate: nil, userDriverDelegate: self)\n        \n        checkAutoCheckForUpdates()\n        \n        Notification.Name.configImported.onPost(using: { _ in\n            self.checkAutoCheckForUpdates()\n            self.statusItem.refreshVisibility()\n            self.applicationToggle.reloadFromDefaults()\n            self.shortcutManager.reloadFromDefaults()\n            self.snappingManager.reloadFromDefaults()\n            self.initializeTodo(false)\n        })\n        \n        Notification.Name.todoMenuToggled.onPost(using: { _ in\n            self.initializeTodo(false)\n        })\n        \n        prevActiveAppObservation = NSWorkspace.shared.observe(\\.frontmostApplication, options: .old) { workspace, change in\n            self.prevActiveApp = change.oldValue ?? nil\n        }\n    }\n    \n    func checkVersion() {\n        let currentVersion = Bundle.main.infoDictionary?[\"CFBundleVersion\"] as? String\n        if let lastVersion = Defaults.lastVersion.value,\n           let intLastVersion = Int(lastVersion) {\n            if intLastVersion < 46 {\n                MASShortcutMigration.migrate()\n            }\n            if intLastVersion < 64 {\n                SnapAreaModel.instance.migrate()\n            }\n            if intLastVersion < 72 {\n                if #available(macOS 13, *) {\n                    SMLoginItemSetEnabled(AppDelegate.launcherAppId as CFString, false)\n                }\n            }\n        } else {\n            Defaults.installVersion.value = currentVersion\n            Defaults.allowAnyShortcut.enabled = true\n        }\n        \n        Defaults.lastVersion.value = currentVersion\n    }\n    \n    func applicationWillBecomeActive(_ notification: Notification) {\n        Notification.Name.appWillBecomeActive.post()\n    }\n    \n    func checkAutoCheckForUpdates() {\n        updaterController.updater.automaticallyChecksForUpdates = Defaults.SUEnableAutomaticChecks.enabled\n    }\n    \n    func accessibilityTrusted() {\n        self.windowCalculationFactory = WindowCalculationFactory()\n        self.windowManager = WindowManager()\n        self.shortcutManager = ShortcutManager(windowManager: windowManager)\n        self.applicationToggle = ApplicationToggle(shortcutManager: shortcutManager)\n        self.snappingManager = SnappingManager()\n        self.titleBarManager = TitleBarManager()\n        self.initializeTodo()\n        checkForProblematicApps()\n        MacTilingDefaults.checkForBuiltInTiling(skipIfAlreadyNotified: true)\n    }\n    \n    func checkForConflictingApps() {\n        let conflictingAppsIds: [String: String] = [\n            \"com.divisiblebyzero.Spectacle\": \"Spectacle\",\n            \"com.crowdcafe.windowmagnet\": \"Magnet\",\n            \"com.hegenberg.BetterSnapTool\": \"BetterSnapTool\",\n            \"com.manytricks.Moom\": \"Moom\"\n        ]\n        \n        let runningApps = NSWorkspace.shared.runningApplications\n        for app in runningApps {\n            guard let bundleId = app.bundleIdentifier else { continue }\n            if let conflictingAppName = conflictingAppsIds[bundleId] {\n                AlertUtil.oneButtonAlert(question: \"Potential window manager conflict: \\(conflictingAppName)\", text: \"Since \\(conflictingAppName) might have some overlapping behavior with Rectangle, it's recommended that you either disable or quit \\(conflictingAppName).\")\n                break\n            }\n        }\n        \n    }\n    \n    /// certain applications have issues with the click listening done by the drag to snap feature\n    func checkForProblematicApps() {\n        guard !Defaults.windowSnapping.userDisabled, !Defaults.notifiedOfProblemApps.enabled else { return }\n        \n        let problemBundleIds: [String] = [\n            \"com.mathworks.matlab\",\n            \"com.live2d.cubism.CECubismEditorApp\",\n            \"com.aquafold.datastudio.DataStudio\",\n            \"com.adobe.illustrator\",\n            \"com.adobe.AfterEffects\"\n        ]\n        \n        // these apps are java based with dynamic bundleIds\n        let problemJavaAppNames: [String] = [\n            \"thinkorswim\",\n            \"Trader Workstation\"\n        ]\n\n        var problemBundles: [Bundle] = problemBundleIds.compactMap { bundleId in\n            if applicationToggle.isDisabled(bundleId: bundleId) { return nil }\n            \n            // Directly instantiating the Bundle from the bundle id didn't work for matlab for some reason\n            if let url = NSWorkspace.shared.urlForApplication(withBundleIdentifier: bundleId) {\n                return Bundle(url: url)\n            }\n            return nil\n        }\n        \n        for name in problemJavaAppNames {\n            if let path = NSWorkspace.shared.fullPath(forApplication: name) {\n                if let bundle = Bundle(path: path),\n                   let bundleId = bundle.bundleIdentifier {\n                    \n                    if !applicationToggle.isDisabled(bundleId: bundleId),\n                       bundleId.starts(with: \"com.install4j\") {\n                        problemBundles.append(bundle)\n                    }\n                }\n            }\n        }\n        \n        let displayNames = problemBundles.compactMap { $0.object(forInfoDictionaryKey: kCFBundleNameKey as String) as? String }\n        let displayNameString = displayNames.joined(separator: \"\\n\")\n        \n        if !problemBundles.isEmpty {\n            AlertUtil.oneButtonAlert(question: \"Known issues with installed applications\", text: \"\\(displayNameString)\\n\\nThese applications have issues with the drag to screen edge to snap functionality in Rectangle.\\n\\nYou can either ignore the applications using the menu item in Rectangle, or disable drag to screen edge snapping in Rectangle preferences.\")\n            Defaults.notifiedOfProblemApps.enabled = true\n        }\n    }\n        \n    private func showWelcomeWindow() {\n        let welcomeWindowController = NSStoryboard(name: \"Main\", bundle: nil)\n            .instantiateController(withIdentifier: \"WelcomeWindowController\") as? NSWindowController\n        guard let welcomeWindow = welcomeWindowController?.window else { return }\n        welcomeWindow.delegate = self\n        \n        NSApp.activate(ignoringOtherApps: true)\n        \n        let response = NSApp.runModal(for: welcomeWindow)\n        \n        let usingRecommended = response == .alertFirstButtonReturn || response == .abort\n        \n        Defaults.alternateDefaultShortcuts.enabled = usingRecommended\n        \n        Defaults.subsequentExecutionMode.value = usingRecommended ? .acrossMonitor : .resize\n        \n        welcomeWindowController?.close()\n    }\n    \n    func applicationShouldHandleReopen(_ sender: NSApplication, hasVisibleWindows flag: Bool) -> Bool {\n        if Defaults.relaunchOpensMenu.enabled {\n            statusItem.openMenu()\n        } else {\n            openPreferences(sender)\n        }\n        return true\n    }\n    \n    @IBAction func openPreferences(_ sender: Any) {\n        if prefsWindowController == nil {\n            prefsWindowController = NSStoryboard(name: \"Main\", bundle: nil).instantiateController(withIdentifier: \"PrefsWindowController\") as? NSWindowController\n        }\n        NSApp.activate(ignoringOtherApps: true)\n        prefsWindowController?.showWindow(self)\n    }\n    \n    @IBAction func showAbout(_ sender: Any) {\n        NSApp.activate(ignoringOtherApps: true)\n        NSApp.orderFrontStandardAboutPanel(sender)\n    }\n    \n    @IBAction func viewLogging(_ sender: Any) {\n        Logger.showLogging(sender: sender)\n    }\n    \n    @IBAction func ignoreFrontMostApp(_ sender: NSMenuItem) {\n        if sender.state == .on {\n            applicationToggle.enableApp()\n        } else {\n            applicationToggle.disableApp()\n        }\n    }\n    \n    @IBAction func checkForUpdates(_ sender: Any) {\n        updaterController.checkForUpdates(sender)\n    }\n    \n    @IBAction func authorizeAccessibility(_ sender: Any) {\n        accessibilityAuthorization.showAuthorizationWindow()\n    }\n\n    private func checkLaunchOnLogin() {\n        if #available(macOS 13.0, *) {\n            if Defaults.launchOnLogin.enabled, !LaunchOnLogin.isEnabled {\n                LaunchOnLogin.isEnabled = true\n            }\n        } else {\n            let running = NSWorkspace.shared.runningApplications\n            let isRunning = !running.filter({$0.bundleIdentifier == AppDelegate.launcherAppId}).isEmpty\n            if isRunning {\n                let killNotification = Notification.Name(\"killLauncher\")\n                DistributedNotificationCenter.default().post(name: killNotification, object: Bundle.main.bundleIdentifier!)\n            }\n            if !Defaults.SUHasLaunchedBefore {\n                Defaults.launchOnLogin.enabled = true\n            }\n            \n            // Even if we are already set up to launch on login, setting it again since macOS can be buggy with this type of launch on login.\n            if Defaults.launchOnLogin.enabled {\n                let smLoginSuccess = SMLoginItemSetEnabled(AppDelegate.launcherAppId as CFString, true)\n                if !smLoginSuccess {\n                    if #available(OSX 10.12, *) {\n                        os_log(\"Unable to enable launch at login. Attempting one more time.\", type: .info)\n                    }\n                    SMLoginItemSetEnabled(AppDelegate.launcherAppId as CFString, true)\n                }\n            }\n        }\n    }\n    \n}\n\nextension AppDelegate: NSMenuDelegate {\n    \n    func menuWillOpen(_ menu: NSMenu) {\n        if menu != mainStatusMenu {\n            updateWindowActionMenuItems(menu: menu)\n            updateTodoModeMenuItems(menu: menu)\n            return\n        }\n        \n        if let frontAppName = ApplicationToggle.frontAppName {\n            let ignoreString = NSLocalizedString(\"D99-0O-MB6.title\", tableName: \"Main\", value: \"Ignore frontmost.app\", comment: \"\")\n            ignoreMenuItem.title = ignoreString.replacingOccurrences(of: \"frontmost.app\", with: frontAppName)\n            ignoreMenuItem.state = ApplicationToggle.shortcutsDisabled ? .on : .off\n            ignoreMenuItem.isHidden = false\n        } else {\n            ignoreMenuItem.isHidden = true\n        }\n        \n        updateWindowActionMenuItems(menu: menu)\n        updateTodoModeMenuItems(menu: menu)\n\n        viewLoggingMenuItem.keyEquivalentModifierMask = .option\n        quitMenuItem.keyEquivalent = \"q\"\n        quitMenuItem.keyEquivalentModifierMask = .command\n    }\n    \n    private func updateWindowActionMenuItems(menu: NSMenu) {\n        let frontmostWindow = AccessibilityElement.getFrontWindowElement()\n        let screenCount = NSScreen.screens.count\n        let isPortrait = NSScreen.main?.frame.isLandscape == false\n\n        for menuItem in menu.items {\n            guard let windowAction = menuItem.representedObject as? WindowAction else { continue }\n\n            menuItem.image = windowAction.image.copy() as? NSImage\n            menuItem.image?.size = NSSize(width: 18, height: 12)\n            \n            if isPortrait && windowAction.classification == .thirds {\n                menuItem.image = menuItem.image?.rotated(by: 270)\n                menuItem.image?.isTemplate = true\n            }\n\n            if !ApplicationToggle.shortcutsDisabled {\n                if let fullKeyEquivalent = shortcutManager.getKeyEquivalent(action: windowAction),\n                    let keyEquivalent = fullKeyEquivalent.0?.lowercased() {\n                    menuItem.keyEquivalent = keyEquivalent\n                    menuItem.keyEquivalentModifierMask = fullKeyEquivalent.1\n                }\n            }\n            if frontmostWindow == nil {\n                menuItem.isEnabled = false\n            }\n            if screenCount == 1\n                && (windowAction == .nextDisplay || windowAction == .previousDisplay) {\n                menuItem.isEnabled = false\n            }\n        }\n    }\n    \n    func menuDidClose(_ menu: NSMenu) {\n        for menuItem in menu.items {\n            \n            menuItem.keyEquivalent = \"\"\n            menuItem.keyEquivalentModifierMask = NSEvent.ModifierFlags()\n            \n            menuItem.isEnabled = true\n        }\n    }\n    \n    @objc func executeMenuWindowAction(sender: NSMenuItem) {\n        guard let windowAction = sender.representedObject as? WindowAction else { return }\n        windowAction.postMenu()\n    }\n    \n    func addWindowActionMenuItems() {\n        let additionalSizeCategories: Set<WindowActionCategory> = [.eighths, .ninths, .twelfths, .sixteenths]\n        let submenuOnlyWhenAdditional: Set<WindowActionCategory> = [.thirds, .size]\n        let showAdditional = Defaults.showAdditionalSizesInMenu.userEnabled\n        var menuIndex = 0\n        var categoryMenus: [CategoryMenu] = []\n        for action in WindowAction.active {\n            guard let displayName = action.displayName else { continue }\n            let newMenuItem = NSMenuItem(title: displayName, action: #selector(executeMenuWindowAction), keyEquivalent: \"\")\n            newMenuItem.representedObject = action\n\n            if !Defaults.showAllActionsInMenu.userEnabled, let category = action.category {\n                // When additional sizes are off, keep Thirds and Size as flat items\n                if submenuOnlyWhenAdditional.contains(category) && !showAdditional {\n                    // Fall through to flat item handling below\n                } else {\n                    if menuIndex != 0 && action.firstInGroup {\n                        let menu = NSMenu(title: category.displayName)\n                        menu.autoenablesItems = false\n                        categoryMenus.append(CategoryMenu(menu: menu, category: category))\n                    }\n                    categoryMenus.last?.menu.addItem(newMenuItem)\n                    continue\n                }\n            }\n\n            // Flat item - suppress extra separator for almostMaximize when Size is not a submenu\n            let showSeparator = action.firstInGroup && !(action == .almostMaximize && !showAdditional)\n            if menuIndex != 0 && showSeparator {\n                mainStatusMenu.insertItem(NSMenuItem.separator(), at: menuIndex)\n                menuIndex += 1\n            }\n            mainStatusMenu.insertItem(newMenuItem, at: menuIndex)\n            menuIndex += 1\n        }\n\n        if !categoryMenus.isEmpty {\n            mainStatusMenu.insertItem(NSMenuItem.separator(), at: menuIndex)\n            menuIndex += 1\n\n            let sortedCategoryMenus = categoryMenus.sorted { $0.category.menuOrder < $1.category.menuOrder }\n            for categoryMenu in sortedCategoryMenus {\n                categoryMenu.menu.delegate = self\n                let menuMenuItem = NSMenuItem(title: categoryMenu.category.displayName, action: nil, keyEquivalent: \"\")\n                if additionalSizeCategories.contains(categoryMenu.category) {\n                    menuMenuItem.isHidden = !Defaults.showAdditionalSizesInMenu.userEnabled\n                    additionalSizeMenuItems.append(menuMenuItem)\n                }\n                mainStatusMenu.insertItem(menuMenuItem, at: menuIndex)\n                mainStatusMenu.setSubmenu(categoryMenu.menu, for: menuMenuItem)\n                menuIndex += 1\n            }\n        }\n\n        mainStatusMenu.insertItem(NSMenuItem.separator(), at: menuIndex)\n\n        menuIndex += 1\n        addTodoModeMenuItems(startingIndex: menuIndex)\n        // Track total dynamic items: window actions + separators + todo items (4 items + 1 separator)\n        dynamicMenuItemCount = menuIndex + 5\n    }\n\n    @objc func rebuildMenu() {\n        // Remove all dynamically added items\n        for _ in 0..<dynamicMenuItemCount {\n            mainStatusMenu.removeItem(at: 0)\n        }\n        dynamicMenuItemCount = 0\n        additionalSizeMenuItems.removeAll()\n        addWindowActionMenuItems()\n    }\n\n    private func migrateShowEighthsInMenu() {\n        let oldKey = \"showEighthsInMenu\"\n        let oldValue = UserDefaults.standard.integer(forKey: oldKey)\n        if oldValue != 0 && Defaults.showAdditionalSizesInMenu.notSet {\n            Defaults.showAdditionalSizesInMenu.enabled = (oldValue == 1)\n        }\n    }\n\n    struct CategoryMenu {\n        let menu: NSMenu\n        let category: WindowActionCategory\n    }\n\n}\n\n// todo mode\nextension AppDelegate {\n    func initializeTodo(_ bringToFront: Bool = true) {\n        self.showHideTodoMenuItems()\n        TodoManager.registerUnregisterToggleShortcut()\n        TodoManager.registerUnregisterReflowShortcut()\n        TodoManager.moveAllIfNeeded(bringToFront)\n    }\n\n    enum TodoItem {\n        case mode, app, reflow, separator, window\n\n        var tag: Int {\n            switch self {\n            case .mode: return 101\n            case .app: return 102\n            case .reflow: return 103\n            case .separator: return 104\n            case .window: return 105\n            }\n        }\n        \n        static let tags = [101, 102, 103, 104, 105]\n    }\n\n    private func addTodoModeMenuItems(startingIndex: Int) {\n        var menuIndex = startingIndex\n\n        let todoModeItemTitle = NSLocalizedString(\"Enable Todo Mode\", tableName: \"Main\", value: \"\", comment: \"\")\n        let todoModeMenuItem = NSMenuItem(title: todoModeItemTitle, action: #selector(toggleTodoMode), keyEquivalent: \"\")\n        todoModeMenuItem.tag = TodoItem.mode.tag\n        todoModeMenuItem.target = self\n        mainStatusMenu.insertItem(todoModeMenuItem, at: menuIndex)\n        menuIndex += 1\n\n        let todoAppItemTitle = NSLocalizedString(\"Use frontmost.app as Todo App\", tableName: \"Main\", value: \"\", comment: \"\")\n        let todoAppMenuItem = NSMenuItem(title: todoAppItemTitle, action: #selector(setTodoApp), keyEquivalent: \"\")\n        todoAppMenuItem.tag = TodoItem.app.tag\n        mainStatusMenu.insertItem(todoAppMenuItem, at: menuIndex)\n        menuIndex += 1\n\n        let todoWindowItemTitle = NSLocalizedString(\"Use as Todo Window\", tableName: \"Main\", value: \"\", comment: \"\")\n        let todoWindowMenuItem = NSMenuItem(title: todoWindowItemTitle, action: #selector(setTodoWindow), keyEquivalent: \"\")\n        todoWindowMenuItem.tag = TodoItem.window.tag\n        mainStatusMenu.insertItem(todoWindowMenuItem, at: menuIndex)\n        menuIndex += 1\n        \n        let todoReflowItemTitle = NSLocalizedString(\"Reflow Todo\", tableName: \"Main\", value: \"\", comment: \"\")\n        let todoReflowItem = NSMenuItem(title: todoReflowItemTitle, action: #selector(todoReflow), keyEquivalent: \"\")\n        todoReflowItem.tag = TodoItem.reflow.tag\n        mainStatusMenu.insertItem(todoReflowItem, at: menuIndex)\n        menuIndex += 1\n        \n        let separator = NSMenuItem.separator()\n        separator.tag = TodoItem.separator.tag\n        mainStatusMenu.insertItem(separator, at: menuIndex)\n        \n        showHideTodoMenuItems()\n    }\n    \n    private func showHideTodoMenuItems() {\n        for item in mainStatusMenu.items {\n            if TodoItem.tags.contains(item.tag) {\n                item.isHidden = !Defaults.todo.userEnabled\n            }\n        }\n    }\n\n    @objc func toggleTodoMode(_ sender: NSMenuItem) {\n        let enabled = sender.state == .off\n        TodoManager.setTodoMode(enabled)\n    }\n\n    @objc func setTodoApp(_ sender: NSMenuItem) {\n        applicationToggle.setTodoApp()\n        TodoManager.moveAllIfNeeded()\n    }\n\n    @objc func todoReflow(_ sender: NSMenuItem) {\n        TodoManager.moveAll()\n    }\n    \n    @objc func setTodoWindow(_ sender: NSMenuItem) {\n        TodoManager.resetTodoWindow()\n        TodoManager.moveAllIfNeeded()\n    }\n\n    private func updateTodoModeMenuItems(menu: NSMenu) {\n        guard Defaults.todo.userEnabled,\n              let todoAppMenuItem = menu.item(withTag: TodoItem.app.tag),\n              let todoModeMenuItem = menu.item(withTag: TodoItem.mode.tag),\n              let todoReflowMenuItem = menu.item(withTag: TodoItem.reflow.tag),\n              let todoWindowMenuItem = menu.item(withTag: TodoItem.window.tag)\n        else {\n            return\n        }\n\n        if let frontAppName = ApplicationToggle.frontAppName {\n            let appString = NSLocalizedString(\"Use frontmost.app as Todo App\", tableName: \"Main\", value: \"\", comment: \"\")\n            todoAppMenuItem.title = appString.replacingOccurrences(\n                of: \"frontmost.app\", with: frontAppName)\n            todoAppMenuItem.isEnabled = !applicationToggle.todoAppIsActive()\n            todoAppMenuItem.state = applicationToggle.todoAppIsActive() ? .on : .off\n            todoAppMenuItem.isHidden = false\n        } else {\n            todoAppMenuItem.isHidden = true\n        }\n\n        todoModeMenuItem.state = Defaults.todoMode.enabled ? .on : .off\n        \n        if let fullKeyEquivalent = TodoManager.getToggleKeyDisplay(),\n            let keyEquivalent = fullKeyEquivalent.0?.lowercased() {\n            todoModeMenuItem.keyEquivalent = keyEquivalent\n            todoModeMenuItem.keyEquivalentModifierMask = fullKeyEquivalent.1\n        }\n\n        if let fullKeyEquivalent = TodoManager.getReflowKeyDisplay(),\n            let keyEquivalent = fullKeyEquivalent.0?.lowercased() {\n            todoReflowMenuItem.keyEquivalent = keyEquivalent\n            todoReflowMenuItem.keyEquivalentModifierMask = fullKeyEquivalent.1\n        }\n        \n        todoReflowMenuItem.isEnabled = Defaults.todoMode.enabled\n        \n        todoWindowMenuItem.isHidden = !applicationToggle.todoAppIsActive() || TodoManager.isTodoWindowFront()\n    }\n}\n\nextension AppDelegate: NSWindowDelegate {\n    \n    func windowWillClose(_ notification: Notification) {\n        NSApp.abortModal()\n    }\n    \n}\n\nextension AppDelegate {\n    func application(_ application: NSApplication, open urls: [URL]) {\n        if NSWorkspace.shared.frontmostApplication == NSRunningApplication.current {\n            prevActiveApp?.activate()\n        }\n        DispatchQueue.main.async {\n            \n            func getUrlName(_ name: String) -> String {\n                return name.map { $0.isUppercase ? \"-\" + $0.lowercased() : String($0) }.joined()\n            }\n            \n            func extractBundleIdParameter(fromComponents components: URLComponents) -> String? {\n                (components.queryItems?.first { $0.name == \"app-bundle-id\" })?.value ?? ApplicationToggle.frontAppId\n            }\n            \n            func isValidParameter(bundleId: String?) -> Bool {\n                let isValid = bundleId?.isEmpty != true\n                if !isValid {\n                    Logger.log(\"Received an empty app-bundle-id parameter. Either pass a valid app bundle id or remove the parameter.\")\n                }\n                return isValid\n            }\n            \n            for url in urls {\n                guard\n                    let components = URLComponents(url: url, resolvingAgainstBaseURL: true),\n                    components.path.isEmpty\n                else {\n                    continue\n                }\n                    \n                let name = (components.queryItems?.first { $0.name == \"name\" })?.value\n                switch (components.host, name) {\n                case (\"execute-action\", _):\n                    let action = (WindowAction.active.first { getUrlName($0.name) == name })\n                    action?.postUrl()\n                case (\"execute-task\", \"ignore-app\"):\n                    let bundleId = extractBundleIdParameter(fromComponents: components)\n                    guard isValidParameter(bundleId: bundleId) else { continue }\n                    self.applicationToggle.disableApp(appBundleId: bundleId)\n                case (\"execute-task\", \"unignore-app\"):\n                    let bundleId = extractBundleIdParameter(fromComponents: components)\n                    guard isValidParameter(bundleId: bundleId) else { continue }\n                    self.applicationToggle.enableApp(appBundleId: bundleId)\n                default:\n                    continue\n                }\n            }\n        }\n    }\n}\n\nextension AppDelegate: SPUStandardUserDriverDelegate {\n    \n    var supportsGentleScheduledUpdateReminders: Bool {\n        true\n    }\n\n    func standardUserDriverShouldHandleShowingScheduledUpdate(_ update: SUAppcastItem, andInImmediateFocus immediateFocus: Bool) -> Bool {\n        if immediateFocus {\n            return true\n        }\n        \n        self.hasPendingUpdate = true\n        updatesMenuItem.title = \"Update Available…\".localized\n        return false\n    }\n    \n    func standardUserDriverWillFinishUpdateSession() {\n        self.hasPendingUpdate = false\n        updatesMenuItem.title = \"Check for Updates…\".localized(key: \"HIK-3r-i7E.title\")\n    }\n}\n"
  },
  {
    "path": "Rectangle/AppIcon.icon/icon.json",
    "content": "{\n  \"color-space-for-untagged-svg-colors\" : \"display-p3\",\n  \"fill\" : {\n    \"linear-gradient\" : [\n      \"display-p3:0.36863,0.43529,0.50980,1.00000\",\n      \"srgb:0.24706,0.27451,0.33333,1.00000\"\n    ]\n  },\n  \"groups\" : [\n    {\n      \"blur-material\" : null,\n      \"layers\" : [\n        {\n          \"glass\" : true,\n          \"image-name\" : \"Dots.svg\",\n          \"name\" : \"Dots\"\n        }\n      ],\n      \"shadow\" : {\n        \"kind\" : \"none\",\n        \"opacity\" : 0.5\n      },\n      \"specular\" : true,\n      \"translucency\" : {\n        \"enabled\" : true,\n        \"value\" : 0.2\n      }\n    },\n    {\n      \"layers\" : [\n        {\n          \"fill-specializations\" : [\n            {\n              \"appearance\" : \"tinted\",\n              \"value\" : {\n                \"linear-gradient\" : [\n                  \"gray:0.90000,1.00000\",\n                  \"extended-gray:0.75000,1.00000\"\n                ]\n              }\n            }\n          ],\n          \"glass\" : true,\n          \"image-name\" : \"Overlay.svg\",\n          \"name\" : \"Overlay\"\n        }\n      ],\n      \"shadow\" : {\n        \"kind\" : \"layer-color\",\n        \"opacity\" : 0.5\n      },\n      \"translucency\" : {\n        \"enabled\" : true,\n        \"value\" : 0.5\n      }\n    }\n  ],\n  \"supported-platforms\" : {\n    \"squares\" : [\n      \"macOS\"\n    ]\n  }\n}"
  },
  {
    "path": "Rectangle/ApplicationToggle.swift",
    "content": "//\n//  ApplicationToggle.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 6/18/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Cocoa\n\nclass ApplicationToggle: NSObject {\n    \n    private var disabledApps = Set<String>()\n    public private(set) static var frontAppId: String? = \"com.knollsoft.Rectangle\"\n    public private(set) static var frontAppName: String? = \"Rectangle\"\n    public private(set) static var shortcutsDisabled: Bool = false\n\n    private let shortcutManager: ShortcutManager\n    \n    init(shortcutManager: ShortcutManager) {\n        self.shortcutManager = shortcutManager\n        super.init()\n        registerFrontAppChangeNote()\n        if let disabledApps = getDisabledApps() {\n            self.disabledApps = disabledApps\n        }\n    }\n    \n    public func reloadFromDefaults() {\n        if let disabledApps = getDisabledApps() {\n            self.disabledApps = disabledApps\n        } else {\n            disabledApps.removeAll()\n        }\n    }\n    \n    private func saveDisabledApps() {\n        let encoder = JSONEncoder()\n        if let jsonDisabledApps = try? encoder.encode(disabledApps) {\n            if let jsonString = String(data: jsonDisabledApps, encoding: .utf8) {\n                Defaults.disabledApps.value = jsonString\n            }\n        }\n    }\n    \n    private func getDisabledApps() ->  Set<String>? {\n        guard let jsonDisabledAppsString = Defaults.disabledApps.value else { return nil }\n        \n        let decoder = JSONDecoder()\n        guard let jsonDisabledApps = jsonDisabledAppsString.data(using: .utf8) else { return nil }\n        guard let disabledApps = try? decoder.decode(Set<String>.self, from: jsonDisabledApps) else { return nil }\n        \n        return disabledApps\n    }\n\n    private func disableShortcuts() {\n        if !Self.shortcutsDisabled {\n            Self.shortcutsDisabled = true\n            self.shortcutManager.unbindShortcuts()\n            if !Defaults.ignoreDragSnapToo.userDisabled {\n                Notification.Name.windowSnapping.post(object: false)\n            }\n        }\n    }\n    \n    private func enableShortcuts() {\n        if Self.shortcutsDisabled {\n            Self.shortcutsDisabled = false\n            self.shortcutManager.bindShortcuts()\n            if !Defaults.ignoreDragSnapToo.userDisabled {\n                Notification.Name.windowSnapping.post(object: true)\n            }\n        }\n    }\n\n    public func disableApp(appBundleId: String? = frontAppId) {\n        if let appBundleId {\n            disabledApps.insert(appBundleId)\n            saveDisabledApps()\n            disableShortcuts()\n        }\n    }\n    \n    public func enableApp(appBundleId: String? = frontAppId) {\n        if let appBundleId {\n            disabledApps.remove(appBundleId)\n            saveDisabledApps()\n            enableShortcuts()\n        }\n    }\n    \n    public func isDisabled(bundleId: String) -> Bool {\n        return disabledApps.contains(bundleId)\n    }\n    \n    private func registerFrontAppChangeNote() {\n        NSWorkspace.shared.notificationCenter.addObserver(self, selector: #selector(self.receiveFrontAppChangeNote(_:)), name: NSWorkspace.didActivateApplicationNotification, object: nil)\n    }\n    \n    @objc func receiveFrontAppChangeNote(_ notification: Notification) {\n        if let application = notification.userInfo?[\"NSWorkspaceApplicationKey\"] as? NSRunningApplication {\n            Self.frontAppId = application.bundleIdentifier\n            Self.frontAppName = application.localizedName\n            if let frontAppId = application.bundleIdentifier {\n                if isDisabled(bundleId: frontAppId) {\n                    disableShortcuts()\n                } else {\n                    enableShortcuts()\n                }\n                Notification.Name.frontAppChanged.post()\n            } else {\n                enableShortcuts()\n            }\n            if Defaults.enhancedUI.value == .frontmostDisable {\n                DispatchQueue.main.asyncAfter(deadline: .now() + .milliseconds(50)) {\n                    AccessibilityElement.getFrontApplicationElement()?.enhancedUserInterface = false\n                }\n            }\n        }\n    }\n}\n\n// todo mode\nextension ApplicationToggle {\n    public func setTodoApp() {\n        Defaults.todoApplication.value = Self.frontAppId\n    }\n\n    public func todoAppIsActive() -> Bool {\n        return Defaults.todoApplication.value == Self.frontAppId\n    }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/AppIcon.appiconset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"mac016pts1x.png\",\n      \"idiom\" : \"mac\",\n      \"scale\" : \"1x\",\n      \"size\" : \"16x16\"\n    },\n    {\n      \"filename\" : \"mac016pts2x.png\",\n      \"idiom\" : \"mac\",\n      \"scale\" : \"2x\",\n      \"size\" : \"16x16\"\n    },\n    {\n      \"filename\" : \"mac032pts1x.png\",\n      \"idiom\" : \"mac\",\n      \"scale\" : \"1x\",\n      \"size\" : \"32x32\"\n    },\n    {\n      \"filename\" : \"mac032pts2x.png\",\n      \"idiom\" : \"mac\",\n      \"scale\" : \"2x\",\n      \"size\" : \"32x32\"\n    },\n    {\n      \"filename\" : \"mac128pts1x.png\",\n      \"idiom\" : \"mac\",\n      \"scale\" : \"1x\",\n      \"size\" : \"128x128\"\n    },\n    {\n      \"filename\" : \"mac128pts2x.png\",\n      \"idiom\" : \"mac\",\n      \"scale\" : \"2x\",\n      \"size\" : \"128x128\"\n    },\n    {\n      \"filename\" : \"mac256pts1x.png\",\n      \"idiom\" : \"mac\",\n      \"scale\" : \"1x\",\n      \"size\" : \"256x256\"\n    },\n    {\n      \"filename\" : \"mac256pts2x.png\",\n      \"idiom\" : \"mac\",\n      \"scale\" : \"2x\",\n      \"size\" : \"256x256\"\n    },\n    {\n      \"filename\" : \"mac512pts1x.png\",\n      \"idiom\" : \"mac\",\n      \"scale\" : \"1x\",\n      \"size\" : \"512x512\"\n    },\n    {\n      \"filename\" : \"mac512pts2x.png\",\n      \"idiom\" : \"mac\",\n      \"scale\" : \"2x\",\n      \"size\" : \"512x512\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/Contents.json",
    "content": "{\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/StatusTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"RectangleStatusTemplate22.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"filename\" : \"RectangleStatusTemplate44.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"filename\" : \"RectangleStatusTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/Contents.json",
    "content": "{\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/almostMaximizeTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"almostMaximizeTemplate.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/blEighthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"blEighthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/bottomCenterLeftSixteenthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"bottomCenterLeftSixteenthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/bottomCenterLeftTwelfthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"bottomCenterLeftTwelfthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/bottomCenterNinthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"bottomCenterNinthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/bottomCenterRightSixteenthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"bottomCenterRightSixteenthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/bottomCenterRightTwelfthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"bottomCenterRightTwelfthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/bottomCenterSixthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"bottomCenterSixthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/bottomHalfTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"bottomHalfTemplate.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/bottomLeftNinthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"bottomLeftNinthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/bottomLeftSixteenthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"bottomLeftSixteenthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/bottomLeftSixthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"bottomLeftSixthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/bottomLeftTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"bottomLeftTemplate.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/bottomLeftTwelfthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"bottomLeftTwelfthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/bottomRightNinthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"bottomRightNinthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/bottomRightSixteenthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"bottomRightSixteenthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/bottomRightSixthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"bottomRightSixthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/bottomRightTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"bottomRightTemplate.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/bottomRightTwelfthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"bottomRightTwelfthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/bottomThirdTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"bottomThirdTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/bottomTwoThirdsTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"bottomTwoThirdsTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/brEighthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"brEighthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/cblEighthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"cblEighthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/cbrEighthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"cbrEighthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/centerLeftFourthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"centerLeftFourthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/centerRightFourthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"centerRightFourthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/centerTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"centerTemplate.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/centerThirdHorizontalTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"centerThirdTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/centerThirdTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"centerThirdTemplate.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/centerThreeFourthsTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"centerThreeFourthsTemplate.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/centerTwoThirdsTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"centerTwoThirdsTemplate.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/ctlEighthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"ctlEighthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/ctrEighthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"ctrEighthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/firstThirdTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"firstThirdTemplate.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/firstThreeFourthsTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"firstThreeFourthsTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/firstTwoThirdsTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"firstTwoThirdsTemplate.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/halfWidthCenterTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"halfWidthCenterTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/largerWidthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"largerWidthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/lastThirdTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"lastThirdTemplate.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/lastThreeFourthsTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"lastThreeFourthsTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/lastTwoThirdsTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"lastTwoThirdsTemplate.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/leftFourthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"leftFourthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/leftHalfTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"leftHalfTemplate.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/lowerMiddleCenterLeftSixteenthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"lowerMiddleCenterLeftSixteenthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/lowerMiddleCenterRightSixteenthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"lowerMiddleCenterRightSixteenthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/lowerMiddleLeftSixteenthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"lowerMiddleLeftSixteenthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/lowerMiddleRightSixteenthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"lowerMiddleRightSixteenthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/makeLargerTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"makeLargerTemplate.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/makeSmallerTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"makeSmallerTemplate.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/maximizeHeightTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"maximizeHeightTemplate.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/maximizeTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"maximizeTemplate.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/middleCenterLeftTwelfthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"middleCenterLeftTwelfthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/middleCenterNinthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"middleCenterNinthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/middleCenterRightTwelfthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"middleCenterRightTwelfthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/middleLeftNinthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"middleLeftNinthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/middleLeftTwelfthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"middleLeftTwelfthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/middleRightNinthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"middleRightNinthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/middleRightTwelfthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"middleRightTwelfthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/moveDownTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"moveDownTemplate.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/moveLeftTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"moveLeftTemplate.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/moveRightTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"moveRightTemplate.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/moveUpTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"moveUpTemplate.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/nextDisplayTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"nextDisplayTemplate.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/prevDisplayTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"prevDisplayTemplate.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/restoreTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"restoreTemplate.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/rightFourthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"rightFourthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/rightHalfTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"rightHalfTemplate.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/smallerWidthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"smallerWidthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/tlEighthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"tlEighthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/topCenterLeftSixteenthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"topCenterLeftSixteenthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/topCenterLeftTwelfthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"topCenterLeftTwelfthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/topCenterNinthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"topCenterNinthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/topCenterRightSixteenthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"topCenterRightSixteenthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/topCenterRightTwelfthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"topCenterRightTwelfthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/topCenterSixthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"topCenterSixthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/topHalfTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"topHalfTemplate.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/topLeftNinthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"topLeftNinthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/topLeftSixteenthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"topLeftSixteenthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/topLeftSixthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"topLeftSixthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/topLeftTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"topLeftTemplate.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/topLeftTwelfthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"topLeftTwelfthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/topRightNinthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"topRightNinthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/topRightSixteenthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"topRightSixteenthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/topRightSixthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"topRightSixthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/topRightTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"topRightTemplate.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/topRightTwelfthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"topRightTwelfthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/topThirdTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"topThirdTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/topTwoThirdsTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"topTwoThirdsTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/trEighthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"trEighthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/upperMiddleCenterLeftSixteenthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"upperMiddleCenterLeftSixteenthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/upperMiddleCenterRightSixteenthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"upperMiddleCenterRightSixteenthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/upperMiddleLeftSixteenthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"upperMiddleLeftSixteenthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/WindowPositions/upperMiddleRightSixteenthTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"upperMiddleRightSixteenthTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/keyboardToolbarTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"keyboardToolbarTemplateSmall.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"filename\" : \"keyboardToolbarTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/snapAreaTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"snapAreaTemplateSmall.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"filename\" : \"snapAreaTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/square.and.arrow.down.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"square.and.arrow.down.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  },\n  \"properties\" : {\n    \"template-rendering-intent\" : \"template\"\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/square.and.arrow.up.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"square.and.arrow.up.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  },\n  \"properties\" : {\n    \"template-rendering-intent\" : \"template\"\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/toolbarSettingsTemplate.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"toolbarSettingsTemplate copy.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"filename\" : \"toolbarSettingsTemplate.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/wallpaperTiger.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"wallpaperTiger.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Assets.xcassets/wallpaperTigerVertical.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"filename\" : \"wallpaperTigerVertical.png\",\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"author\" : \"xcode\",\n    \"version\" : 1\n  }\n}\n"
  },
  {
    "path": "Rectangle/Base.lproj/Main.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.Cocoa.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"24506\" targetRuntime=\"MacOSX.Cocoa\" propertyAccessControl=\"none\" useAutolayout=\"YES\">\n    <dependencies>\n        <deployment identifier=\"macosx\"/>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.CocoaPlugin\" version=\"24506\"/>\n        <capability name=\"documents saved in the Xcode 8 format\" minToolsVersion=\"8.0\"/>\n    </dependencies>\n    <scenes>\n        <!--Application-->\n        <scene sceneID=\"JPo-4y-FX3\">\n            <objects>\n                <application id=\"hnw-xV-0zn\" sceneMemberID=\"viewController\">\n                    <menu key=\"mainMenu\" title=\"Main Menu\" systemMenu=\"main\" id=\"AYu-sK-qS6\">\n                        <items>\n                            <menuItem title=\"Rectangle\" id=\"1Xt-HY-uBw\">\n                                <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                <menu key=\"submenu\" title=\"Rectangle\" systemMenu=\"apple\" id=\"uQy-DD-JDr\">\n                                    <items>\n                                        <menuItem title=\"About Rectangle\" id=\"5kV-Vb-QxS\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <connections>\n                                                <action selector=\"orderFrontStandardAboutPanel:\" target=\"Ady-hI-5gd\" id=\"Exp-CZ-Vem\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem isSeparatorItem=\"YES\" id=\"VOq-y0-SEH\"/>\n                                        <menuItem title=\"Preferences…\" keyEquivalent=\",\" id=\"BOF-NM-1cW\"/>\n                                        <menuItem isSeparatorItem=\"YES\" id=\"wFC-TO-SCJ\"/>\n                                        <menuItem title=\"Services\" id=\"NMo-om-nkz\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <menu key=\"submenu\" title=\"Services\" systemMenu=\"services\" id=\"hz9-B4-Xy5\"/>\n                                        </menuItem>\n                                        <menuItem isSeparatorItem=\"YES\" id=\"4je-JR-u6R\"/>\n                                        <menuItem title=\"Hide Rectangle\" keyEquivalent=\"h\" id=\"Olw-nP-bQN\">\n                                            <connections>\n                                                <action selector=\"hide:\" target=\"Ady-hI-5gd\" id=\"PnN-Uc-m68\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Hide Others\" keyEquivalent=\"h\" id=\"Vdr-fp-XzO\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\" option=\"YES\" command=\"YES\"/>\n                                            <connections>\n                                                <action selector=\"hideOtherApplications:\" target=\"Ady-hI-5gd\" id=\"VT4-aY-XCT\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Show All\" id=\"Kd2-mp-pUS\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <connections>\n                                                <action selector=\"unhideAllApplications:\" target=\"Ady-hI-5gd\" id=\"Dhg-Le-xox\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem isSeparatorItem=\"YES\" id=\"kCx-OE-vgT\"/>\n                                        <menuItem title=\"Quit Rectangle\" keyEquivalent=\"q\" id=\"4sb-4s-VLi\">\n                                            <connections>\n                                                <action selector=\"terminate:\" target=\"Ady-hI-5gd\" id=\"Te7-pn-YzF\"/>\n                                            </connections>\n                                        </menuItem>\n                                    </items>\n                                </menu>\n                            </menuItem>\n                            <menuItem title=\"File\" id=\"dMs-cI-mzQ\">\n                                <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                <menu key=\"submenu\" title=\"File\" id=\"bib-Uj-vzu\">\n                                    <items>\n                                        <menuItem title=\"New\" keyEquivalent=\"n\" id=\"Was-JA-tGl\">\n                                            <connections>\n                                                <action selector=\"newDocument:\" target=\"Ady-hI-5gd\" id=\"4Si-XN-c54\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Open…\" keyEquivalent=\"o\" id=\"IAo-SY-fd9\">\n                                            <connections>\n                                                <action selector=\"openDocument:\" target=\"Ady-hI-5gd\" id=\"bVn-NM-KNZ\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Close\" keyEquivalent=\"w\" id=\"DVo-aG-piG\">\n                                            <connections>\n                                                <action selector=\"performClose:\" target=\"Ady-hI-5gd\" id=\"HmO-Ls-i7Q\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Save…\" keyEquivalent=\"s\" id=\"pxx-59-PXV\">\n                                            <connections>\n                                                <action selector=\"saveDocument:\" target=\"Ady-hI-5gd\" id=\"teZ-XB-qJY\"/>\n                                            </connections>\n                                        </menuItem>\n                                    </items>\n                                </menu>\n                            </menuItem>\n                            <menuItem title=\"Edit\" id=\"5QF-Oa-p0T\">\n                                <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                <menu key=\"submenu\" title=\"Edit\" id=\"W48-6f-4Dl\">\n                                    <items>\n                                        <menuItem title=\"Undo\" keyEquivalent=\"z\" id=\"dRJ-4n-Yzg\">\n                                            <connections>\n                                                <action selector=\"undo:\" target=\"Ady-hI-5gd\" id=\"M6e-cu-g7V\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Redo\" keyEquivalent=\"Z\" id=\"6dh-zS-Vam\">\n                                            <connections>\n                                                <action selector=\"redo:\" target=\"Ady-hI-5gd\" id=\"oIA-Rs-6OD\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem isSeparatorItem=\"YES\" id=\"WRV-NI-Exz\"/>\n                                        <menuItem title=\"Cut\" keyEquivalent=\"x\" id=\"uRl-iY-unG\">\n                                            <connections>\n                                                <action selector=\"cut:\" target=\"Ady-hI-5gd\" id=\"YJe-68-I9s\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Copy\" keyEquivalent=\"c\" id=\"x3v-GG-iWU\">\n                                            <connections>\n                                                <action selector=\"copy:\" target=\"Ady-hI-5gd\" id=\"G1f-GL-Joy\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Paste\" keyEquivalent=\"v\" id=\"gVA-U4-sdL\">\n                                            <connections>\n                                                <action selector=\"paste:\" target=\"Ady-hI-5gd\" id=\"UvS-8e-Qdg\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Paste and Match Style\" keyEquivalent=\"V\" id=\"WeT-3V-zwk\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\" option=\"YES\" command=\"YES\"/>\n                                            <connections>\n                                                <action selector=\"pasteAsPlainText:\" target=\"Ady-hI-5gd\" id=\"cEh-KX-wJQ\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Delete\" id=\"pa3-QI-u2k\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <connections>\n                                                <action selector=\"delete:\" target=\"Ady-hI-5gd\" id=\"0Mk-Ml-PaM\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Select All\" keyEquivalent=\"a\" id=\"Ruw-6m-B2m\">\n                                            <connections>\n                                                <action selector=\"selectAll:\" target=\"Ady-hI-5gd\" id=\"VNm-Mi-diN\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem isSeparatorItem=\"YES\" id=\"uyl-h8-XO2\"/>\n                                        <menuItem title=\"Find\" id=\"4EN-yA-p0u\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <menu key=\"submenu\" title=\"Find\" id=\"1b7-l0-nxx\">\n                                                <items>\n                                                    <menuItem title=\"Find…\" tag=\"1\" keyEquivalent=\"f\" id=\"Xz5-n4-O0W\">\n                                                        <connections>\n                                                            <action selector=\"performFindPanelAction:\" target=\"Ady-hI-5gd\" id=\"cD7-Qs-BN4\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Find and Replace…\" tag=\"12\" keyEquivalent=\"f\" id=\"YEy-JH-Tfz\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\" option=\"YES\" command=\"YES\"/>\n                                                        <connections>\n                                                            <action selector=\"performFindPanelAction:\" target=\"Ady-hI-5gd\" id=\"WD3-Gg-5AJ\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Find Next\" tag=\"2\" keyEquivalent=\"g\" id=\"q09-fT-Sye\">\n                                                        <connections>\n                                                            <action selector=\"performFindPanelAction:\" target=\"Ady-hI-5gd\" id=\"NDo-RZ-v9R\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Find Previous\" tag=\"3\" keyEquivalent=\"G\" id=\"OwM-mh-QMV\">\n                                                        <connections>\n                                                            <action selector=\"performFindPanelAction:\" target=\"Ady-hI-5gd\" id=\"HOh-sY-3ay\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Use Selection for Find\" tag=\"7\" keyEquivalent=\"e\" id=\"buJ-ug-pKt\">\n                                                        <connections>\n                                                            <action selector=\"performFindPanelAction:\" target=\"Ady-hI-5gd\" id=\"U76-nv-p5D\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Jump to Selection\" keyEquivalent=\"j\" id=\"S0p-oC-mLd\">\n                                                        <connections>\n                                                            <action selector=\"centerSelectionInVisibleArea:\" target=\"Ady-hI-5gd\" id=\"IOG-6D-g5B\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                </items>\n                                            </menu>\n                                        </menuItem>\n                                    </items>\n                                </menu>\n                            </menuItem>\n                            <menuItem title=\"View\" id=\"H8h-7b-M4v\">\n                                <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                <menu key=\"submenu\" title=\"View\" id=\"HyV-fh-RgO\">\n                                    <items>\n                                        <menuItem title=\"Enter Full Screen\" keyEquivalent=\"f\" id=\"4J7-dP-txa\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\" control=\"YES\" command=\"YES\"/>\n                                            <connections>\n                                                <action selector=\"toggleFullScreen:\" target=\"Ady-hI-5gd\" id=\"dU3-MA-1Rq\"/>\n                                            </connections>\n                                        </menuItem>\n                                    </items>\n                                </menu>\n                            </menuItem>\n                            <menuItem title=\"Window\" id=\"aUF-d1-5bR\">\n                                <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                <menu key=\"submenu\" title=\"Window\" systemMenu=\"window\" id=\"Td7-aD-5lo\">\n                                    <items>\n                                        <menuItem title=\"Minimize\" keyEquivalent=\"m\" id=\"OY7-WF-poV\">\n                                            <connections>\n                                                <action selector=\"performMiniaturize:\" target=\"Ady-hI-5gd\" id=\"VwT-WD-YPe\"/>\n                                            </connections>\n                                        </menuItem>\n                                    </items>\n                                </menu>\n                            </menuItem>\n                            <menuItem title=\"Help\" id=\"wpr-3q-Mcd\">\n                                <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                <menu key=\"submenu\" title=\"Help\" systemMenu=\"help\" id=\"F2S-fz-NVQ\">\n                                    <items>\n                                        <menuItem title=\"Rectangle Help\" keyEquivalent=\"?\" id=\"FKE-Sm-Kum\">\n                                            <connections>\n                                                <action selector=\"showHelp:\" target=\"Ady-hI-5gd\" id=\"y7X-2Q-9no\"/>\n                                            </connections>\n                                        </menuItem>\n                                    </items>\n                                </menu>\n                            </menuItem>\n                        </items>\n                    </menu>\n                    <connections>\n                        <outlet property=\"delegate\" destination=\"Voe-Tx-rLC\" id=\"PrD-fu-P6m\"/>\n                    </connections>\n                </application>\n                <customObject id=\"Voe-Tx-rLC\" customClass=\"AppDelegate\" customModule=\"Rectangle\" customModuleProvider=\"target\">\n                    <connections>\n                        <outlet property=\"ignoreMenuItem\" destination=\"D99-0O-MB6\" id=\"iBN-Bc-ds7\"/>\n                        <outlet property=\"mainStatusMenu\" destination=\"6wc-Rn-2EG\" id=\"UWt-be-ZH1\"/>\n                        <outlet property=\"quitMenuItem\" destination=\"A66-A4-cGD\" id=\"Vul-Dd-RcH\"/>\n                        <outlet property=\"unauthorizedMenu\" destination=\"HZt-qn-3MK\" id=\"c4f-hw-GWr\"/>\n                        <outlet property=\"updatesMenuItem\" destination=\"HIK-3r-i7E\" id=\"UGJ-IC-qKI\"/>\n                        <outlet property=\"viewLoggingMenuItem\" destination=\"O8K-y6-bva\" id=\"31H-se-kyh\"/>\n                    </connections>\n                </customObject>\n                <customObject id=\"YLy-65-1bz\" customClass=\"NSFontManager\"/>\n                <customObject id=\"Ady-hI-5gd\" userLabel=\"First Responder\" customClass=\"NSResponder\" sceneMemberID=\"firstResponder\"/>\n                <menu id=\"6wc-Rn-2EG\">\n                    <items>\n                        <menuItem title=\"Ignore frontmost.app\" id=\"D99-0O-MB6\">\n                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                            <connections>\n                                <action selector=\"ignoreFrontMostApp:\" target=\"Voe-Tx-rLC\" id=\"CTQ-bh-luD\"/>\n                            </connections>\n                        </menuItem>\n                        <menuItem isSeparatorItem=\"YES\" id=\"hf9-TP-K3t\"/>\n                        <menuItem title=\"Settings…\" id=\"YRC-4a-xGg\">\n                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                            <connections>\n                                <action selector=\"openPreferences:\" target=\"Voe-Tx-rLC\" id=\"EgB-O8-H7c\"/>\n                            </connections>\n                        </menuItem>\n                        <menuItem title=\"About\" id=\"gFy-Zj-RGl\">\n                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                            <connections>\n                                <action selector=\"showAbout:\" target=\"Voe-Tx-rLC\" id=\"dGA-Fy-dtB\"/>\n                            </connections>\n                        </menuItem>\n                        <menuItem title=\"View Logging…\" alternate=\"YES\" id=\"O8K-y6-bva\">\n                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                            <connections>\n                                <action selector=\"viewLogging:\" target=\"Voe-Tx-rLC\" id=\"8cH-2P-yKC\"/>\n                            </connections>\n                        </menuItem>\n                        <menuItem title=\"Check for Updates…\" id=\"HIK-3r-i7E\">\n                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                            <connections>\n                                <action selector=\"checkForUpdates:\" target=\"Voe-Tx-rLC\" id=\"kWZ-ie-6y9\"/>\n                            </connections>\n                        </menuItem>\n                        <menuItem title=\"Quit Rectangle\" keyEquivalent=\"q\" id=\"A66-A4-cGD\">\n                            <connections>\n                                <action selector=\"terminate:\" target=\"hnw-xV-0zn\" id=\"M1a-kx-BJY\"/>\n                            </connections>\n                        </menuItem>\n                    </items>\n                </menu>\n                <menu id=\"HZt-qn-3MK\">\n                    <items>\n                        <menuItem title=\"Not Authorized to Control Your Computer\" id=\"cBj-76-2E7\">\n                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                        </menuItem>\n                        <menuItem title=\"Authorize…\" id=\"VIf-4h-MJW\">\n                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                            <connections>\n                                <action selector=\"authorizeAccessibility:\" target=\"Voe-Tx-rLC\" id=\"fFL-4P-f1a\"/>\n                            </connections>\n                        </menuItem>\n                        <menuItem isSeparatorItem=\"YES\" id=\"9x0-IB-BiQ\"/>\n                        <menuItem title=\"About\" id=\"jxe-nr-LDQ\">\n                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                            <connections>\n                                <action selector=\"orderFrontStandardAboutPanel:\" target=\"hnw-xV-0zn\" id=\"o6b-d0-Qt8\"/>\n                            </connections>\n                        </menuItem>\n                        <menuItem title=\"Quit Rectangle\" keyEquivalent=\"q\" id=\"yvN-PE-bxn\">\n                            <connections>\n                                <action selector=\"terminate:\" target=\"hnw-xV-0zn\" id=\"esy-Pm-oTg\"/>\n                            </connections>\n                        </menuItem>\n                    </items>\n                </menu>\n            </objects>\n            <point key=\"canvasLocation\" x=\"-168\" y=\"-75\"/>\n        </scene>\n        <!--Window Controller-->\n        <scene sceneID=\"9jZ-4I-Wps\">\n            <objects>\n                <windowController storyboardIdentifier=\"PrefsWindowController\" showSeguePresentationStyle=\"single\" id=\"fmq-Go-Xew\" sceneMemberID=\"viewController\">\n                    <window key=\"window\" title=\"Rectangle Settings\" allowsToolTipsWhenApplicationIsInactive=\"NO\" autorecalculatesKeyViewLoop=\"NO\" releasedWhenClosed=\"NO\" visibleAtLaunch=\"NO\" frameAutosaveName=\"\" animationBehavior=\"default\" titlebarAppearsTransparent=\"YES\" id=\"STb-JK-oB1\">\n                        <windowStyleMask key=\"styleMask\" titled=\"YES\" closable=\"YES\" miniaturizable=\"YES\"/>\n                        <rect key=\"contentRect\" x=\"245\" y=\"301\" width=\"433\" height=\"270\"/>\n                        <rect key=\"screenRect\" x=\"0.0\" y=\"0.0\" width=\"1680\" height=\"1025\"/>\n                        <connections>\n                            <outlet property=\"delegate\" destination=\"fmq-Go-Xew\" id=\"Jj5-zM-epV\"/>\n                        </connections>\n                    </window>\n                    <connections>\n                        <segue destination=\"5pc-CV-2b9\" kind=\"relationship\" relationship=\"window.shadowedContentViewController\" id=\"94P-kM-qwg\"/>\n                    </connections>\n                </windowController>\n                <customObject id=\"jE6-FX-lql\" userLabel=\"First Responder\" customClass=\"NSResponder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"-204\" y=\"230\"/>\n        </scene>\n        <!--Prefs View Controller-->\n        <scene sceneID=\"vcH-Iu-BJm\">\n            <objects>\n                <viewController storyboardIdentifier=\"PrefsViewController\" showSeguePresentationStyle=\"single\" id=\"zlF-FD-XEr\" customClass=\"PrefsViewController\" customModule=\"Rectangle\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" id=\"8J7-VI-pmF\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"850\" height=\"686\"/>\n                        <autoresizingMask key=\"autoresizingMask\"/>\n                        <subviews>\n                            <stackView distribution=\"equalCentering\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"0.0\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"zal-I3-aOt\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"850\" height=\"686\"/>\n                                <subviews>\n                                    <stackView distribution=\"fill\" orientation=\"vertical\" alignment=\"leading\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" horizontalHuggingPriority=\"251\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"CSq-gR-vah\">\n                                        <rect key=\"frame\" x=\"59\" y=\"20\" width=\"733\" height=\"646\"/>\n                                        <subviews>\n                                            <stackView distribution=\"fillEqually\" orientation=\"horizontal\" alignment=\"top\" spacing=\"43\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Qhf-Xx-S0m\">\n                                                <rect key=\"frame\" x=\"0.0\" y=\"389\" width=\"733\" height=\"257\"/>\n                                                <subviews>\n                                                    <stackView distribution=\"fill\" orientation=\"vertical\" alignment=\"trailing\" spacing=\"9\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"gt6-OD-H04\">\n                                                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"345\" height=\"257\"/>\n                                                        <subviews>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"6dl-2T-B9P\">\n                                                                <rect key=\"frame\" x=\"86\" y=\"238\" width=\"259\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"ce1-6G-Nkf\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"81\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"oac-MY-1n1\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"56\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" title=\"Left Half\" id=\"Xc8-Sm-pig\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"FMg-QE-c8c\">\n                                                                                <rect key=\"frame\" x=\"60\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"grA-Oc-QdZ\"/>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"slt-a4-LiJ\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"leftHalfTemplate\" id=\"niV-VO-dFO\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"bGP-y9-ToI\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"99\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"HHy-nL-j7h\"/>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"g6q-pY-eGi\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"hzQ-m9-MoW\">\n                                                                <rect key=\"frame\" x=\"78\" y=\"210\" width=\"267\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"MN2-Yv-nag\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"89\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"daG-bl-Dca\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"64\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" title=\"Right Half\" id=\"F8S-GI-LiB\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"qQH-OG-nFg\">\n                                                                                <rect key=\"frame\" x=\"68\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"Hqn-G9-Fhg\"/>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"cMo-S4-1Xr\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"rightHalfTemplate\" id=\"jFw-PK-jEa\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"DJc-yE-qoJ\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"107\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"gbX-O0-CQo\"/>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"k1S-LY-sDu\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"mCe-iK-xay\">\n                                                                <rect key=\"frame\" x=\"69\" y=\"182\" width=\"276\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"OYx-6S-b7J\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"98\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"3T8-Nh-bKb\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"73\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Center Half\" id=\"bRX-dV-iAR\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"zuU-r6-8ZI\">\n                                                                                <rect key=\"frame\" x=\"77\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"VfN-dW-VyH\"/>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"wdM-Aa-wbu\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"halfWidthCenterTemplate\" id=\"Nlm-wE-Ala\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"3Pa-H7-x3u\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"116\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"Dx5-7f-weD\"/>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"egB-px-g2J\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"UZI-sV-QY7\">\n                                                                <rect key=\"frame\" x=\"87\" y=\"154\" width=\"258\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Us6-9p-1W0\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"80\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"j1Z-dN-QdR\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"55\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Top Half\" id=\"d7y-s8-7GE\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"ije-LR-mK5\">\n                                                                                <rect key=\"frame\" x=\"59\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"B86-qt-NA5\"/>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"PfA-94-kot\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"topHalfTemplate\" id=\"hLe-BD-DS8\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"ppH-ve-v6N\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"98\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"CYP-H5-scH\"/>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"m73-1c-QCb\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <constraints>\n                                                                    <constraint firstAttribute=\"height\" constant=\"19\" id=\"eyI-8P-Cor\"/>\n                                                                </constraints>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"mG2-Ie-LGc\">\n                                                                <rect key=\"frame\" x=\"65\" y=\"126\" width=\"280\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"bJh-ua-m5c\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"102\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"xwW-KA-j8t\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"77\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Bottom Half\" id=\"ec4-FB-fMa\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"a2i-42-WyD\">\n                                                                                <rect key=\"frame\" x=\"81\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"NNa-bt-h3b\"/>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"tEt-B4-ThP\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"bottomHalfTemplate\" id=\"rhq-RH-9Dx\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"EhR-CV-u8d\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"120\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"QPA-YK-9mN\"/>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"eTK-wh-TKh\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <constraints>\n                                                                    <constraint firstAttribute=\"height\" constant=\"19\" id=\"IIv-mh-mPl\"/>\n                                                                </constraints>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"vertical\" alignment=\"leading\" spacing=\"0.0\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"12W-gY-FHp\">\n                                                                <rect key=\"frame\" x=\"21\" y=\"112\" width=\"324\" height=\"5\"/>\n                                                                <constraints>\n                                                                    <constraint firstAttribute=\"height\" constant=\"5\" id=\"lTi-x2-WTD\"/>\n                                                                    <constraint firstAttribute=\"width\" priority=\"750\" constant=\"324\" id=\"xZH-Ps-oFE\"/>\n                                                                </constraints>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"xSC-UJ-fXz\">\n                                                                <rect key=\"frame\" x=\"88\" y=\"84\" width=\"257\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"2uc-Nz-b1g\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"79\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"HKQ-k8-IOz\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"54\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Top Left\" id=\"adp-cN-qkh\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"KwF-pH-4ai\">\n                                                                                <rect key=\"frame\" x=\"58\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"LUw-sU-CUy\"/>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"y9f-o3-9cn\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"topLeftTemplate\" id=\"vqt-7b-pdJ\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"XIn-7Q-Fuy\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"97\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"L6q-We-uRa\"/>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"XcC-xK-4Ve\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <constraints>\n                                                                    <constraint firstAttribute=\"height\" constant=\"19\" id=\"JNW-qU-mwE\"/>\n                                                                </constraints>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"hng-5H-ol0\">\n                                                                <rect key=\"frame\" x=\"80\" y=\"56\" width=\"265\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"hDT-ZP-q5C\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"87\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"ZHg-2r-X9K\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"62\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Top Right\" id=\"0Ak-33-SM7\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"H9u-70-HWQ\">\n                                                                                <rect key=\"frame\" x=\"66\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"6PM-sF-9Sv\"/>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"QaT-Lr-c0r\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"topRightTemplate\" id=\"dgI-LE-ah9\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"OgW-L0-nuS\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"105\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"FKY-cN-MnA\"/>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"OIf-0U-mLf\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <constraints>\n                                                                    <constraint firstAttribute=\"height\" constant=\"19\" id=\"2KF-NP-6dZ\"/>\n                                                                </constraints>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"vdR-hP-Tpn\">\n                                                                <rect key=\"frame\" x=\"66\" y=\"28\" width=\"279\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"xfy-3f-KPI\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"101\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"QBW-Z2-1Xz\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"76\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Bottom Left\" id=\"6ma-hP-5xX\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"lO4-Ug-roG\">\n                                                                                <rect key=\"frame\" x=\"80\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"NHJ-m0-4TR\"/>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"tpg-zl-W32\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"bottomLeftTemplate\" id=\"0lM-zf-6x0\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"whf-FK-Ywl\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"119\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"V1a-Mu-hJH\"/>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"f0u-D0-4GA\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <constraints>\n                                                                    <constraint firstAttribute=\"height\" constant=\"19\" id=\"Ssy-WQ-uAG\"/>\n                                                                </constraints>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"0dG-4f-nfF\">\n                                                                <rect key=\"frame\" x=\"58\" y=\"0.0\" width=\"287\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"quG-Lk-ueq\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"109\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"EHe-Oa-YEU\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"84\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Bottom Right\" id=\"J6t-sg-Wwz\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"RIa-GH-YY4\">\n                                                                                <rect key=\"frame\" x=\"88\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"VWC-SH-dZi\"/>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"yMA-FS-FIG\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"bottomRightTemplate\" id=\"G0E-dj-TgB\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"wi5-BQ-zY2\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"127\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"PXT-Bz-cXI\"/>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"w18-Io-DBZ\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <constraints>\n                                                                    <constraint firstAttribute=\"height\" constant=\"19\" id=\"ddL-Ea-Wi5\"/>\n                                                                </constraints>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                        </subviews>\n                                                        <visibilityPriorities>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                        </visibilityPriorities>\n                                                        <customSpacing>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                        </customSpacing>\n                                                    </stackView>\n                                                    <stackView distribution=\"fill\" orientation=\"vertical\" alignment=\"trailing\" spacing=\"9\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"wDN-pM-8lR\">\n                                                        <rect key=\"frame\" x=\"388\" y=\"0.0\" width=\"345\" height=\"257\"/>\n                                                        <subviews>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"0Hd-CT-TxW\">\n                                                                <rect key=\"frame\" x=\"81\" y=\"238\" width=\"264\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"TGC-hg-6yl\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"86\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"71y-S7-PEN\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"61\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Maximize\" id=\"8oe-J2-oUU\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"uM1-5q-snm\">\n                                                                                <rect key=\"frame\" x=\"65\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"3Sc-bP-vld\"/>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"h1l-Kt-UdK\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"maximizeTemplate\" id=\"3KL-eU-jJz\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"SqN-WJ-u3L\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"104\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"YVB-GF-OOD\"/>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"dJV-Q8-tpg\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"rVb-UL-NJE\">\n                                                                <rect key=\"frame\" x=\"35\" y=\"210\" width=\"310\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"PRu-9D-G3q\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"132\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"O5c-1u-Brt\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"107\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Almost Maximize\" id=\"e57-QJ-6bL\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"9SE-7f-5jR\">\n                                                                                <rect key=\"frame\" x=\"111\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"Ejy-cH-6zA\"/>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"fru-qY-qkZ\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"almostMaximizeTemplate\" id=\"poR-JF-MPO\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"WOL-Ei-P6G\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"150\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"69s-IR-1dm\"/>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"DuK-8e-vpE\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"aRK-l3-f6q\">\n                                                                <rect key=\"frame\" x=\"37\" y=\"182\" width=\"308\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"BVf-QY-tqC\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"130\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"G6i-Or-FfE\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"105\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Maximize Height\" id=\"6DV-cd-fda\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Gcs-tm-d0H\">\n                                                                                <rect key=\"frame\" x=\"109\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"V6c-5v-dFG\"/>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"gF3-QM-XQb\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"maximizeHeightTemplate\" id=\"pVz-ei-jjB\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"0L5-5g-6s0\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"148\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"oPS-P2-srV\"/>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"sjg-BQ-gdh\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"nLL-Xs-VHA\">\n                                                                <rect key=\"frame\" x=\"56\" y=\"154\" width=\"289\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"E6f-24-Eit\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"111\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"QmV-Ew-OQp\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"86\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Make Smaller\" id=\"MzN-CJ-ASD\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"RyQ-wp-8vL\">\n                                                                                <rect key=\"frame\" x=\"90\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"BrG-bg-nVi\"/>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"DbI-qY-r5b\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"makeSmallerTemplate\" id=\"o8n-3u-an7\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"yrl-Hc-jn1\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"129\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"31I-cC-V5H\"/>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"Jmu-H8-S0o\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"POP-uw-KpE\">\n                                                                <rect key=\"frame\" x=\"62\" y=\"126\" width=\"283\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"br5-Mn-jM0\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"105\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"uM4-fm-qWP\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"80\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Make Larger\" id=\"Eah-KL-kbn\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"twe-Dq-kbl\">\n                                                                                <rect key=\"frame\" x=\"84\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"7cQ-Xo-2uP\"/>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"KNq-Vt-Dzk\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"makeLargerTemplate\" id=\"bvX-en-6rj\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Oab-Yb-TxI\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"123\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"O6Q-LT-YZV\"/>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"ffI-fE-1vD\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"qPO-Zc-MBX\">\n                                                                <rect key=\"frame\" x=\"97\" y=\"98\" width=\"248\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Mo5-WX-MxB\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"70\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"vFY-Bb-fYR\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"45\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Center\" id=\"8Bg-SZ-hDO\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"ebk-0j-d08\">\n                                                                                <rect key=\"frame\" x=\"49\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"6xm-3M-OJ8\"/>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"jLm-eM-4bz\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"centerTemplate\" id=\"kAS-SN-5Gz\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"WrB-f6-rnc\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"88\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"7rp-wt-YNO\"/>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"zCg-t7-Cdi\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"G0A-5v-FZT\">\n                                                                <rect key=\"frame\" x=\"91\" y=\"70\" width=\"254\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"KIs-zp-YfP\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"76\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"DVN-Fh-ZlH\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"51\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Restore\" id=\"C9v-g0-DH8\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"pZc-Z9-K4a\">\n                                                                                <rect key=\"frame\" x=\"55\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"7w4-uF-F69\"/>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"wd7-yu-qJQ\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"restoreTemplate\" id=\"Wa4-eX-gne\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"lej-Pz-wb0\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"94\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"fkn-Kg-zlU\"/>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"pnl-cI-uM2\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"vertical\" alignment=\"leading\" spacing=\"0.0\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Dqh-Mk-l24\">\n                                                                <rect key=\"frame\" x=\"0.0\" y=\"56\" width=\"345\" height=\"5\"/>\n                                                                <constraints>\n                                                                    <constraint firstAttribute=\"width\" priority=\"750\" constant=\"345\" id=\"Mab-5D-Ck3\"/>\n                                                                    <constraint firstAttribute=\"height\" constant=\"5\" id=\"Y0S-8q-of8\"/>\n                                                                </constraints>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"NYl-g1-gHO\">\n                                                                <rect key=\"frame\" x=\"62\" y=\"28\" width=\"283\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"W7V-QT-NjF\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"105\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Ieo-Xi-OPd\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"80\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Next Display\" id=\"Jnd-Lc-nlh\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"cWJ-sy-CVQ\">\n                                                                                <rect key=\"frame\" x=\"84\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"0ga-Ge-NU0\"/>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"mM8-ag-JiV\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"nextDisplayTemplate\" id=\"fwr-lX-ahw\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Omo-F2-B0I\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"123\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"Ftc-bL-dER\"/>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"PnY-87-ZpF\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"NWy-gq-tX3\">\n                                                                <rect key=\"frame\" x=\"38\" y=\"0.0\" width=\"307\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"C8I-tj-Qx4\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"129\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"HXv-c3-Qyj\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"104\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Previous Display\" id=\"QwF-QN-YH7\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"QRu-od-YFu\">\n                                                                                <rect key=\"frame\" x=\"108\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"OAI-tm-dPx\"/>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"wy0-ee-3TC\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"prevDisplayTemplate\" id=\"xHS-dq-fxB\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"daM-hW-c6u\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"147\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"LcG-CM-Hse\"/>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"vtL-IH-WLh\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                        </subviews>\n                                                        <visibilityPriorities>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                        </visibilityPriorities>\n                                                        <customSpacing>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                        </customSpacing>\n                                                    </stackView>\n                                                </subviews>\n                                                <visibilityPriorities>\n                                                    <integer value=\"1000\"/>\n                                                    <integer value=\"1000\"/>\n                                                </visibilityPriorities>\n                                                <customSpacing>\n                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                </customSpacing>\n                                            </stackView>\n                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"10\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"gmc-Bu-ioG\">\n                                                <rect key=\"frame\" x=\"0.0\" y=\"349\" width=\"137\" height=\"32\"/>\n                                                <subviews>\n                                                    <button focusRingType=\"none\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"WPl-J4-Y8A\">\n                                                        <rect key=\"frame\" x=\"0.0\" y=\"8\" width=\"31\" height=\"16\"/>\n                                                        <buttonCell key=\"cell\" type=\"bevel\" title=\"▶︎ ⋯\" bezelStyle=\"rounded\" imagePosition=\"right\" alignment=\"center\" focusRingType=\"none\" imageScaling=\"proportionallyDown\" inset=\"2\" id=\"MKW-qf-Q2C\">\n                                                            <behavior key=\"behavior\" pushIn=\"YES\" lightByBackground=\"YES\" lightByGray=\"YES\"/>\n                                                            <font key=\"font\" metaFont=\"system\"/>\n                                                        </buttonCell>\n                                                        <connections>\n                                                            <action selector=\"toggleShowMore:\" target=\"zlF-FD-XEr\" id=\"sGL-ip-4gD\"/>\n                                                        </connections>\n                                                    </button>\n                                                    <box verticalHuggingPriority=\"750\" boxType=\"separator\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"rsX-Dg-tQM\">\n                                                        <rect key=\"frame\" x=\"41\" y=\"14\" width=\"96\" height=\"5\"/>\n                                                    </box>\n                                                </subviews>\n                                                <constraints>\n                                                    <constraint firstAttribute=\"height\" constant=\"32\" id=\"p6Q-mT-cam\"/>\n                                                </constraints>\n                                                <visibilityPriorities>\n                                                    <integer value=\"1000\"/>\n                                                    <integer value=\"1000\"/>\n                                                </visibilityPriorities>\n                                                <customSpacing>\n                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                </customSpacing>\n                                            </stackView>\n                                            <stackView distribution=\"fillEqually\" orientation=\"horizontal\" alignment=\"top\" spacing=\"43\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"tCC-xX-WUq\">\n                                                <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"733\" height=\"341\"/>\n                                                <subviews>\n                                                    <stackView distribution=\"fill\" orientation=\"vertical\" alignment=\"trailing\" spacing=\"9\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"su2-sR-KVz\">\n                                                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"345\" height=\"341\"/>\n                                                        <subviews>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"GgD-be-blq\">\n                                                                <rect key=\"frame\" x=\"76\" y=\"322\" width=\"269\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"zjW-UX-cpn\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"91\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"ujE-rY-lCg\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"66\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"First Third\" id=\"F12-EV-Lfz\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"8dZ-LA-26W\">\n                                                                                <rect key=\"frame\" x=\"70\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"KRT-mh-Hr3\"/>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"rzA-BI-soR\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"firstThirdTemplate\" id=\"M2U-HR-bFU\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"I3d-KP-y1J\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"109\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"6Q8-54-QyQ\"/>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"fHF-nY-MLc\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"yo8-YB-lLj\">\n                                                                <rect key=\"frame\" x=\"62\" y=\"294\" width=\"283\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"yxe-q4-7yW\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"105\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"DDI-Yz-vr6\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"80\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Center Third\" id=\"7YK-9Z-lzw\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"iA4-0O-O4R\">\n                                                                                <rect key=\"frame\" x=\"84\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"1Gm-Iu-vLj\"/>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"7Kg-nE-mW2\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"centerThirdTemplate\" id=\"Dge-ND-6Mv\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"G13-Q4-CV6\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"123\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"4xq-rG-nKr\"/>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"N44-iI-kwW\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"y0y-Y6-G9U\">\n                                                                <rect key=\"frame\" x=\"77\" y=\"266\" width=\"268\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"02U-1U-ZNS\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"90\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"bod-Jy-fPb\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"65\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Last Third\" id=\"cRm-wn-Yv6\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"RIa-pX-3Rh\">\n                                                                                <rect key=\"frame\" x=\"69\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"nGD-UE-sXi\"/>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"s2F-kc-t4U\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"lastThirdTemplate\" id=\"QSd-aI-wsp\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"MYy-5x-boe\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"108\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"3I7-hv-MZL\"/>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"pgs-rz-DzD\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"kgg-z8-TD6\">\n                                                                <rect key=\"frame\" x=\"41\" y=\"238\" width=\"304\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"xcG-kM-Fl9\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"126\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"dRO-bH-qbF\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"101\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"First Two Thirds\" id=\"3zd-xE-oWl\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"gs2-vc-CpO\">\n                                                                                <rect key=\"frame\" x=\"105\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"Zf3-LJ-GpE\"/>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"wds-eL-dTs\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"firstTwoThirdsTemplate\" id=\"lnz-XV-o1b\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"cLa-f6-RSt\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"144\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"F1y-fr-HRS\"/>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"kBw-oI-aC7\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"5XV-ET-OAJ\">\n                                                                <rect key=\"frame\" x=\"27\" y=\"210\" width=\"318\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"OMw-oC-rpV\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"140\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"x2y-4e-IJg\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"115\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Center Two Thirds\" id=\"oSu-n4-8Yu\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"6DM-vj-fuO\">\n                                                                                <rect key=\"frame\" x=\"119\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"Xnd-Jm-j2U\"/>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"txp-fV-xXr\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" animates=\"YES\" imageScaling=\"proportionallyDown\" image=\"centerTwoThirdsTemplate\" id=\"Wtm-FX-2sx\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"mbU-By-HWo\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"158\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"U50-do-4GY\"/>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"z6m-Si-tJf\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"ZEb-ZE-AIt\">\n                                                                <rect key=\"frame\" x=\"42\" y=\"182\" width=\"303\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Osf-zT-z4q\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"125\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"EGh-4z-I6I\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"100\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Last Two Thirds\" id=\"08q-Ce-1QL\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"xd2-iN-nQ4\">\n                                                                                <rect key=\"frame\" x=\"104\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"M48-KC-wbp\"/>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"QUI-lg-fzW\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"lastTwoThirdsTemplate\" id=\"8wD-93-SJy\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"7Km-ay-hPl\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"143\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"dfA-2A-xPS\"/>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"jeR-9I-8MC\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"vertical\" alignment=\"leading\" spacing=\"0.0\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"LJS-uP-vY4\">\n                                                                <rect key=\"frame\" x=\"163\" y=\"168\" width=\"182\" height=\"5\"/>\n                                                                <constraints>\n                                                                    <constraint firstAttribute=\"height\" constant=\"5\" id=\"DyY-7Z-OcE\"/>\n                                                                    <constraint firstAttribute=\"width\" constant=\"182\" id=\"Ebg-dJ-tCZ\"/>\n                                                                </constraints>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"HKo-Do-YBz\">\n                                                                <rect key=\"frame\" x=\"54\" y=\"140\" width=\"291\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"JfE-ts-ccs\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"113\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"fbO-14-Gb6\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"88\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Top Left Sixth\" id=\"mFt-Kg-UYG\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"eRi-B2-mbJ\">\n                                                                                <rect key=\"frame\" x=\"92\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"LQI-mW-MUg\"/>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"ZNQ-n2-w2q\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"topLeftSixthTemplate\" id=\"ibz-h8-iZ4\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"lMl-Xc-93q\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"131\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"8Qv-7d-U7a\"/>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"nJE-XP-0yj\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"H75-04-DG2\">\n                                                                <rect key=\"frame\" x=\"37\" y=\"112\" width=\"308\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"DW4-7K-gmf\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"130\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"iJf-Tt-905\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"105\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Top Center Sixth\" id=\"TTx-7X-Wie\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"cft-9i-Lyw\">\n                                                                                <rect key=\"frame\" x=\"109\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"MAf-aB-wvF\"/>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"k20-ZJ-7tG\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"topCenterSixthTemplate\" id=\"0Uo-4L-GKO\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"qlu-3c-eH6\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"148\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"hPL-RB-OWH\"/>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"jsS-9U-ElF\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"we8-NI-xRq\">\n                                                                <rect key=\"frame\" x=\"46\" y=\"84\" width=\"299\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"iWv-FN-2KZ\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"121\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"3kT-9Z-Px1\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"96\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Top Right Sixth\" id=\"f3Q-q7-Pcy\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"bHF-5w-us6\">\n                                                                                <rect key=\"frame\" x=\"100\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"jiE-jB-vH3\"/>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"m51-Sd-XQb\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"topRightSixthTemplate\" id=\"Jeq-ru-BtC\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"kbl-TR-waH\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"139\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"kzJ-Rz-vkN\"/>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"x31-NN-kGZ\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"IAt-Kk-UZl\">\n                                                                <rect key=\"frame\" x=\"32\" y=\"56\" width=\"313\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"4R2-AE-zlQ\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"135\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"eGz-TZ-Y0q\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"110\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Bottom Left Sixth\" id=\"LqQ-pM-jRN\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"YB5-Te-1yi\">\n                                                                                <rect key=\"frame\" x=\"114\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"V16-Pa-iii\"/>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"qLE-Pd-Pxk\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"bottomLeftSixthTemplate\" id=\"eqo-8j-Vca\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"i2i-uH-Bdw\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"153\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"4j2-q3-PeM\"/>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"ZdA-Ec-7uk\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"gSs-dt-vff\">\n                                                                <rect key=\"frame\" x=\"15\" y=\"28\" width=\"330\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"xmk-zw-BkR\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"152\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"kzS-bR-69J\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"127\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Bottom Center Sixth\" id=\"iOQ-1e-esP\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"4F5-Ko-f4D\">\n                                                                                <rect key=\"frame\" x=\"131\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"7Vo-H0-Eb0\"/>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"Zi5-9v-ldN\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"bottomCenterSixthTemplate\" id=\"yZL-f3-0e7\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"N5I-c3-Pld\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"170\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"82q-LC-64Z\"/>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"rOm-BC-FVd\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"fs7-bL-08k\">\n                                                                <rect key=\"frame\" x=\"24\" y=\"0.0\" width=\"321\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"aDV-lR-D1V\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"143\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"udM-US-yWD\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"118\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Bottom Right Sixth\" id=\"m2F-eA-g7w\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"unP-Ed-ePm\">\n                                                                                <rect key=\"frame\" x=\"122\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"Drh-Aa-fad\"/>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"qIi-aT-sSx\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"bottomRightSixthTemplate\" id=\"7Gj-FO-b8g\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"yRx-4l-5cf\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"161\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"GFc-9O-1CK\"/>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"MTR-Zl-J0c\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                        </subviews>\n                                                        <visibilityPriorities>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                        </visibilityPriorities>\n                                                        <customSpacing>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                        </customSpacing>\n                                                    </stackView>\n                                                    <stackView distribution=\"fill\" orientation=\"vertical\" alignment=\"trailing\" spacing=\"9\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Er7-tt-cBg\">\n                                                        <rect key=\"frame\" x=\"388\" y=\"28\" width=\"345\" height=\"313\"/>\n                                                        <subviews>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"i0F-hL-EAL\">\n                                                                <rect key=\"frame\" x=\"68\" y=\"294\" width=\"277\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"FlD-9W-LFa\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"99\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"faB-Wl-vsg\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"74\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"First Fourth\" id=\"Q6Q-6J-okH\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"5XU-Wr-xuR\">\n                                                                                <rect key=\"frame\" x=\"78\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"FbO-ZR-GR2\"/>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"QWv-MW-xrN\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"leftFourthTemplate\" id=\"FaX-hr-0Hm\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"UH9-8R-0Vx\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"117\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"c0m-1n-nyI\"/>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"dID-4o-7fK\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"ZOe-3P-5oG\">\n                                                                <rect key=\"frame\" x=\"48\" y=\"266\" width=\"297\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"DiQ-1C-qFw\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"119\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"04O-aU-LP0\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"94\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Second Fourth\" id=\"Fko-xs-gN5\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Tg2-Aw-EuH\">\n                                                                                <rect key=\"frame\" x=\"98\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"Idr-FQ-dFC\"/>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"m6z-eN-0xN\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"centerLeftFourthTemplate\" id=\"7dg-xK-wWw\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"K1S-Mg-vfI\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"137\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"FTR-Z9-HX5\"/>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"aeI-mH-hyO\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"bWz-EP-mWR\">\n                                                                <rect key=\"frame\" x=\"63\" y=\"238\" width=\"282\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Bxo-Le-75Q\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"104\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Goa-cw-5IL\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"79\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Third Fourth\" id=\"ZTK-rS-b17\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"FTU-yB-T2z\">\n                                                                                <rect key=\"frame\" x=\"83\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"L2K-1v-X47\"/>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"kW3-7U-LWl\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"centerRightFourthTemplate\" id=\"MJE-qY-C1r\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"OmC-pU-vQt\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"122\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"ViF-zj-jhZ\"/>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"vEX-QX-yLU\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"svP-4y-qQI\">\n                                                                <rect key=\"frame\" x=\"69\" y=\"210\" width=\"276\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"A5V-nW-fPz\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"98\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"pAS-zA-VWv\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"73\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Last Fourth\" id=\"6HX-rn-VIp\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"WWT-hu-i8g\">\n                                                                                <rect key=\"frame\" x=\"77\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"eDS-dr-LMO\"/>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"py3-jZ-ifs\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"rightFourthTemplate\" id=\"07y-KG-PIP\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Icr-hA-oP5\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"116\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"1Gv-IT-pLU\"/>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"Y8d-XZ-1YL\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"rom-Em-VtW\">\n                                                                <rect key=\"frame\" x=\"22\" y=\"182\" width=\"323\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"l0o-F2-Bkj\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"145\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"kcf-dX-QpK\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"120\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"First Three Fourths\" id=\"T9Z-QF-gwc\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"MWZ-av-t6O\">\n                                                                                <rect key=\"frame\" x=\"124\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"GFA-RA-cvF\"/>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"aOL-3Y-SYb\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"firstThreeFourthsTemplate\" id=\"KdF-lb-kf6\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"bRp-d2-DdY\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"163\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"Byj-tv-JLA\"/>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"ff2-JI-gwb\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"RTL-Lf-pxg\">\n                                                                <rect key=\"frame\" x=\"8\" y=\"154\" width=\"337\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"KbN-HH-QRL\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"159\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"b1A-Rl-cZn\" userLabel=\"Center Three Fourths\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"134\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Center Three Fourths\" id=\"Vph-Z0-euH\" userLabel=\"Center Three Fourths\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"ZTZ-uO-WK1\">\n                                                                                <rect key=\"frame\" x=\"138\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"hmp-wd-HWx\"/>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"zah-sL-dIG\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" animates=\"YES\" imageScaling=\"proportionallyDown\" image=\"centerThreeFourthsTemplate\" id=\"asR-BU-4i3\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"FRg-7N-byF\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"177\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"6RS-s3-tH8\"/>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"l9X-hM-sKT\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"tdu-Q7-TBH\">\n                                                                <rect key=\"frame\" x=\"23\" y=\"126\" width=\"322\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"8EJ-X1-sk8\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"144\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"8sG-F8-9JB\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"119\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Last Three Fourths\" id=\"nwX-h6-fwm\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"o7Z-0e-T42\">\n                                                                                <rect key=\"frame\" x=\"123\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"FMc-HT-sGO\"/>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"w1q-HW-qa7\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"lastThreeFourthsTemplate\" id=\"VkO-5k-P6A\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"54r-uU-1LO\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"162\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"Ocm-Nc-eBI\"/>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"q89-dZ-GEo\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"vertical\" alignment=\"leading\" spacing=\"0.0\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"4Mt-E4-Qzu\">\n                                                                <rect key=\"frame\" x=\"163\" y=\"112\" width=\"182\" height=\"5\"/>\n                                                                <constraints>\n                                                                    <constraint firstAttribute=\"width\" constant=\"182\" id=\"PP3-in-sf8\"/>\n                                                                    <constraint firstAttribute=\"height\" constant=\"5\" id=\"SXQ-wc-GnU\"/>\n                                                                </constraints>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"3Ku-sN-43t\">\n                                                                <rect key=\"frame\" x=\"78\" y=\"84\" width=\"267\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"nzY-kb-hBq\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"89\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"qe4-dZ-3cw\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"64\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Move Left\" id=\"v2f-bX-xiM\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Yfk-nX-Od6\">\n                                                                                <rect key=\"frame\" x=\"68\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"1cK-8V-orq\"/>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"t2Q-W1-cKY\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"moveLeftTemplate\" id=\"OhK-Oz-uJU\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"wqe-dP-72p\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"107\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"17L-ij-gdb\"/>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"FLi-46-L0Y\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"J6f-Ug-bUW\">\n                                                                <rect key=\"frame\" x=\"70\" y=\"56\" width=\"275\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"YuG-PK-sHB\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"97\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"y9e-dj-00t\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"72\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Move Right\" id=\"rzr-Qq-702\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"eqF-aF-Oig\">\n                                                                                <rect key=\"frame\" x=\"76\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"4L8-fg-wKc\"/>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"ag4-Pv-HcF\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"moveRightTemplate\" id=\"cqE-7J-pZn\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Ksl-60-1S2\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"115\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"JSg-uj-s3A\"/>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"ehd-H1-Cph\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"5Qa-C8-rbw\">\n                                                                <rect key=\"frame\" x=\"84\" y=\"28\" width=\"261\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"GJ7-ha-Hpw\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"83\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"5eO-XA-d6k\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"58\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Move Up\" id=\"HOm-BV-2jc\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"B5Q-Rh-2dT\">\n                                                                                <rect key=\"frame\" x=\"62\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"7a4-K5-Zzv\"/>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"u0t-Il-uNf\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"moveUpTemplate\" id=\"p2E-Li-XTf\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"POq-dE-gsa\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"101\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"2Pt-Bw-FEa\"/>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"7f3-OZ-K7Q\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"18\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"VLV-Cc-em4\">\n                                                                <rect key=\"frame\" x=\"67\" y=\"0.0\" width=\"278\" height=\"19\"/>\n                                                                <subviews>\n                                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"A0d-Qz-1hL\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"2\" width=\"100\" height=\"16\"/>\n                                                                        <subviews>\n                                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"ItO-yj-ZjG\">\n                                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"75\" height=\"16\"/>\n                                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Move Down\" id=\"1Rc-Od-eP5\">\n                                                                                    <font key=\"font\" usesAppearanceFont=\"YES\"/>\n                                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                                </textFieldCell>\n                                                                            </textField>\n                                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"iFJ-Pf-nFN\">\n                                                                                <rect key=\"frame\" x=\"79\" y=\"1\" width=\"21\" height=\"14\"/>\n                                                                                <constraints>\n                                                                                    <constraint firstAttribute=\"height\" constant=\"14\" id=\"Hcj-Rj-kf0\"/>\n                                                                                    <constraint firstAttribute=\"width\" constant=\"21\" id=\"QzZ-Qr-jY7\"/>\n                                                                                </constraints>\n                                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"moveDownTemplate\" id=\"fA4-0b-aAa\"/>\n                                                                            </imageView>\n                                                                        </subviews>\n                                                                        <visibilityPriorities>\n                                                                            <integer value=\"1000\"/>\n                                                                            <integer value=\"1000\"/>\n                                                                        </visibilityPriorities>\n                                                                        <customSpacing>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                                        </customSpacing>\n                                                                    </stackView>\n                                                                    <customView translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"nyf-lf-cNc\" customClass=\"MASShortcutView\">\n                                                                        <rect key=\"frame\" x=\"118\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"width\" constant=\"160\" id=\"EoF-fh-9EU\"/>\n                                                                            <constraint firstAttribute=\"height\" constant=\"19\" id=\"gwb-Yb-c8M\"/>\n                                                                        </constraints>\n                                                                    </customView>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                        </subviews>\n                                                        <visibilityPriorities>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                        </visibilityPriorities>\n                                                        <customSpacing>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                        </customSpacing>\n                                                    </stackView>\n                                                </subviews>\n                                                <visibilityPriorities>\n                                                    <integer value=\"1000\"/>\n                                                    <integer value=\"1000\"/>\n                                                </visibilityPriorities>\n                                                <customSpacing>\n                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                </customSpacing>\n                                            </stackView>\n                                        </subviews>\n                                        <constraints>\n                                            <constraint firstItem=\"Er7-tt-cBg\" firstAttribute=\"trailing\" secondItem=\"wDN-pM-8lR\" secondAttribute=\"trailing\" id=\"5zu-js-HGD\"/>\n                                            <constraint firstAttribute=\"height\" priority=\"750\" constant=\"100\" id=\"aIP-ka-hb8\"/>\n                                            <constraint firstItem=\"su2-sR-KVz\" firstAttribute=\"trailing\" secondItem=\"gt6-OD-H04\" secondAttribute=\"trailing\" id=\"iGo-Yg-2jL\"/>\n                                            <constraint firstAttribute=\"height\" relation=\"greaterThanOrEqual\" constant=\"100\" id=\"roa-nf-HuU\"/>\n                                        </constraints>\n                                        <visibilityPriorities>\n                                            <integer value=\"1000\"/>\n                                            <integer value=\"1000\"/>\n                                            <integer value=\"1000\"/>\n                                        </visibilityPriorities>\n                                        <customSpacing>\n                                            <real value=\"3.4028234663852886e+38\"/>\n                                            <real value=\"3.4028234663852886e+38\"/>\n                                            <real value=\"3.4028234663852886e+38\"/>\n                                        </customSpacing>\n                                    </stackView>\n                                </subviews>\n                                <constraints>\n                                    <constraint firstItem=\"CSq-gR-vah\" firstAttribute=\"top\" secondItem=\"zal-I3-aOt\" secondAttribute=\"top\" constant=\"20\" symbolic=\"YES\" id=\"9o1-vq-RjH\"/>\n                                    <constraint firstAttribute=\"bottom\" secondItem=\"CSq-gR-vah\" secondAttribute=\"bottom\" constant=\"20\" symbolic=\"YES\" id=\"QR7-7Z-qD6\"/>\n                                    <constraint firstAttribute=\"width\" constant=\"850\" id=\"eVq-FT-nbA\"/>\n                                </constraints>\n                                <visibilityPriorities>\n                                    <integer value=\"1000\"/>\n                                </visibilityPriorities>\n                                <customSpacing>\n                                    <real value=\"3.4028234663852886e+38\"/>\n                                </customSpacing>\n                            </stackView>\n                        </subviews>\n                        <constraints>\n                            <constraint firstAttribute=\"bottom\" secondItem=\"zal-I3-aOt\" secondAttribute=\"bottom\" id=\"8AL-4N-gWV\"/>\n                            <constraint firstItem=\"zal-I3-aOt\" firstAttribute=\"leading\" secondItem=\"8J7-VI-pmF\" secondAttribute=\"leading\" id=\"dIz-Zl-Yiu\"/>\n                            <constraint firstAttribute=\"trailing\" secondItem=\"zal-I3-aOt\" secondAttribute=\"trailing\" id=\"taR-HU-S1d\"/>\n                            <constraint firstItem=\"zal-I3-aOt\" firstAttribute=\"top\" secondItem=\"8J7-VI-pmF\" secondAttribute=\"top\" id=\"zZK-pm-Sh5\"/>\n                        </constraints>\n                    </view>\n                    <connections>\n                        <outlet property=\"additionalShortcutsStackView\" destination=\"tCC-xX-WUq\" id=\"csg-Vg-OUJ\"/>\n                        <outlet property=\"almostMaximizeShortcutView\" destination=\"WOL-Ei-P6G\" id=\"cO4-B7-tWg\"/>\n                        <outlet property=\"bottomCenterSixthShortcutView\" destination=\"N5I-c3-Pld\" id=\"ovA-A8-raG\"/>\n                        <outlet property=\"bottomHalfShortcutView\" destination=\"EhR-CV-u8d\" id=\"ObW-aF-Qw2\"/>\n                        <outlet property=\"bottomLeftShortcutView\" destination=\"whf-FK-Ywl\" id=\"TdK-Ae-aus\"/>\n                        <outlet property=\"bottomLeftSixthShortcutView\" destination=\"i2i-uH-Bdw\" id=\"3sd-fm-QCi\"/>\n                        <outlet property=\"bottomRightShortcutView\" destination=\"wi5-BQ-zY2\" id=\"Qha-pc-jyd\"/>\n                        <outlet property=\"bottomRightSixthShortcutView\" destination=\"yRx-4l-5cf\" id=\"Y7u-v7-HwC\"/>\n                        <outlet property=\"centerHalfShortcutView\" destination=\"3Pa-H7-x3u\" id=\"zfM-NU-9h8\"/>\n                        <outlet property=\"centerShortcutView\" destination=\"WrB-f6-rnc\" id=\"aM3-dp-LM0\"/>\n                        <outlet property=\"centerThirdShortcutView\" destination=\"G13-Q4-CV6\" id=\"2pX-94-yJP\"/>\n                        <outlet property=\"centerThreeFourthsShortcutView\" destination=\"FRg-7N-byF\" id=\"aCu-Fr-ZV4\"/>\n                        <outlet property=\"centerTwoThirdsShortcutView\" destination=\"mbU-By-HWo\" id=\"i5J-S0-1dn\"/>\n                        <outlet property=\"firstFourthShortcutView\" destination=\"UH9-8R-0Vx\" id=\"09f-5b-lse\"/>\n                        <outlet property=\"firstThirdShortcutView\" destination=\"I3d-KP-y1J\" id=\"2Ef-1P-Qeq\"/>\n                        <outlet property=\"firstThreeFourthsShortcutView\" destination=\"bRp-d2-DdY\" id=\"zRK-Gz-eS2\"/>\n                        <outlet property=\"firstTwoThirdsShortcutView\" destination=\"cLa-f6-RSt\" id=\"ZEv-cR-Wtf\"/>\n                        <outlet property=\"lastFourthShortcutView\" destination=\"Icr-hA-oP5\" id=\"rgO-ON-K2c\"/>\n                        <outlet property=\"lastThirdShortcutView\" destination=\"MYy-5x-boe\" id=\"sKH-xT-Kwg\"/>\n                        <outlet property=\"lastThreeFourthsShortcutView\" destination=\"54r-uU-1LO\" id=\"Tam-Wc-O2Y\"/>\n                        <outlet property=\"lastTwoThirdsShortcutView\" destination=\"7Km-ay-hPl\" id=\"31d-uh-wZ2\"/>\n                        <outlet property=\"leftHalfShortcutView\" destination=\"bGP-y9-ToI\" id=\"XZG-TF-jqQ\"/>\n                        <outlet property=\"makeLargerShortcutView\" destination=\"Oab-Yb-TxI\" id=\"e6P-aI-4My\"/>\n                        <outlet property=\"makeSmallerShortcutView\" destination=\"yrl-Hc-jn1\" id=\"ZPy-F9-bUE\"/>\n                        <outlet property=\"maximizeHeightShortcutView\" destination=\"0L5-5g-6s0\" id=\"b6h-ZP-sM9\"/>\n                        <outlet property=\"maximizeShortcutView\" destination=\"SqN-WJ-u3L\" id=\"hYh-vr-eG2\"/>\n                        <outlet property=\"moveDownShortcutView\" destination=\"nyf-lf-cNc\" id=\"mfY-cx-SqL\"/>\n                        <outlet property=\"moveLeftShortcutView\" destination=\"wqe-dP-72p\" id=\"Ar8-Do-Jfr\"/>\n                        <outlet property=\"moveRightShortcutView\" destination=\"Ksl-60-1S2\" id=\"9D9-eO-irR\"/>\n                        <outlet property=\"moveUpShortcutView\" destination=\"POq-dE-gsa\" id=\"1JW-Of-NUE\"/>\n                        <outlet property=\"nextDisplayShortcutView\" destination=\"Omo-F2-B0I\" id=\"Bhe-69-9Hn\"/>\n                        <outlet property=\"previousDisplayShortcutView\" destination=\"daM-hW-c6u\" id=\"Gdd-dY-wHF\"/>\n                        <outlet property=\"restoreShortcutView\" destination=\"lej-Pz-wb0\" id=\"9p0-dP-tKu\"/>\n                        <outlet property=\"rightHalfShortcutView\" destination=\"DJc-yE-qoJ\" id=\"OJZ-8F-b8g\"/>\n                        <outlet property=\"secondFourthShortcutView\" destination=\"K1S-Mg-vfI\" id=\"7e4-36-qqr\"/>\n                        <outlet property=\"showMoreButton\" destination=\"WPl-J4-Y8A\" id=\"d55-iL-5P6\"/>\n                        <outlet property=\"thirdFourthShortcutView\" destination=\"OmC-pU-vQt\" id=\"ZLp-Im-PIE\"/>\n                        <outlet property=\"topCenterSixthShortcutView\" destination=\"qlu-3c-eH6\" id=\"JCd-zG-D9X\"/>\n                        <outlet property=\"topHalfShortcutView\" destination=\"ppH-ve-v6N\" id=\"JE4-GU-6w0\"/>\n                        <outlet property=\"topLeftShortcutView\" destination=\"XIn-7Q-Fuy\" id=\"5oj-Fa-48o\"/>\n                        <outlet property=\"topLeftSixthShortcutView\" destination=\"lMl-Xc-93q\" id=\"TKu-H9-gxR\"/>\n                        <outlet property=\"topRightShortcutView\" destination=\"OgW-L0-nuS\" id=\"akm-zB-cnx\"/>\n                        <outlet property=\"topRightSixthShortcutView\" destination=\"kbl-TR-waH\" id=\"2Hp-hx-3bw\"/>\n                    </connections>\n                </viewController>\n                <customObject id=\"BOw-l7-fkl\" userLabel=\"First Responder\" customClass=\"NSResponder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"-1124\" y=\"1386\"/>\n        </scene>\n        <!--Tab View Controller-->\n        <scene sceneID=\"b39-fJ-MZO\">\n            <objects>\n                <tabViewController selectedTabViewItemIndex=\"0\" tabStyle=\"toolbar\" id=\"5pc-CV-2b9\" sceneMemberID=\"viewController\">\n                    <tabViewItems>\n                        <tabViewItem label=\"Shortcuts\" image=\"keyboardToolbarTemplate\" id=\"uw2-9W-2jq\"/>\n                        <tabViewItem label=\"Snap Areas\" image=\"snapAreaTemplate\" id=\"Fap-R2-Aj6\"/>\n                        <tabViewItem label=\"General\" image=\"toolbarSettingsTemplate\" id=\"gtf-PD-IHm\"/>\n                    </tabViewItems>\n                    <viewControllerTransitionOptions key=\"transitionOptions\" allowUserInteraction=\"YES\"/>\n                    <tabView key=\"tabView\" type=\"noTabsNoBorder\" id=\"Tya-24-HNL\">\n                        <rect key=\"frame\" x=\"-126\" y=\"0.0\" width=\"453\" height=\"261\"/>\n                        <autoresizingMask key=\"autoresizingMask\"/>\n                        <font key=\"font\" metaFont=\"system\"/>\n                        <connections>\n                            <outlet property=\"delegate\" destination=\"5pc-CV-2b9\" id=\"as1-vk-M94\"/>\n                        </connections>\n                    </tabView>\n                    <connections>\n                        <outlet property=\"tabView\" destination=\"Tya-24-HNL\" id=\"TDu-Z5-7uP\"/>\n                        <segue destination=\"zlF-FD-XEr\" kind=\"relationship\" relationship=\"tabItems\" id=\"Q5z-Um-3xn\"/>\n                        <segue destination=\"t2d-Q7-RLy\" kind=\"relationship\" relationship=\"tabItems\" id=\"Tnv-BY-sch\"/>\n                        <segue destination=\"yhc-gS-h02\" kind=\"relationship\" relationship=\"tabItems\" id=\"LMQ-qb-ja6\"/>\n                    </connections>\n                </tabViewController>\n                <customObject id=\"CxR-5G-Y25\" userLabel=\"First Responder\" customClass=\"NSResponder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"-204\" y=\"664\"/>\n        </scene>\n        <!--Settings View Controller-->\n        <scene sceneID=\"tRx-9g-sUa\">\n            <objects>\n                <viewController storyboardIdentifier=\"SettingsViewController\" id=\"yhc-gS-h02\" customClass=\"SettingsViewController\" customModule=\"Rectangle\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" id=\"mTk-eQ-4uf\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"850\" height=\"567\"/>\n                        <autoresizingMask key=\"autoresizingMask\"/>\n                        <subviews>\n                            <stackView distribution=\"equalCentering\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"0.0\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"eWR-ji-Z8w\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"850\" height=\"567\"/>\n                                <subviews>\n                                    <stackView distribution=\"fill\" orientation=\"vertical\" alignment=\"leading\" spacing=\"10\" horizontalStackHuggingPriority=\"1000\" verticalStackHuggingPriority=\"1000\" verticalCompressionResistancePriority=\"1000\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"tUi-Ja-evb\">\n                                        <rect key=\"frame\" x=\"175\" y=\"26\" width=\"500\" height=\"521\"/>\n                                        <subviews>\n                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"10\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"7ew-iJ-cZQ\">\n                                                <rect key=\"frame\" x=\"0.0\" y=\"505\" width=\"500\" height=\"16\"/>\n                                                <subviews>\n                                                    <button verticalHuggingPriority=\"749\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"eQJ-O3-a8H\">\n                                                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"444\" height=\"16\"/>\n                                                        <buttonCell key=\"cell\" type=\"check\" title=\"Launch on login\" bezelStyle=\"regularSquare\" imagePosition=\"left\" inset=\"2\" id=\"e9j-DR-MEH\">\n                                                            <behavior key=\"behavior\" changeContents=\"YES\" doesNotDimImage=\"YES\" lightByContents=\"YES\"/>\n                                                            <font key=\"font\" metaFont=\"system\"/>\n                                                        </buttonCell>\n                                                        <connections>\n                                                            <action selector=\"toggleLaunchOnLogin:\" target=\"yhc-gS-h02\" id=\"ySg-6C-AGY\"/>\n                                                        </connections>\n                                                    </button>\n                                                    <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"751\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Azi-Y9-9xa\">\n                                                        <rect key=\"frame\" x=\"452\" y=\"0.0\" width=\"50\" height=\"16\"/>\n                                                        <constraints>\n                                                            <constraint firstAttribute=\"height\" constant=\"16\" id=\"0gp-ng-z8z\"/>\n                                                        </constraints>\n                                                        <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" title=\"Version\" id=\"1zK-sf-CSX\">\n                                                            <font key=\"font\" metaFont=\"system\"/>\n                                                            <color key=\"textColor\" name=\"secondaryLabelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                            <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                        </textFieldCell>\n                                                    </textField>\n                                                </subviews>\n                                                <constraints>\n                                                    <constraint firstAttribute=\"height\" constant=\"16\" id=\"ucw-7e-Ozt\"/>\n                                                </constraints>\n                                                <visibilityPriorities>\n                                                    <integer value=\"1000\"/>\n                                                    <integer value=\"1000\"/>\n                                                </visibilityPriorities>\n                                                <customSpacing>\n                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                </customSpacing>\n                                            </stackView>\n                                            <button verticalHuggingPriority=\"750\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"wBT-R4-q9s\">\n                                                <rect key=\"frame\" x=\"0.0\" y=\"479\" width=\"500\" height=\"16\"/>\n                                                <buttonCell key=\"cell\" type=\"check\" title=\"Hide menu bar icon\" bezelStyle=\"regularSquare\" imagePosition=\"left\" inset=\"2\" id=\"qlg-kC-FMr\">\n                                                    <behavior key=\"behavior\" changeContents=\"YES\" doesNotDimImage=\"YES\" lightByContents=\"YES\"/>\n                                                    <font key=\"font\" metaFont=\"system\"/>\n                                                </buttonCell>\n                                                <connections>\n                                                    <action selector=\"toggleHideMenuBarIcon:\" target=\"yhc-gS-h02\" id=\"eAA-Vd-0gY\"/>\n                                                </connections>\n                                            </button>\n                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"249\" verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"250\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"gIp-Hu-6ns\">\n                                                <rect key=\"frame\" x=\"-2\" y=\"455\" width=\"504\" height=\"14\"/>\n                                                <textFieldCell key=\"cell\" title=\"When the menu bar icon is hidden, relaunch Rectangle from Finder to open\" id=\"ltc-mf-BHr\">\n                                                    <font key=\"font\" metaFont=\"message\" size=\"11\"/>\n                                                    <color key=\"textColor\" name=\"secondaryLabelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                </textFieldCell>\n                                            </textField>\n                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"10\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"AmL-wm-e8w\">\n                                                <rect key=\"frame\" x=\"0.0\" y=\"424\" width=\"500\" height=\"21\"/>\n                                                <subviews>\n                                                    <button horizontalHuggingPriority=\"249\" verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"751\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"HcU-0y-wJU\">\n                                                        <rect key=\"frame\" x=\"0.0\" y=\"3\" width=\"342\" height=\"16\"/>\n                                                        <buttonCell key=\"cell\" type=\"check\" title=\"Check for updates automatically\" bezelStyle=\"regularSquare\" imagePosition=\"left\" state=\"on\" inset=\"2\" id=\"rmV-YD-Hzj\">\n                                                            <behavior key=\"behavior\" changeContents=\"YES\" doesNotDimImage=\"YES\" lightByContents=\"YES\"/>\n                                                            <font key=\"font\" metaFont=\"system\"/>\n                                                        </buttonCell>\n                                                    </button>\n                                                    <button verticalHuggingPriority=\"750\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"bn6-rz-AHw\">\n                                                        <rect key=\"frame\" x=\"352\" y=\"0.0\" width=\"148\" height=\"21\"/>\n                                                        <buttonCell key=\"cell\" type=\"push\" title=\"Check for Updates…\" bezelStyle=\"rounded\" alignment=\"center\" borderStyle=\"border\" imageScaling=\"proportionallyDown\" inset=\"2\" id=\"74m-kw-w1f\">\n                                                            <behavior key=\"behavior\" pushIn=\"YES\" lightByBackground=\"YES\" lightByGray=\"YES\"/>\n                                                            <font key=\"font\" metaFont=\"system\"/>\n                                                        </buttonCell>\n                                                        <connections>\n                                                            <action selector=\"checkForUpdates:\" target=\"yhc-gS-h02\" id=\"Gln-SX-iYO\"/>\n                                                        </connections>\n                                                    </button>\n                                                </subviews>\n                                                <constraints>\n                                                    <constraint firstAttribute=\"height\" constant=\"21\" id=\"gzn-PM-OIu\"/>\n                                                </constraints>\n                                                <visibilityPriorities>\n                                                    <integer value=\"1000\"/>\n                                                    <integer value=\"1000\"/>\n                                                </visibilityPriorities>\n                                                <customSpacing>\n                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                </customSpacing>\n                                            </stackView>\n                                            <box verticalHuggingPriority=\"750\" boxType=\"separator\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"ujo-nl-syC\">\n                                                <rect key=\"frame\" x=\"0.0\" y=\"392\" width=\"500\" height=\"24\"/>\n                                                <constraints>\n                                                    <constraint firstAttribute=\"height\" constant=\"20\" id=\"HTM-FQ-j4S\"/>\n                                                </constraints>\n                                            </box>\n                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"10\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" horizontalCompressionResistancePriority=\"1000\" verticalCompressionResistancePriority=\"1000\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"FFt-uh-04m\">\n                                                <rect key=\"frame\" x=\"0.0\" y=\"360\" width=\"500\" height=\"24\"/>\n                                                <subviews>\n                                                    <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"1000\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"5An-8B-vsH\">\n                                                        <rect key=\"frame\" x=\"-2\" y=\"4\" width=\"132\" height=\"16\"/>\n                                                        <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" title=\"Repeated commands\" id=\"2Zm-fl-PcC\">\n                                                            <font key=\"font\" metaFont=\"system\"/>\n                                                            <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                            <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                        </textFieldCell>\n                                                    </textField>\n                                                    <popUpButton verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"1000\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"pVH-s3-FHn\">\n                                                        <rect key=\"frame\" x=\"138\" y=\"0.0\" width=\"362\" height=\"24\"/>\n                                                        <popUpButtonCell key=\"cell\" type=\"push\" title=\"move to adjacent on left/right, or cycle size on half\" bezelStyle=\"rounded\" alignment=\"left\" lineBreakMode=\"truncatingTail\" state=\"on\" borderStyle=\"borderAndBezel\" tag=\"3\" imageScaling=\"proportionallyDown\" inset=\"2\" selectedItem=\"3GE-la-fAZ\" id=\"ccx-Gx-MGO\">\n                                                            <behavior key=\"behavior\" lightByBackground=\"YES\" lightByGray=\"YES\"/>\n                                                            <font key=\"font\" size=\"12\" name=\"HelveticaNeue\"/>\n                                                            <menu key=\"menu\" id=\"TkU-PT-5p8\">\n                                                                <items>\n                                                                    <menuItem title=\"do nothing\" tag=\"2\" id=\"jww-Ju-S3d\"/>\n                                                                    <menuItem title=\"cycle through displays\" tag=\"4\" id=\"XlM-ch-cLG\"/>\n                                                                    <menuItem title=\"cycle sizes on half actions\" id=\"gHH-BV-5kP\"/>\n                                                                    <menuItem title=\"move to adjacent display on left or right\" tag=\"1\" id=\"Z9d-Rl-RVq\"/>\n                                                                    <menuItem title=\"move to adjacent on left/right, or cycle size on half\" state=\"on\" tag=\"3\" id=\"3GE-la-fAZ\"/>\n                                                                    <menuItem title=\"cycle positions on quadrants, cycle sizes on half\" tag=\"5\" id=\"qCy-Kx-9mR\"/>\n                                                                </items>\n                                                            </menu>\n                                                        </popUpButtonCell>\n                                                        <connections>\n                                                            <action selector=\"setSubsequentExecutionBehavior:\" target=\"yhc-gS-h02\" id=\"BUk-Is-27P\"/>\n                                                        </connections>\n                                                    </popUpButton>\n                                                </subviews>\n                                                <visibilityPriorities>\n                                                    <integer value=\"1000\"/>\n                                                    <integer value=\"1000\"/>\n                                                </visibilityPriorities>\n                                                <customSpacing>\n                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                </customSpacing>\n                                            </stackView>\n                                            <stackView hidden=\"YES\" distribution=\"fill\" orientation=\"horizontal\" alignment=\"top\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" verticalClippingResistancePriority=\"999\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"er1-EQ-YIF\">\n                                                <rect key=\"frame\" x=\"0.0\" y=\"521\" width=\"163\" height=\"0.0\"/>\n                                                <subviews>\n                                                    <customView horizontalHuggingPriority=\"249\" placeholderIntrinsicWidth=\"163\" placeholderIntrinsicHeight=\"0.0\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"coA-qg-nul\">\n                                                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"163\" height=\"0.0\"/>\n                                                    </customView>\n                                                </subviews>\n                                                <constraints>\n                                                    <constraint firstAttribute=\"height\" id=\"IXv-8o-a6i\"/>\n                                                </constraints>\n                                                <visibilityPriorities>\n                                                    <integer value=\"1000\"/>\n                                                </visibilityPriorities>\n                                                <customSpacing>\n                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                </customSpacing>\n                                            </stackView>\n                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"top\" spacing=\"10\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Xcu-aJ-4bm\">\n                                                <rect key=\"frame\" x=\"0.0\" y=\"334\" width=\"500\" height=\"16\"/>\n                                                <subviews>\n                                                    <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"751\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"WkQ-lb-VGR\">\n                                                        <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"193\" height=\"16\"/>\n                                                        <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" title=\"Gaps between windows\" id=\"bg9-nw-YvU\">\n                                                            <font key=\"font\" metaFont=\"system\"/>\n                                                            <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                            <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                        </textFieldCell>\n                                                    </textField>\n                                                    <slider verticalHuggingPriority=\"750\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"O9H-ZD-bqL\">\n                                                        <rect key=\"frame\" x=\"199\" y=\"0.0\" width=\"265\" height=\"16\"/>\n                                                        <sliderCell key=\"cell\" state=\"on\" alignment=\"left\" maxValue=\"100\" tickMarkPosition=\"above\" sliderType=\"linear\" id=\"LAE-OT-g05\"/>\n                                                        <connections>\n                                                            <action selector=\"gapSliderChanged:\" target=\"yhc-gS-h02\" id=\"qCV-j7-EEw\"/>\n                                                        </connections>\n                                                    </slider>\n                                                    <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"751\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"jd8-SJ-lza\">\n                                                        <rect key=\"frame\" x=\"472\" y=\"0.0\" width=\"30\" height=\"16\"/>\n                                                        <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" title=\"0 px\" id=\"0eh-6G-rMp\">\n                                                            <font key=\"font\" metaFont=\"system\"/>\n                                                            <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                            <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                        </textFieldCell>\n                                                    </textField>\n                                                </subviews>\n                                                <visibilityPriorities>\n                                                    <integer value=\"1000\"/>\n                                                    <integer value=\"1000\"/>\n                                                    <integer value=\"1000\"/>\n                                                </visibilityPriorities>\n                                                <customSpacing>\n                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                </customSpacing>\n                                            </stackView>\n                                            <button verticalHuggingPriority=\"750\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"UY7-Nt-G3K\">\n                                                <rect key=\"frame\" x=\"0.0\" y=\"308\" width=\"500\" height=\"16\"/>\n                                                <buttonCell key=\"cell\" type=\"check\" title=\"Remove keyboard shortcut restrictions\" bezelStyle=\"regularSquare\" imagePosition=\"left\" inset=\"2\" id=\"n4U-FC-L9s\">\n                                                    <behavior key=\"behavior\" changeContents=\"YES\" doesNotDimImage=\"YES\" lightByContents=\"YES\"/>\n                                                    <font key=\"font\" metaFont=\"system\"/>\n                                                </buttonCell>\n                                                <connections>\n                                                    <action selector=\"toggleAllowAnyShortcut:\" target=\"yhc-gS-h02\" id=\"dXP-rV-Pqk\"/>\n                                                </connections>\n                                            </button>\n                                            <button verticalHuggingPriority=\"750\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"WUS-pH-Rxv\">\n                                                <rect key=\"frame\" x=\"0.0\" y=\"282\" width=\"500\" height=\"16\"/>\n                                                <buttonCell key=\"cell\" type=\"check\" title=\"Move cursor along with window across displays\" bezelStyle=\"regularSquare\" imagePosition=\"left\" inset=\"2\" id=\"Pbz-DF-hgG\">\n                                                    <behavior key=\"behavior\" changeContents=\"YES\" doesNotDimImage=\"YES\" lightByContents=\"YES\"/>\n                                                    <font key=\"font\" metaFont=\"system\"/>\n                                                </buttonCell>\n                                                <connections>\n                                                    <action selector=\"toggleCursorMove:\" target=\"yhc-gS-h02\" id=\"9IZ-1w-iWL\"/>\n                                                </connections>\n                                            </button>\n                                            <button verticalHuggingPriority=\"750\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"CUR-SD-CHK\">\n                                                <rect key=\"frame\" x=\"0.0\" y=\"256\" width=\"500\" height=\"16\"/>\n                                                <buttonCell key=\"cell\" type=\"check\" title=\"Use cursor position for screen detection\" bezelStyle=\"regularSquare\" imagePosition=\"left\" inset=\"2\" id=\"CUR-SD-CEL\">\n                                                    <behavior key=\"behavior\" changeContents=\"YES\" doesNotDimImage=\"YES\" lightByContents=\"YES\"/>\n                                                    <font key=\"font\" metaFont=\"system\"/>\n                                                </buttonCell>\n                                                <connections>\n                                                    <action selector=\"toggleUseCursorScreenDetection:\" target=\"yhc-gS-h02\" id=\"cG2-FV-2RY\"/>\n                                                </connections>\n                                            </button>\n                                            <button verticalHuggingPriority=\"750\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"hB7-uu-XeP\" userLabel=\"Double-click Title Bar Checkbox\">\n                                                <rect key=\"frame\" x=\"0.0\" y=\"230\" width=\"500\" height=\"16\"/>\n                                                <buttonCell key=\"cell\" type=\"check\" title=\"Double-click window title bar to maximize/restore\" bezelStyle=\"regularSquare\" imagePosition=\"left\" inset=\"2\" id=\"heT-W6-Fyf\">\n                                                    <behavior key=\"behavior\" changeContents=\"YES\" doesNotDimImage=\"YES\" lightByContents=\"YES\"/>\n                                                    <font key=\"font\" metaFont=\"system\"/>\n                                                </buttonCell>\n                                                <connections>\n                                                    <action selector=\"toggleDoubleClickTitleBar:\" target=\"yhc-gS-h02\" id=\"q5b-BO-7n2\"/>\n                                                </connections>\n                                            </button>\n                                            <box verticalHuggingPriority=\"750\" boxType=\"separator\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"evn-f6-2bW\">\n                                                <rect key=\"frame\" x=\"0.0\" y=\"198\" width=\"500\" height=\"24\"/>\n                                                <constraints>\n                                                    <constraint firstAttribute=\"height\" constant=\"20\" id=\"bBf-fp-7rI\"/>\n                                                </constraints>\n                                            </box>\n                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"5\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Ipm-Bt-PDm\">\n                                                <rect key=\"frame\" x=\"0.0\" y=\"174\" width=\"500\" height=\"16\"/>\n                                                <subviews>\n                                                    <button horizontalHuggingPriority=\"750\" verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"249\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"0PP-0x-QWc\">\n                                                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"178\" height=\"16\"/>\n                                                        <buttonCell key=\"cell\" type=\"check\" title=\"Show Todo Mode in menu\" bezelStyle=\"regularSquare\" imagePosition=\"left\" inset=\"2\" id=\"7yS-wj-uWD\">\n                                                            <behavior key=\"behavior\" changeContents=\"YES\" doesNotDimImage=\"YES\" lightByContents=\"YES\"/>\n                                                            <font key=\"font\" metaFont=\"system\"/>\n                                                        </buttonCell>\n                                                        <connections>\n                                                            <action selector=\"toggleTodoMode:\" target=\"yhc-gS-h02\" id=\"Wfa-A2-2YS\"/>\n                                                        </connections>\n                                                    </button>\n                                                    <button horizontalHuggingPriority=\"1000\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"m1L-BJ-1Jg\">\n                                                        <rect key=\"frame\" x=\"183\" y=\"0.0\" width=\"17\" height=\"16\"/>\n                                                        <buttonCell key=\"cell\" type=\"smallSquare\" title=\"ⓘ\" bezelStyle=\"smallSquare\" imagePosition=\"overlaps\" alignment=\"center\" lineBreakMode=\"truncatingTail\" state=\"on\" imageScaling=\"proportionallyDown\" inset=\"2\" id=\"Vfd-fe-hCe\">\n                                                            <behavior key=\"behavior\" pushIn=\"YES\" lightByBackground=\"YES\" lightByGray=\"YES\"/>\n                                                            <font key=\"font\" metaFont=\"system\"/>\n                                                        </buttonCell>\n                                                        <connections>\n                                                            <action selector=\"showTodoModeHelp:\" target=\"yhc-gS-h02\" id=\"TjK-4M-3ow\"/>\n                                                        </connections>\n                                                    </button>\n                                                    <stackView distribution=\"fill\" orientation=\"vertical\" alignment=\"leading\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" horizontalCompressionResistancePriority=\"248\" verticalCompressionResistancePriority=\"248\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Pf3-3Q-uE8\">\n                                                        <rect key=\"frame\" x=\"205\" y=\"0.0\" width=\"295\" height=\"16\"/>\n                                                    </stackView>\n                                                </subviews>\n                                                <constraints>\n                                                    <constraint firstItem=\"Pf3-3Q-uE8\" firstAttribute=\"top\" secondItem=\"Ipm-Bt-PDm\" secondAttribute=\"top\" id=\"cTW-jC-lQg\"/>\n                                                </constraints>\n                                                <visibilityPriorities>\n                                                    <integer value=\"1000\"/>\n                                                    <integer value=\"1000\"/>\n                                                    <integer value=\"1000\"/>\n                                                </visibilityPriorities>\n                                                <customSpacing>\n                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                </customSpacing>\n                                            </stackView>\n                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"249\" verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"250\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Q4P-mY-521\">\n                                                <rect key=\"frame\" x=\"-2\" y=\"150\" width=\"504\" height=\"14\"/>\n                                                <textFieldCell key=\"cell\" title=\"Keep a chosen application visible on the right of your primary screen at all times\" id=\"FCh-1Q-Xms\">\n                                                    <font key=\"font\" metaFont=\"message\" size=\"11\"/>\n                                                    <color key=\"textColor\" name=\"secondaryLabelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                </textFieldCell>\n                                            </textField>\n                                            <stackView distribution=\"fill\" orientation=\"vertical\" alignment=\"leading\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" verticalClippingResistancePriority=\"999\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"lRr-k7-YZR\">\n                                                <rect key=\"frame\" x=\"0.0\" y=\"140\" width=\"500\" height=\"0.0\"/>\n                                                <subviews>\n                                                    <stackView identifier=\"Todo app width\" distribution=\"fillProportionally\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" horizontalCompressionResistancePriority=\"1000\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Ntf-YR-7Gr\">\n                                                        <rect key=\"frame\" x=\"0.0\" y=\"-24\" width=\"500\" height=\"24\"/>\n                                                        <subviews>\n                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"751\" verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"1000\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"90f-Y4-sgi\">\n                                                                <rect key=\"frame\" x=\"-2\" y=\"4\" width=\"98\" height=\"16\"/>\n                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Todo app width\" id=\"6e0-ji-qXw\">\n                                                                    <font key=\"font\" metaFont=\"system\"/>\n                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                </textFieldCell>\n                                                            </textField>\n                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"200\" verticalHuggingPriority=\"750\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"9VW-Hc-lh2\" customClass=\"AutoSaveFloatField\" customModule=\"Rectangle\" customModuleProvider=\"target\">\n                                                                <rect key=\"frame\" x=\"102\" y=\"0.0\" width=\"87\" height=\"24\"/>\n                                                                <constraints>\n                                                                    <constraint firstAttribute=\"width\" constant=\"87\" id=\"1tz-tU-hh9\"/>\n                                                                </constraints>\n                                                                <textFieldCell key=\"cell\" scrollable=\"YES\" lineBreakMode=\"clipping\" selectable=\"YES\" editable=\"YES\" sendsActionOnEndEditing=\"YES\" state=\"on\" borderStyle=\"bezel\" alignment=\"right\" title=\"400\" drawsBackground=\"YES\" id=\"lUu-Hs-vuk\">\n                                                                    <numberFormatter key=\"formatter\" formatterBehavior=\"default10_4\" numberStyle=\"decimal\" formatWidth=\"-1\" minimumIntegerDigits=\"1\" maximumIntegerDigits=\"2000000000\" maximumFractionDigits=\"3\" id=\"O5b-ir-jyO\"/>\n                                                                    <font key=\"font\" metaFont=\"system\"/>\n                                                                    <color key=\"textColor\" name=\"controlTextColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                </textFieldCell>\n                                                            </textField>\n                                                            <popUpButton verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"7Kx-vz-WQp\">\n                                                                <rect key=\"frame\" x=\"197\" y=\"0.0\" width=\"62\" height=\"24\"/>\n                                                                <popUpButtonCell key=\"cell\" type=\"push\" title=\"px\" bezelStyle=\"rounded\" alignment=\"left\" lineBreakMode=\"truncatingTail\" state=\"on\" borderStyle=\"borderAndBezel\" tag=\"1\" imageScaling=\"proportionallyDown\" inset=\"2\" selectedItem=\"5LN-YU-Bwy\" id=\"NYb-xH-9ZP\">\n                                                                    <behavior key=\"behavior\" lightByBackground=\"YES\" lightByGray=\"YES\"/>\n                                                                    <font key=\"font\" metaFont=\"message\"/>\n                                                                    <menu key=\"menu\" id=\"hR2-Wt-Cnz\">\n                                                                        <items>\n                                                                            <menuItem title=\"px\" state=\"on\" tag=\"1\" id=\"5LN-YU-Bwy\"/>\n                                                                            <menuItem title=\"%\" tag=\"2\" id=\"AgV-lP-6XB\"/>\n                                                                        </items>\n                                                                    </menu>\n                                                                </popUpButtonCell>\n                                                                <connections>\n                                                                    <action selector=\"setTodoWidthUnit:\" target=\"yhc-gS-h02\" id=\"TlX-cp-y1c\"/>\n                                                                </connections>\n                                                            </popUpButton>\n                                                            <customView hidden=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"62c-ee-hzw\" userLabel=\"Horizontal Spacer\">\n                                                                <rect key=\"frame\" x=\"265\" y=\"0.0\" width=\"50\" height=\"50\"/>\n                                                            </customView>\n                                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Pon-Fc-IkL\">\n                                                                <rect key=\"frame\" x=\"267\" y=\"0.0\" width=\"233\" height=\"24\"/>\n                                                                <subviews>\n                                                                    <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"ZQD-06-YVI\">\n                                                                        <rect key=\"frame\" x=\"-2\" y=\"4\" width=\"63\" height=\"16\"/>\n                                                                        <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" title=\"Todo side\" id=\"O9a-3Q-HB1\">\n                                                                            <font key=\"font\" metaFont=\"system\"/>\n                                                                            <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                            <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                        </textFieldCell>\n                                                                    </textField>\n                                                                    <popUpButton verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"rB8-CF-Yrt\">\n                                                                        <rect key=\"frame\" x=\"67\" y=\"0.0\" width=\"166\" height=\"24\"/>\n                                                                        <popUpButtonCell key=\"cell\" type=\"push\" title=\"Right\" bezelStyle=\"rounded\" alignment=\"left\" lineBreakMode=\"truncatingTail\" state=\"on\" borderStyle=\"borderAndBezel\" tag=\"1\" imageScaling=\"proportionallyDown\" inset=\"2\" selectedItem=\"DG2-BN-GPE\" id=\"wsh-YF-QuF\">\n                                                                            <behavior key=\"behavior\" lightByBackground=\"YES\" lightByGray=\"YES\"/>\n                                                                            <font key=\"font\" metaFont=\"message\"/>\n                                                                            <menu key=\"menu\" id=\"8Vk-9N-Pkg\">\n                                                                                <items>\n                                                                                    <menuItem title=\"Left\" tag=\"2\" id=\"mpl-sd-2Wc\"/>\n                                                                                    <menuItem title=\"Right\" state=\"on\" tag=\"1\" id=\"DG2-BN-GPE\"/>\n                                                                                </items>\n                                                                            </menu>\n                                                                        </popUpButtonCell>\n                                                                        <connections>\n                                                                            <action selector=\"setTodoAppSide:\" target=\"yhc-gS-h02\" id=\"N1M-tN-4eI\"/>\n                                                                        </connections>\n                                                                    </popUpButton>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                        </subviews>\n                                                        <constraints>\n                                                            <constraint firstItem=\"9VW-Hc-lh2\" firstAttribute=\"top\" secondItem=\"Pon-Fc-IkL\" secondAttribute=\"top\" id=\"33P-4K-AiO\"/>\n                                                            <constraint firstItem=\"9VW-Hc-lh2\" firstAttribute=\"baseline\" secondItem=\"90f-Y4-sgi\" secondAttribute=\"baseline\" id=\"OIb-DR-UkV\"/>\n                                                            <constraint firstItem=\"9VW-Hc-lh2\" firstAttribute=\"centerY\" secondItem=\"7Kx-vz-WQp\" secondAttribute=\"centerY\" id=\"UhI-UY-xEm\"/>\n                                                            <constraint firstItem=\"9VW-Hc-lh2\" firstAttribute=\"bottom\" secondItem=\"62c-ee-hzw\" secondAttribute=\"bottom\" id=\"sxH-AK-sOj\"/>\n                                                            <constraint firstItem=\"9VW-Hc-lh2\" firstAttribute=\"top\" secondItem=\"7Kx-vz-WQp\" secondAttribute=\"top\" id=\"tis-la-5GJ\"/>\n                                                        </constraints>\n                                                        <visibilityPriorities>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                        </visibilityPriorities>\n                                                        <customSpacing>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                        </customSpacing>\n                                                    </stackView>\n                                                    <stackView identifier=\"Toggle todo\" distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"1000\" verticalStackHuggingPriority=\"249.99998474121094\" horizontalHuggingPriority=\"1000\" horizontalCompressionResistancePriority=\"250\" verticalCompressionResistancePriority=\"250\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"nsh-GW-hpI\">\n                                                        <rect key=\"frame\" x=\"0.0\" y=\"-51\" width=\"500\" height=\"19\"/>\n                                                        <subviews>\n                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"1000\" verticalCompressionResistancePriority=\"250\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"cEi-pr-62P\">\n                                                                <rect key=\"frame\" x=\"-2\" y=\"2\" width=\"98\" height=\"16\"/>\n                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Toggle Todo\" id=\"DHt-cE-Bl0\">\n                                                                    <font key=\"font\" metaFont=\"system\"/>\n                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                </textFieldCell>\n                                                            </textField>\n                                                            <customView horizontalHuggingPriority=\"249\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"uca-0m-naE\" customClass=\"MASShortcutView\">\n                                                                <rect key=\"frame\" x=\"102\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                <constraints>\n                                                                    <constraint firstAttribute=\"height\" constant=\"19\" id=\"OaK-b4-dxO\"/>\n                                                                    <constraint firstAttribute=\"width\" constant=\"160\" id=\"tiw-8m-NjR\"/>\n                                                                </constraints>\n                                                            </customView>\n                                                            <stackView distribution=\"fill\" orientation=\"vertical\" alignment=\"leading\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" verticalCompressionResistancePriority=\"250\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"qC3-Q0-xyP\">\n                                                                <rect key=\"frame\" x=\"270\" y=\"0.0\" width=\"230\" height=\"19\"/>\n                                                            </stackView>\n                                                        </subviews>\n                                                        <constraints>\n                                                            <constraint firstItem=\"qC3-Q0-xyP\" firstAttribute=\"top\" secondItem=\"nsh-GW-hpI\" secondAttribute=\"top\" id=\"qJs-uS-q2u\"/>\n                                                        </constraints>\n                                                        <visibilityPriorities>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                        </visibilityPriorities>\n                                                        <customSpacing>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                        </customSpacing>\n                                                    </stackView>\n                                                    <stackView identifier=\"Reflow todo\" distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" horizontalStackHuggingPriority=\"1000\" verticalStackHuggingPriority=\"249.99998474121094\" horizontalHuggingPriority=\"1000\" horizontalCompressionResistancePriority=\"250\" verticalCompressionResistancePriority=\"250\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"83w-h7-hhH\">\n                                                        <rect key=\"frame\" x=\"0.0\" y=\"-78\" width=\"500\" height=\"19\"/>\n                                                        <subviews>\n                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"1000\" verticalCompressionResistancePriority=\"250\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Cf5-4Q-E4I\">\n                                                                <rect key=\"frame\" x=\"-2\" y=\"2\" width=\"98\" height=\"16\"/>\n                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" alignment=\"right\" title=\"Reflow Todo\" id=\"Fx0-sm-DrT\">\n                                                                    <font key=\"font\" metaFont=\"system\"/>\n                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                </textFieldCell>\n                                                            </textField>\n                                                            <customView horizontalHuggingPriority=\"249\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"QTZ-pv-mwo\" customClass=\"MASShortcutView\">\n                                                                <rect key=\"frame\" x=\"102\" y=\"0.0\" width=\"160\" height=\"19\"/>\n                                                                <constraints>\n                                                                    <constraint firstAttribute=\"height\" constant=\"19\" id=\"Prr-fE-EFT\"/>\n                                                                    <constraint firstAttribute=\"width\" constant=\"160\" id=\"cxk-A1-9US\"/>\n                                                                </constraints>\n                                                            </customView>\n                                                            <stackView distribution=\"fill\" orientation=\"vertical\" alignment=\"leading\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" verticalCompressionResistancePriority=\"250\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"42U-If-Yqd\">\n                                                                <rect key=\"frame\" x=\"270\" y=\"0.0\" width=\"230\" height=\"19\"/>\n                                                            </stackView>\n                                                        </subviews>\n                                                        <constraints>\n                                                            <constraint firstItem=\"42U-If-Yqd\" firstAttribute=\"top\" secondItem=\"83w-h7-hhH\" secondAttribute=\"top\" id=\"iv8-9p-mSw\"/>\n                                                        </constraints>\n                                                        <visibilityPriorities>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                        </visibilityPriorities>\n                                                        <customSpacing>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                        </customSpacing>\n                                                    </stackView>\n                                                </subviews>\n                                                <constraints>\n                                                    <constraint firstAttribute=\"height\" id=\"89R-oK-9JB\"/>\n                                                    <constraint firstItem=\"83w-h7-hhH\" firstAttribute=\"leading\" secondItem=\"lRr-k7-YZR\" secondAttribute=\"leading\" id=\"P2T-B5-KFP\"/>\n                                                    <constraint firstItem=\"Cf5-4Q-E4I\" firstAttribute=\"trailing\" secondItem=\"90f-Y4-sgi\" secondAttribute=\"trailing\" id=\"TD6-RD-T1S\"/>\n                                                    <constraint firstAttribute=\"trailing\" secondItem=\"83w-h7-hhH\" secondAttribute=\"trailing\" id=\"X1r-di-PDO\"/>\n                                                    <constraint firstAttribute=\"trailing\" secondItem=\"nsh-GW-hpI\" secondAttribute=\"trailing\" id=\"Y1m-rF-C5Q\"/>\n                                                    <constraint firstItem=\"nsh-GW-hpI\" firstAttribute=\"leading\" secondItem=\"lRr-k7-YZR\" secondAttribute=\"leading\" id=\"hme-DZ-Fhn\"/>\n                                                    <constraint firstItem=\"cEi-pr-62P\" firstAttribute=\"trailing\" secondItem=\"90f-Y4-sgi\" secondAttribute=\"trailing\" id=\"vSA-EB-V6U\"/>\n                                                </constraints>\n                                                <visibilityPriorities>\n                                                    <integer value=\"1000\"/>\n                                                    <integer value=\"1000\"/>\n                                                    <integer value=\"1000\"/>\n                                                </visibilityPriorities>\n                                                <customSpacing>\n                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                </customSpacing>\n                                            </stackView>\n                                            <box verticalHuggingPriority=\"750\" boxType=\"separator\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"t10-e5-ZGI\">\n                                                <rect key=\"frame\" x=\"0.0\" y=\"108\" width=\"500\" height=\"24\"/>\n                                                <constraints>\n                                                    <constraint firstAttribute=\"height\" constant=\"20\" id=\"Ujh-NX-kuq\"/>\n                                                </constraints>\n                                            </box>\n                                            <stackView distribution=\"fill\" orientation=\"vertical\" alignment=\"leading\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"sGP-9h-TJl\" userLabel=\"Stage View\">\n                                                <rect key=\"frame\" x=\"0.0\" y=\"34\" width=\"500\" height=\"66\"/>\n                                                <subviews>\n                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"top\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Yf4-Ks-DJM\">\n                                                        <rect key=\"frame\" x=\"0.0\" y=\"50\" width=\"454\" height=\"16\"/>\n                                                        <subviews>\n                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"751\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"K3R-Hk-tq8\">\n                                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"202\" height=\"16\"/>\n                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" title=\"Stage Manager recent apps area\" id=\"ayu-YO-10p\">\n                                                                    <font key=\"font\" metaFont=\"system\"/>\n                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                </textFieldCell>\n                                                            </textField>\n                                                            <slider verticalHuggingPriority=\"750\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"JTT-40-Rtw\" userLabel=\"Stage Slider\">\n                                                                <rect key=\"frame\" x=\"206\" y=\"0.0\" width=\"199\" height=\"16\"/>\n                                                                <sliderCell key=\"cell\" state=\"on\" alignment=\"left\" maxValue=\"250\" doubleValue=\"190\" tickMarkPosition=\"above\" sliderType=\"linear\" id=\"VER-nt-CGZ\"/>\n                                                                <connections>\n                                                                    <action selector=\"stageSliderChanged:\" target=\"yhc-gS-h02\" id=\"H5H-Mc-y4r\"/>\n                                                                </connections>\n                                                            </slider>\n                                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"751\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"eJ0-SU-XN3\" userLabel=\"Stage Label\">\n                                                                <rect key=\"frame\" x=\"411\" y=\"0.0\" width=\"45\" height=\"16\"/>\n                                                                <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" title=\"190 px\" id=\"AEr-NX-9wW\">\n                                                                    <font key=\"font\" metaFont=\"system\"/>\n                                                                    <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                                </textFieldCell>\n                                                            </textField>\n                                                        </subviews>\n                                                        <visibilityPriorities>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                        </visibilityPriorities>\n                                                        <customSpacing>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                        </customSpacing>\n                                                    </stackView>\n                                                    <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"jKv-us-rNg\">\n                                                        <rect key=\"frame\" x=\"-2\" y=\"28\" width=\"264\" height=\"14\"/>\n                                                        <textFieldCell key=\"cell\" title=\"If the area is too small, recent apps will be hidden\" id=\"xE6-jw-EPt\">\n                                                            <font key=\"font\" metaFont=\"message\" size=\"11\"/>\n                                                            <color key=\"textColor\" name=\"secondaryLabelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                            <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                        </textFieldCell>\n                                                    </textField>\n                                                    <box verticalHuggingPriority=\"750\" boxType=\"separator\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"MZ0-H8-zIy\">\n                                                        <rect key=\"frame\" x=\"0.0\" y=\"-2\" width=\"450\" height=\"24\"/>\n                                                        <constraints>\n                                                            <constraint firstAttribute=\"height\" constant=\"20\" id=\"OPh-xE-1zO\"/>\n                                                        </constraints>\n                                                    </box>\n                                                </subviews>\n                                                <visibilityPriorities>\n                                                    <integer value=\"1000\"/>\n                                                    <integer value=\"1000\"/>\n                                                    <integer value=\"1000\"/>\n                                                </visibilityPriorities>\n                                                <customSpacing>\n                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                </customSpacing>\n                                            </stackView>\n                                            <stackView distribution=\"equalSpacing\" orientation=\"horizontal\" alignment=\"top\" spacing=\"0.0\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"OhI-U9-bZb\">\n                                                <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"500\" height=\"24\"/>\n                                                <subviews>\n                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"top\" spacing=\"5\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Rst-Btn-Stk\">\n                                                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"308\" height=\"24\"/>\n                                                        <subviews>\n                                                            <button verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"751\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"An0-XX-dT6\">\n                                                                <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"266\" height=\"24\"/>\n                                                                <buttonCell key=\"cell\" type=\"push\" title=\"Restore Default Shortcuts &amp; Snap Areas\" bezelStyle=\"rounded\" alignment=\"center\" borderStyle=\"border\" imageScaling=\"proportionallyDown\" inset=\"2\" id=\"uLF-Uf-tBt\">\n                                                                    <behavior key=\"behavior\" pushIn=\"YES\" lightByBackground=\"YES\" lightByGray=\"YES\"/>\n                                                                    <font key=\"font\" metaFont=\"system\"/>\n                                                                </buttonCell>\n                                                                <connections>\n                                                                    <action selector=\"restoreDefaults:\" target=\"yhc-gS-h02\" id=\"Xfb-Cc-xFM\"/>\n                                                                </connections>\n                                                            </button>\n                                                            <button horizontalHuggingPriority=\"1000\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Ext-Set-Btn\">\n                                                                <rect key=\"frame\" x=\"271\" y=\"0.0\" width=\"37\" height=\"24\"/>\n                                                                <buttonCell key=\"cell\" type=\"push\" title=\"⋯\" bezelStyle=\"rounded\" alignment=\"center\" borderStyle=\"border\" imageScaling=\"proportionallyDown\" inset=\"2\" id=\"Ext-Set-Cel\">\n                                                                    <behavior key=\"behavior\" pushIn=\"YES\" lightByBackground=\"YES\" lightByGray=\"YES\"/>\n                                                                    <font key=\"font\" metaFont=\"system\"/>\n                                                                </buttonCell>\n                                                                <connections>\n                                                                    <action selector=\"showExtraSettings:\" target=\"yhc-gS-h02\" id=\"Ext-Set-Act\"/>\n                                                                </connections>\n                                                            </button>\n                                                        </subviews>\n                                                        <visibilityPriorities>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                        </visibilityPriorities>\n                                                        <customSpacing>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                        </customSpacing>\n                                                    </stackView>\n                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"top\" spacing=\"10\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"TgL-lF-gWJ\">\n                                                        <rect key=\"frame\" x=\"329\" y=\"0.0\" width=\"171\" height=\"24\"/>\n                                                        <subviews>\n                                                            <button verticalHuggingPriority=\"750\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"1qy-0d-Se1\">\n                                                                <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"81\" height=\"24\"/>\n                                                                <buttonCell key=\"cell\" type=\"push\" title=\"Import\" bezelStyle=\"rounded\" image=\"square.and.arrow.down\" catalog=\"system\" imagePosition=\"left\" alignment=\"center\" borderStyle=\"border\" imageScaling=\"proportionallyDown\" inset=\"2\" id=\"RgZ-Jw-XQZ\">\n                                                                    <behavior key=\"behavior\" pushIn=\"YES\" lightByBackground=\"YES\" lightByGray=\"YES\"/>\n                                                                    <font key=\"font\" metaFont=\"system\"/>\n                                                                </buttonCell>\n                                                                <connections>\n                                                                    <action selector=\"importConfig:\" target=\"yhc-gS-h02\" id=\"GGM-3r-onY\"/>\n                                                                </connections>\n                                                            </button>\n                                                            <button verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"749\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"hJG-z6-2Z1\">\n                                                                <rect key=\"frame\" x=\"91\" y=\"0.0\" width=\"80\" height=\"24\"/>\n                                                                <buttonCell key=\"cell\" type=\"push\" title=\"Export\" bezelStyle=\"rounded\" image=\"square.and.arrow.up\" catalog=\"system\" imagePosition=\"left\" alignment=\"center\" borderStyle=\"border\" imageScaling=\"proportionallyDown\" inset=\"2\" id=\"IO3-Hi-7gC\">\n                                                                    <behavior key=\"behavior\" pushIn=\"YES\" lightByBackground=\"YES\" lightByGray=\"YES\"/>\n                                                                    <font key=\"font\" metaFont=\"system\"/>\n                                                                </buttonCell>\n                                                                <connections>\n                                                                    <action selector=\"exportConfig:\" target=\"yhc-gS-h02\" id=\"UTa-bz-fXM\"/>\n                                                                </connections>\n                                                            </button>\n                                                        </subviews>\n                                                        <visibilityPriorities>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                        </visibilityPriorities>\n                                                        <customSpacing>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                        </customSpacing>\n                                                    </stackView>\n                                                </subviews>\n                                                <visibilityPriorities>\n                                                    <integer value=\"1000\"/>\n                                                    <integer value=\"1000\"/>\n                                                </visibilityPriorities>\n                                                <customSpacing>\n                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                </customSpacing>\n                                            </stackView>\n                                        </subviews>\n                                        <constraints>\n                                            <constraint firstAttribute=\"width\" priority=\"999\" constant=\"500\" id=\"Db3-zB-dtQ\"/>\n                                            <constraint firstAttribute=\"width\" relation=\"greaterThanOrEqual\" constant=\"500\" id=\"OsX-gR-mRY\"/>\n                                            <constraint firstAttribute=\"height\" relation=\"greaterThanOrEqual\" constant=\"150\" id=\"UiW-yY-DW4\"/>\n                                            <constraint firstAttribute=\"trailing\" secondItem=\"Pon-Fc-IkL\" secondAttribute=\"trailing\" id=\"ZzM-1H-aHN\"/>\n                                            <constraint firstAttribute=\"height\" priority=\"750\" constant=\"150\" id=\"bDD-of-gYL\"/>\n                                        </constraints>\n                                        <visibilityPriorities>\n                                            <integer value=\"1000\"/>\n                                            <integer value=\"1000\"/>\n                                            <integer value=\"1000\"/>\n                                            <integer value=\"1000\"/>\n                                            <integer value=\"1000\"/>\n                                            <integer value=\"1000\"/>\n                                            <integer value=\"1000\"/>\n                                            <integer value=\"1000\"/>\n                                            <integer value=\"1000\"/>\n                                            <integer value=\"1000\"/>\n                                            <integer value=\"1000\"/>\n                                            <integer value=\"1000\"/>\n                                            <integer value=\"1000\"/>\n                                            <integer value=\"1000\"/>\n                                            <integer value=\"1000\"/>\n                                            <integer value=\"1000\"/>\n                                            <integer value=\"1000\"/>\n                                            <integer value=\"1000\"/>\n                                            <integer value=\"1000\"/>\n                                        </visibilityPriorities>\n                                        <customSpacing>\n                                            <real value=\"3.4028234663852886e+38\"/>\n                                            <real value=\"3.4028234663852886e+38\"/>\n                                            <real value=\"3.4028234663852886e+38\"/>\n                                            <real value=\"3.4028234663852886e+38\"/>\n                                            <real value=\"3.4028234663852886e+38\"/>\n                                            <real value=\"3.4028234663852886e+38\"/>\n                                            <real value=\"3.4028234663852886e+38\"/>\n                                            <real value=\"3.4028234663852886e+38\"/>\n                                            <real value=\"3.4028234663852886e+38\"/>\n                                            <real value=\"3.4028234663852886e+38\"/>\n                                            <real value=\"3.4028234663852886e+38\"/>\n                                            <real value=\"3.4028234663852886e+38\"/>\n                                            <real value=\"3.4028234663852886e+38\"/>\n                                            <real value=\"3.4028234663852886e+38\"/>\n                                            <real value=\"3.4028234663852886e+38\"/>\n                                            <real value=\"3.4028234663852886e+38\"/>\n                                            <real value=\"3.4028234663852886e+38\"/>\n                                            <real value=\"3.4028234663852886e+38\"/>\n                                            <real value=\"3.4028234663852886e+38\"/>\n                                        </customSpacing>\n                                    </stackView>\n                                </subviews>\n                                <constraints>\n                                    <constraint firstAttribute=\"bottom\" secondItem=\"tUi-Ja-evb\" secondAttribute=\"bottom\" constant=\"26\" id=\"7AY-I6-vvc\"/>\n                                    <constraint firstItem=\"tUi-Ja-evb\" firstAttribute=\"top\" secondItem=\"eWR-ji-Z8w\" secondAttribute=\"top\" constant=\"20\" symbolic=\"YES\" id=\"XkW-2V-RHO\"/>\n                                    <constraint firstAttribute=\"width\" constant=\"850\" id=\"e4W-f5-Y5J\"/>\n                                </constraints>\n                                <visibilityPriorities>\n                                    <integer value=\"1000\"/>\n                                </visibilityPriorities>\n                                <customSpacing>\n                                    <real value=\"3.4028234663852886e+38\"/>\n                                </customSpacing>\n                            </stackView>\n                        </subviews>\n                        <constraints>\n                            <constraint firstItem=\"eWR-ji-Z8w\" firstAttribute=\"leading\" secondItem=\"mTk-eQ-4uf\" secondAttribute=\"leading\" id=\"byc-Jo-5ma\"/>\n                            <constraint firstAttribute=\"trailing\" secondItem=\"eWR-ji-Z8w\" secondAttribute=\"trailing\" id=\"jAe-hS-y2H\"/>\n                            <constraint firstItem=\"eWR-ji-Z8w\" firstAttribute=\"top\" secondItem=\"mTk-eQ-4uf\" secondAttribute=\"top\" id=\"ky8-7J-756\"/>\n                            <constraint firstAttribute=\"bottom\" secondItem=\"eWR-ji-Z8w\" secondAttribute=\"bottom\" id=\"xe9-QH-nVz\"/>\n                        </constraints>\n                    </view>\n                    <connections>\n                        <outlet property=\"allowAnyShortcutCheckbox\" destination=\"UY7-Nt-G3K\" id=\"0dH-iu-gSs\"/>\n                        <outlet property=\"checkForUpdatesAutomaticallyCheckbox\" destination=\"HcU-0y-wJU\" id=\"ueY-S8-Ec0\"/>\n                        <outlet property=\"checkForUpdatesButton\" destination=\"bn6-rz-AHw\" id=\"9jf-az-Lvw\"/>\n                        <outlet property=\"cursorAcrossCheckbox\" destination=\"WUS-pH-Rxv\" id=\"xTd-uX-foF\"/>\n                        <outlet property=\"cycleSizesView\" destination=\"er1-EQ-YIF\" id=\"yHn-9t-gqI\"/>\n                        <outlet property=\"cycleSizesViewHeightConstraint\" destination=\"IXv-8o-a6i\" id=\"zjD-0U-P8y\"/>\n                        <outlet property=\"doubleClickTitleBarCheckbox\" destination=\"hB7-uu-XeP\" id=\"eNC-NI-Wmg\"/>\n                        <outlet property=\"extraSettingsButton\" destination=\"Ext-Set-Btn\" id=\"Ext-Set-Out\"/>\n                        <outlet property=\"gapLabel\" destination=\"jd8-SJ-lza\" id=\"pqG-fr-nwW\"/>\n                        <outlet property=\"gapSlider\" destination=\"O9H-ZD-bqL\" id=\"H7T-4Y-g8e\"/>\n                        <outlet property=\"hideMenuBarIconCheckbox\" destination=\"wBT-R4-q9s\" id=\"bkO-zn-yAZ\"/>\n                        <outlet property=\"launchOnLoginCheckbox\" destination=\"eQJ-O3-a8H\" id=\"iF3-bq-l1j\"/>\n                        <outlet property=\"reflowTodoShortcutView\" destination=\"QTZ-pv-mwo\" id=\"VYl-Tv-gFy\"/>\n                        <outlet property=\"stageLabel\" destination=\"eJ0-SU-XN3\" id=\"NbI-hl-Tg2\"/>\n                        <outlet property=\"stageSlider\" destination=\"JTT-40-Rtw\" id=\"9UK-b3-ph7\"/>\n                        <outlet property=\"stageView\" destination=\"sGP-9h-TJl\" id=\"B72-cy-f3F\"/>\n                        <outlet property=\"subsequentExecutionPopUpButton\" destination=\"pVH-s3-FHn\" id=\"tdS-iJ-EXc\"/>\n                        <outlet property=\"todoAppSidePopUpButton\" destination=\"rB8-CF-Yrt\" id=\"oNn-QO-3IC\"/>\n                        <outlet property=\"todoAppWidthField\" destination=\"9VW-Hc-lh2\" id=\"o0g-BR-XOK\"/>\n                        <outlet property=\"todoAppWidthUnitPopUpButton\" destination=\"7Kx-vz-WQp\" id=\"Hfq-La-GEy\"/>\n                        <outlet property=\"todoCheckbox\" destination=\"0PP-0x-QWc\" id=\"F1A-VF-cT5\"/>\n                        <outlet property=\"todoView\" destination=\"lRr-k7-YZR\" id=\"Hcn-7a-WBS\"/>\n                        <outlet property=\"todoViewHeightConstraint\" destination=\"89R-oK-9JB\" id=\"xTV-rY-WiU\"/>\n                        <outlet property=\"toggleTodoShortcutView\" destination=\"uca-0m-naE\" id=\"tnB-hD-SfB\"/>\n                        <outlet property=\"unsnapRestoreButton\" destination=\"9Ed-T3-hCA\" id=\"3UI-gj-R73\"/>\n                        <outlet property=\"useCursorScreenDetectionCheckbox\" destination=\"CUR-SD-CHK\" id=\"cXm-7I-x0Q\"/>\n                        <outlet property=\"versionLabel\" destination=\"Azi-Y9-9xa\" id=\"P8e-ZA-J6X\"/>\n                        <outlet property=\"windowSnappingCheckbox\" destination=\"3wO-pf-nsb\" id=\"00K-AW-LYi\"/>\n                    </connections>\n                </viewController>\n                <customObject id=\"c9e-yT-Dp7\" userLabel=\"First Responder\" customClass=\"NSResponder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"717\" y=\"1314\"/>\n        </scene>\n        <!--Window Controller-->\n        <scene sceneID=\"lEt-lj-rQC\">\n            <objects>\n                <windowController storyboardIdentifier=\"AccessibilityWindowController\" id=\"GjB-3W-g3G\" customClass=\"AccessibilityWindowController\" customModule=\"Rectangle\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <window key=\"window\" title=\"Authorize Rectangle\" allowsToolTipsWhenApplicationIsInactive=\"NO\" autorecalculatesKeyViewLoop=\"NO\" releasedWhenClosed=\"NO\" visibleAtLaunch=\"NO\" frameAutosaveName=\"\" animationBehavior=\"default\" titlebarAppearsTransparent=\"YES\" titleVisibility=\"hidden\" id=\"9JD-tZ-7jf\">\n                        <windowStyleMask key=\"styleMask\" titled=\"YES\" closable=\"YES\" miniaturizable=\"YES\" fullSizeContentView=\"YES\"/>\n                        <windowPositionMask key=\"initialPositionMask\" topStrut=\"YES\" bottomStrut=\"YES\"/>\n                        <rect key=\"contentRect\" x=\"539\" y=\"594\" width=\"480\" height=\"270\"/>\n                        <rect key=\"screenRect\" x=\"0.0\" y=\"0.0\" width=\"1680\" height=\"1025\"/>\n                        <connections>\n                            <outlet property=\"delegate\" destination=\"GjB-3W-g3G\" id=\"mlD-s5-EEm\"/>\n                        </connections>\n                    </window>\n                    <connections>\n                        <segue destination=\"5D9-0a-Mbi\" kind=\"relationship\" relationship=\"window.shadowedContentViewController\" id=\"8wX-oi-1HB\"/>\n                    </connections>\n                </windowController>\n                <customObject id=\"8dD-1m-YGC\" userLabel=\"First Responder\" customClass=\"NSResponder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"656\" y=\"220\"/>\n        </scene>\n        <!--Accessibility View Controller-->\n        <scene sceneID=\"yOZ-qp-n9s\">\n            <objects>\n                <viewController id=\"5D9-0a-Mbi\" customClass=\"AccessibilityViewController\" customModule=\"Rectangle\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" id=\"1ZR-Nv-NGc\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"290\" height=\"406\"/>\n                        <autoresizingMask key=\"autoresizingMask\"/>\n                        <subviews>\n                            <stackView distribution=\"fill\" orientation=\"vertical\" alignment=\"centerX\" spacing=\"22\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"4I0-IC-dnS\">\n                                <rect key=\"frame\" x=\"20\" y=\"20\" width=\"250\" height=\"350\"/>\n                                <subviews>\n                                    <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"751\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"8BY-qu-jQ8\">\n                                        <rect key=\"frame\" x=\"27\" y=\"324\" width=\"196\" height=\"26\"/>\n                                        <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" title=\"Authorize Rectangle\" id=\"iXo-XL-T6q\">\n                                            <font key=\"font\" metaFont=\"system\" size=\"22\"/>\n                                            <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                            <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                        </textFieldCell>\n                                    </textField>\n                                    <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"5m6-XJ-hq8\">\n                                        <rect key=\"frame\" x=\"95\" y=\"242\" width=\"60\" height=\"60\"/>\n                                        <constraints>\n                                            <constraint firstAttribute=\"width\" constant=\"60\" id=\"KxT-kJ-YPv\"/>\n                                            <constraint firstAttribute=\"height\" constant=\"60\" id=\"svN-TS-n5K\"/>\n                                        </constraints>\n                                        <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"NSApplicationIcon\" id=\"dlp-3B-rHa\"/>\n                                    </imageView>\n                                    <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"749\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"AdB-Z9-aJk\">\n                                        <rect key=\"frame\" x=\"-2\" y=\"188\" width=\"254\" height=\"32\"/>\n                                        <textFieldCell key=\"cell\" alignment=\"center\" title=\"Rectangle needs your permission to control your window positions.\" id=\"gyg-xl-dPn\">\n                                            <font key=\"font\" metaFont=\"system\"/>\n                                            <color key=\"textColor\" name=\"secondaryLabelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                            <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                        </textFieldCell>\n                                    </textField>\n                                    <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"749\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"XRC-ST-jLi\">\n                                        <rect key=\"frame\" x=\"-2\" y=\"138\" width=\"254\" height=\"28\"/>\n                                        <textFieldCell key=\"cell\" alignment=\"center\" title=\"Go to System Preferences → Security &amp; Privacy → Privacy → Accessibility\" id=\"lgE-cR-cQ5\">\n                                            <font key=\"font\" metaFont=\"message\" size=\"11\"/>\n                                            <color key=\"textColor\" name=\"secondaryLabelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                            <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                        </textFieldCell>\n                                    </textField>\n                                    <button verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"LtJ-oN-QeI\">\n                                        <rect key=\"frame\" x=\"34\" y=\"92\" width=\"182\" height=\"24\"/>\n                                        <buttonCell key=\"cell\" type=\"bevel\" title=\"Open System Preferences\" bezelStyle=\"regularSquare\" alignment=\"center\" borderStyle=\"border\" imageScaling=\"proportionallyDown\" inset=\"2\" id=\"iWV-c2-BJD\">\n                                            <behavior key=\"behavior\" pushIn=\"YES\" lightByBackground=\"YES\" lightByGray=\"YES\"/>\n                                            <font key=\"font\" metaFont=\"system\"/>\n                                            <string key=\"keyEquivalent\" base64-UTF8=\"YES\">\nDQ\n</string>\n                                        </buttonCell>\n                                        <connections>\n                                            <action selector=\"openSystemPrefs:\" target=\"5D9-0a-Mbi\" id=\"6dM-UK-KBu\"/>\n                                        </connections>\n                                    </button>\n                                    <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"TlJ-Di-kby\">\n                                        <rect key=\"frame\" x=\"57\" y=\"54\" width=\"136\" height=\"16\"/>\n                                        <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" title=\"Enable Rectangle.app\" id=\"t7n-mU-75I\">\n                                            <font key=\"font\" metaFont=\"system\"/>\n                                            <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                            <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                        </textFieldCell>\n                                    </textField>\n                                    <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"749\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"6GN-iB-M1L\">\n                                        <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"254\" height=\"32\"/>\n                                        <textFieldCell key=\"cell\" alignment=\"center\" title=\"If the checkbox is disabled, click the padlock and enter your password\" id=\"9XM-Zb-HEb\">\n                                            <font key=\"font\" metaFont=\"system\"/>\n                                            <color key=\"textColor\" name=\"secondaryLabelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                            <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                        </textFieldCell>\n                                    </textField>\n                                </subviews>\n                                <constraints>\n                                    <constraint firstAttribute=\"width\" relation=\"greaterThanOrEqual\" priority=\"750\" constant=\"250\" id=\"Txs-9d-Su6\"/>\n                                    <constraint firstAttribute=\"width\" priority=\"750\" constant=\"250\" id=\"ija-bQ-0qq\"/>\n                                </constraints>\n                                <visibilityPriorities>\n                                    <integer value=\"1000\"/>\n                                    <integer value=\"1000\"/>\n                                    <integer value=\"1000\"/>\n                                    <integer value=\"1000\"/>\n                                    <integer value=\"1000\"/>\n                                    <integer value=\"1000\"/>\n                                    <integer value=\"1000\"/>\n                                </visibilityPriorities>\n                                <customSpacing>\n                                    <real value=\"3.4028234663852886e+38\"/>\n                                    <real value=\"3.4028234663852886e+38\"/>\n                                    <real value=\"3.4028234663852886e+38\"/>\n                                    <real value=\"3.4028234663852886e+38\"/>\n                                    <real value=\"3.4028234663852886e+38\"/>\n                                    <real value=\"3.4028234663852886e+38\"/>\n                                    <real value=\"3.4028234663852886e+38\"/>\n                                </customSpacing>\n                            </stackView>\n                        </subviews>\n                        <constraints>\n                            <constraint firstAttribute=\"bottom\" secondItem=\"4I0-IC-dnS\" secondAttribute=\"bottom\" constant=\"20\" symbolic=\"YES\" id=\"6VM-hI-r3b\"/>\n                            <constraint firstItem=\"4I0-IC-dnS\" firstAttribute=\"leading\" secondItem=\"1ZR-Nv-NGc\" secondAttribute=\"leading\" constant=\"20\" symbolic=\"YES\" id=\"Gcc-RY-bAG\"/>\n                            <constraint firstAttribute=\"trailing\" secondItem=\"4I0-IC-dnS\" secondAttribute=\"trailing\" constant=\"20\" symbolic=\"YES\" id=\"avA-k7-RbF\"/>\n                            <constraint firstItem=\"4I0-IC-dnS\" firstAttribute=\"top\" secondItem=\"1ZR-Nv-NGc\" secondAttribute=\"top\" constant=\"36\" id=\"jJz-xW-me7\"/>\n                        </constraints>\n                    </view>\n                    <connections>\n                        <outlet property=\"openSysPrefsButton\" destination=\"LtJ-oN-QeI\" id=\"8qu-hY-Yqt\"/>\n                        <outlet property=\"padlockField\" destination=\"6GN-iB-M1L\" id=\"sDW-zz-so8\"/>\n                        <outlet property=\"sysPrefsPathField\" destination=\"XRC-ST-jLi\" id=\"dsy-lz-XdE\"/>\n                    </connections>\n                </viewController>\n                <customObject id=\"Pz3-OM-dTg\" userLabel=\"First Responder\" customClass=\"NSResponder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"656\" y=\"681.5\"/>\n        </scene>\n        <!--View Controller-->\n        <scene sceneID=\"s8a-91-b01\">\n            <objects>\n                <viewController id=\"6vv-bW-t7F\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" id=\"3mg-n6-fQy\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"340\" height=\"424\"/>\n                        <autoresizingMask key=\"autoresizingMask\"/>\n                        <subviews>\n                            <stackView distribution=\"fill\" orientation=\"vertical\" alignment=\"centerX\" spacing=\"22\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"W6p-pE-JE0\">\n                                <rect key=\"frame\" x=\"20\" y=\"20\" width=\"300\" height=\"374\"/>\n                                <subviews>\n                                    <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"751\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"rpO-9I-Owx\">\n                                        <rect key=\"frame\" x=\"63\" y=\"348\" width=\"174\" height=\"26\"/>\n                                        <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" title=\"About Todo Mode\" id=\"ZVi-DR-1zj\">\n                                            <font key=\"font\" metaFont=\"system\" size=\"22\"/>\n                                            <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                            <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                        </textFieldCell>\n                                    </textField>\n                                    <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"ylF-B2-MK0\">\n                                        <rect key=\"frame\" x=\"120\" y=\"266\" width=\"60\" height=\"60\"/>\n                                        <constraints>\n                                            <constraint firstAttribute=\"height\" constant=\"60\" id=\"Jog-8E-fGF\"/>\n                                            <constraint firstAttribute=\"width\" constant=\"60\" id=\"SAz-Qi-u4X\"/>\n                                        </constraints>\n                                        <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" image=\"NSApplicationIcon\" id=\"6Pu-jH-EHJ\"/>\n                                    </imageView>\n                                    <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"749\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"F9O-o8-0gu\">\n                                        <rect key=\"frame\" x=\"-2\" y=\"212\" width=\"304\" height=\"32\"/>\n                                        <textFieldCell key=\"cell\" alignment=\"center\" title=\"Keep a chosen application visible on the right side of your primary screen at all times\" id=\"N2U-pY-CLq\">\n                                            <font key=\"font\" metaFont=\"system\"/>\n                                            <color key=\"textColor\" name=\"secondaryLabelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                            <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                        </textFieldCell>\n                                    </textField>\n                                    <stackView distribution=\"fill\" orientation=\"vertical\" alignment=\"leading\" spacing=\"22\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Di0-sy-qj8\">\n                                        <rect key=\"frame\" x=\"7\" y=\"82\" width=\"287\" height=\"108\"/>\n                                        <subviews>\n                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"749\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"KUM-bh-8es\">\n                                                <rect key=\"frame\" x=\"-2\" y=\"92\" width=\"291\" height=\"16\"/>\n                                                <textFieldCell key=\"cell\" alignment=\"left\" title=\"1. Bring your chosen todo application frontmost\" id=\"qze-7p-m1X\">\n                                                    <font key=\"font\" metaFont=\"system\"/>\n                                                    <color key=\"textColor\" name=\"secondaryLabelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                </textFieldCell>\n                                            </textField>\n                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"749\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"SZD-vs-5hS\">\n                                                <rect key=\"frame\" x=\"-2\" y=\"38\" width=\"201\" height=\"32\"/>\n                                                <textFieldCell key=\"cell\" alignment=\"left\" id=\"xNi-9K-fnJ\">\n                                                    <font key=\"font\" metaFont=\"system\"/>\n                                                    <string key=\"title\">2. In the Rectangle menu, select\n\"Use [Application] as Todo App\"</string>\n                                                    <color key=\"textColor\" name=\"secondaryLabelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                </textFieldCell>\n                                            </textField>\n                                            <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"749\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"WN5-xt-f1V\">\n                                                <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"278\" height=\"16\"/>\n                                                <textFieldCell key=\"cell\" alignment=\"left\" title=\"3. In the Rectangle menu, enable Todo Mode.\" id=\"8dv-v2-SPu\">\n                                                    <font key=\"font\" metaFont=\"system\"/>\n                                                    <color key=\"textColor\" name=\"secondaryLabelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                    <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                                </textFieldCell>\n                                            </textField>\n                                        </subviews>\n                                        <visibilityPriorities>\n                                            <integer value=\"1000\"/>\n                                            <integer value=\"1000\"/>\n                                            <integer value=\"1000\"/>\n                                        </visibilityPriorities>\n                                        <customSpacing>\n                                            <real value=\"3.4028234663852886e+38\"/>\n                                            <real value=\"3.4028234663852886e+38\"/>\n                                            <real value=\"3.4028234663852886e+38\"/>\n                                        </customSpacing>\n                                    </stackView>\n                                    <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"749\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"s4a-Yd-3qn\">\n                                        <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"304\" height=\"60\"/>\n                                        <textFieldCell key=\"cell\" alignment=\"left\" id=\"q9C-qZ-xw5\">\n                                            <font key=\"font\" metaFont=\"cellTitle\"/>\n                                            <string key=\"title\">While in Todo Mode, you can refresh the Todo Mode layout by selecting \"Reflow Todo\" in the Rectangle menu or executing the associated keyboard shortcut.</string>\n                                            <color key=\"textColor\" name=\"secondaryLabelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                            <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                        </textFieldCell>\n                                    </textField>\n                                </subviews>\n                                <constraints>\n                                    <constraint firstAttribute=\"width\" priority=\"750\" constant=\"300\" id=\"Nxj-e2-I72\"/>\n                                    <constraint firstAttribute=\"width\" relation=\"greaterThanOrEqual\" priority=\"750\" constant=\"250\" id=\"Qmv-zk-2UP\"/>\n                                </constraints>\n                                <visibilityPriorities>\n                                    <integer value=\"1000\"/>\n                                    <integer value=\"1000\"/>\n                                    <integer value=\"1000\"/>\n                                    <integer value=\"1000\"/>\n                                    <integer value=\"1000\"/>\n                                </visibilityPriorities>\n                                <customSpacing>\n                                    <real value=\"3.4028234663852886e+38\"/>\n                                    <real value=\"3.4028234663852886e+38\"/>\n                                    <real value=\"3.4028234663852886e+38\"/>\n                                    <real value=\"3.4028234663852886e+38\"/>\n                                    <real value=\"3.4028234663852886e+38\"/>\n                                </customSpacing>\n                            </stackView>\n                        </subviews>\n                        <constraints>\n                            <constraint firstAttribute=\"trailing\" secondItem=\"W6p-pE-JE0\" secondAttribute=\"trailing\" constant=\"20\" symbolic=\"YES\" id=\"2g1-LL-ZFM\"/>\n                            <constraint firstAttribute=\"bottom\" secondItem=\"W6p-pE-JE0\" secondAttribute=\"bottom\" constant=\"20\" symbolic=\"YES\" id=\"Un6-Cf-6MY\"/>\n                            <constraint firstItem=\"W6p-pE-JE0\" firstAttribute=\"leading\" secondItem=\"3mg-n6-fQy\" secondAttribute=\"leading\" constant=\"20\" symbolic=\"YES\" id=\"pH9-6n-vh5\"/>\n                            <constraint firstItem=\"W6p-pE-JE0\" firstAttribute=\"top\" secondItem=\"3mg-n6-fQy\" secondAttribute=\"top\" constant=\"30\" id=\"pbw-t3-8tK\"/>\n                        </constraints>\n                    </view>\n                </viewController>\n                <customObject id=\"gYM-Vl-Ier\" userLabel=\"First Responder\" customClass=\"NSResponder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"1810\" y=\"707\"/>\n        </scene>\n        <!--Window Controller-->\n        <scene sceneID=\"vbx-pw-SUZ\">\n            <objects>\n                <windowController storyboardIdentifier=\"AboutTodoWindowController\" id=\"yaK-Dt-a87\" sceneMemberID=\"viewController\">\n                    <window key=\"window\" title=\"About Todo Mode\" allowsToolTipsWhenApplicationIsInactive=\"NO\" autorecalculatesKeyViewLoop=\"NO\" releasedWhenClosed=\"NO\" visibleAtLaunch=\"NO\" frameAutosaveName=\"\" animationBehavior=\"default\" titlebarAppearsTransparent=\"YES\" titleVisibility=\"hidden\" id=\"MDd-Sm-sUx\">\n                        <windowStyleMask key=\"styleMask\" titled=\"YES\" closable=\"YES\" miniaturizable=\"YES\" fullSizeContentView=\"YES\"/>\n                        <rect key=\"contentRect\" x=\"425\" y=\"462\" width=\"480\" height=\"270\"/>\n                        <rect key=\"screenRect\" x=\"0.0\" y=\"0.0\" width=\"2560\" height=\"1415\"/>\n                        <view key=\"contentView\" id=\"IQ2-6g-d9Z\">\n                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"480\" height=\"270\"/>\n                            <autoresizingMask key=\"autoresizingMask\"/>\n                        </view>\n                        <connections>\n                            <outlet property=\"delegate\" destination=\"yaK-Dt-a87\" id=\"Bwx-sa-dAG\"/>\n                        </connections>\n                    </window>\n                    <connections>\n                        <segue destination=\"6vv-bW-t7F\" kind=\"relationship\" relationship=\"window.shadowedContentViewController\" id=\"NZk-Jq-tJh\"/>\n                    </connections>\n                </windowController>\n                <customObject id=\"EuJ-07-wZi\" userLabel=\"First Responder\" customClass=\"NSResponder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"1810\" y=\"220\"/>\n        </scene>\n        <!--Window Controller-->\n        <scene sceneID=\"QT5-BH-OxD\">\n            <objects>\n                <windowController storyboardIdentifier=\"WelcomeWindowController\" id=\"QOv-q0-4lf\" sceneMemberID=\"viewController\">\n                    <window key=\"window\" title=\"Welcome!\" allowsToolTipsWhenApplicationIsInactive=\"NO\" autorecalculatesKeyViewLoop=\"NO\" releasedWhenClosed=\"NO\" visibleAtLaunch=\"NO\" frameAutosaveName=\"\" animationBehavior=\"default\" titlebarAppearsTransparent=\"YES\" titleVisibility=\"hidden\" id=\"HtH-yF-lBR\">\n                        <windowStyleMask key=\"styleMask\" titled=\"YES\" closable=\"YES\" miniaturizable=\"YES\" fullSizeContentView=\"YES\"/>\n                        <rect key=\"contentRect\" x=\"245\" y=\"301\" width=\"480\" height=\"270\"/>\n                        <rect key=\"screenRect\" x=\"0.0\" y=\"0.0\" width=\"1680\" height=\"1025\"/>\n                        <connections>\n                            <outlet property=\"delegate\" destination=\"QOv-q0-4lf\" id=\"2a5-83-wY9\"/>\n                        </connections>\n                    </window>\n                    <connections>\n                        <segue destination=\"suu-55-jFR\" kind=\"relationship\" relationship=\"window.shadowedContentViewController\" id=\"naP-lh-keh\"/>\n                    </connections>\n                </windowController>\n                <customObject id=\"OlH-rB-ig8\" userLabel=\"First Responder\" customClass=\"NSResponder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"1200\" y=\"220\"/>\n        </scene>\n        <!--Welcome View Controller-->\n        <scene sceneID=\"fYD-GK-ZAf\">\n            <objects>\n                <viewController storyboardIdentifier=\"WelcomeViewController\" id=\"suu-55-jFR\" customClass=\"WelcomeViewController\" customModule=\"Rectangle\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" id=\"BAr-aA-3ku\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"290\" height=\"328\"/>\n                        <autoresizingMask key=\"autoresizingMask\"/>\n                        <subviews>\n                            <stackView distribution=\"fill\" orientation=\"vertical\" alignment=\"centerX\" spacing=\"22\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"YO5-zp-VfI\">\n                                <rect key=\"frame\" x=\"20\" y=\"20\" width=\"250\" height=\"272\"/>\n                                <subviews>\n                                    <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"C9S-bS-jaE\">\n                                        <rect key=\"frame\" x=\"13\" y=\"246\" width=\"224\" height=\"26\"/>\n                                        <textFieldCell key=\"cell\" lineBreakMode=\"clipping\" title=\"Welcome to Rectangle!\" id=\"kYm-Ye-gOR\">\n                                            <font key=\"font\" metaFont=\"system\" size=\"22\"/>\n                                            <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                            <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                        </textFieldCell>\n                                    </textField>\n                                    <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"749\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"g2U-cD-gRF\">\n                                        <rect key=\"frame\" x=\"-2\" y=\"192\" width=\"254\" height=\"32\"/>\n                                        <textFieldCell key=\"cell\" alignment=\"center\" title=\"Please select your default shortcuts and behavior\" id=\"gEd-S9-Cfp\">\n                                            <font key=\"font\" metaFont=\"system\"/>\n                                            <color key=\"textColor\" name=\"secondaryLabelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                            <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                        </textFieldCell>\n                                    </textField>\n                                    <stackView distribution=\"fill\" orientation=\"vertical\" alignment=\"centerX\" spacing=\"22\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"NR8-n2-Yhs\">\n                                        <rect key=\"frame\" x=\"56\" y=\"100\" width=\"139\" height=\"70\"/>\n                                        <subviews>\n                                            <button verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"mYO-is-OgK\">\n                                                <rect key=\"frame\" x=\"0.0\" y=\"46\" width=\"139\" height=\"24\"/>\n                                                <buttonCell key=\"cell\" type=\"push\" title=\"Recommended\" bezelStyle=\"rounded\" image=\"StatusTemplate\" imagePosition=\"left\" alignment=\"center\" state=\"on\" borderStyle=\"border\" imageScaling=\"proportionallyDown\" inset=\"2\" id=\"HOp-Kd-vhY\">\n                                                    <behavior key=\"behavior\" pushIn=\"YES\" lightByBackground=\"YES\" lightByGray=\"YES\"/>\n                                                    <font key=\"font\" metaFont=\"system\"/>\n                                                    <string key=\"keyEquivalent\" base64-UTF8=\"YES\">\nDQ\n</string>\n                                                </buttonCell>\n                                                <connections>\n                                                    <action selector=\"selectRecommended:\" target=\"suu-55-jFR\" id=\"yQE-qI-owh\"/>\n                                                </connections>\n                                            </button>\n                                            <button verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"6Dw-0R-Da9\">\n                                                <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"139\" height=\"24\"/>\n                                                <buttonCell key=\"cell\" type=\"push\" title=\"Spectacle\" bezelStyle=\"rounded\" alignment=\"center\" borderStyle=\"border\" imageScaling=\"proportionallyDown\" inset=\"2\" id=\"2XJ-Ca-9di\">\n                                                    <behavior key=\"behavior\" pushIn=\"YES\" lightByBackground=\"YES\" lightByGray=\"YES\"/>\n                                                    <font key=\"font\" metaFont=\"system\"/>\n                                                </buttonCell>\n                                                <connections>\n                                                    <action selector=\"selectSpectacle:\" target=\"suu-55-jFR\" id=\"FqP-IO-RUQ\"/>\n                                                </connections>\n                                            </button>\n                                        </subviews>\n                                        <constraints>\n                                            <constraint firstItem=\"6Dw-0R-Da9\" firstAttribute=\"trailing\" secondItem=\"mYO-is-OgK\" secondAttribute=\"trailing\" id=\"RrI-ig-8Jn\"/>\n                                            <constraint firstItem=\"6Dw-0R-Da9\" firstAttribute=\"leading\" secondItem=\"mYO-is-OgK\" secondAttribute=\"leading\" id=\"rah-Kq-8aZ\"/>\n                                        </constraints>\n                                        <visibilityPriorities>\n                                            <integer value=\"1000\"/>\n                                            <integer value=\"1000\"/>\n                                        </visibilityPriorities>\n                                        <customSpacing>\n                                            <real value=\"3.4028234663852886e+38\"/>\n                                            <real value=\"3.4028234663852886e+38\"/>\n                                        </customSpacing>\n                                    </stackView>\n                                    <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"749\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Uey-tt-ecv\">\n                                        <rect key=\"frame\" x=\"-2\" y=\"50\" width=\"254\" height=\"28\"/>\n                                        <textFieldCell key=\"cell\" alignment=\"center\" title=\"Spectacle shortcuts are more likely to conflict with other shortcuts\" id=\"kXi-dT-zSF\">\n                                            <font key=\"font\" metaFont=\"message\" size=\"11\"/>\n                                            <color key=\"textColor\" name=\"secondaryLabelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                            <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                        </textFieldCell>\n                                    </textField>\n                                    <textField focusRingType=\"none\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"749\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Y0r-Cp-GEM\">\n                                        <rect key=\"frame\" x=\"-2\" y=\"0.0\" width=\"254\" height=\"28\"/>\n                                        <textFieldCell key=\"cell\" alignment=\"center\" title=\"Choosing Spectacle will also cycle 1/2, 2/3, and 1/3 window widths on repeated shortcuts\" id=\"xcE-uL-2J0\">\n                                            <font key=\"font\" metaFont=\"message\" size=\"11\"/>\n                                            <color key=\"textColor\" name=\"secondaryLabelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                            <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                        </textFieldCell>\n                                    </textField>\n                                </subviews>\n                                <constraints>\n                                    <constraint firstAttribute=\"width\" priority=\"750\" constant=\"250\" id=\"9Te-qi-H02\"/>\n                                    <constraint firstAttribute=\"width\" relation=\"greaterThanOrEqual\" priority=\"750\" constant=\"250\" id=\"Uhe-KD-lTI\"/>\n                                </constraints>\n                                <visibilityPriorities>\n                                    <integer value=\"1000\"/>\n                                    <integer value=\"1000\"/>\n                                    <integer value=\"1000\"/>\n                                    <integer value=\"1000\"/>\n                                    <integer value=\"1000\"/>\n                                </visibilityPriorities>\n                                <customSpacing>\n                                    <real value=\"3.4028234663852886e+38\"/>\n                                    <real value=\"3.4028234663852886e+38\"/>\n                                    <real value=\"3.4028234663852886e+38\"/>\n                                    <real value=\"3.4028234663852886e+38\"/>\n                                    <real value=\"3.4028234663852886e+38\"/>\n                                </customSpacing>\n                            </stackView>\n                        </subviews>\n                        <constraints>\n                            <constraint firstItem=\"YO5-zp-VfI\" firstAttribute=\"top\" secondItem=\"BAr-aA-3ku\" secondAttribute=\"top\" constant=\"36\" id=\"6dg-pJ-fuJ\"/>\n                            <constraint firstAttribute=\"trailing\" secondItem=\"YO5-zp-VfI\" secondAttribute=\"trailing\" constant=\"20\" symbolic=\"YES\" id=\"Ca7-3S-B6a\"/>\n                            <constraint firstItem=\"YO5-zp-VfI\" firstAttribute=\"leading\" secondItem=\"BAr-aA-3ku\" secondAttribute=\"leading\" constant=\"20\" symbolic=\"YES\" id=\"fXv-Pw-H1B\"/>\n                            <constraint firstAttribute=\"bottom\" secondItem=\"YO5-zp-VfI\" secondAttribute=\"bottom\" constant=\"20\" symbolic=\"YES\" id=\"iug-er-2mw\"/>\n                        </constraints>\n                    </view>\n                </viewController>\n                <customObject id=\"iTO-LQ-hyN\" userLabel=\"First Responder\" customClass=\"NSResponder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"1200\" y=\"656\"/>\n        </scene>\n        <!--Snap Area View Controller-->\n        <scene sceneID=\"WiD-Tk-7pr\">\n            <objects>\n                <viewController storyboardIdentifier=\"HookshotConfigViewController\" id=\"t2d-Q7-RLy\" customClass=\"SnapAreaViewController\" customModule=\"Rectangle\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" id=\"yfQ-gV-dm5\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"850\" height=\"670\"/>\n                        <autoresizingMask key=\"autoresizingMask\"/>\n                        <subviews>\n                            <stackView distribution=\"equalCentering\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"0.0\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Pem-lh-xwe\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"850\" height=\"670\"/>\n                                <subviews>\n                                    <stackView distribution=\"fill\" orientation=\"vertical\" alignment=\"centerX\" spacing=\"20\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"9T6-Lr-8m1\">\n                                        <rect key=\"frame\" x=\"88\" y=\"26\" width=\"674\" height=\"624\"/>\n                                        <subviews>\n                                            <stackView distribution=\"fillEqually\" orientation=\"horizontal\" alignment=\"top\" spacing=\"20\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"5k8-dN-bzX\">\n                                                <rect key=\"frame\" x=\"20\" y=\"556\" width=\"635\" height=\"68\"/>\n                                                <subviews>\n                                                    <stackView distribution=\"fill\" orientation=\"vertical\" alignment=\"leading\" spacing=\"10\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"5Le-Om-VLZ\">\n                                                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"265\" height=\"68\"/>\n                                                        <subviews>\n                                                            <button verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"1000\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"3wO-pf-nsb\">\n                                                                <rect key=\"frame\" x=\"0.0\" y=\"52\" width=\"185\" height=\"16\"/>\n                                                                <buttonCell key=\"cell\" type=\"check\" title=\"Snap windows by dragging\" bezelStyle=\"regularSquare\" imagePosition=\"left\" state=\"on\" inset=\"2\" id=\"1ui-PL-TkR\">\n                                                                    <behavior key=\"behavior\" changeContents=\"YES\" doesNotDimImage=\"YES\" lightByContents=\"YES\"/>\n                                                                    <font key=\"font\" metaFont=\"system\"/>\n                                                                </buttonCell>\n                                                                <connections>\n                                                                    <action selector=\"toggleWindowSnapping:\" target=\"t2d-Q7-RLy\" id=\"hiC-vy-gm4\"/>\n                                                                </connections>\n                                                            </button>\n                                                            <button verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"1000\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"9Ed-T3-hCA\">\n                                                                <rect key=\"frame\" x=\"0.0\" y=\"26\" width=\"253\" height=\"16\"/>\n                                                                <buttonCell key=\"cell\" type=\"check\" title=\"Restore window size when unsnapped\" bezelStyle=\"regularSquare\" imagePosition=\"left\" state=\"on\" inset=\"2\" id=\"UZP-5q-D5Y\">\n                                                                    <behavior key=\"behavior\" changeContents=\"YES\" doesNotDimImage=\"YES\" lightByContents=\"YES\"/>\n                                                                    <font key=\"font\" metaFont=\"system\"/>\n                                                                </buttonCell>\n                                                                <connections>\n                                                                    <action selector=\"toggleUnsnapRestore:\" target=\"t2d-Q7-RLy\" id=\"3vt-Lw-NJs\"/>\n                                                                </connections>\n                                                            </button>\n                                                            <button verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"1000\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"vrs-iM-XVL\" userLabel=\"Mission Control Dragging Checkbox\">\n                                                                <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"265\" height=\"16\"/>\n                                                                <buttonCell key=\"cell\" type=\"check\" title=\"Disable fast dragging to Mission Control\" bezelStyle=\"regularSquare\" imagePosition=\"left\" inset=\"2\" id=\"3hZ-Cs-EZ6\">\n                                                                    <behavior key=\"behavior\" changeContents=\"YES\" doesNotDimImage=\"YES\" lightByContents=\"YES\"/>\n                                                                    <font key=\"font\" metaFont=\"system\"/>\n                                                                </buttonCell>\n                                                                <connections>\n                                                                    <action selector=\"toggleMissionControlDragging:\" target=\"t2d-Q7-RLy\" id=\"iGt-Mk-K1Y\"/>\n                                                                </connections>\n                                                            </button>\n                                                        </subviews>\n                                                        <visibilityPriorities>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                        </visibilityPriorities>\n                                                        <customSpacing>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                        </customSpacing>\n                                                    </stackView>\n                                                    <stackView distribution=\"fill\" orientation=\"vertical\" alignment=\"leading\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"rWQ-Uf-U5w\">\n                                                        <rect key=\"frame\" x=\"285\" y=\"0.0\" width=\"165\" height=\"68\"/>\n                                                    </stackView>\n                                                    <stackView distribution=\"fill\" orientation=\"vertical\" alignment=\"leading\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"GxY-ZJ-2qa\">\n                                                        <rect key=\"frame\" x=\"470\" y=\"28\" width=\"165\" height=\"40\"/>\n                                                        <subviews>\n                                                            <button verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"1000\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"idz-Fq-8Qx\">\n                                                                <rect key=\"frame\" x=\"0.0\" y=\"24\" width=\"121\" height=\"16\"/>\n                                                                <buttonCell key=\"cell\" type=\"check\" title=\"Haptic feedback\" bezelStyle=\"regularSquare\" imagePosition=\"left\" inset=\"2\" id=\"r2Y-cY-tgn\">\n                                                                    <behavior key=\"behavior\" changeContents=\"YES\" doesNotDimImage=\"YES\" lightByContents=\"YES\"/>\n                                                                    <font key=\"font\" metaFont=\"system\"/>\n                                                                </buttonCell>\n                                                                <constraints>\n                                                                    <constraint firstAttribute=\"height\" constant=\"16\" id=\"f8W-Fl-K4a\"/>\n                                                                </constraints>\n                                                                <connections>\n                                                                    <action selector=\"toggleHapticFeedback:\" target=\"t2d-Q7-RLy\" id=\"fYe-DO-EgM\"/>\n                                                                </connections>\n                                                            </button>\n                                                            <button verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"1000\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"cbx-fa-jJh\">\n                                                                <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"127\" height=\"16\"/>\n                                                                <buttonCell key=\"cell\" type=\"check\" title=\"Animate footprint\" bezelStyle=\"regularSquare\" imagePosition=\"left\" inset=\"2\" id=\"kx2-tZ-lk8\">\n                                                                    <behavior key=\"behavior\" changeContents=\"YES\" doesNotDimImage=\"YES\" lightByContents=\"YES\"/>\n                                                                    <font key=\"font\" metaFont=\"system\"/>\n                                                                </buttonCell>\n                                                                <constraints>\n                                                                    <constraint firstAttribute=\"height\" constant=\"16\" id=\"Xlt-wM-rDc\"/>\n                                                                </constraints>\n                                                                <connections>\n                                                                    <action selector=\"toggleAnimateFootprint:\" target=\"t2d-Q7-RLy\" id=\"qo7-sw-gbY\"/>\n                                                                </connections>\n                                                            </button>\n                                                        </subviews>\n                                                        <visibilityPriorities>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                        </visibilityPriorities>\n                                                        <customSpacing>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                        </customSpacing>\n                                                    </stackView>\n                                                </subviews>\n                                                <constraints>\n                                                    <constraint firstAttribute=\"bottom\" secondItem=\"rWQ-Uf-U5w\" secondAttribute=\"bottom\" id=\"hYo-UK-AaS\"/>\n                                                </constraints>\n                                                <visibilityPriorities>\n                                                    <integer value=\"1000\"/>\n                                                    <integer value=\"1000\"/>\n                                                    <integer value=\"1000\"/>\n                                                </visibilityPriorities>\n                                                <customSpacing>\n                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                </customSpacing>\n                                            </stackView>\n                                            <box verticalHuggingPriority=\"750\" boxType=\"separator\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"RAB-qk-O6q\">\n                                                <rect key=\"frame\" x=\"289\" y=\"534\" width=\"96\" height=\"4\"/>\n                                            </box>\n                                            <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"top\" spacing=\"14\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Vcp-1H-jc9\">\n                                                <rect key=\"frame\" x=\"33\" y=\"314\" width=\"608\" height=\"202\"/>\n                                                <subviews>\n                                                    <stackView distribution=\"fill\" orientation=\"vertical\" alignment=\"leading\" spacing=\"65\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"oWJ-Ie-4bk\">\n                                                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"190\" height=\"202\"/>\n                                                        <subviews>\n                                                            <popUpButton tag=\"1\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Dvs-uM-6VU\">\n                                                                <rect key=\"frame\" x=\"0.0\" y=\"178\" width=\"190\" height=\"24\"/>\n                                                                <popUpButtonCell key=\"cell\" type=\"push\" title=\"-\" bezelStyle=\"rounded\" alignment=\"left\" lineBreakMode=\"truncatingTail\" state=\"on\" borderStyle=\"borderAndBezel\" tag=\"-1\" imageScaling=\"proportionallyDown\" inset=\"2\" selectedItem=\"EBt-5H-0z6\" id=\"82y-37-rlM\">\n                                                                    <behavior key=\"behavior\" lightByBackground=\"YES\" lightByGray=\"YES\"/>\n                                                                    <font key=\"font\" metaFont=\"message\"/>\n                                                                    <menu key=\"menu\" id=\"g7p-EV-39L\">\n                                                                        <items>\n                                                                            <menuItem title=\"-\" state=\"on\" tag=\"-1\" id=\"EBt-5H-0z6\"/>\n                                                                        </items>\n                                                                    </menu>\n                                                                </popUpButtonCell>\n                                                                <constraints>\n                                                                    <constraint firstAttribute=\"width\" constant=\"190\" id=\"YL6-f5-Cb2\"/>\n                                                                </constraints>\n                                                                <connections>\n                                                                    <action selector=\"setLandscapeSnapArea:\" target=\"t2d-Q7-RLy\" id=\"PHq-Gs-ONZ\"/>\n                                                                </connections>\n                                                            </popUpButton>\n                                                            <popUpButton tag=\"4\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"jqR-m9-Kh7\">\n                                                                <rect key=\"frame\" x=\"0.0\" y=\"89\" width=\"190\" height=\"24\"/>\n                                                                <popUpButtonCell key=\"cell\" type=\"push\" title=\"-\" bezelStyle=\"rounded\" alignment=\"left\" lineBreakMode=\"truncatingTail\" state=\"on\" borderStyle=\"borderAndBezel\" tag=\"-1\" imageScaling=\"proportionallyDown\" inset=\"2\" selectedItem=\"xBU-le-7cX\" id=\"4d5-Se-z1S\">\n                                                                    <behavior key=\"behavior\" lightByBackground=\"YES\" lightByGray=\"YES\"/>\n                                                                    <font key=\"font\" metaFont=\"message\"/>\n                                                                    <menu key=\"menu\" id=\"5WZ-bt-0Fn\">\n                                                                        <items>\n                                                                            <menuItem title=\"-\" state=\"on\" tag=\"-1\" id=\"xBU-le-7cX\"/>\n                                                                        </items>\n                                                                    </menu>\n                                                                </popUpButtonCell>\n                                                                <constraints>\n                                                                    <constraint firstAttribute=\"width\" constant=\"190\" id=\"8eG-6N-9WW\"/>\n                                                                </constraints>\n                                                                <connections>\n                                                                    <action selector=\"setLandscapeSnapArea:\" target=\"t2d-Q7-RLy\" id=\"al4-TZ-b2U\"/>\n                                                                </connections>\n                                                            </popUpButton>\n                                                            <popUpButton tag=\"6\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"bVZ-3z-DYF\">\n                                                                <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"190\" height=\"24\"/>\n                                                                <popUpButtonCell key=\"cell\" type=\"push\" title=\"-\" bezelStyle=\"rounded\" alignment=\"left\" lineBreakMode=\"truncatingTail\" state=\"on\" borderStyle=\"borderAndBezel\" tag=\"-1\" imageScaling=\"proportionallyDown\" inset=\"2\" selectedItem=\"I97-ob-ue4\" id=\"AkL-7b-8Up\">\n                                                                    <behavior key=\"behavior\" lightByBackground=\"YES\" lightByGray=\"YES\"/>\n                                                                    <font key=\"font\" metaFont=\"message\"/>\n                                                                    <menu key=\"menu\" id=\"hHJ-nm-Msn\">\n                                                                        <items>\n                                                                            <menuItem title=\"-\" state=\"on\" tag=\"-1\" id=\"I97-ob-ue4\"/>\n                                                                        </items>\n                                                                    </menu>\n                                                                </popUpButtonCell>\n                                                                <constraints>\n                                                                    <constraint firstAttribute=\"width\" constant=\"190\" id=\"eeJ-SY-aXK\"/>\n                                                                </constraints>\n                                                                <connections>\n                                                                    <action selector=\"setLandscapeSnapArea:\" target=\"t2d-Q7-RLy\" id=\"2yz-dG-Dod\"/>\n                                                                </connections>\n                                                            </popUpButton>\n                                                        </subviews>\n                                                        <visibilityPriorities>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                        </visibilityPriorities>\n                                                        <customSpacing>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                        </customSpacing>\n                                                    </stackView>\n                                                    <stackView distribution=\"fill\" orientation=\"vertical\" alignment=\"centerX\" spacing=\"13\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Hbp-4G-5mJ\">\n                                                        <rect key=\"frame\" x=\"204\" y=\"0.0\" width=\"200\" height=\"202\"/>\n                                                        <subviews>\n                                                            <popUpButton tag=\"2\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"qa7-5C-PSI\">\n                                                                <rect key=\"frame\" x=\"5\" y=\"175\" width=\"190\" height=\"27\"/>\n                                                                <popUpButtonCell key=\"cell\" type=\"push\" title=\"-\" bezelStyle=\"rounded\" alignment=\"left\" lineBreakMode=\"truncatingTail\" state=\"on\" borderStyle=\"borderAndBezel\" tag=\"-1\" imageScaling=\"proportionallyDown\" inset=\"2\" selectedItem=\"NMu-W8-Awa\" id=\"yaC-wx-qst\">\n                                                                    <behavior key=\"behavior\" lightByBackground=\"YES\" lightByGray=\"YES\"/>\n                                                                    <font key=\"font\" metaFont=\"message\"/>\n                                                                    <menu key=\"menu\" id=\"pf5-Uy-uaq\">\n                                                                        <items>\n                                                                            <menuItem title=\"-\" state=\"on\" tag=\"-1\" id=\"NMu-W8-Awa\"/>\n                                                                        </items>\n                                                                    </menu>\n                                                                </popUpButtonCell>\n                                                                <constraints>\n                                                                    <constraint firstAttribute=\"width\" constant=\"190\" id=\"uMh-Lo-5N5\"/>\n                                                                </constraints>\n                                                                <connections>\n                                                                    <action selector=\"setLandscapeSnapArea:\" target=\"t2d-Q7-RLy\" id=\"cXd-By-Jle\"/>\n                                                                </connections>\n                                                            </popUpButton>\n                                                            <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"EyR-o0-dgo\">\n                                                                <rect key=\"frame\" x=\"-3\" y=\"34\" width=\"206\" height=\"131\"/>\n                                                                <constraints>\n                                                                    <constraint firstAttribute=\"width\" constant=\"200\" id=\"7YZ-ww-UVh\"/>\n                                                                    <constraint firstAttribute=\"height\" constant=\"125\" id=\"Xte-V6-YWz\"/>\n                                                                </constraints>\n                                                                <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" imageFrameStyle=\"grayBezel\" image=\"wallpaperTiger\" id=\"EGh-Nz-7rJ\"/>\n                                                            </imageView>\n                                                            <popUpButton tag=\"7\" verticalHuggingPriority=\"750\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"3c6-3h-J52\">\n                                                                <rect key=\"frame\" x=\"5\" y=\"0.0\" width=\"190\" height=\"24\"/>\n                                                                <popUpButtonCell key=\"cell\" type=\"push\" title=\"-\" bezelStyle=\"rounded\" alignment=\"left\" lineBreakMode=\"truncatingTail\" state=\"on\" borderStyle=\"borderAndBezel\" tag=\"-1\" imageScaling=\"proportionallyDown\" inset=\"2\" selectedItem=\"r4Q-q9-FLt\" id=\"FoW-W1-Wr4\">\n                                                                    <behavior key=\"behavior\" lightByBackground=\"YES\" lightByGray=\"YES\"/>\n                                                                    <font key=\"font\" metaFont=\"message\"/>\n                                                                    <menu key=\"menu\" id=\"fCp-nQ-uAe\">\n                                                                        <items>\n                                                                            <menuItem title=\"-\" state=\"on\" tag=\"-1\" id=\"r4Q-q9-FLt\"/>\n                                                                        </items>\n                                                                    </menu>\n                                                                </popUpButtonCell>\n                                                                <constraints>\n                                                                    <constraint firstAttribute=\"width\" constant=\"190\" id=\"yaA-Id-Y1d\"/>\n                                                                </constraints>\n                                                                <connections>\n                                                                    <action selector=\"setLandscapeSnapArea:\" target=\"t2d-Q7-RLy\" id=\"Wao-XB-BCD\"/>\n                                                                </connections>\n                                                            </popUpButton>\n                                                        </subviews>\n                                                        <visibilityPriorities>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                        </visibilityPriorities>\n                                                        <customSpacing>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                        </customSpacing>\n                                                    </stackView>\n                                                    <stackView distribution=\"fill\" orientation=\"vertical\" alignment=\"trailing\" spacing=\"65\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"H40-PM-o61\">\n                                                        <rect key=\"frame\" x=\"418\" y=\"0.0\" width=\"190\" height=\"202\"/>\n                                                        <subviews>\n                                                            <popUpButton tag=\"3\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"f8h-NV-mPC\">\n                                                                <rect key=\"frame\" x=\"0.0\" y=\"178\" width=\"190\" height=\"24\"/>\n                                                                <popUpButtonCell key=\"cell\" type=\"push\" title=\"-\" bezelStyle=\"rounded\" alignment=\"left\" lineBreakMode=\"truncatingTail\" state=\"on\" borderStyle=\"borderAndBezel\" tag=\"-1\" imageScaling=\"proportionallyDown\" inset=\"2\" selectedItem=\"Tt8-3X-UpT\" id=\"VUm-bx-uRE\">\n                                                                    <behavior key=\"behavior\" lightByBackground=\"YES\" lightByGray=\"YES\"/>\n                                                                    <font key=\"font\" metaFont=\"message\"/>\n                                                                    <menu key=\"menu\" id=\"O2T-B6-jyn\">\n                                                                        <items>\n                                                                            <menuItem title=\"-\" state=\"on\" tag=\"-1\" id=\"Tt8-3X-UpT\"/>\n                                                                        </items>\n                                                                    </menu>\n                                                                </popUpButtonCell>\n                                                                <constraints>\n                                                                    <constraint firstAttribute=\"width\" constant=\"190\" id=\"LeD-YV-5Br\"/>\n                                                                </constraints>\n                                                                <connections>\n                                                                    <action selector=\"setLandscapeSnapArea:\" target=\"t2d-Q7-RLy\" id=\"869-tM-t4p\"/>\n                                                                </connections>\n                                                            </popUpButton>\n                                                            <popUpButton tag=\"5\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"HM2-rd-Wka\">\n                                                                <rect key=\"frame\" x=\"0.0\" y=\"89\" width=\"190\" height=\"24\"/>\n                                                                <popUpButtonCell key=\"cell\" type=\"push\" title=\"-\" bezelStyle=\"rounded\" alignment=\"left\" lineBreakMode=\"truncatingTail\" state=\"on\" borderStyle=\"borderAndBezel\" tag=\"-1\" imageScaling=\"proportionallyDown\" inset=\"2\" selectedItem=\"oEQ-RN-TTJ\" id=\"ycZ-Le-vhx\">\n                                                                    <behavior key=\"behavior\" lightByBackground=\"YES\" lightByGray=\"YES\"/>\n                                                                    <font key=\"font\" metaFont=\"message\"/>\n                                                                    <menu key=\"menu\" id=\"wSR-D9-eze\">\n                                                                        <items>\n                                                                            <menuItem title=\"-\" state=\"on\" tag=\"-1\" id=\"oEQ-RN-TTJ\"/>\n                                                                        </items>\n                                                                    </menu>\n                                                                </popUpButtonCell>\n                                                                <constraints>\n                                                                    <constraint firstAttribute=\"width\" constant=\"190\" id=\"nK1-No-QVf\"/>\n                                                                </constraints>\n                                                                <connections>\n                                                                    <action selector=\"setLandscapeSnapArea:\" target=\"t2d-Q7-RLy\" id=\"Q8o-7b-RSd\"/>\n                                                                </connections>\n                                                            </popUpButton>\n                                                            <popUpButton tag=\"8\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"jVF-3c-sL0\">\n                                                                <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"190\" height=\"24\"/>\n                                                                <popUpButtonCell key=\"cell\" type=\"push\" title=\"-\" bezelStyle=\"rounded\" alignment=\"left\" lineBreakMode=\"truncatingTail\" state=\"on\" borderStyle=\"borderAndBezel\" tag=\"-1\" imageScaling=\"proportionallyDown\" inset=\"2\" selectedItem=\"KfQ-dw-3jk\" id=\"7h2-cE-0M2\">\n                                                                    <behavior key=\"behavior\" lightByBackground=\"YES\" lightByGray=\"YES\"/>\n                                                                    <font key=\"font\" metaFont=\"message\"/>\n                                                                    <menu key=\"menu\" id=\"Sam-p4-uj0\">\n                                                                        <items>\n                                                                            <menuItem title=\"-\" state=\"on\" tag=\"-1\" id=\"KfQ-dw-3jk\"/>\n                                                                        </items>\n                                                                    </menu>\n                                                                </popUpButtonCell>\n                                                                <constraints>\n                                                                    <constraint firstAttribute=\"width\" constant=\"190\" id=\"1Tr-s8-bxh\"/>\n                                                                </constraints>\n                                                                <connections>\n                                                                    <action selector=\"setLandscapeSnapArea:\" target=\"t2d-Q7-RLy\" id=\"mtt-GM-BzO\"/>\n                                                                </connections>\n                                                            </popUpButton>\n                                                        </subviews>\n                                                        <visibilityPriorities>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                        </visibilityPriorities>\n                                                        <customSpacing>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                        </customSpacing>\n                                                    </stackView>\n                                                </subviews>\n                                                <constraints>\n                                                    <constraint firstItem=\"H40-PM-o61\" firstAttribute=\"top\" secondItem=\"oWJ-Ie-4bk\" secondAttribute=\"top\" id=\"1Mb-IW-c2a\"/>\n                                                    <constraint firstItem=\"qa7-5C-PSI\" firstAttribute=\"top\" secondItem=\"Dvs-uM-6VU\" secondAttribute=\"top\" id=\"ARD-Up-4LA\"/>\n                                                    <constraint firstItem=\"H40-PM-o61\" firstAttribute=\"bottom\" secondItem=\"oWJ-Ie-4bk\" secondAttribute=\"bottom\" id=\"FkG-tv-WXD\"/>\n                                                    <constraint firstItem=\"f8h-NV-mPC\" firstAttribute=\"top\" secondItem=\"Dvs-uM-6VU\" secondAttribute=\"top\" id=\"aid-5O-AzU\"/>\n                                                    <constraint firstItem=\"Hbp-4G-5mJ\" firstAttribute=\"top\" secondItem=\"oWJ-Ie-4bk\" secondAttribute=\"top\" id=\"gnb-X0-Eug\"/>\n                                                    <constraint firstItem=\"Hbp-4G-5mJ\" firstAttribute=\"bottom\" secondItem=\"oWJ-Ie-4bk\" secondAttribute=\"bottom\" id=\"peX-zu-WNd\"/>\n                                                </constraints>\n                                                <visibilityPriorities>\n                                                    <integer value=\"1000\"/>\n                                                    <integer value=\"1000\"/>\n                                                    <integer value=\"1000\"/>\n                                                </visibilityPriorities>\n                                                <customSpacing>\n                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                </customSpacing>\n                                            </stackView>\n                                            <stackView distribution=\"equalCentering\" orientation=\"vertical\" alignment=\"centerX\" spacing=\"20\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"3fZ-2P-Yw8\">\n                                                <rect key=\"frame\" x=\"40\" y=\"0.0\" width=\"594\" height=\"294\"/>\n                                                <subviews>\n                                                    <box verticalHuggingPriority=\"750\" boxType=\"separator\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"PH1-h4-ZhC\">\n                                                        <rect key=\"frame\" x=\"65\" y=\"292\" width=\"464\" height=\"4\"/>\n                                                    </box>\n                                                    <stackView distribution=\"fill\" orientation=\"horizontal\" alignment=\"centerY\" spacing=\"12\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"MnW-gb-EXP\">\n                                                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"594\" height=\"274\"/>\n                                                        <subviews>\n                                                            <stackView distribution=\"equalCentering\" orientation=\"vertical\" alignment=\"leading\" spacing=\"65\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"aRa-8h-39S\">\n                                                                <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"190\" height=\"274\"/>\n                                                                <subviews>\n                                                                    <popUpButton tag=\"1\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Ytt-rI-KMq\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"250\" width=\"190\" height=\"24\"/>\n                                                                        <popUpButtonCell key=\"cell\" type=\"push\" title=\"-\" bezelStyle=\"rounded\" alignment=\"left\" lineBreakMode=\"truncatingTail\" state=\"on\" borderStyle=\"borderAndBezel\" tag=\"-1\" imageScaling=\"proportionallyDown\" inset=\"2\" selectedItem=\"xK0-Bn-yqf\" id=\"RTg-Kq-V2E\">\n                                                                            <behavior key=\"behavior\" lightByBackground=\"YES\" lightByGray=\"YES\"/>\n                                                                            <font key=\"font\" metaFont=\"message\"/>\n                                                                            <menu key=\"menu\" id=\"HxQ-fS-Z8p\">\n                                                                                <items>\n                                                                                    <menuItem title=\"-\" state=\"on\" tag=\"-1\" id=\"xK0-Bn-yqf\"/>\n                                                                                </items>\n                                                                            </menu>\n                                                                        </popUpButtonCell>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"width\" constant=\"190\" id=\"VhY-YE-zqg\"/>\n                                                                        </constraints>\n                                                                        <connections>\n                                                                            <action selector=\"setPortraitSnapArea:\" target=\"t2d-Q7-RLy\" id=\"ctL-Ka-Z7V\"/>\n                                                                        </connections>\n                                                                    </popUpButton>\n                                                                    <popUpButton tag=\"4\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"NlH-2s-Bb2\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"125\" width=\"190\" height=\"24\"/>\n                                                                        <popUpButtonCell key=\"cell\" type=\"push\" title=\"-\" bezelStyle=\"rounded\" alignment=\"left\" lineBreakMode=\"truncatingTail\" state=\"on\" borderStyle=\"borderAndBezel\" tag=\"-1\" imageScaling=\"proportionallyDown\" inset=\"2\" selectedItem=\"5WR-Ui-uYB\" id=\"pg4-zC-ivJ\">\n                                                                            <behavior key=\"behavior\" lightByBackground=\"YES\" lightByGray=\"YES\"/>\n                                                                            <font key=\"font\" metaFont=\"message\"/>\n                                                                            <menu key=\"menu\" id=\"H9m-bZ-eKV\">\n                                                                                <items>\n                                                                                    <menuItem title=\"-\" state=\"on\" tag=\"-1\" id=\"5WR-Ui-uYB\"/>\n                                                                                </items>\n                                                                            </menu>\n                                                                        </popUpButtonCell>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"width\" constant=\"190\" id=\"McE-Ba-5jp\"/>\n                                                                        </constraints>\n                                                                        <connections>\n                                                                            <action selector=\"setPortraitSnapArea:\" target=\"t2d-Q7-RLy\" id=\"Xnn-6W-ToT\"/>\n                                                                        </connections>\n                                                                    </popUpButton>\n                                                                    <popUpButton tag=\"6\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"DPC-eZ-HIy\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"190\" height=\"24\"/>\n                                                                        <popUpButtonCell key=\"cell\" type=\"push\" title=\"-\" bezelStyle=\"rounded\" alignment=\"left\" lineBreakMode=\"truncatingTail\" state=\"on\" borderStyle=\"borderAndBezel\" tag=\"-1\" imageScaling=\"proportionallyDown\" inset=\"2\" selectedItem=\"Q2j-YZ-1jU\" id=\"JXR-La-eQ0\">\n                                                                            <behavior key=\"behavior\" lightByBackground=\"YES\" lightByGray=\"YES\"/>\n                                                                            <font key=\"font\" metaFont=\"message\"/>\n                                                                            <menu key=\"menu\" id=\"WNl-e0-w5C\">\n                                                                                <items>\n                                                                                    <menuItem title=\"-\" state=\"on\" tag=\"-1\" id=\"Q2j-YZ-1jU\"/>\n                                                                                </items>\n                                                                            </menu>\n                                                                        </popUpButtonCell>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"width\" constant=\"190\" id=\"g8b-oS-9oQ\"/>\n                                                                        </constraints>\n                                                                        <connections>\n                                                                            <action selector=\"setPortraitSnapArea:\" target=\"t2d-Q7-RLy\" id=\"sZU-iY-Tjs\"/>\n                                                                        </connections>\n                                                                    </popUpButton>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"equalCentering\" orientation=\"vertical\" alignment=\"centerX\" spacing=\"13\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"3Ki-JA-AZb\">\n                                                                <rect key=\"frame\" x=\"202\" y=\"0.0\" width=\"190\" height=\"274\"/>\n                                                                <subviews>\n                                                                    <popUpButton tag=\"2\" verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"1000\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"rs4-Tg-Omn\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"250\" width=\"190\" height=\"24\"/>\n                                                                        <popUpButtonCell key=\"cell\" type=\"push\" title=\"-\" bezelStyle=\"rounded\" alignment=\"left\" lineBreakMode=\"truncatingTail\" state=\"on\" borderStyle=\"borderAndBezel\" tag=\"-1\" imageScaling=\"proportionallyDown\" inset=\"2\" selectedItem=\"2ue-Mv-5Wh\" id=\"4gU-9A-TnP\">\n                                                                            <behavior key=\"behavior\" lightByBackground=\"YES\" lightByGray=\"YES\"/>\n                                                                            <font key=\"font\" metaFont=\"message\"/>\n                                                                            <menu key=\"menu\" id=\"xr0-Bg-vHD\">\n                                                                                <items>\n                                                                                    <menuItem title=\"-\" state=\"on\" tag=\"-1\" id=\"2ue-Mv-5Wh\"/>\n                                                                                </items>\n                                                                            </menu>\n                                                                        </popUpButtonCell>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"width\" constant=\"190\" id=\"ROc-Ns-vAP\"/>\n                                                                        </constraints>\n                                                                        <connections>\n                                                                            <action selector=\"setPortraitSnapArea:\" target=\"t2d-Q7-RLy\" id=\"QvF-QG-HdI\"/>\n                                                                        </connections>\n                                                                    </popUpButton>\n                                                                    <imageView horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"ZBk-gP-LPR\">\n                                                                        <rect key=\"frame\" x=\"30\" y=\"34\" width=\"131\" height=\"206\"/>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"height\" constant=\"200\" id=\"L6K-rA-7ef\"/>\n                                                                            <constraint firstAttribute=\"width\" constant=\"125\" id=\"q6Z-S0-e4Z\"/>\n                                                                        </constraints>\n                                                                        <imageCell key=\"cell\" refusesFirstResponder=\"YES\" alignment=\"left\" imageScaling=\"proportionallyDown\" imageFrameStyle=\"grayBezel\" image=\"wallpaperTigerVertical\" id=\"uxh-iv-ahv\"/>\n                                                                    </imageView>\n                                                                    <popUpButton tag=\"7\" verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"1000\" verticalCompressionResistancePriority=\"1000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"ZYO-D7-C2a\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"190\" height=\"24\"/>\n                                                                        <popUpButtonCell key=\"cell\" type=\"push\" title=\"-\" bezelStyle=\"rounded\" alignment=\"left\" lineBreakMode=\"truncatingTail\" state=\"on\" borderStyle=\"borderAndBezel\" tag=\"-1\" imageScaling=\"proportionallyDown\" inset=\"2\" selectedItem=\"FLh-CI-WNK\" id=\"8Ck-e6-dvF\">\n                                                                            <behavior key=\"behavior\" lightByBackground=\"YES\" lightByGray=\"YES\"/>\n                                                                            <font key=\"font\" metaFont=\"message\"/>\n                                                                            <menu key=\"menu\" id=\"kwv-U1-cQe\">\n                                                                                <items>\n                                                                                    <menuItem title=\"-\" state=\"on\" tag=\"-1\" id=\"FLh-CI-WNK\"/>\n                                                                                </items>\n                                                                            </menu>\n                                                                        </popUpButtonCell>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"width\" constant=\"190\" id=\"mPN-N7-3n2\"/>\n                                                                        </constraints>\n                                                                        <connections>\n                                                                            <action selector=\"setPortraitSnapArea:\" target=\"t2d-Q7-RLy\" id=\"ArK-3M-bC2\"/>\n                                                                        </connections>\n                                                                    </popUpButton>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                            <stackView distribution=\"equalCentering\" orientation=\"vertical\" alignment=\"centerX\" spacing=\"65\" horizontalStackHuggingPriority=\"249.99998474121094\" verticalStackHuggingPriority=\"249.99998474121094\" detachesHiddenViews=\"YES\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"7xm-ZM-Gqk\">\n                                                                <rect key=\"frame\" x=\"404\" y=\"0.0\" width=\"190\" height=\"274\"/>\n                                                                <subviews>\n                                                                    <popUpButton tag=\"3\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"pYw-mV-KH2\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"250\" width=\"190\" height=\"24\"/>\n                                                                        <popUpButtonCell key=\"cell\" type=\"push\" title=\"-\" bezelStyle=\"rounded\" alignment=\"left\" lineBreakMode=\"truncatingTail\" state=\"on\" borderStyle=\"borderAndBezel\" tag=\"-1\" imageScaling=\"proportionallyDown\" inset=\"2\" selectedItem=\"qBm-QP-s63\" id=\"GEM-Db-kKE\">\n                                                                            <behavior key=\"behavior\" lightByBackground=\"YES\" lightByGray=\"YES\"/>\n                                                                            <font key=\"font\" metaFont=\"message\"/>\n                                                                            <menu key=\"menu\" id=\"432-ys-RXR\">\n                                                                                <items>\n                                                                                    <menuItem title=\"-\" state=\"on\" tag=\"-1\" id=\"qBm-QP-s63\"/>\n                                                                                </items>\n                                                                            </menu>\n                                                                        </popUpButtonCell>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"width\" constant=\"190\" id=\"xY9-Lp-sSm\"/>\n                                                                        </constraints>\n                                                                        <connections>\n                                                                            <action selector=\"setPortraitSnapArea:\" target=\"t2d-Q7-RLy\" id=\"U8d-ad-SCC\"/>\n                                                                        </connections>\n                                                                    </popUpButton>\n                                                                    <popUpButton tag=\"5\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"efR-xi-okh\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"125\" width=\"190\" height=\"24\"/>\n                                                                        <popUpButtonCell key=\"cell\" type=\"push\" title=\"-\" bezelStyle=\"rounded\" alignment=\"left\" lineBreakMode=\"truncatingTail\" state=\"on\" borderStyle=\"borderAndBezel\" tag=\"-1\" imageScaling=\"proportionallyDown\" inset=\"2\" selectedItem=\"JSl-FY-MF0\" id=\"sKz-wv-Rtz\">\n                                                                            <behavior key=\"behavior\" lightByBackground=\"YES\" lightByGray=\"YES\"/>\n                                                                            <font key=\"font\" metaFont=\"message\"/>\n                                                                            <menu key=\"menu\" id=\"u14-Im-koA\">\n                                                                                <items>\n                                                                                    <menuItem title=\"-\" state=\"on\" tag=\"-1\" id=\"JSl-FY-MF0\"/>\n                                                                                </items>\n                                                                            </menu>\n                                                                        </popUpButtonCell>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"width\" constant=\"190\" id=\"D5l-DR-cPS\"/>\n                                                                        </constraints>\n                                                                        <connections>\n                                                                            <action selector=\"setPortraitSnapArea:\" target=\"t2d-Q7-RLy\" id=\"Yza-RI-8mz\"/>\n                                                                        </connections>\n                                                                    </popUpButton>\n                                                                    <popUpButton tag=\"8\" verticalHuggingPriority=\"750\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"lje-Rc-9Hj\">\n                                                                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"190\" height=\"24\"/>\n                                                                        <popUpButtonCell key=\"cell\" type=\"push\" title=\"-\" bezelStyle=\"rounded\" alignment=\"left\" lineBreakMode=\"truncatingTail\" state=\"on\" borderStyle=\"borderAndBezel\" tag=\"-1\" imageScaling=\"proportionallyDown\" inset=\"2\" selectedItem=\"fL5-gz-pOD\" id=\"X4M-df-26I\">\n                                                                            <behavior key=\"behavior\" lightByBackground=\"YES\" lightByGray=\"YES\"/>\n                                                                            <font key=\"font\" metaFont=\"message\"/>\n                                                                            <menu key=\"menu\" id=\"8lV-Zy-44g\">\n                                                                                <items>\n                                                                                    <menuItem title=\"-\" state=\"on\" tag=\"-1\" id=\"fL5-gz-pOD\"/>\n                                                                                </items>\n                                                                            </menu>\n                                                                        </popUpButtonCell>\n                                                                        <constraints>\n                                                                            <constraint firstAttribute=\"width\" constant=\"190\" id=\"0oQ-OQ-cnQ\"/>\n                                                                        </constraints>\n                                                                        <connections>\n                                                                            <action selector=\"setPortraitSnapArea:\" target=\"t2d-Q7-RLy\" id=\"OH3-Ry-3Ss\"/>\n                                                                        </connections>\n                                                                    </popUpButton>\n                                                                </subviews>\n                                                                <visibilityPriorities>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                    <integer value=\"1000\"/>\n                                                                </visibilityPriorities>\n                                                                <customSpacing>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                                </customSpacing>\n                                                            </stackView>\n                                                        </subviews>\n                                                        <constraints>\n                                                            <constraint firstItem=\"pYw-mV-KH2\" firstAttribute=\"top\" secondItem=\"Ytt-rI-KMq\" secondAttribute=\"top\" id=\"7kg-bT-uCf\"/>\n                                                            <constraint firstItem=\"rs4-Tg-Omn\" firstAttribute=\"top\" secondItem=\"Ytt-rI-KMq\" secondAttribute=\"top\" id=\"Mci-KR-QSG\"/>\n                                                        </constraints>\n                                                        <visibilityPriorities>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                            <integer value=\"1000\"/>\n                                                        </visibilityPriorities>\n                                                        <customSpacing>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                            <real value=\"3.4028234663852886e+38\"/>\n                                                        </customSpacing>\n                                                    </stackView>\n                                                </subviews>\n                                                <constraints>\n                                                    <constraint firstItem=\"PH1-h4-ZhC\" firstAttribute=\"leading\" secondItem=\"3fZ-2P-Yw8\" secondAttribute=\"leading\" constant=\"65\" id=\"Dlt-CM-UWe\"/>\n                                                </constraints>\n                                                <visibilityPriorities>\n                                                    <integer value=\"1000\"/>\n                                                    <integer value=\"1000\"/>\n                                                </visibilityPriorities>\n                                                <customSpacing>\n                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                    <real value=\"3.4028234663852886e+38\"/>\n                                                </customSpacing>\n                                            </stackView>\n                                        </subviews>\n                                        <constraints>\n                                            <constraint firstAttribute=\"height\" relation=\"greaterThanOrEqual\" constant=\"100\" id=\"0p9-e7-C6B\"/>\n                                            <constraint firstItem=\"5k8-dN-bzX\" firstAttribute=\"leading\" secondItem=\"9T6-Lr-8m1\" secondAttribute=\"leading\" constant=\"20\" symbolic=\"YES\" id=\"4jz-c4-0m9\"/>\n                                            <constraint firstAttribute=\"height\" priority=\"750\" constant=\"100\" id=\"Gde-pc-Mrq\"/>\n                                            <constraint firstAttribute=\"width\" relation=\"greaterThanOrEqual\" constant=\"306\" id=\"PeA-h0-vh6\"/>\n                                            <constraint firstAttribute=\"width\" priority=\"750\" constant=\"306\" id=\"aYF-GN-dmL\"/>\n                                            <constraint firstItem=\"3fZ-2P-Yw8\" firstAttribute=\"centerX\" secondItem=\"9T6-Lr-8m1\" secondAttribute=\"centerX\" id=\"gIv-0a-YeJ\"/>\n                                            <constraint firstItem=\"3fZ-2P-Yw8\" firstAttribute=\"leading\" secondItem=\"9T6-Lr-8m1\" secondAttribute=\"leading\" constant=\"40\" id=\"jfY-5s-dFp\"/>\n                                        </constraints>\n                                        <visibilityPriorities>\n                                            <integer value=\"1000\"/>\n                                            <integer value=\"1000\"/>\n                                            <integer value=\"1000\"/>\n                                            <integer value=\"1000\"/>\n                                        </visibilityPriorities>\n                                        <customSpacing>\n                                            <real value=\"3.4028234663852886e+38\"/>\n                                            <real value=\"3.4028234663852886e+38\"/>\n                                            <real value=\"3.4028234663852886e+38\"/>\n                                            <real value=\"3.4028234663852886e+38\"/>\n                                        </customSpacing>\n                                    </stackView>\n                                </subviews>\n                                <constraints>\n                                    <constraint firstAttribute=\"width\" constant=\"850\" id=\"Lbt-yT-fFL\"/>\n                                    <constraint firstItem=\"9T6-Lr-8m1\" firstAttribute=\"top\" secondItem=\"Pem-lh-xwe\" secondAttribute=\"top\" constant=\"20\" symbolic=\"YES\" id=\"XIo-D6-P4Z\"/>\n                                    <constraint firstAttribute=\"bottom\" secondItem=\"9T6-Lr-8m1\" secondAttribute=\"bottom\" constant=\"26\" id=\"xVU-v5-Yg3\"/>\n                                </constraints>\n                                <visibilityPriorities>\n                                    <integer value=\"1000\"/>\n                                </visibilityPriorities>\n                                <customSpacing>\n                                    <real value=\"3.4028234663852886e+38\"/>\n                                </customSpacing>\n                            </stackView>\n                        </subviews>\n                        <constraints>\n                            <constraint firstItem=\"Pem-lh-xwe\" firstAttribute=\"top\" secondItem=\"yfQ-gV-dm5\" secondAttribute=\"top\" id=\"Eli-kO-CkT\"/>\n                            <constraint firstItem=\"Pem-lh-xwe\" firstAttribute=\"leading\" secondItem=\"yfQ-gV-dm5\" secondAttribute=\"leading\" id=\"MfO-Bq-vqY\"/>\n                            <constraint firstAttribute=\"trailing\" secondItem=\"Pem-lh-xwe\" secondAttribute=\"trailing\" id=\"QrX-se-kTG\"/>\n                            <constraint firstAttribute=\"bottom\" secondItem=\"Pem-lh-xwe\" secondAttribute=\"bottom\" id=\"WY1-ws-xkP\"/>\n                        </constraints>\n                    </view>\n                    <connections>\n                        <outlet property=\"animateFootprintCheckbox\" destination=\"cbx-fa-jJh\" id=\"KmN-pe-s68\"/>\n                        <outlet property=\"bottomLandscapeSelect\" destination=\"3c6-3h-J52\" id=\"1a0-LW-wrh\"/>\n                        <outlet property=\"bottomLeftLandscapeSelect\" destination=\"bVZ-3z-DYF\" id=\"1Ql-jU-1fz\"/>\n                        <outlet property=\"bottomLeftPortraitSelect\" destination=\"DPC-eZ-HIy\" id=\"jdO-8U-dyU\"/>\n                        <outlet property=\"bottomPortraitSelect\" destination=\"ZYO-D7-C2a\" id=\"pZd-mp-0yk\"/>\n                        <outlet property=\"bottomRightLandscapeSelect\" destination=\"jVF-3c-sL0\" id=\"eYi-gy-RF3\"/>\n                        <outlet property=\"bottomRightPortraitSelect\" destination=\"lje-Rc-9Hj\" id=\"bxP-nE-cgS\"/>\n                        <outlet property=\"hapticFeedbackCheckbox\" destination=\"idz-Fq-8Qx\" id=\"5Wb-6e-kmA\"/>\n                        <outlet property=\"leftLandscapeSelect\" destination=\"jqR-m9-Kh7\" id=\"wBI-Th-vtz\"/>\n                        <outlet property=\"leftPortraitSelect\" destination=\"NlH-2s-Bb2\" id=\"r9T-BM-YbN\"/>\n                        <outlet property=\"missionControlDraggingCheckbox\" destination=\"vrs-iM-XVL\" id=\"xgC-0R-SeA\"/>\n                        <outlet property=\"portraitStackView\" destination=\"3fZ-2P-Yw8\" id=\"b8R-Wb-nlY\"/>\n                        <outlet property=\"rightLandscapeSelect\" destination=\"HM2-rd-Wka\" id=\"Oud-Xf-anx\"/>\n                        <outlet property=\"rightPortraitSelect\" destination=\"efR-xi-okh\" id=\"K5g-I0-0e4\"/>\n                        <outlet property=\"topLandscapeSelect\" destination=\"qa7-5C-PSI\" id=\"vmH-jq-zMx\"/>\n                        <outlet property=\"topLeftLandscapeSelect\" destination=\"Dvs-uM-6VU\" id=\"Z3D-Pn-896\"/>\n                        <outlet property=\"topLeftPortraitSelect\" destination=\"Ytt-rI-KMq\" id=\"e9V-3B-ws1\"/>\n                        <outlet property=\"topPortraitSelect\" destination=\"rs4-Tg-Omn\" id=\"GT1-5g-pK7\"/>\n                        <outlet property=\"topRightLandscapeSelect\" destination=\"f8h-NV-mPC\" id=\"bC7-di-TTY\"/>\n                        <outlet property=\"topRightPortraitSelect\" destination=\"pYw-mV-KH2\" id=\"m2S-dc-ncv\"/>\n                        <outlet property=\"unsnapRestoreButton\" destination=\"9Ed-T3-hCA\" id=\"6Qf-nc-VWE\"/>\n                        <outlet property=\"windowSnappingCheckbox\" destination=\"3wO-pf-nsb\" id=\"INd-4Z-LaK\"/>\n                    </connections>\n                </viewController>\n                <customObject id=\"bNa-zL-IZp\" userLabel=\"First Responder\" customClass=\"NSResponder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"-204\" y=\"1379\"/>\n        </scene>\n    </scenes>\n    <resources>\n        <image name=\"NSApplicationIcon\" width=\"32\" height=\"32\"/>\n        <image name=\"StatusTemplate\" width=\"22\" height=\"22\"/>\n        <image name=\"almostMaximizeTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"bottomCenterSixthTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"bottomHalfTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"bottomLeftSixthTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"bottomLeftTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"bottomRightSixthTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"bottomRightTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"centerLeftFourthTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"centerRightFourthTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"centerTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"centerThirdTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"centerThreeFourthsTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"centerTwoThirdsTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"firstThirdTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"firstThreeFourthsTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"firstTwoThirdsTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"halfWidthCenterTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"keyboardToolbarTemplate\" width=\"72\" height=\"72\"/>\n        <image name=\"lastThirdTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"lastThreeFourthsTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"lastTwoThirdsTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"leftFourthTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"leftHalfTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"makeLargerTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"makeSmallerTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"maximizeHeightTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"maximizeTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"moveDownTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"moveLeftTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"moveRightTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"moveUpTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"nextDisplayTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"prevDisplayTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"restoreTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"rightFourthTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"rightHalfTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"snapAreaTemplate\" width=\"72\" height=\"72\"/>\n        <image name=\"square.and.arrow.down\" catalog=\"system\" width=\"15\" height=\"17\"/>\n        <image name=\"square.and.arrow.up\" catalog=\"system\" width=\"15\" height=\"18\"/>\n        <image name=\"toolbarSettingsTemplate\" width=\"50\" height=\"50\"/>\n        <image name=\"topCenterSixthTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"topHalfTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"topLeftSixthTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"topLeftTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"topRightSixthTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"topRightTemplate\" width=\"30\" height=\"20\"/>\n        <image name=\"wallpaperTiger\" width=\"400\" height=\"250\"/>\n        <image name=\"wallpaperTigerVertical\" width=\"250\" height=\"400\"/>\n    </resources>\n</document>\n"
  },
  {
    "path": "Rectangle/CycleSize.swift",
    "content": "//\n//  CycleSize.swift\n//  Rectangle\n//\n//  Created by Eskil Gjerde Sviggum on 01/08/2024.\n//  Copyright © 2024 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nenum CycleSize: Int, CaseIterable {\n    case twoThirds = 0\n    case oneHalf = 1\n    case oneThird = 2\n    case oneQuarter = 3\n    case threeQuarters = 4\n    \n    static func fromBits(bits: Int) -> Set<CycleSize> {\n        Set(\n            Self.allCases.filter {\n                (bits >> $0.rawValue) & 1 == 1\n            }\n        )\n    }\n    \n    static var firstSize = CycleSize.oneHalf\n    static var defaultSizes: Set<CycleSize> = [.oneHalf, .twoThirds, .oneThird]\n    \n    // The expected order of the cycle sizes is to start with the\n    // first division, then go gradually upwards in size and wrap\n    // around to the smaller sizes.\n    //\n    // For example if all cycles are used, the order should be:\n    // 1/2, 2/3, 3/4, 1/4, 1/3\n    static var sortedSizes: [CycleSize] = {\n        let sortedSizes = Self.allCases.sorted(by: { $0.fraction < $1.fraction })\n        \n        guard let firstSizeIndex = sortedSizes.firstIndex(of: firstSize) else {\n            return sortedSizes\n        }\n        \n        let lessThanFistSizes = sortedSizes[0..<firstSizeIndex]\n        let greaterThanFistSizes = sortedSizes[(firstSizeIndex + 1)..<sortedSizes.count]\n        \n        return [firstSize] + greaterThanFistSizes + lessThanFistSizes\n    }()\n}\n\nextension CycleSize {\n    \n    var title: String {\n        switch self {\n        case .twoThirds:\n            \"⅔\"\n        case .oneHalf:\n            \"½\"\n        case .oneThird:\n            \"⅓\"\n        case .oneQuarter:\n            \"¼\"\n        case .threeQuarters:\n            \"¾\"\n        }\n    }\n    \n    var fraction: Float {\n        switch self {\n        case .twoThirds:\n            2 / 3\n        case .oneHalf:\n            1 / 2\n        case .oneThird:\n            1 / 3\n        case .oneQuarter:\n            1 / 4\n        case .threeQuarters:\n            3 / 4\n        }\n    }\n    \n    var isAlwaysEnabled: Bool {\n        if self == .firstSize {\n            return true\n        }\n        \n        return false\n    }\n    \n}\n\nextension Set where Element == CycleSize {\n    func toBits() -> Int {\n        var bits = 0\n        self.forEach {\n            bits |= 1 << $0.rawValue\n        }\n        return bits\n    }\n}\n\nclass CycleSizesDefault: Default {\n    public private(set) var key: String = \"selectedCycleSizes\"\n    private var initialized = false\n    \n    var value: Set<CycleSize> {\n        didSet {\n            if initialized {\n                UserDefaults.standard.set(value.toBits(), forKey: key)\n            }\n        }\n    }\n    \n    init() {\n        let bits = UserDefaults.standard.integer(forKey: key)\n        value = CycleSize.fromBits(bits: bits)\n        initialized = true\n    }\n\n    func load(from codable: CodableDefault) {\n        if let bits = codable.int {\n            let divisions = CycleSize.fromBits(bits: bits)\n            value = divisions\n        }\n    }\n    \n    func toCodable() -> CodableDefault {\n        return CodableDefault(int: value.toBits())\n    }\n\n}\n"
  },
  {
    "path": "Rectangle/Defaults.swift",
    "content": "//\n//  Defaults.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 6/14/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Cocoa\n\nclass Defaults {\n    static let launchOnLogin = BoolDefault(key: \"launchOnLogin\")\n    static let disabledApps = StringDefault(key: \"disabledApps\")\n    static let hideMenuBarIcon = BoolDefault(key: \"hideMenubarIcon\")\n    static let alternateDefaultShortcuts = BoolDefault(key: \"alternateDefaultShortcuts\") // switch to magnet defaults\n    static let subsequentExecutionMode = SubsequentExecutionDefault()\n    static let selectedCycleSizes = CycleSizesDefault()\n    static let cycleSizesIsChanged = BoolDefault(key: \"cycleSizesIsChanged\")\n    static let allowAnyShortcut = BoolDefault(key: \"allowAnyShortcut\")\n    static let windowSnapping = OptionalBoolDefault(key: \"windowSnapping\")\n    static let almostMaximizeHeight = FloatDefault(key: \"almostMaximizeHeight\")\n    static let almostMaximizeWidth = FloatDefault(key: \"almostMaximizeWidth\")\n    static let gapSize = FloatDefault(key: \"gapSize\")\n    static let snapEdgeMarginTop = FloatDefault(key: \"snapEdgeMarginTop\", defaultValue: 5)\n    static let snapEdgeMarginBottom = FloatDefault(key: \"snapEdgeMarginBottom\", defaultValue: 5)\n    static let snapEdgeMarginLeft = FloatDefault(key: \"snapEdgeMarginLeft\", defaultValue: 5)\n    static let snapEdgeMarginRight = FloatDefault(key: \"snapEdgeMarginRight\", defaultValue: 5)\n    static let centeredDirectionalMove = OptionalBoolDefault(key: \"centeredDirectionalMove\")\n    static let resizeOnDirectionalMove = BoolDefault(key: \"resizeOnDirectionalMove\")\n    static let ignoredSnapAreas = IntDefault(key: \"ignoredSnapAreas\")\n    static let traverseSingleScreen = OptionalBoolDefault(key: \"traverseSingleScreen\")\n    static let useCursorScreenDetection = BoolDefault(key: \"useCursorScreenDetection\")\n    static let minimumWindowWidth = FloatDefault(key: \"minimumWindowWidth\")\n    static let minimumWindowHeight = FloatDefault(key: \"minimumWindowHeight\")\n    static let sizeOffset = FloatDefault(key: \"sizeOffset\")\n    static let widthStepSize = FloatDefault(key: \"widthStepSize\", defaultValue: 30)\n    static let unsnapRestore = OptionalBoolDefault(key: \"unsnapRestore\")\n    static let curtainChangeSize = OptionalBoolDefault(key: \"curtainChangeSize\")\n    static let relaunchOpensMenu = BoolDefault(key: \"relaunchOpensMenu\")\n    static let obtainWindowOnClick = OptionalBoolDefault(key: \"obtainWindowOnClick\")\n    static let screenEdgeGapTop = FloatDefault(key: \"screenEdgeGapTop\", defaultValue: 0)\n    static let screenEdgeGapBottom = FloatDefault(key: \"screenEdgeGapBottom\", defaultValue: 0)\n    static let screenEdgeGapLeft = FloatDefault(key: \"screenEdgeGapLeft\", defaultValue: 0)\n    static let screenEdgeGapRight = FloatDefault(key: \"screenEdgeGapRight\", defaultValue: 0)\n    static let screenEdgeGapsOnMainScreenOnly = BoolDefault(key: \"screenEdgeGapsOnMainScreenOnly\")\n    static let screenEdgeGapTopNotch = FloatDefault(key: \"screenEdgeGapTopNotch\", defaultValue: 0)\n    static let lastVersion = StringDefault(key: \"lastVersion\")\n    static let installVersion = StringDefault(key: \"installVersion\")\n    static let showAllActionsInMenu = OptionalBoolDefault(key: \"showAllActionsInMenu\")\n    static let showAdditionalSizesInMenu = OptionalBoolDefault(key: \"showAdditionalSizesInMenu\")\n    static var SUHasLaunchedBefore: Bool { UserDefaults.standard.bool(forKey: \"SUHasLaunchedBefore\") }\n    static let footprintAlpha = FloatDefault(key: \"footprintAlpha\", defaultValue: 0.3)\n    static let footprintBorderWidth = FloatDefault(key: \"footprintBorderWidth\", defaultValue: 2)\n    static let footprintFade = OptionalBoolDefault(key: \"footprintFade\")\n    static let footprintColor = JSONDefault<CodableColor>(key: \"footprintColor\")\n    static let SUEnableAutomaticChecks = BoolDefault(key: \"SUEnableAutomaticChecks\")\n    static let todo = OptionalBoolDefault(key: \"todo\")\n    static let todoMode = BoolDefault(key: \"todoMode\")\n    static let todoApplication = StringDefault(key: \"todoApplication\")\n    static let todoSidebarWidth = FloatDefault(key: \"todoSidebarWidth\", defaultValue: 400)\n    static let todoSidebarWidthUnit = IntEnumDefault<TodoSidebarWidthUnit>(key: \"todoSidebarWidthUnit\", defaultValue: .pixels)\n    static let todoSidebarSide = IntEnumDefault<TodoSidebarSide>(key: \"todoSidebarSide\", defaultValue: .right)\n    static let snapModifiers = IntDefault(key: \"snapModifiers\")\n    static let attemptMatchOnNextPrevDisplay = OptionalBoolDefault(key: \"attemptMatchOnNextPrevDisplay\")\n    static let altThirdCycle = OptionalBoolDefault(key: \"altThirdCycle\")\n    static let centerHalfCycles = OptionalBoolDefault(key: \"centerHalfCycles\")\n    static let fullIgnoreBundleIds = JSONDefault<[String]>(key: \"fullIgnoreBundleIds\")\n    static let notifiedOfProblemApps = BoolDefault(key: \"notifiedOfProblemApps\")\n    static let specifiedHeight = FloatDefault(key: \"specifiedHeight\", defaultValue: 1050)\n    static let specifiedWidth = FloatDefault(key: \"specifiedWidth\", defaultValue: 1680)\n    static let horizontalSplitRatio = FloatDefault(key: \"horizontalSplitRatio\", defaultValue: 50)\n    static let verticalSplitRatio = FloatDefault(key: \"verticalSplitRatio\", defaultValue: 50)\n    static let moveCursorAcrossDisplays = OptionalBoolDefault(key: \"moveCursorAcrossDisplays\")\n    static let moveCursor = OptionalBoolDefault(key: \"moveCursor\")\n    static let autoMaximize = OptionalBoolDefault(key: \"autoMaximize\")\n    static let applyGapsToMaximize = OptionalBoolDefault(key: \"applyGapsToMaximize\")\n    static let applyGapsToMaximizeHeight = OptionalBoolDefault(key: \"applyGapsToMaximizeHeight\")\n    static let cornerSnapAreaSize = FloatDefault(key: \"cornerSnapAreaSize\", defaultValue: 20)\n    static let shortEdgeSnapAreaSize = FloatDefault(key: \"shortEdgeSnapAreaSize\", defaultValue: 145)\n    static let cascadeAllDeltaSize = FloatDefault(key: \"cascadeAllDeltaSize\", defaultValue: 30)\n    static let sixthsSnapArea = OptionalBoolDefault(key: \"sixthsSnapArea\")\n    static let stageSize = FloatDefault(key: \"stageSize\", defaultValue: 190)\n    static let dragFromStage = OptionalBoolDefault(key: \"dragFromStage\")\n    static let alwaysAccountForStage = OptionalBoolDefault(key: \"alwaysAccountForStage\")\n    static let landscapeSnapAreas = JSONDefault<[Directional:SnapAreaConfig]>(key: \"landscapeSnapAreas\")\n    static let portraitSnapAreas = JSONDefault<[Directional:SnapAreaConfig]>(key: \"portraitSnapAreas\")\n    static let missionControlDragging = OptionalBoolDefault(key: \"missionControlDragging\")\n    static let enhancedUI = IntEnumDefault<EnhancedUI>(key: \"enhancedUI\", defaultValue: .disableEnable)\n    static let footprintAnimationDurationMultiplier = FloatDefault(key: \"footprintAnimationDurationMultiplier\", defaultValue: 0)\n    static let hapticFeedbackOnSnap = OptionalBoolDefault(key: \"hapticFeedbackOnSnap\")\n    static let missionControlDraggingAllowedOffscreenDistance = FloatDefault(key: \"missionControlDraggingAllowedOffscreenDistance\", defaultValue: 25)\n    static let missionControlDraggingDisallowedDuration = IntDefault(key: \"missionControlDraggingDisallowedDuration\", defaultValue: 250)\n    static let doubleClickTitleBar = IntDefault(key: \"doubleClickTitleBar\")\n    static let doubleClickTitleBarRestore = OptionalBoolDefault(key: \"doubleClickTitleBarRestore\")\n    static let doubleClickTitleBarIgnoredApps = JSONDefault<[String]>(key: \"doubleClickTitleBarIgnoredApps\")\n    static let doubleClickToolBarIgnoredApps = JSONDefault<Set<String>>(key: \"doubleClickTitleBarIgnoredApps\", defaultValue: [\"epp.package.java\"])\n    static let ignoreDragSnapToo = OptionalBoolDefault(key: \"ignoreDragSnapToo\")\n    static let systemWideMouseDown = OptionalBoolDefault(key: \"systemWideMouseDown\")\n    static let systemWideMouseDownApps = JSONDefault<Set<String>>(key:\"systemWideMouseDownApps\", defaultValue: Set<String>([\"org.languagetool.desktop\", \"com.microsoft.teams2\"]))\n    static let internalTilingNotified = BoolDefault(key: \"internalTilingNotified\")\n    static let screensOrderedByX = OptionalBoolDefault(key: \"screensOrderedByX\")\n    static var array: [Default] = [\n        launchOnLogin,\n        disabledApps,\n        hideMenuBarIcon,\n        alternateDefaultShortcuts,\n        subsequentExecutionMode,\n        selectedCycleSizes,\n        cycleSizesIsChanged,\n        allowAnyShortcut,\n        windowSnapping,\n        almostMaximizeHeight,\n        almostMaximizeWidth,\n        gapSize,\n        snapEdgeMarginTop,\n        snapEdgeMarginBottom,\n        snapEdgeMarginLeft,\n        snapEdgeMarginRight,\n        centeredDirectionalMove,\n        resizeOnDirectionalMove,\n        ignoredSnapAreas,\n        traverseSingleScreen,\n        minimumWindowWidth,\n        minimumWindowHeight,\n        sizeOffset,\n        widthStepSize,\n        unsnapRestore,\n        curtainChangeSize,\n        relaunchOpensMenu,\n        obtainWindowOnClick,\n        screenEdgeGapTop,\n        screenEdgeGapBottom,\n        screenEdgeGapLeft,\n        screenEdgeGapRight,\n        screenEdgeGapsOnMainScreenOnly,\n        screenEdgeGapTopNotch,\n        showAllActionsInMenu,\n        showAdditionalSizesInMenu,\n        footprintAlpha,\n        footprintBorderWidth,\n        footprintFade,\n        footprintColor,\n        SUEnableAutomaticChecks,\n        todo,\n        todoMode,\n        todoApplication,\n        todoSidebarWidth,\n        todoSidebarSide,\n        snapModifiers,\n        attemptMatchOnNextPrevDisplay,\n        altThirdCycle,\n        centerHalfCycles,\n        fullIgnoreBundleIds,\n        notifiedOfProblemApps,\n        specifiedHeight,\n        specifiedWidth,\n        horizontalSplitRatio,\n        verticalSplitRatio,\n        moveCursorAcrossDisplays,\n        moveCursor,\n        autoMaximize,\n        applyGapsToMaximize,\n        applyGapsToMaximizeHeight,\n        cornerSnapAreaSize,\n        shortEdgeSnapAreaSize,\n        cascadeAllDeltaSize,\n        sixthsSnapArea,\n        stageSize,\n        dragFromStage,\n        alwaysAccountForStage,\n        landscapeSnapAreas,\n        portraitSnapAreas,\n        missionControlDragging,\n        enhancedUI,\n        footprintAnimationDurationMultiplier,\n        hapticFeedbackOnSnap,\n        missionControlDraggingAllowedOffscreenDistance,\n        missionControlDraggingDisallowedDuration,\n        doubleClickTitleBar,\n        doubleClickTitleBarRestore,\n        doubleClickTitleBarIgnoredApps,\n        ignoreDragSnapToo,\n        systemWideMouseDown,\n        systemWideMouseDownApps,\n        screensOrderedByX,\n        showAdditionalSizesInMenu\n    ]\n}\n\nstruct CodableDefault: Codable {\n    let bool: Bool?\n    let int: Int?\n    let float: Float?\n    let string: String?\n    \n    init(bool: Bool? = nil, int: Int? = nil, float: Float? = nil, string: String? = nil) {\n        self.bool = bool\n        self.int = int\n        self.float = float\n        self.string = string\n    }\n}\n\nprotocol Default {\n    var key: String { get }\n    func load(from codable: CodableDefault)\n    func toCodable() -> CodableDefault\n}\n\nclass BoolDefault: Default {\n    public private(set) var key: String\n    private var initialized = false\n    \n    var enabled: Bool {\n        didSet {\n            if initialized {\n                UserDefaults.standard.set(enabled, forKey: key)\n            }\n        }\n    }\n    \n    init(key: String) {\n        self.key = key\n        enabled = UserDefaults.standard.bool(forKey: key)\n        initialized = true\n    }\n    \n    func load(from codable: CodableDefault) {\n        if let value = codable.bool {\n            self.enabled = value\n        }\n    }\n    \n    func toCodable() -> CodableDefault {\n        return CodableDefault(bool: enabled)\n    }\n}\n\nclass OptionalBoolDefault: Default {\n    public private(set) var key: String\n    private var initialized = false\n    \n    var enabled: Bool? {\n        didSet {\n            if initialized {\n                if enabled == true {\n                    UserDefaults.standard.set(1, forKey: key)\n                } else if enabled == false {\n                    UserDefaults.standard.set(2, forKey: key)\n                } else {\n                    UserDefaults.standard.set(0, forKey: key)\n                }\n            }\n        }\n    }\n    \n    var userDisabled: Bool { enabled == false }\n    var userEnabled: Bool { enabled == true }\n    var notSet: Bool { enabled == nil }\n    \n    init(key: String) {\n        self.key = key\n        let intValue = UserDefaults.standard.integer(forKey: key)\n        set(using: intValue)\n        initialized = true\n    }\n    \n    private func set(using intValue: Int) {\n        switch intValue {\n        case 0: enabled = nil\n        case 1: enabled = true\n        case 2: enabled = false\n        default: break\n        }\n    }\n    \n    func load(from codable: CodableDefault) {\n        if let value = codable.int {\n            set(using: value)\n        }\n    }\n    \n    func toCodable() -> CodableDefault {\n        guard let enabled = enabled else { return CodableDefault(int: 0)}\n        let intValue = enabled ? 1 : 2\n        return CodableDefault(int: intValue)\n    }\n}\n\nclass StringDefault: Default {\n    public private(set) var key: String\n    private var initialized = false\n    \n    var value: String? {\n        didSet {\n            if initialized {\n                UserDefaults.standard.set(value, forKey: key)\n            }\n        }\n    }\n    \n    init(key: String) {\n        self.key = key\n        value = UserDefaults.standard.string(forKey: key)\n        initialized = true\n    }\n    \n    func load(from codable: CodableDefault) {\n        value = codable.string\n    }\n    \n    func toCodable() -> CodableDefault {\n        return CodableDefault(string: value)\n    }\n}\n\nclass FloatDefault: Default {\n    public private(set) var key: String\n    private var initialized = false\n    \n    var value: Float {\n        didSet {\n            if initialized {\n                UserDefaults.standard.set(value, forKey: key)\n            }\n        }\n    }\n    \n    var cgFloat: CGFloat { CGFloat(value) }\n\n    init(key: String, defaultValue: Float = 0) {\n        self.key = key\n        value = UserDefaults.standard.float(forKey: key)\n        if(defaultValue != 0 && value == 0) {\n            value = defaultValue\n        }\n        initialized = true\n    }\n    \n    func load(from codable: CodableDefault) {\n        if let float = codable.float {\n            value = float\n        }\n    }\n    \n    func toCodable() -> CodableDefault {\n        return CodableDefault(float: value)\n    }\n}\n\nclass IntDefault: Default {\n    public private(set) var key: String\n    private var initialized = false\n    \n    var value: Int {\n        didSet {\n            if initialized {\n                UserDefaults.standard.set(value, forKey: key)\n            }\n        }\n    }\n    \n    init(key: String, defaultValue: Int = 0) {\n        self.key = key\n        value = UserDefaults.standard.integer(forKey: key)\n        if(defaultValue != 0 && value == 0) {\n            value = defaultValue\n        }\n        initialized = true\n    }\n    \n    func load(from codable: CodableDefault) {\n        if let int = codable.int {\n            value = int\n        }\n    }\n    \n    func toCodable() -> CodableDefault {\n        return CodableDefault(int: value)\n    }\n}\n\nclass JSONDefault<T: Codable>: StringDefault {\n    \n    private var typeInitialized = false\n    \n    var typedValue: T? {\n        didSet {\n            if typeInitialized {\n                saveToJSON(typedValue)\n            }\n        }\n    }\n    \n    override init(key: String) {\n        super.init(key: key)\n        loadFromJSON()\n        typeInitialized = true\n    }\n    \n    init(key: String, defaultValue: T) {\n        if typedValue == nil {\n            typedValue = defaultValue\n        }\n        super.init(key: key)\n    }\n    \n    override func load(from codable: CodableDefault) {\n        if value != codable.string {\n            value = codable.string\n            typeInitialized = false\n            loadFromJSON()\n            typeInitialized = true\n        }\n    }\n    \n    private func loadFromJSON() {\n        guard let jsonString = value else { return }\n        let decoder = JSONDecoder()\n        guard let jsonData = jsonString.data(using: .utf8) else { return }\n        typedValue = try? decoder.decode(T.self, from: jsonData)\n    }\n    \n    private func saveToJSON(_ obj: T?) {\n        let encoder = JSONEncoder()\n        \n        if let jsonData = try? encoder.encode(obj) {\n            let jsonString = String(data: jsonData, encoding: .utf8)\n            if jsonString != value {\n                value = jsonString\n            }\n        }\n    }\n}\n\nclass IntEnumDefault<E: RawRepresentable>: Default where E.RawValue == Int {\n    public private(set) var key: String\n    private let defaultValue: E\n\n    var _value: E\n    var value: E {\n        set {\n            if newValue != _value {\n                _value = newValue\n                UserDefaults.standard.set(_value.rawValue, forKey: key)\n            }\n        }\n        get { _value }\n    }\n\n    init(key: String, defaultValue: E) {\n        self.key = key\n        self.defaultValue = defaultValue\n        let intValue = UserDefaults.standard.integer(forKey: key)\n        _value = E(rawValue: intValue) ?? defaultValue\n    }\n\n    func load(from codable: CodableDefault) {\n        if let intValue = codable.int, _value.rawValue != intValue {\n            _value = E(rawValue: intValue) ?? defaultValue\n            UserDefaults.standard.set(_value.rawValue, forKey: key)\n        }\n    }\n    \n    func toCodable() -> CodableDefault {\n        CodableDefault(int: value.rawValue)\n    }\n}\n\nstruct CodableColor : Codable {\n    var red: CGFloat = 0.0\n    var green: CGFloat = 0.0\n    var blue: CGFloat = 0.0\n    var alpha: CGFloat? = 1.0\n\n    var nsColor : NSColor {\n        return NSColor(red: red, green: green, blue: blue, alpha: alpha ?? 1.0)\n    }\n\n    init(nsColor: NSColor) {\n        self.red = nsColor.redComponent\n        self.green = nsColor.greenComponent\n        self.blue = nsColor.blueComponent\n        self.alpha = nsColor.alphaComponent\n    }\n}\n"
  },
  {
    "path": "Rectangle/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>CFBundleDevelopmentRegion</key>\n\t<string>$(DEVELOPMENT_LANGUAGE)</string>\n\t<key>CFBundleExecutable</key>\n\t<string>$(EXECUTABLE_NAME)</string>\n\t<key>CFBundleIconFile</key>\n\t<string></string>\n\t<key>CFBundleIdentifier</key>\n\t<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>\n\t<key>CFBundleInfoDictionaryVersion</key>\n\t<string>6.0</string>\n\t<key>CFBundleName</key>\n\t<string>$(PRODUCT_NAME)</string>\n\t<key>CFBundlePackageType</key>\n\t<string>APPL</string>\n\t<key>CFBundleShortVersionString</key>\n\t<string>$(MARKETING_VERSION)</string>\n\t<key>CFBundleURLTypes</key>\n\t<array>\n\t\t<dict>\n\t\t\t<key>CFBundleURLSchemes</key>\n\t\t\t<array>\n\t\t\t\t<string>rectangle</string>\n\t\t\t</array>\n\t\t</dict>\n\t</array>\n\t<key>CFBundleVersion</key>\n\t<string>$(CURRENT_PROJECT_VERSION)</string>\n\t<key>LSApplicationCategoryType</key>\n\t<string>public.app-category.productivity</string>\n\t<key>LSMinimumSystemVersion</key>\n\t<string>$(MACOSX_DEPLOYMENT_TARGET)</string>\n\t<key>LSUIElement</key>\n\t<true/>\n\t<key>NSHumanReadableCopyright</key>\n\t<string>Copyright © 2019-2026 Ryan Hanson. All rights reserved.</string>\n\t<key>NSMainStoryboardFile</key>\n\t<string>Main</string>\n\t<key>NSPrincipalClass</key>\n\t<string>NSApplication</string>\n\t<key>SUFeedURL</key>\n\t<string>https://rectangleapp.com/downloads/updates.xml</string>\n\t<key>SUPublicEDKey</key>\n\t<string>lpt9M3PhocbZ3MZiLH+crEqRfU11kfoNzGxSqiEIdvM=</string>\n\t<key>SUScheduledCheckInterval</key>\n\t<integer>172800</integer>\n</dict>\n</plist>\n"
  },
  {
    "path": "Rectangle/InternetAccessPolicy.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>ApplicationDescription</key>\n\t<string>Rectangle is the gold standard for window management on macOS. Free and open source.</string>\n\t<key>Connections</key>\n\t<array>\n\t\t<dict>\n\t\t\t<key>IsIncoming</key>\n\t\t\t<false/>\n\t\t\t<key>Host</key>\n\t\t\t<string>rectangleapp.com</string>\n\t\t\t<key>NetworkProtocol</key>\n\t\t\t<string>TCP</string>\n\t\t\t<key>Port</key>\n\t\t\t<string>443</string>\n\t\t\t<key>Purpose</key>\n\t\t\t<string>Rectangle checks for new versions</string>\n\t\t\t<key>DenyConsequences</key>\n\t\t\t<string>If you deny this connection, you will not be notified about new versions.</string>\n\t\t</dict>\n\t</array>\n</dict>\n</plist>\n"
  },
  {
    "path": "Rectangle/LaunchOnLogin.swift",
    "content": "//\n//  LaunchOnLogin.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 2/20/23.\n//  Copyright © 2023 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\nimport ServiceManagement\nimport os.log\n\n@available(macOS 13.0, *)\npublic enum LaunchOnLogin {\n    public static var isEnabled: Bool {\n        get { SMAppService.mainApp.status == .enabled }\n        set {\n            do {\n                if newValue {\n                    if SMAppService.mainApp.status == .enabled {\n                        try? SMAppService.mainApp.unregister()\n                    }\n                    \n                    try SMAppService.mainApp.register()\n                } else {\n                    try SMAppService.mainApp.unregister()\n                }\n            } catch {\n                os_log(\"Failed to \\(newValue ? \"enable\" : \"disable\") launch at login: \\(error.localizedDescription)\")\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "Rectangle/Logging/LogViewer.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.Cocoa.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"21225\" targetRuntime=\"MacOSX.Cocoa\" propertyAccessControl=\"none\" useAutolayout=\"YES\">\n    <dependencies>\n        <deployment identifier=\"macosx\"/>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.CocoaPlugin\" version=\"21225\"/>\n        <capability name=\"documents saved in the Xcode 8 format\" minToolsVersion=\"8.0\"/>\n    </dependencies>\n    <scenes>\n        <!--Window Controller-->\n        <scene sceneID=\"lVl-bK-43b\">\n            <objects>\n                <windowController storyboardIdentifier=\"LogWindowController\" id=\"vJi-GS-BV5\" customClass=\"LogWindowController\" customModule=\"Rectangle\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <window key=\"window\" title=\"Rectangle Logging\" allowsToolTipsWhenApplicationIsInactive=\"NO\" autorecalculatesKeyViewLoop=\"NO\" releasedWhenClosed=\"NO\" visibleAtLaunch=\"NO\" frameAutosaveName=\"\" animationBehavior=\"default\" id=\"Uij-UE-jd5\">\n                        <windowStyleMask key=\"styleMask\" titled=\"YES\" closable=\"YES\" miniaturizable=\"YES\" resizable=\"YES\"/>\n                        <windowPositionMask key=\"initialPositionMask\" leftStrut=\"YES\" rightStrut=\"YES\" topStrut=\"YES\" bottomStrut=\"YES\"/>\n                        <rect key=\"contentRect\" x=\"245\" y=\"301\" width=\"480\" height=\"270\"/>\n                        <rect key=\"screenRect\" x=\"0.0\" y=\"0.0\" width=\"1680\" height=\"1027\"/>\n                        <value key=\"minSize\" type=\"size\" width=\"100\" height=\"50\"/>\n                        <toolbar key=\"toolbar\" implicitIdentifier=\"B1DBE389-331A-4689-B03B-A64CB9B7762C\" autosavesConfiguration=\"NO\" allowsUserCustomization=\"NO\" displayMode=\"iconOnly\" sizeMode=\"regular\" id=\"zwU-0y-LnI\">\n                            <allowedToolbarItems>\n                                <toolbarItem implicitItemIdentifier=\"A9F27F45-23A4-4F6A-B29F-A185C68E5CC0\" label=\"Clear\" paletteLabel=\"Clear\" tag=\"-1\" image=\"NSTrashEmpty\" id=\"vSV-yb-vAt\">\n                                    <size key=\"minSize\" width=\"72\" height=\"72\"/>\n                                    <size key=\"maxSize\" width=\"72\" height=\"72\"/>\n                                    <connections>\n                                        <action selector=\"clearClicked:\" target=\"vJi-GS-BV5\" id=\"q3B-He-jB8\"/>\n                                    </connections>\n                                </toolbarItem>\n                                <toolbarItem implicitItemIdentifier=\"NSToolbarShowColorsItem\" id=\"Efc-d5-q0y\"/>\n                                <toolbarItem implicitItemIdentifier=\"NSToolbarShowFontsItem\" id=\"zCn-Wl-gsE\"/>\n                                <toolbarItem implicitItemIdentifier=\"NSToolbarPrintItem\" id=\"Nei-0S-1mq\"/>\n                                <toolbarItem implicitItemIdentifier=\"NSToolbarSpaceItem\" id=\"Vn6-3B-BfI\"/>\n                                <toolbarItem implicitItemIdentifier=\"NSToolbarFlexibleSpaceItem\" id=\"mkO-5w-oGc\"/>\n                            </allowedToolbarItems>\n                            <defaultToolbarItems>\n                                <toolbarItem reference=\"vSV-yb-vAt\"/>\n                            </defaultToolbarItems>\n                        </toolbar>\n                        <connections>\n                            <outlet property=\"delegate\" destination=\"vJi-GS-BV5\" id=\"GBp-av-2Ru\"/>\n                        </connections>\n                    </window>\n                    <connections>\n                        <segue destination=\"PiU-lX-bsA\" kind=\"relationship\" relationship=\"window.shadowedContentViewController\" id=\"gtr-RV-G0d\"/>\n                    </connections>\n                </windowController>\n                <customObject id=\"ibM-d1-JvQ\" userLabel=\"First Responder\" customClass=\"NSResponder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"-152\" y=\"222\"/>\n        </scene>\n        <!--Log View Controller-->\n        <scene sceneID=\"cN1-rF-z25\">\n            <objects>\n                <viewController storyboardIdentifier=\"LogViewController\" id=\"PiU-lX-bsA\" customClass=\"LogViewController\" customModule=\"Rectangle\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" id=\"ptq-Cu-Bka\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"480\" height=\"270\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <subviews>\n                            <scrollView fixedFrame=\"YES\" borderType=\"none\" horizontalLineScroll=\"10\" horizontalPageScroll=\"10\" verticalLineScroll=\"10\" verticalPageScroll=\"10\" hasHorizontalScroller=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"dQe-XH-ZUC\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"480\" height=\"270\"/>\n                                <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                                <clipView key=\"contentView\" drawsBackground=\"NO\" copiesOnScroll=\"NO\" id=\"mJP-NV-KKg\">\n                                    <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"480\" height=\"270\"/>\n                                    <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                                    <subviews>\n                                        <textView importsGraphics=\"NO\" richText=\"NO\" verticallyResizable=\"YES\" spellingCorrection=\"YES\" smartInsertDelete=\"YES\" id=\"gEX-Ux-opP\" customClass=\"KeyDownTextView\" customModule=\"Rectangle\" customModuleProvider=\"target\">\n                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"480\" height=\"270\"/>\n                                            <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                                            <color key=\"textColor\" name=\"textColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                            <color key=\"backgroundColor\" name=\"textBackgroundColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                            <size key=\"minSize\" width=\"480\" height=\"270\"/>\n                                            <size key=\"maxSize\" width=\"480\" height=\"10000000\"/>\n                                            <color key=\"insertionPointColor\" name=\"textColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                                        </textView>\n                                    </subviews>\n                                </clipView>\n                                <scroller key=\"horizontalScroller\" hidden=\"YES\" wantsLayer=\"YES\" verticalHuggingPriority=\"750\" horizontal=\"YES\" id=\"4i8-uk-TK7\">\n                                    <rect key=\"frame\" x=\"-100\" y=\"-100\" width=\"225\" height=\"15\"/>\n                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                </scroller>\n                                <scroller key=\"verticalScroller\" wantsLayer=\"YES\" verticalHuggingPriority=\"750\" horizontal=\"NO\" id=\"BWv-Pu-eWb\">\n                                    <rect key=\"frame\" x=\"464\" y=\"0.0\" width=\"16\" height=\"270\"/>\n                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                </scroller>\n                            </scrollView>\n                        </subviews>\n                    </view>\n                    <connections>\n                        <outlet property=\"textView\" destination=\"gEX-Ux-opP\" id=\"NNV-3N-MRU\"/>\n                    </connections>\n                </viewController>\n                <customObject id=\"HYT-Vt-vzx\" userLabel=\"First Responder\" customClass=\"NSResponder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"-152\" y=\"670\"/>\n        </scene>\n    </scenes>\n    <resources>\n        <image name=\"NSTrashEmpty\" width=\"32\" height=\"32\"/>\n    </resources>\n</document>\n"
  },
  {
    "path": "Rectangle/Logging/LogViewer.swift",
    "content": "//\n//  LogViewer.swift\n//  Multitouch\n//\n//  Created by Ryan Hanson on 8/6/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Cocoa\n\nclass Logger {\n    \n    static var logging = false\n    \n    static private var logWindowController: LogWindowController?\n    \n    static func showLogging(sender: Any?) {\n        if logWindowController == nil {\n            logWindowController = LogWindowController.freshController()\n        }\n        NSApp.activate(ignoringOtherApps: true)\n        logWindowController?.showWindow(sender)\n        logging = true\n    }\n    \n    static func log(_ string: String) {\n        if logging {\n            logWindowController?.append(string)\n        }\n    }\n}\n\nclass LogWindowController: NSWindowController, NSWindowDelegate {\n\n    @IBAction func clearClicked(_ sender: Any) {\n        (contentViewController as? LogViewController)?.clear()\n    }\n    \n    func append(_ string: String) {\n        var datestamp: String\n        if #available(OSX 10.12, *) {\n            datestamp = ISO8601DateFormatter.string(from: Date(), timeZone: TimeZone.current, formatOptions: .withInternetDateTime)\n        } else {\n            datestamp = String(NSDate().timeIntervalSince1970)\n        }\n        (contentViewController as? LogViewController)?.append(datestamp + \": \" + string + \"\\n\")\n    }\n    \n    func windowWillClose(_ notification: Notification) {\n        Logger.logging = false\n        clearClicked(self)\n    }\n}\n\nextension LogWindowController {\n    // MARK: Storyboard instantiation\n    static func freshController() -> LogWindowController {\n        let storyboard = NSStoryboard(name: \"LogViewer\", bundle: nil)\n        let identifier = \"LogWindowController\"\n        guard let windowController = storyboard.instantiateController(withIdentifier: identifier) as? LogWindowController else {\n            fatalError(\"Unable to find WindowController\")\n        }\n        \n        windowController.window?.delegate = windowController\n        \n        return windowController\n    }\n}\n\n\nclass LogViewController: NSViewController {\n    \n    @IBOutlet var textView: NSTextView!\n    \n    let font = NSFont(name:\"Monaco\", size: 10) ?? NSFont.systemFont(ofSize: 10)\n    \n    let textColorAttribute =\n        [NSAttributedString.Key.foregroundColor: NSColor.textColor,\n         NSAttributedString.Key.font: NSFont(name:\"Monaco\", size: 10) ?? NSFont.systemFont(ofSize: 10)]\n            \n            as [NSAttributedString.Key: Any]\n    \n    func append(_ string: String) {\n        let smartScroll = self.textView.visibleRect.maxY == self.textView.bounds.maxY\n        \n        textView.textStorage?.append(NSAttributedString(string: string, attributes: textColorAttribute))\n        \n        if smartScroll{\n            textView.scrollToEndOfDocument(self)\n        }\n    }\n\n    func clear() {\n        textView.string = \"\"\n    }\n    \n    override func viewDidLoad() {\n        textView.isEditable = false\n    }\n    \n}\n\nclass KeyDownTextView: NSTextView {\n    override func keyDown(with event: NSEvent) {\n        if event.modifierFlags.contains(NSEvent.ModifierFlags.command) {\n            switch event.charactersIgnoringModifiers! {\n            case \"w\":\n                self.window?.close()\n            case \"h\":\n                self.window?.orderOut(self)\n            default:\n                super.keyDown(with: event)\n            }\n        } else {\n            super.keyDown(with: event)\n        }\n    }\n}\n"
  },
  {
    "path": "Rectangle/MultiWindow/MultiWindowManager.swift",
    "content": "//\n//  MultiWindowManager.swift\n//  Rectangle\n//\n//  Created by Mikhail (Dirondin) Polubisok on 2/20/22.\n//  Copyright © 2021 Ryan Hanson. All rights reserved.\n//\n\nimport Cocoa\nimport MASShortcut\n\nclass MultiWindowManager {\n    static func execute(parameters: ExecutionParameters) -> Bool {\n        // TODO: Protocol and factory for all multi-window positioning algorithms\n        switch parameters.action {\n        case .reverseAll:\n            ReverseAllManager.reverseAll(windowElement: parameters.windowElement)\n            return true\n        case .tileAll:\n            tileAllWindowsOnScreen(windowElement: parameters.windowElement)\n            return true\n        case .cascadeAll:\n            cascadeAllWindowsOnScreen(windowElement: parameters.windowElement)\n            return true\n        case .cascadeActiveApp:\n            cascadeActiveAppWindowsOnScreen(windowElement: parameters.windowElement)\n            return true\n        case .tileActiveApp:\n            tileActiveAppWindowsOnScreen(windowElement: parameters.windowElement)\n            return true\n        default:\n            return false\n        }\n    }\n\n    private static func allWindowsOnScreen(windowElement: AccessibilityElement? = nil, sortByPID: Bool = false) -> (screens: UsableScreens, windows: [AccessibilityElement])? {\n        let screenDetection = ScreenDetection()\n\n        guard let windowElement = windowElement ?? AccessibilityElement.getFrontWindowElement(),\n              let screens = screenDetection.detectScreens(using: windowElement)\n        else {\n            NSSound.beep()\n            Logger.log(\"Can't detect screen for multiple windows\")\n            return nil\n        }\n\n        let currentScreen = screens.currentScreen\n\n        var windows = AccessibilityElement.getAllWindowElements()\n        if sortByPID {\n            windows.sort(by: { (w1: AccessibilityElement, w2: AccessibilityElement) -> Bool in\n                w1.pid ?? pid_t(0) > w2.pid ?? pid_t(0)\n            })\n        }\n\n        var actualWindows = [AccessibilityElement]()\n        for w in windows {\n            if Defaults.todo.userEnabled, TodoManager.isTodoWindow(w) { continue }\n            let screen = screenDetection.detectScreens(using: w)?.currentScreen\n            if screen == currentScreen,\n               w.isWindow == true,\n               w.isSheet != true,\n               w.isMinimized != true,\n               w.isHidden != true,\n               w.isSystemDialog != true\n            {\n                actualWindows.append(w)\n            }\n        }\n\n        return (screens, actualWindows)\n    }\n\n    static func tileAllWindowsOnScreen(windowElement: AccessibilityElement? = nil) {\n        guard let (screens, windows) = allWindowsOnScreen(windowElement: windowElement, sortByPID: true) else {\n            return\n        }\n\n        let screenFrame = screens.currentScreen.adjustedVisibleFrame().screenFlipped\n        let count = windows.count\n\n        let columns = Int(ceil(sqrt(CGFloat(count))))\n        let rows = Int(ceil(CGFloat(count) / CGFloat(columns)))\n        let size = CGSize(width: (screenFrame.maxX - screenFrame.minX) / CGFloat(columns), height: (screenFrame.maxY - screenFrame.minY) / CGFloat(rows))\n\n        for (ind, w) in windows.enumerated() {\n            let column = ind % Int(columns)\n            let row = ind / Int(columns)\n            tileWindow(w, screenFrame: screenFrame, size: size, column: column, row: row)\n        }\n    }\n\n    private static func tileWindow(_ w: AccessibilityElement, screenFrame: CGRect, size: CGSize, column: Int, row: Int) {\n        var rect = w.frame\n\n        // TODO: save previous position in history\n\n        rect.origin.x = screenFrame.origin.x + size.width * CGFloat(column)\n        rect.origin.y = screenFrame.origin.y + size.height * CGFloat(row)\n        rect.size = size\n\n        w.setFrame(rect)\n    }\n\n    static func cascadeAllWindowsOnScreen(windowElement: AccessibilityElement? = nil) {\n        guard let (screens, windows) = allWindowsOnScreen(windowElement: windowElement, sortByPID: true) else {\n            return\n        }\n\n        let screenFrame = screens.currentScreen.adjustedVisibleFrame().screenFlipped\n\n        let delta = CGFloat(Defaults.cascadeAllDeltaSize.value)\n\n        for (ind, w) in windows.enumerated() {\n            cascadeWindow(w, screenFrame: screenFrame, delta: delta, index: ind)\n        }\n    }\n\n    private struct CascadeActiveAppParameters {\n        let right: Bool\n        let bottom: Bool\n        let numWindows: Int\n        let size: CGSize\n\n        init(windowFrame: CGRect, screenFrame: CGRect, numWindows: Int, size: CGSize, delta: CGFloat) {\n            right = windowFrame.midX > screenFrame.midX\n            bottom = windowFrame.midY > screenFrame.midY\n            self.numWindows = numWindows\n            let maxSize = CGSize(width: screenFrame.width - CGFloat(numWindows - 1) * delta, height: screenFrame.height - CGFloat(numWindows - 1) * delta)\n            self.size = CGSize(width: min(size.width, maxSize.width), height: min(size.height, maxSize.height))\n        }\n    }\n\n    static func cascadeActiveAppWindowsOnScreen(windowElement: AccessibilityElement? = nil) {\n        guard let (screens, windows) = allWindowsOnScreen(windowElement: windowElement, sortByPID: true),\n              let frontWindowElement = AccessibilityElement.getFrontWindowElement()\n        else {\n            return\n        }\n\n        let screenFrame = screens.currentScreen.adjustedVisibleFrame().screenFlipped\n\n        let delta = CGFloat(Defaults.cascadeAllDeltaSize.value)\n\n        // keep windows with a pid equal to the front window's pid\n        var filtered = windows.filter(hasFrontWindowPid(_:))\n\n        // parameters for cascading active app windows\n        var cascadeParameters: CascadeActiveAppParameters?\n\n        if let first = filtered.first {\n            // move the first to become the last (top)\n            filtered.append(filtered.removeFirst())\n            // set up parameters\n            cascadeParameters = CascadeActiveAppParameters(windowFrame: first.frame, screenFrame: screenFrame, numWindows: filtered.count, size: first.size!, delta: delta)\n        }\n\n        // cascade the filtered windows\n        for (ind, w) in filtered.enumerated() {\n            cascadeWindow(w, screenFrame: screenFrame, delta: delta, index: ind, cascadeParameters: cascadeParameters)\n        }\n\n        // return true for a w pid equal to the front window's pid\n        func hasFrontWindowPid(_ w: AccessibilityElement) -> Bool {\n            return w.pid == frontWindowElement.pid\n        }\n    }\n\n    private static func cascadeWindow(_ w: AccessibilityElement, screenFrame: CGRect, delta: CGFloat, index: Int, cascadeParameters: CascadeActiveAppParameters? = nil) {\n        var rect = w.frame\n\n        // TODO: save previous position in history\n\n        rect.origin.x = screenFrame.origin.x + delta * CGFloat(index)\n        rect.origin.y = screenFrame.origin.y + delta * CGFloat(index)\n\n        if let cascadeParameters {\n            rect.size.width = cascadeParameters.size.width\n            rect.size.height = cascadeParameters.size.height\n\n            if cascadeParameters.right {\n                rect.origin.x = screenFrame.origin.x + screenFrame.size.width - cascadeParameters.size.width - delta * CGFloat(index)\n            }\n            if cascadeParameters.bottom {\n                rect.origin.y = screenFrame.origin.y + screenFrame.size.height - cascadeParameters.size.height - delta * CGFloat(cascadeParameters.numWindows - 1 - index)\n            }\n        }\n\n        w.setFrame(rect)\n        w.bringToFront()\n    }\n\n    static func tileActiveAppWindowsOnScreen(windowElement: AccessibilityElement? = nil) {\n        guard let (screens, windows) = allWindowsOnScreen(windowElement: windowElement, sortByPID: true),\n              let frontWindowElement = AccessibilityElement.getFrontWindowElement()\n        else {\n            return\n        }\n\n        let screenFrame = screens.currentScreen.adjustedVisibleFrame().screenFlipped\n\n        // keep windows with a pid equal to the front window's pid\n        let filtered = windows.filter { $0.pid == frontWindowElement.pid }\n\n        let count = filtered.count\n\n        let columns = Int(ceil(sqrt(CGFloat(count))))\n        let rows = Int(ceil(CGFloat(count) / CGFloat(columns)))\n        let size = CGSize(width: (screenFrame.maxX - screenFrame.minX) / CGFloat(columns), height: (screenFrame.maxY - screenFrame.minY) / CGFloat(rows))\n\n        for (ind, w) in filtered.enumerated() {\n            let column = ind % Int(columns)\n            let row = ind / Int(columns)\n            tileWindow(w, screenFrame: screenFrame, size: size, column: column, row: row)\n        }\n    }\n}\n"
  },
  {
    "path": "Rectangle/MultiWindow/ReverseAllManager.swift",
    "content": "//\n//  TodoManager.swift\n//  Rectangle\n//\n//  Created by Charlie Harding on 7/25/21.\n//  Copyright © 2021 Ryan Hanson. All rights reserved.\n//\nimport Cocoa\nimport MASShortcut\n\nclass ReverseAllManager {\n\n    static func reverseAll(windowElement: AccessibilityElement? = nil) {\n        let sd = ScreenDetection()\n\n        let currentWindow = windowElement ?? AccessibilityElement.getFrontWindowElement()\n        guard let currentScreen = sd.detectScreens(using: currentWindow)?.currentScreen else { return }\n\n        let windows = AccessibilityElement.getAllWindowElements()\n\n        let screenFrame = currentScreen.adjustedVisibleFrame()\n\n        for w in windows {\n            let wScreen = sd.detectScreens(using: w)?.currentScreen\n            if Defaults.todo.userEnabled && TodoManager.isTodoWindow(w) { continue }\n            if wScreen == currentScreen {\n                reverseWindowPosition(w, screenFrame: screenFrame)\n            }\n        }\n    }\n\n    private static func reverseWindowPosition(_ w: AccessibilityElement, screenFrame: CGRect) {\n        var rect = w.frame\n\n        let offsetFromLeft = rect.minX - screenFrame.minX\n\n        rect.origin.x = screenFrame.maxX - offsetFromLeft - rect.width\n\n        w.setFrame(rect)\n    }\n}\n"
  },
  {
    "path": "Rectangle/Popover/MessageView.swift",
    "content": "//\n//  MessageView.swift\n//  Multitouch\n//\n//  Created by Ryan Hanson on 9/10/17.\n//  Copyright © 2017-2018 BrassMonkery, LLC. All rights reserved.\n//\n\nimport Cocoa\n\nclass MessagePopover {\n    \n    var messageView: MessageView\n    var popover: NSPopover\n    \n    init() {\n        popover = NSPopover()\n        messageView = MessageView()\n        popover.behavior = .transient\n        popover.contentViewController = messageView\n    }\n    \n    public func show(message: String, sender: NSView) {\n        let positioningView = sender\n        let positioningRect = NSZeroRect\n        let preferredEdge: NSRectEdge = .maxX\n        messageView.message = message\n\n        popover.show(relativeTo: positioningRect, of: positioningView, preferredEdge: preferredEdge)\n    }\n}\n\nclass MessageView: NSViewController {\n    \n    @IBOutlet weak var messageField: NSTextField!\n    \n    var message: String?\n    \n    override func viewWillAppear() {\n        super.viewWillAppear()\n        if let message = message {\n            self.messageField?.stringValue = message\n        }\n    }\n}\n"
  },
  {
    "path": "Rectangle/Popover/MessageView.xib",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.Cocoa.XIB\" version=\"3.0\" toolsVersion=\"13771\" targetRuntime=\"MacOSX.Cocoa\" propertyAccessControl=\"none\" useAutolayout=\"YES\" customObjectInstantitationMethod=\"direct\">\n    <dependencies>\n        <deployment identifier=\"macosx\"/>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.CocoaPlugin\" version=\"13771\"/>\n        <capability name=\"documents saved in the Xcode 8 format\" minToolsVersion=\"8.0\"/>\n    </dependencies>\n    <objects>\n        <customObject id=\"-2\" userLabel=\"File's Owner\" customClass=\"MessageView\" customModule=\"Multitouch\" customModuleProvider=\"target\">\n            <connections>\n                <outlet property=\"messageField\" destination=\"ds5-LV-T8n\" id=\"pqA-IN-h0N\"/>\n                <outlet property=\"view\" destination=\"c22-O7-iKe\" id=\"LLD-Ih-329\"/>\n            </connections>\n        </customObject>\n        <customObject id=\"-1\" userLabel=\"First Responder\" customClass=\"FirstResponder\"/>\n        <customObject id=\"-3\" userLabel=\"Application\" customClass=\"NSObject\"/>\n        <customView id=\"c22-O7-iKe\">\n            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"195\" height=\"34\"/>\n            <autoresizingMask key=\"autoresizingMask\" flexibleMaxX=\"YES\" flexibleMinY=\"YES\"/>\n            <subviews>\n                <textField verticalHuggingPriority=\"750\" horizontalCompressionResistancePriority=\"250\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"ds5-LV-T8n\">\n                    <rect key=\"frame\" x=\"8\" y=\"10\" width=\"179\" height=\"14\"/>\n                    <textFieldCell key=\"cell\" controlSize=\"mini\" sendsActionOnEndEditing=\"YES\" alignment=\"left\" title=\"Multiline Label\" id=\"w43-yH-KSN\">\n                        <font key=\"font\" metaFont=\"smallSystem\"/>\n                        <color key=\"textColor\" name=\"labelColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                        <color key=\"backgroundColor\" name=\"controlColor\" catalog=\"System\" colorSpace=\"catalog\"/>\n                    </textFieldCell>\n                </textField>\n            </subviews>\n            <constraints>\n                <constraint firstItem=\"ds5-LV-T8n\" firstAttribute=\"leading\" secondItem=\"c22-O7-iKe\" secondAttribute=\"leading\" constant=\"10\" id=\"Lij-lR-R0h\"/>\n                <constraint firstAttribute=\"trailing\" secondItem=\"ds5-LV-T8n\" secondAttribute=\"trailing\" constant=\"10\" id=\"Zgb-ou-LI7\"/>\n                <constraint firstAttribute=\"bottom\" secondItem=\"ds5-LV-T8n\" secondAttribute=\"bottom\" constant=\"10\" id=\"hWM-KZ-zjk\"/>\n                <constraint firstItem=\"ds5-LV-T8n\" firstAttribute=\"top\" secondItem=\"c22-O7-iKe\" secondAttribute=\"top\" constant=\"10\" id=\"kgf-9U-ATL\"/>\n            </constraints>\n            <point key=\"canvasLocation\" x=\"-3.5\" y=\"89.5\"/>\n        </customView>\n    </objects>\n</document>\n"
  },
  {
    "path": "Rectangle/PrefsWindow/Config.swift",
    "content": "//\n//  Config.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 12/15/20.\n//  Copyright © 2020 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\nimport MASShortcut\n\nextension Defaults {\n    static func encoded() -> String? {\n        guard let version = Bundle.main.infoDictionary?[\"CFBundleVersion\"] as? String else { return nil }\n        \n        var shortcuts = [String: Shortcut]()\n        for action in WindowAction.active {\n            if let masShortcut =  MASShortcutBinder.shared()?.value(forKey: action.name) as? MASShortcut {\n                shortcuts[action.name] = Shortcut(masShortcut: masShortcut)\n            }\n        }\n        for defaultsKey in TodoManager.defaultsKeys {\n            guard\n                let shortcutDict = UserDefaults.standard.dictionary(forKey: defaultsKey),\n                let dictTransformer = ValueTransformer(forName: NSValueTransformerName(rawValue: MASDictionaryTransformerName)),\n                let shortcut = dictTransformer.transformedValue(shortcutDict) as? MASShortcut\n            else {\n                continue\n            }\n            shortcuts[defaultsKey] = Shortcut(masShortcut: shortcut)\n        }\n        \n        var codableDefaults = [String: CodableDefault]()\n        for exportableDefault in Defaults.array {\n            codableDefaults[exportableDefault.key] = exportableDefault.toCodable()\n        }\n                \n        let config = Config(bundleId: \"com.knollsoft.Rectangle\",\n                            version: version,\n                            shortcuts: shortcuts,\n                            defaults: codableDefaults)\n        \n        let encoder = JSONEncoder()\n        encoder.outputFormatting = .prettyPrinted\n        if #available(macOS 10.13, *) {\n            encoder.outputFormatting.update(with: .sortedKeys)\n        }\n        if let encodedJson = try? encoder.encode(config) {\n            if let jsonString = String(data: encodedJson, encoding: .utf8) {\n                return jsonString\n            }\n        }\n        return nil\n    }\n    \n    static func convert(jsonString: String) -> Config? {\n        guard let jsonData = jsonString.data(using: .utf8) else { return nil }\n        let decoder = JSONDecoder()\n        return try? decoder.decode(Config.self, from: jsonData)\n    }\n    \n    static func load(fileUrl: URL) {\n        guard let dictTransformer = ValueTransformer(forName: NSValueTransformerName(rawValue: MASDictionaryTransformerName)) else { return }\n        \n        guard let jsonString = try? String(contentsOf: fileUrl, encoding: .utf8),\n              let config = convert(jsonString: jsonString) else { return }\n\n        for availableDefault in Defaults.array {\n            if let codedDefault = config.defaults[availableDefault.key] {\n                availableDefault.load(from: codedDefault)\n            }\n        }\n        \n        for action in WindowAction.active {\n            if let shortcut = config.shortcuts[action.name]?.toMASSHortcut() {\n                let dictValue = dictTransformer.reverseTransformedValue(shortcut)\n                UserDefaults.standard.setValue(dictValue, forKey: action.name)\n            }\n        }\n        for defaultsKey in TodoManager.defaultsKeys {\n            if let shortcut = config.shortcuts[defaultsKey]?.toMASSHortcut() {\n                let dictValue = dictTransformer.reverseTransformedValue(shortcut)\n                UserDefaults.standard.setValue(dictValue, forKey: defaultsKey)\n            }\n        }\n        \n        Notification.Name.configImported.post()\n    }\n    \n    static func loadFromSupportDir() {\n        if let rectangleSupportURL = getSupportDir()?\n            .appendingPathComponent(\"Rectangle\", isDirectory: true) {\n            \n            let configURL = rectangleSupportURL.appendingPathComponent(\"RectangleConfig.json\")\n                        \n            let exists = try? configURL.checkResourceIsReachable()\n            if exists == true {\n                load(fileUrl: configURL)\n                do {\n                    let newFilename = \"RectangleConfig\\(timestamp()).json\"\n                    \n                    try FileManager.default.moveItem(atPath: configURL.path, toPath: rectangleSupportURL.appendingPathComponent(newFilename).path)\n                } catch {\n                    do {\n                        try FileManager.default.removeItem(at: configURL)\n                    } catch {\n                        AlertUtil.oneButtonAlert(question: \"Error after loading from Support Dir\", text: \"Unable to rename/remove RectangleConfig.json from \\(rectangleSupportURL) after loading.\")\n                    }\n                }\n            }\n        }\n    }\n    \n    private static func getSupportDir() -> URL? {\n        let paths = FileManager.default.urls(for: .applicationSupportDirectory, in: .userDomainMask)\n        return paths.isEmpty ? nil : paths[0]\n    }\n    \n    private static func timestamp() -> String {\n        let date = Date()\n        let formatter = DateFormatter()\n        formatter.dateFormat = \"y-MM-dd_H-mm-ss-SSSS\"\n        return formatter.string(from: date)\n    }\n}\n\nstruct Config: Codable {\n    let bundleId: String\n    let version: String\n    let shortcuts: [String: Shortcut]\n    let defaults: [String: CodableDefault]\n}\n"
  },
  {
    "path": "Rectangle/PrefsWindow/PrefsViewController.swift",
    "content": "//\n//  PrefsViewController.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 6/18/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Cocoa\nimport MASShortcut\nimport ServiceManagement\n\nclass PrefsViewController: NSViewController {\n    \n    var actionsToViews = [WindowAction: MASShortcutView]()\n    \n    @IBOutlet weak var leftHalfShortcutView: MASShortcutView!\n    @IBOutlet weak var rightHalfShortcutView: MASShortcutView!\n    @IBOutlet weak var centerHalfShortcutView: MASShortcutView!\n    @IBOutlet weak var topHalfShortcutView: MASShortcutView!\n    @IBOutlet weak var bottomHalfShortcutView: MASShortcutView!\n    \n    @IBOutlet weak var topLeftShortcutView: MASShortcutView!\n    @IBOutlet weak var topRightShortcutView: MASShortcutView!\n    @IBOutlet weak var bottomLeftShortcutView: MASShortcutView!\n    @IBOutlet weak var bottomRightShortcutView: MASShortcutView!\n    \n    @IBOutlet weak var nextDisplayShortcutView: MASShortcutView!\n    @IBOutlet weak var previousDisplayShortcutView: MASShortcutView!\n    \n    @IBOutlet weak var makeLargerShortcutView: MASShortcutView!\n    @IBOutlet weak var makeSmallerShortcutView: MASShortcutView!\n    \n    @IBOutlet weak var maximizeShortcutView: MASShortcutView!\n    @IBOutlet weak var almostMaximizeShortcutView: MASShortcutView!\n    @IBOutlet weak var maximizeHeightShortcutView: MASShortcutView!\n    @IBOutlet weak var centerShortcutView: MASShortcutView!\n    @IBOutlet weak var restoreShortcutView: MASShortcutView!\n    \n    // Additional\n    @IBOutlet weak var firstThirdShortcutView: MASShortcutView!\n    @IBOutlet weak var firstTwoThirdsShortcutView: MASShortcutView!\n    @IBOutlet weak var centerThirdShortcutView: MASShortcutView!\n    @IBOutlet weak var centerTwoThirdsShortcutView: MASShortcutView!\n    @IBOutlet weak var lastTwoThirdsShortcutView: MASShortcutView!\n    @IBOutlet weak var lastThirdShortcutView: MASShortcutView!\n    \n    @IBOutlet weak var moveLeftShortcutView: MASShortcutView!\n    @IBOutlet weak var moveRightShortcutView: MASShortcutView!\n    @IBOutlet weak var moveUpShortcutView: MASShortcutView!\n    @IBOutlet weak var moveDownShortcutView: MASShortcutView!\n    \n    @IBOutlet weak var firstFourthShortcutView: MASShortcutView!\n    @IBOutlet weak var secondFourthShortcutView: MASShortcutView!\n    @IBOutlet weak var thirdFourthShortcutView: MASShortcutView!\n    @IBOutlet weak var lastFourthShortcutView: MASShortcutView!\n    @IBOutlet weak var firstThreeFourthsShortcutView: MASShortcutView!\n    @IBOutlet weak var centerThreeFourthsShortcutView: MASShortcutView!\n    @IBOutlet weak var lastThreeFourthsShortcutView: MASShortcutView!\n    \n    @IBOutlet weak var topLeftSixthShortcutView: MASShortcutView!\n    @IBOutlet weak var topCenterSixthShortcutView: MASShortcutView!\n    @IBOutlet weak var topRightSixthShortcutView: MASShortcutView!\n    @IBOutlet weak var bottomLeftSixthShortcutView: MASShortcutView!\n    @IBOutlet weak var bottomCenterSixthShortcutView: MASShortcutView!\n    @IBOutlet weak var bottomRightSixthShortcutView: MASShortcutView!\n\n    \n    @IBOutlet weak var showMoreButton: NSButton!\n    @IBOutlet weak var additionalShortcutsStackView: NSStackView!\n    \n    // Settings\n    override func awakeFromNib() {\n        \n        actionsToViews = [\n            .leftHalf: leftHalfShortcutView,\n            .rightHalf: rightHalfShortcutView,\n            .centerHalf: centerHalfShortcutView,\n            .topHalf: topHalfShortcutView,\n            .bottomHalf: bottomHalfShortcutView,\n            .topLeft: topLeftShortcutView,\n            .topRight: topRightShortcutView,\n            .bottomLeft: bottomLeftShortcutView,\n            .bottomRight: bottomRightShortcutView,\n            .nextDisplay: nextDisplayShortcutView,\n            .previousDisplay: previousDisplayShortcutView,\n            .maximize: maximizeShortcutView,\n            .almostMaximize: almostMaximizeShortcutView,\n            .maximizeHeight: maximizeHeightShortcutView,\n            .center: centerShortcutView,\n            .larger: makeLargerShortcutView,\n            .smaller: makeSmallerShortcutView,\n            .restore: restoreShortcutView,\n            .firstThird: firstThirdShortcutView,\n            .firstTwoThirds: firstTwoThirdsShortcutView,\n            .centerThird: centerThirdShortcutView,\n            .centerTwoThirds: centerTwoThirdsShortcutView,\n            .lastTwoThirds: lastTwoThirdsShortcutView,\n            .lastThird: lastThirdShortcutView,\n            .moveLeft: moveLeftShortcutView,\n            .moveRight: moveRightShortcutView,\n            .moveUp: moveUpShortcutView,\n            .moveDown: moveDownShortcutView,\n            .firstFourth: firstFourthShortcutView,\n            .secondFourth: secondFourthShortcutView,\n            .thirdFourth: thirdFourthShortcutView,\n            .lastFourth: lastFourthShortcutView,\n            .firstThreeFourths: firstThreeFourthsShortcutView,\n            .centerThreeFourths: centerThreeFourthsShortcutView,\n            .lastThreeFourths: lastThreeFourthsShortcutView,\n            .topLeftSixth: topLeftSixthShortcutView,\n            .topCenterSixth: topCenterSixthShortcutView,\n            .topRightSixth: topRightSixthShortcutView,\n            .bottomLeftSixth: bottomLeftSixthShortcutView,\n            .bottomCenterSixth: bottomCenterSixthShortcutView,\n            .bottomRightSixth: bottomRightSixthShortcutView\n        ]\n        \n        for (action, view) in actionsToViews {\n            view.setAssociatedUserDefaultsKey(action.name, withTransformerName: MASDictionaryTransformerName)\n        }\n        \n        if Defaults.allowAnyShortcut.enabled {\n            let passThroughValidator = PassthroughShortcutValidator()\n            actionsToViews.values.forEach { $0.shortcutValidator = passThroughValidator }\n        }\n        \n        subscribeToAllowAnyShortcutToggle()\n        \n        additionalShortcutsStackView.isHidden = true\n    }\n    \n    @IBAction func toggleShowMore(_ sender: NSButton) {\n        additionalShortcutsStackView.isHidden = !additionalShortcutsStackView.isHidden\n        showMoreButton.title = additionalShortcutsStackView.isHidden\n            ? \"▶︎ ⋯\" : \"▼\"\n    }\n    \n    private func subscribeToAllowAnyShortcutToggle() {\n        Notification.Name.allowAnyShortcut.onPost { notification in\n            guard let enabled = notification.object as? Bool else { return }\n            let validator = enabled ? PassthroughShortcutValidator() : MASShortcutValidator()\n            self.actionsToViews.values.forEach { $0.shortcutValidator = validator }\n        }\n    }\n    \n}\n\nclass PassthroughShortcutValidator: MASShortcutValidator {\n    \n    override func isShortcutValid(_ shortcut: MASShortcut!) -> Bool {\n        return true\n    }\n    \n    override func isShortcutAlreadyTaken(bySystem shortcut: MASShortcut!, explanation: AutoreleasingUnsafeMutablePointer<NSString?>!) -> Bool {\n        return false\n    }\n    \n    override func isShortcut(_ shortcut: MASShortcut!, alreadyTakenIn menu: NSMenu!, explanation: AutoreleasingUnsafeMutablePointer<NSString?>!) -> Bool {\n        return false\n    }\n    \n}\n"
  },
  {
    "path": "Rectangle/PrefsWindow/SettingsViewController.swift",
    "content": "//\n//  SettingsViewController.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 8/24/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Cocoa\nimport ServiceManagement\nimport Sparkle\nimport MASShortcut\n\nclass SettingsViewController: NSViewController {\n        \n    @IBOutlet weak var launchOnLoginCheckbox: NSButton!\n    @IBOutlet weak var versionLabel: NSTextField!\n    @IBOutlet weak var hideMenuBarIconCheckbox: NSButton!\n    @IBOutlet weak var subsequentExecutionPopUpButton: NSPopUpButton!\n    @IBOutlet weak var allowAnyShortcutCheckbox: NSButton!\n    @IBOutlet weak var checkForUpdatesAutomaticallyCheckbox: NSButton!\n    @IBOutlet weak var checkForUpdatesButton: NSButton!\n    @IBOutlet weak var gapSlider: NSSlider!\n    @IBOutlet weak var gapLabel: NSTextField!\n    @IBOutlet weak var cursorAcrossCheckbox: NSButton!\n    @IBOutlet weak var useCursorScreenDetectionCheckbox: NSButton!\n    @IBOutlet weak var doubleClickTitleBarCheckbox: NSButton!\n    @IBOutlet weak var todoCheckbox: NSButton!\n    @IBOutlet weak var todoView: NSStackView!\n    @IBOutlet weak var todoAppWidthField: AutoSaveFloatField!\n    @IBOutlet weak var todoAppWidthUnitPopUpButton: NSPopUpButton!\n    @IBOutlet weak var todoAppSidePopUpButton: NSPopUpButton!\n    @IBOutlet weak var toggleTodoShortcutView: MASShortcutView!\n    @IBOutlet weak var reflowTodoShortcutView: MASShortcutView!\n    @IBOutlet weak var stageView: NSStackView!\n    @IBOutlet weak var stageSlider: NSSlider!\n    @IBOutlet weak var stageLabel: NSTextField!\n\n    @IBOutlet weak var cycleSizesView: NSStackView!\n\n    @IBOutlet var cycleSizesViewHeightConstraint: NSLayoutConstraint!\n\n    @IBOutlet var todoViewHeightConstraint: NSLayoutConstraint!\n\n    @IBOutlet weak var extraSettingsButton: NSButton!\n\n    private var aboutTodoWindowController: NSWindowController?\n    private var extraSettingsPopover: NSPopover?\n    \n    private var cycleSizeCheckboxes = [NSButton]()\n    \n    @IBAction func toggleLaunchOnLogin(_ sender: NSButton) {\n        let newSetting: Bool = sender.state == .on\n        if #available(macOS 13, *) {\n            LaunchOnLogin.isEnabled = newSetting\n        } else {\n            let smLoginSuccess = SMLoginItemSetEnabled(AppDelegate.launcherAppId as CFString, newSetting)\n            if !smLoginSuccess {\n                Logger.log(\"Unable to set launch at login preference. Attempting one more time.\")\n                SMLoginItemSetEnabled(AppDelegate.launcherAppId as CFString, newSetting)\n            }\n        }\n        Defaults.launchOnLogin.enabled = newSetting\n    }\n    \n    @IBAction func toggleHideMenuBarIcon(_ sender: NSButton) {\n        let newSetting: Bool = sender.state == .on\n        Defaults.hideMenuBarIcon.enabled = newSetting\n        RectangleStatusItem.instance.refreshVisibility()\n    }\n\n    @IBAction func setSubsequentExecutionBehavior(_ sender: NSPopUpButton) {\n        let tag = sender.selectedTag()\n        guard let mode = SubsequentExecutionMode(rawValue: tag) else {\n            Logger.log(\"Expected a pop up button to have a selected item with a valid tag matching a value of SubsequentExecutionMode. Got: \\(String(describing: tag))\")\n            return\n        }\n\n        Defaults.subsequentExecutionMode.value = mode\n        initializeCycleSizesView(animated: true)\n    }\n    \n    @IBAction func gapSliderChanged(_ sender: NSSlider) {\n        gapLabel.stringValue = \"\\(sender.intValue) px\"\n        if let event = NSApp.currentEvent {\n            if event.type == .leftMouseUp || event.type == .keyDown {\n                if Float(sender.intValue) != Defaults.gapSize.value {\n                    Defaults.gapSize.value = Float(sender.intValue)\n                }\n            }\n        }\n    }\n    \n    @IBAction func toggleCursorMove(_ sender: NSButton) {\n        let newSetting: Bool = sender.state == .on\n        Defaults.moveCursorAcrossDisplays.enabled = newSetting\n    }\n\n    @IBAction func toggleUseCursorScreenDetection(_ sender: NSButton) {\n        let newSetting: Bool = sender.state == .on\n        Defaults.useCursorScreenDetection.enabled = newSetting\n    }\n\n    @IBAction func toggleAllowAnyShortcut(_ sender: NSButton) {\n        let newSetting: Bool = sender.state == .on\n        Defaults.allowAnyShortcut.enabled = newSetting\n        Notification.Name.allowAnyShortcut.post(object: newSetting)\n    }\n    \n    @objc func toggleShowAdditionalSizesInMenu(_ sender: NSButton) {\n        let enabled: Bool = sender.state == .on\n        Defaults.showAdditionalSizesInMenu.enabled = enabled\n        Notification.Name.showAdditionalSizesInMenuChanged.post()\n    }\n    \n    @IBAction func checkForUpdates(_ sender: Any) {\n        AppDelegate.instance.updaterController?.checkForUpdates(sender)\n    }\n    \n    @IBAction func toggleDoubleClickTitleBar(_ sender: NSButton) {\n        let newSetting: Bool = sender.state == .on\n        if newSetting && !TitleBarManager.systemSettingDisabled {\n            \n            var openSystemSettingsButtonName = NSLocalizedString(\"iWV-c2-BJD.title\", tableName: \"Main\", value: \"Open System Preferences\", comment: \"\")\n            \n            if #available(macOS 13, *) {\n                openSystemSettingsButtonName = NSLocalizedString(\n                    \"Open System Settings\", tableName: \"Main\", value: \"\", comment: \"\")\n            }\n\n            let conflictTitleText = NSLocalizedString(\n                \"Conflict with system setting\", tableName: \"Main\", value: \"\", comment: \"\")\n            let conflictDescriptionText = NSLocalizedString(\n                \"To let Rectangle manage the title bar double click functionality, you need to disable the corresponding macOS setting.\", tableName: \"Main\", value: \"\", comment: \"\")\n\n            \n            let closeText = NSLocalizedString(\"DVo-aG-piG.title\", tableName: \"Main\", value: \"Close\", comment: \"\")\n            \n            let response = AlertUtil.twoButtonAlert(question: conflictTitleText, text: conflictDescriptionText, confirmText: openSystemSettingsButtonName, cancelText: closeText)\n            if response == .alertFirstButtonReturn {\n                NSWorkspace.shared.open(URL(string:\"x-apple.systempreferences:com.apple.preference.dock\")!)\n            }\n        }\n        Defaults.doubleClickTitleBar.value = (newSetting ? WindowAction.maximize.rawValue : -1) + 1\n        Notification.Name.windowTitleBar.post()\n    }\n    \n    @IBAction func toggleTodoMode(_ sender: NSButton) {\n        let newSetting: Bool = sender.state == .on\n        Defaults.todo.enabled = newSetting\n        showHideTodoModeSettings(animated: true)\n        Notification.Name.todoMenuToggled.post()\n    }\n    \n    @IBAction func showTodoModeHelp(_ sender: Any) {\n        if aboutTodoWindowController == nil {\n            aboutTodoWindowController = NSStoryboard(name: \"Main\", bundle: nil).instantiateController(withIdentifier: \"AboutTodoWindowController\") as? NSWindowController\n        }\n        NSApp.activate(ignoringOtherApps: true)\n        aboutTodoWindowController?.showWindow(self)\n    }\n    \n    @IBAction func setTodoWidthUnit(_ sender: NSPopUpButton) {\n        let tag = sender.selectedTag()\n        guard let unit = TodoSidebarWidthUnit(rawValue: tag) else {\n            Logger.log(\"Expected a pop up button to have a selected item with a valid tag matching a value of TodoSidebarWidthUnit. Got: \\(String(describing: tag))\")\n            return\n        }\n        Defaults.todoSidebarWidthUnit.value = unit\n        \n        TodoManager.refreshTodoScreen()\n        \n        if let visibleFrameWidth = TodoManager.todoScreen?.visibleFrame.width {\n            let newValue = TodoManager.convert(width: Defaults.todoSidebarWidth.cgFloat, toUnit: unit, visibleFrameWidth: visibleFrameWidth)\n            Defaults.todoSidebarWidth.value = Float(newValue)\n            todoAppWidthField.stringValue = \"\\(newValue)\"\n        }\n\n        TodoManager.moveAllIfNeeded(false)\n    }\n    \n    @IBAction func setTodoAppSide(_ sender: NSPopUpButton) {\n        let tag = sender.selectedTag()\n        guard let side = TodoSidebarSide(rawValue: tag) else {\n            Logger.log(\"Expected a pop up button to have a selected item with a valid tag matching a value of TodoSidebarSide. Got: \\(String(describing: tag))\")\n            return\n        }\n\n        Defaults.todoSidebarSide.value = side\n        \n        TodoManager.moveAllIfNeeded(false)\n    }\n    \n    @IBAction func stageSliderChanged(_ sender: NSSlider) {\n        stageLabel.stringValue = \"\\(sender.intValue) px\"\n        if let event = NSApp.currentEvent {\n            if event.type == .leftMouseUp || event.type == .keyDown {\n                let value: Float = sender.floatValue == 0 ? -1 : sender.floatValue\n                if value != Defaults.stageSize.value {\n                    Defaults.stageSize.value = value\n                }\n            }\n        }\n    }\n    \n    @IBAction func restoreDefaults(_ sender: Any) {\n        // Ask user if they want to restore to Rectangle or Spectacle defaults\n        let currentDefaults = Defaults.alternateDefaultShortcuts.enabled ? \"Rectangle\" : \"Spectacle\"\n        let defaultShortcutsTitle = NSLocalizedString(\"Default Shortcuts\", tableName: \"Main\", value: \"\", comment: \"\")\n        let currentlyUsingText = NSLocalizedString(\"Currently using: \", tableName: \"Main\", value: \"\", comment: \"\")\n        let cancelText = NSLocalizedString(\"Cancel\", tableName: \"Main\", value: \"\", comment: \"\")\n        let response = AlertUtil.threeButtonAlert(question: defaultShortcutsTitle, text: currentlyUsingText + currentDefaults, buttonOneText: \"Rectangle\", buttonTwoText: \"Spectacle\", buttonThreeText: cancelText)\n        if response == .alertThirdButtonReturn { return }\n\n        //  Restore default shortcuts\n        WindowAction.active.forEach { UserDefaults.standard.removeObject(forKey: $0.name) }\n        let rectangleDefaults = response == .alertFirstButtonReturn\n        if rectangleDefaults != Defaults.alternateDefaultShortcuts.enabled {\n            Defaults.alternateDefaultShortcuts.enabled = rectangleDefaults\n            Notification.Name.changeDefaults.post()\n        }\n        \n        // Restore snap areas\n        Defaults.portraitSnapAreas.typedValue = nil\n        Defaults.landscapeSnapAreas.typedValue = nil\n        Notification.Name.defaultSnapAreas.post()\n    }\n    \n    @IBAction func exportConfig(_ sender: NSButton) {\n        Notification.Name.windowSnapping.post(object: false)\n        let savePanel = NSSavePanel()\n        savePanel.allowedFileTypes = [\"json\"]\n        savePanel.nameFieldStringValue = \"RectangleConfig\"\n        let response = savePanel.runModal()\n        if response == .OK, let url = savePanel.url {\n            do {\n                if let jsonString = Defaults.encoded() {\n                    try jsonString.write(to: url, atomically: false, encoding: .utf8)\n                }\n            }\n            catch {\n                Logger.log(error.localizedDescription)\n            }\n        }\n        Notification.Name.windowSnapping.post(object: true)\n    }\n    \n    @IBAction func importConfig(_ sender: NSButton) {\n        Notification.Name.windowSnapping.post(object: false)\n        let openPanel = NSOpenPanel()\n        openPanel.allowedFileTypes = [\"json\"]\n        let response = openPanel.runModal()\n        if response == .OK, let url = openPanel.url {\n            Defaults.load(fileUrl: url)\n        }\n        Notification.Name.windowSnapping.post(object: true)\n    }\n\n    @IBAction func showExtraSettings(_ sender: NSButton) {\n        if extraSettingsPopover == nil {\n            let popover = NSPopover()\n            popover.behavior = .transient\n            let viewController = NSViewController()\n\n            let mainStackView = NSStackView()\n            mainStackView.orientation = .vertical\n            mainStackView.alignment = .leading\n            mainStackView.spacing = 5\n            mainStackView.translatesAutoresizingMaskIntoConstraints = false\n\n            let headerLabel = NSTextField(labelWithString: NSLocalizedString(\"Extra Shortcuts\", tableName: \"Main\", value: \"\", comment: \"\"))\n            headerLabel.font = NSFont.boldSystemFont(ofSize: NSFont.systemFontSize)\n            headerLabel.alignment = .center\n            headerLabel.translatesAutoresizingMaskIntoConstraints = false\n\n            let largerWidthLabel = NSTextField(labelWithString: NSLocalizedString(\"Larger Width\", tableName: \"Main\", value: \"\", comment: \"\"))\n            largerWidthLabel.alignment = .right\n            let smallerWidthLabel = NSTextField(labelWithString: NSLocalizedString(\"Smaller Width\", tableName: \"Main\", value: \"\", comment: \"\"))\n            smallerWidthLabel.alignment = .right\n            let widthStepLabel = NSTextField(labelWithString: NSLocalizedString(\"Width Step (px)\", tableName: \"Main\", value: \"\", comment: \"\"))\n            widthStepLabel.alignment = .right\n            \n            let topVerticalThirdLabel = NSTextField(labelWithString: NSLocalizedString(\"Top Third\", tableName: \"Main\", value: \"\", comment: \"\"))\n            topVerticalThirdLabel.alignment = .right\n            let middleVerticalThirdLabel = NSTextField(labelWithString: NSLocalizedString(\"Middle Third\", tableName: \"Main\", value: \"\", comment: \"\"))\n            middleVerticalThirdLabel.alignment = .right\n            let bottomVerticalThirdLabel = NSTextField(labelWithString: NSLocalizedString(\"Bottom Third\", tableName: \"Main\", value: \"\", comment: \"\"))\n            bottomVerticalThirdLabel.alignment = .right\n            let topVerticalTwoThirdsLabel = NSTextField(labelWithString: NSLocalizedString(\"Top Two Thirds\", tableName: \"Main\", value: \"\", comment: \"\"))\n            topVerticalTwoThirdsLabel.alignment = .right\n            let bottomVerticalTwoThirdsLabel = NSTextField(labelWithString: NSLocalizedString(\"Bottom Two Thirds\", tableName: \"Main\", value: \"\", comment: \"\"))\n            bottomVerticalTwoThirdsLabel.alignment = .right\n\n            let topLeftEighthLabel = NSTextField(labelWithString: NSLocalizedString(\"Top Left Eighth\", tableName: \"Main\", value: \"\", comment: \"\"))\n            topLeftEighthLabel.alignment = .right\n            let topCenterLeftEighthLabel = NSTextField(labelWithString: NSLocalizedString(\"Top Center Left Eighth\", tableName: \"Main\", value: \"\", comment: \"\"))\n            topCenterLeftEighthLabel.alignment = .right\n            let topCenterRightEighthLabel = NSTextField(labelWithString: NSLocalizedString(\"Top Center Right Eighth\", tableName: \"Main\", value: \"\", comment: \"\"))\n            topCenterRightEighthLabel.alignment = .right\n            let topRightEighthLabel = NSTextField(labelWithString: NSLocalizedString(\"Top Right Eighth\", tableName: \"Main\", value: \"\", comment: \"\"))\n            topRightEighthLabel.alignment = .right\n            let bottomLeftEighthLabel = NSTextField(labelWithString: NSLocalizedString(\"Bottom Left Eighth\", tableName: \"Main\", value: \"\", comment: \"\"))\n            bottomLeftEighthLabel.alignment = .right\n            let bottomCenterLeftEighthLabel = NSTextField(labelWithString: NSLocalizedString(\"Bottom Center Left Eighth\", tableName: \"Main\", value: \"\", comment: \"\"))\n            bottomCenterLeftEighthLabel.alignment = .right\n            let bottomCenterRightEighthLabel = NSTextField(labelWithString: NSLocalizedString(\"Bottom Center Right Eighth\", tableName: \"Main\", value: \"\", comment: \"\"))\n            bottomCenterRightEighthLabel.alignment = .right\n            let bottomRightEighthLabel = NSTextField(labelWithString: NSLocalizedString(\"Bottom Right Eighth\", tableName: \"Main\", value: \"\", comment: \"\"))\n            bottomRightEighthLabel.alignment = .right\n\n            largerWidthLabel.translatesAutoresizingMaskIntoConstraints = false\n            smallerWidthLabel.translatesAutoresizingMaskIntoConstraints = false\n            widthStepLabel.translatesAutoresizingMaskIntoConstraints = false\n            topVerticalThirdLabel.translatesAutoresizingMaskIntoConstraints = false\n            middleVerticalThirdLabel.translatesAutoresizingMaskIntoConstraints = false\n            bottomVerticalThirdLabel.translatesAutoresizingMaskIntoConstraints = false\n            topVerticalTwoThirdsLabel.translatesAutoresizingMaskIntoConstraints = false\n            bottomVerticalTwoThirdsLabel.translatesAutoresizingMaskIntoConstraints = false\n            topLeftEighthLabel.translatesAutoresizingMaskIntoConstraints = false\n            topCenterLeftEighthLabel.translatesAutoresizingMaskIntoConstraints = false\n            topCenterRightEighthLabel.translatesAutoresizingMaskIntoConstraints = false\n            topRightEighthLabel.translatesAutoresizingMaskIntoConstraints = false\n            bottomLeftEighthLabel.translatesAutoresizingMaskIntoConstraints = false\n            bottomCenterLeftEighthLabel.translatesAutoresizingMaskIntoConstraints = false\n            bottomCenterRightEighthLabel.translatesAutoresizingMaskIntoConstraints = false\n            bottomRightEighthLabel.translatesAutoresizingMaskIntoConstraints = false\n\n            let largerWidthShortcutView = MASShortcutView(frame: NSRect(x: 0, y: 0, width: 160, height: 19))\n            let smallerWidthShortcutView = MASShortcutView(frame: NSRect(x: 0, y: 0, width: 160, height: 19))\n            \n            let topVerticalThirdShortcutView = MASShortcutView(frame: NSRect(x: 0, y: 0, width: 160, height: 19))\n            let middleVerticalThirdShortcutView = MASShortcutView(frame: NSRect(x: 0, y: 0, width: 160, height: 19))\n            let bottomVerticalThirdShortcutView = MASShortcutView(frame: NSRect(x: 0, y: 0, width: 160, height: 19))\n            let topVerticalTwoThirdsShortcutView = MASShortcutView(frame: NSRect(x: 0, y: 0, width: 160, height: 19))\n            let bottomVerticalTwoThirdsShortcutView = MASShortcutView(frame: NSRect(x: 0, y: 0, width: 160, height: 19))\n\n            let topLeftEighthShortcutView = MASShortcutView(frame: NSRect(x: 0, y: 0, width: 160, height: 19))\n            let topCenterLeftEighthShortcutView = MASShortcutView(frame: NSRect(x: 0, y: 0, width: 160, height: 19))\n            let topCenterRightEighthShortcutView = MASShortcutView(frame: NSRect(x: 0, y: 0, width: 160, height: 19))\n            let topRightEighthShortcutView = MASShortcutView(frame: NSRect(x: 0, y: 0, width: 160, height: 19))\n            let bottomLeftEighthShortcutView = MASShortcutView(frame: NSRect(x: 0, y: 0, width: 160, height: 19))\n            let bottomCenterLeftEighthShortcutView = MASShortcutView(frame: NSRect(x: 0, y: 0, width: 160, height: 19))\n            let bottomCenterRightEighthShortcutView = MASShortcutView(frame: NSRect(x: 0, y: 0, width: 160, height: 19))\n            let bottomRightEighthShortcutView = MASShortcutView(frame: NSRect(x: 0, y: 0, width: 160, height: 19))\n\n            let widthStepField = AutoSaveFloatField(frame: NSRect(x: 0, y: 0, width: 160, height: 19))\n            widthStepField.stringValue = String(Int(Defaults.widthStepSize.value))\n            widthStepField.delegate = self\n            widthStepField.defaults = Defaults.widthStepSize\n            widthStepField.translatesAutoresizingMaskIntoConstraints = false\n            widthStepField.refusesFirstResponder = true\n            widthStepField.alignment = .right\n\n            let integerFormatter = NumberFormatter()\n            integerFormatter.allowsFloats = false\n            integerFormatter.minimum = 1\n            widthStepField.formatter = integerFormatter\n\n            let splitRatioHeaderLabel = NSTextField(labelWithString: NSLocalizedString(\"Half Split Ratios\", tableName: \"Main\", value: \"\", comment: \"\"))\n            splitRatioHeaderLabel.font = NSFont.boldSystemFont(ofSize: NSFont.systemFontSize)\n            splitRatioHeaderLabel.alignment = .center\n            splitRatioHeaderLabel.translatesAutoresizingMaskIntoConstraints = false\n\n            let hSplitLabel = NSTextField(labelWithString: NSLocalizedString(\"Horizontal (L/R, %)\", tableName: \"Main\", value: \"\", comment: \"\"))\n            hSplitLabel.alignment = .right\n            hSplitLabel.translatesAutoresizingMaskIntoConstraints = false\n\n            let vSplitLabel = NSTextField(labelWithString: NSLocalizedString(\"Vertical (T/B, %)\", tableName: \"Main\", value: \"\", comment: \"\"))\n            vSplitLabel.alignment = .right\n            vSplitLabel.translatesAutoresizingMaskIntoConstraints = false\n\n            let percentFormatter = NumberFormatter()\n            percentFormatter.allowsFloats = false\n            percentFormatter.minimum = 1\n            percentFormatter.maximum = 99\n\n            let hSplitField = AutoSaveFloatField(frame: NSRect(x: 0, y: 0, width: 160, height: 19))\n            hSplitField.stringValue = String(Int(Defaults.horizontalSplitRatio.value))\n            hSplitField.delegate = self\n            hSplitField.defaults = Defaults.horizontalSplitRatio\n            hSplitField.fallbackValue = 50\n            hSplitField.translatesAutoresizingMaskIntoConstraints = false\n            hSplitField.refusesFirstResponder = true\n            hSplitField.alignment = .right\n            hSplitField.formatter = percentFormatter\n\n            let vSplitField = AutoSaveFloatField(frame: NSRect(x: 0, y: 0, width: 160, height: 19))\n            vSplitField.stringValue = String(Int(Defaults.verticalSplitRatio.value))\n            vSplitField.delegate = self\n            vSplitField.defaults = Defaults.verticalSplitRatio\n            vSplitField.fallbackValue = 50\n            vSplitField.translatesAutoresizingMaskIntoConstraints = false\n            vSplitField.refusesFirstResponder = true\n            vSplitField.alignment = .right\n            vSplitField.formatter = percentFormatter\n\n            largerWidthShortcutView.setAssociatedUserDefaultsKey(WindowAction.largerWidth.name, withTransformerName: MASDictionaryTransformerName)\n            smallerWidthShortcutView.setAssociatedUserDefaultsKey(WindowAction.smallerWidth.name, withTransformerName: MASDictionaryTransformerName)\n            \n            topVerticalThirdShortcutView.setAssociatedUserDefaultsKey(WindowAction.topVerticalThird.name, withTransformerName: MASDictionaryTransformerName)\n            middleVerticalThirdShortcutView.setAssociatedUserDefaultsKey(WindowAction.middleVerticalThird.name, withTransformerName: MASDictionaryTransformerName)\n            bottomVerticalThirdShortcutView.setAssociatedUserDefaultsKey(WindowAction.bottomVerticalThird.name, withTransformerName: MASDictionaryTransformerName)\n            topVerticalTwoThirdsShortcutView.setAssociatedUserDefaultsKey(WindowAction.topVerticalTwoThirds.name, withTransformerName: MASDictionaryTransformerName)\n            bottomVerticalTwoThirdsShortcutView.setAssociatedUserDefaultsKey(WindowAction.bottomVerticalTwoThirds.name, withTransformerName: MASDictionaryTransformerName)\n\n            topLeftEighthShortcutView.setAssociatedUserDefaultsKey(WindowAction.topLeftEighth.name, withTransformerName: MASDictionaryTransformerName)\n            topCenterLeftEighthShortcutView.setAssociatedUserDefaultsKey(WindowAction.topCenterLeftEighth.name, withTransformerName: MASDictionaryTransformerName)\n            topCenterRightEighthShortcutView.setAssociatedUserDefaultsKey(WindowAction.topCenterRightEighth.name, withTransformerName: MASDictionaryTransformerName)\n            topRightEighthShortcutView.setAssociatedUserDefaultsKey(WindowAction.topRightEighth.name, withTransformerName: MASDictionaryTransformerName)\n            bottomLeftEighthShortcutView.setAssociatedUserDefaultsKey(WindowAction.bottomLeftEighth.name, withTransformerName: MASDictionaryTransformerName)\n            bottomCenterLeftEighthShortcutView.setAssociatedUserDefaultsKey(WindowAction.bottomCenterLeftEighth.name, withTransformerName: MASDictionaryTransformerName)\n            bottomCenterRightEighthShortcutView.setAssociatedUserDefaultsKey(WindowAction.bottomCenterRightEighth.name, withTransformerName: MASDictionaryTransformerName)\n            bottomRightEighthShortcutView.setAssociatedUserDefaultsKey(WindowAction.bottomRightEighth.name, withTransformerName: MASDictionaryTransformerName)\n\n            if Defaults.allowAnyShortcut.enabled {\n                let passThroughValidator = PassthroughShortcutValidator()\n                largerWidthShortcutView.shortcutValidator = passThroughValidator\n                smallerWidthShortcutView.shortcutValidator = passThroughValidator\n                topVerticalThirdShortcutView.shortcutValidator = passThroughValidator\n                middleVerticalThirdShortcutView.shortcutValidator = passThroughValidator\n                bottomVerticalThirdShortcutView.shortcutValidator = passThroughValidator\n                topVerticalTwoThirdsShortcutView.shortcutValidator = passThroughValidator\n                bottomVerticalTwoThirdsShortcutView.shortcutValidator = passThroughValidator\n                topLeftEighthShortcutView.shortcutValidator = passThroughValidator\n                topCenterLeftEighthShortcutView.shortcutValidator = passThroughValidator\n                topCenterRightEighthShortcutView.shortcutValidator = passThroughValidator\n                topRightEighthShortcutView.shortcutValidator = passThroughValidator\n                bottomLeftEighthShortcutView.shortcutValidator = passThroughValidator\n                bottomCenterLeftEighthShortcutView.shortcutValidator = passThroughValidator\n                bottomCenterRightEighthShortcutView.shortcutValidator = passThroughValidator\n                bottomRightEighthShortcutView.shortcutValidator = passThroughValidator\n            }\n\n            let largerWidthIcon = NSImageView(frame: NSRect(x: 0, y: 0, width: 21, height: 14))\n            largerWidthIcon.image = WindowAction.largerWidth.image\n            largerWidthIcon.image?.size = NSSize(width: 21, height: 14)\n\n            let smallerWidthIcon = NSImageView(frame: NSRect(x: 0, y: 0, width: 21, height: 14))\n            smallerWidthIcon.image = WindowAction.smallerWidth.image\n            smallerWidthIcon.image?.size = NSSize(width: 21, height: 14)\n            \n            let topVerticalThirdIcon = NSImageView(frame: NSRect(x: 0, y: 0, width: 21, height: 14))\n            topVerticalThirdIcon.image = WindowAction.topVerticalThird.image\n            topVerticalThirdIcon.image?.size = NSSize(width: 21, height: 14)\n            \n            let middleVerticalThirdIcon = NSImageView(frame: NSRect(x: 0, y: 0, width: 21, height: 14))\n            middleVerticalThirdIcon.image = WindowAction.middleVerticalThird.image\n            middleVerticalThirdIcon.image?.size = NSSize(width: 21, height: 14)\n            \n            let bottomVerticalThirdIcon = NSImageView(frame: NSRect(x: 0, y: 0, width: 21, height: 14))\n            bottomVerticalThirdIcon.image = WindowAction.bottomVerticalThird.image\n            bottomVerticalThirdIcon.image?.size = NSSize(width: 21, height: 14)\n            \n            let topVerticalTwoThirdsIcon = NSImageView(frame: NSRect(x: 0, y: 0, width: 21, height: 14))\n            topVerticalTwoThirdsIcon.image = WindowAction.topVerticalTwoThirds.image\n            topVerticalTwoThirdsIcon.image?.size = NSSize(width: 21, height: 14)\n            \n            let bottomVerticalTwoThirdsIcon = NSImageView(frame: NSRect(x: 0, y: 0, width: 21, height: 14))\n            bottomVerticalTwoThirdsIcon.image = WindowAction.bottomVerticalTwoThirds.image\n            bottomVerticalTwoThirdsIcon.image?.size = NSSize(width: 21, height: 14)\n\n            let topLeftEighthIcon = NSImageView(frame: NSRect(x: 0, y: 0, width: 21, height: 14))\n            topLeftEighthIcon.image = WindowAction.topLeftEighth.image\n            topLeftEighthIcon.image?.size = NSSize(width: 21, height: 14)\n\n            let topCenterLeftEighthIcon = NSImageView(frame: NSRect(x: 0, y: 0, width: 21, height: 14))\n            topCenterLeftEighthIcon.image = WindowAction.topCenterLeftEighth.image\n            topCenterLeftEighthIcon.image?.size = NSSize(width: 21, height: 14)\n\n            let topCenterRightEighthIcon = NSImageView(frame: NSRect(x: 0, y: 0, width: 21, height: 14))\n            topCenterRightEighthIcon.image = WindowAction.topCenterRightEighth.image\n            topCenterRightEighthIcon.image?.size = NSSize(width: 21, height: 14)\n\n            let topRightEighthIcon = NSImageView(frame: NSRect(x: 0, y: 0, width: 21, height: 14))\n            topRightEighthIcon.image = WindowAction.topRightEighth.image\n            topRightEighthIcon.image?.size = NSSize(width: 21, height: 14)\n\n            let bottomLeftEighthIcon = NSImageView(frame: NSRect(x: 0, y: 0, width: 21, height: 14))\n            bottomLeftEighthIcon.image = WindowAction.bottomLeftEighth.image\n            bottomLeftEighthIcon.image?.size = NSSize(width: 21, height: 14)\n\n            let bottomCenterLeftEighthIcon = NSImageView(frame: NSRect(x: 0, y: 0, width: 21, height: 14))\n            bottomCenterLeftEighthIcon.image = WindowAction.bottomCenterLeftEighth.image\n            bottomCenterLeftEighthIcon.image?.size = NSSize(width: 21, height: 14)\n\n            let bottomCenterRightEighthIcon = NSImageView(frame: NSRect(x: 0, y: 0, width: 21, height: 14))\n            bottomCenterRightEighthIcon.image = WindowAction.bottomCenterRightEighth.image\n            bottomCenterRightEighthIcon.image?.size = NSSize(width: 21, height: 14)\n\n            let bottomRightEighthIcon = NSImageView(frame: NSRect(x: 0, y: 0, width: 21, height: 14))\n            bottomRightEighthIcon.image = WindowAction.bottomRightEighth.image\n            bottomRightEighthIcon.image?.size = NSSize(width: 21, height: 14)\n\n            let largerWidthLabelStack = NSStackView()\n            largerWidthLabelStack.orientation = .horizontal\n            largerWidthLabelStack.alignment = .centerY\n            largerWidthLabelStack.spacing = 8\n            largerWidthLabelStack.addArrangedSubview(largerWidthLabel)\n            largerWidthLabelStack.addArrangedSubview(largerWidthIcon)\n\n            let smallerWidthLabelStack = NSStackView()\n            smallerWidthLabelStack.orientation = .horizontal\n            smallerWidthLabelStack.alignment = .centerY\n            smallerWidthLabelStack.spacing = 8\n            smallerWidthLabelStack.addArrangedSubview(smallerWidthLabel)\n            smallerWidthLabelStack.addArrangedSubview(smallerWidthIcon)\n            \n            let topVerticalThirdLabelStack = NSStackView()\n            topVerticalThirdLabelStack.orientation = .horizontal\n            topVerticalThirdLabelStack.alignment = .centerY\n            topVerticalThirdLabelStack.spacing = 8\n            topVerticalThirdLabelStack.addArrangedSubview(topVerticalThirdLabel)\n            topVerticalThirdLabelStack.addArrangedSubview(topVerticalThirdIcon)\n            \n            let middleVerticalThirdLabelStack = NSStackView()\n            middleVerticalThirdLabelStack.orientation = .horizontal\n            middleVerticalThirdLabelStack.alignment = .centerY\n            middleVerticalThirdLabelStack.spacing = 8\n            middleVerticalThirdLabelStack.addArrangedSubview(middleVerticalThirdLabel)\n            middleVerticalThirdLabelStack.addArrangedSubview(middleVerticalThirdIcon)\n            \n            let bottomVerticalThirdLabelStack = NSStackView()\n            bottomVerticalThirdLabelStack.orientation = .horizontal\n            bottomVerticalThirdLabelStack.alignment = .centerY\n            bottomVerticalThirdLabelStack.spacing = 8\n            bottomVerticalThirdLabelStack.addArrangedSubview(bottomVerticalThirdLabel)\n            bottomVerticalThirdLabelStack.addArrangedSubview(bottomVerticalThirdIcon)\n            \n            let topVerticalTwoThirdsLabelStack = NSStackView()\n            topVerticalTwoThirdsLabelStack.orientation = .horizontal\n            topVerticalTwoThirdsLabelStack.alignment = .centerY\n            topVerticalTwoThirdsLabelStack.spacing = 8\n            topVerticalTwoThirdsLabelStack.addArrangedSubview(topVerticalTwoThirdsLabel)\n            topVerticalTwoThirdsLabelStack.addArrangedSubview(topVerticalTwoThirdsIcon)\n            \n            let bottomVerticalTwoThirdsLabelStack = NSStackView()\n            bottomVerticalTwoThirdsLabelStack.orientation = .horizontal\n            bottomVerticalTwoThirdsLabelStack.alignment = .centerY\n            bottomVerticalTwoThirdsLabelStack.spacing = 8\n            bottomVerticalTwoThirdsLabelStack.addArrangedSubview(bottomVerticalTwoThirdsLabel)\n            bottomVerticalTwoThirdsLabelStack.addArrangedSubview(bottomVerticalTwoThirdsIcon)\n\n            let topLeftEighthLabelStack = NSStackView()\n            topLeftEighthLabelStack.orientation = .horizontal\n            topLeftEighthLabelStack.alignment = .centerY\n            topLeftEighthLabelStack.spacing = 8\n            topLeftEighthLabelStack.addArrangedSubview(topLeftEighthLabel)\n            topLeftEighthLabelStack.addArrangedSubview(topLeftEighthIcon)\n\n            let topCenterLeftEighthLabelStack = NSStackView()\n            topCenterLeftEighthLabelStack.orientation = .horizontal\n            topCenterLeftEighthLabelStack.alignment = .centerY\n            topCenterLeftEighthLabelStack.spacing = 8\n            topCenterLeftEighthLabelStack.addArrangedSubview(topCenterLeftEighthLabel)\n            topCenterLeftEighthLabelStack.addArrangedSubview(topCenterLeftEighthIcon)\n\n            let topCenterRightEighthLabelStack = NSStackView()\n            topCenterRightEighthLabelStack.orientation = .horizontal\n            topCenterRightEighthLabelStack.alignment = .centerY\n            topCenterRightEighthLabelStack.spacing = 8\n            topCenterRightEighthLabelStack.addArrangedSubview(topCenterRightEighthLabel)\n            topCenterRightEighthLabelStack.addArrangedSubview(topCenterRightEighthIcon)\n\n            let topRightEighthLabelStack = NSStackView()\n            topRightEighthLabelStack.orientation = .horizontal\n            topRightEighthLabelStack.alignment = .centerY\n            topRightEighthLabelStack.spacing = 8\n            topRightEighthLabelStack.addArrangedSubview(topRightEighthLabel)\n            topRightEighthLabelStack.addArrangedSubview(topRightEighthIcon)\n\n            let bottomLeftEighthLabelStack = NSStackView()\n            bottomLeftEighthLabelStack.orientation = .horizontal\n            bottomLeftEighthLabelStack.alignment = .centerY\n            bottomLeftEighthLabelStack.spacing = 8\n            bottomLeftEighthLabelStack.addArrangedSubview(bottomLeftEighthLabel)\n            bottomLeftEighthLabelStack.addArrangedSubview(bottomLeftEighthIcon)\n\n            let bottomCenterLeftEighthLabelStack = NSStackView()\n            bottomCenterLeftEighthLabelStack.orientation = .horizontal\n            bottomCenterLeftEighthLabelStack.alignment = .centerY\n            bottomCenterLeftEighthLabelStack.spacing = 8\n            bottomCenterLeftEighthLabelStack.addArrangedSubview(bottomCenterLeftEighthLabel)\n            bottomCenterLeftEighthLabelStack.addArrangedSubview(bottomCenterLeftEighthIcon)\n\n            let bottomCenterRightEighthLabelStack = NSStackView()\n            bottomCenterRightEighthLabelStack.orientation = .horizontal\n            bottomCenterRightEighthLabelStack.alignment = .centerY\n            bottomCenterRightEighthLabelStack.spacing = 8\n            bottomCenterRightEighthLabelStack.addArrangedSubview(bottomCenterRightEighthLabel)\n            bottomCenterRightEighthLabelStack.addArrangedSubview(bottomCenterRightEighthIcon)\n\n            let bottomRightEighthLabelStack = NSStackView()\n            bottomRightEighthLabelStack.orientation = .horizontal\n            bottomRightEighthLabelStack.alignment = .centerY\n            bottomRightEighthLabelStack.spacing = 8\n            bottomRightEighthLabelStack.addArrangedSubview(bottomRightEighthLabel)\n            bottomRightEighthLabelStack.addArrangedSubview(bottomRightEighthIcon)\n\n            let largerWidthRow = NSStackView()\n            largerWidthRow.orientation = .horizontal\n            largerWidthRow.alignment = .centerY\n            largerWidthRow.spacing = 18\n            largerWidthRow.addArrangedSubview(largerWidthLabelStack)\n            largerWidthRow.addArrangedSubview(largerWidthShortcutView)\n\n            let smallerWidthRow = NSStackView()\n            smallerWidthRow.orientation = .horizontal\n            smallerWidthRow.alignment = .centerY\n            smallerWidthRow.spacing = 18\n            smallerWidthRow.addArrangedSubview(smallerWidthLabelStack)\n            smallerWidthRow.addArrangedSubview(smallerWidthShortcutView)\n\n            let widthStepRow = NSStackView()\n            widthStepRow.orientation = .horizontal\n            widthStepRow.alignment = .centerY\n            widthStepRow.spacing = 18\n            widthStepRow.addArrangedSubview(widthStepLabel)\n            widthStepRow.addArrangedSubview(widthStepField)\n\n            let hSplitRow = NSStackView()\n            hSplitRow.orientation = .horizontal\n            hSplitRow.alignment = .centerY\n            hSplitRow.spacing = 18\n            hSplitRow.addArrangedSubview(hSplitLabel)\n            hSplitRow.addArrangedSubview(hSplitField)\n\n            let vSplitRow = NSStackView()\n            vSplitRow.orientation = .horizontal\n            vSplitRow.alignment = .centerY\n            vSplitRow.spacing = 18\n            vSplitRow.addArrangedSubview(vSplitLabel)\n            vSplitRow.addArrangedSubview(vSplitField)\n            \n            let topVerticalThirdRow = NSStackView()\n            topVerticalThirdRow.orientation = .horizontal\n            topVerticalThirdRow.alignment = .centerY\n            topVerticalThirdRow.spacing = 18\n            topVerticalThirdRow.addArrangedSubview(topVerticalThirdLabelStack)\n            topVerticalThirdRow.addArrangedSubview(topVerticalThirdShortcutView)\n            \n            let middleVerticalThirdRow = NSStackView()\n            middleVerticalThirdRow.orientation = .horizontal\n            middleVerticalThirdRow.alignment = .centerY\n            middleVerticalThirdRow.spacing = 18\n            middleVerticalThirdRow.addArrangedSubview(middleVerticalThirdLabelStack)\n            middleVerticalThirdRow.addArrangedSubview(middleVerticalThirdShortcutView)\n            \n            let bottomVerticalThirdRow = NSStackView()\n            bottomVerticalThirdRow.orientation = .horizontal\n            bottomVerticalThirdRow.alignment = .centerY\n            bottomVerticalThirdRow.spacing = 18\n            bottomVerticalThirdRow.addArrangedSubview(bottomVerticalThirdLabelStack)\n            bottomVerticalThirdRow.addArrangedSubview(bottomVerticalThirdShortcutView)\n            \n            let topVerticalTwoThirdsRow = NSStackView()\n            topVerticalTwoThirdsRow.orientation = .horizontal\n            topVerticalTwoThirdsRow.alignment = .centerY\n            topVerticalTwoThirdsRow.spacing = 18\n            topVerticalTwoThirdsRow.addArrangedSubview(topVerticalTwoThirdsLabelStack)\n            topVerticalTwoThirdsRow.addArrangedSubview(topVerticalTwoThirdsShortcutView)\n            \n            let bottomVerticalTwoThirdsRow = NSStackView()\n            bottomVerticalTwoThirdsRow.orientation = .horizontal\n            bottomVerticalTwoThirdsRow.alignment = .centerY\n            bottomVerticalTwoThirdsRow.spacing = 18\n            bottomVerticalTwoThirdsRow.addArrangedSubview(bottomVerticalTwoThirdsLabelStack)\n            bottomVerticalTwoThirdsRow.addArrangedSubview(bottomVerticalTwoThirdsShortcutView)\n\n            let topLeftEighthRow = NSStackView()\n            topLeftEighthRow.orientation = .horizontal\n            topLeftEighthRow.alignment = .centerY\n            topLeftEighthRow.spacing = 18\n            topLeftEighthRow.addArrangedSubview(topLeftEighthLabelStack)\n            topLeftEighthRow.addArrangedSubview(topLeftEighthShortcutView)\n\n            let topCenterLeftEighthRow = NSStackView()\n            topCenterLeftEighthRow.orientation = .horizontal\n            topCenterLeftEighthRow.alignment = .centerY\n            topCenterLeftEighthRow.spacing = 18\n            topCenterLeftEighthRow.addArrangedSubview(topCenterLeftEighthLabelStack)\n            topCenterLeftEighthRow.addArrangedSubview(topCenterLeftEighthShortcutView)\n\n            let topCenterRightEighthRow = NSStackView()\n            topCenterRightEighthRow.orientation = .horizontal\n            topCenterRightEighthRow.alignment = .centerY\n            topCenterRightEighthRow.spacing = 18\n            topCenterRightEighthRow.addArrangedSubview(topCenterRightEighthLabelStack)\n            topCenterRightEighthRow.addArrangedSubview(topCenterRightEighthShortcutView)\n\n            let topRightEighthRow = NSStackView()\n            topRightEighthRow.orientation = .horizontal\n            topRightEighthRow.alignment = .centerY\n            topRightEighthRow.spacing = 18\n            topRightEighthRow.addArrangedSubview(topRightEighthLabelStack)\n            topRightEighthRow.addArrangedSubview(topRightEighthShortcutView)\n\n            let bottomLeftEighthRow = NSStackView()\n            bottomLeftEighthRow.orientation = .horizontal\n            bottomLeftEighthRow.alignment = .centerY\n            bottomLeftEighthRow.spacing = 18\n            bottomLeftEighthRow.addArrangedSubview(bottomLeftEighthLabelStack)\n            bottomLeftEighthRow.addArrangedSubview(bottomLeftEighthShortcutView)\n\n            let bottomCenterLeftEighthRow = NSStackView()\n            bottomCenterLeftEighthRow.orientation = .horizontal\n            bottomCenterLeftEighthRow.alignment = .centerY\n            bottomCenterLeftEighthRow.spacing = 18\n            bottomCenterLeftEighthRow.addArrangedSubview(bottomCenterLeftEighthLabelStack)\n            bottomCenterLeftEighthRow.addArrangedSubview(bottomCenterLeftEighthShortcutView)\n\n            let bottomCenterRightEighthRow = NSStackView()\n            bottomCenterRightEighthRow.orientation = .horizontal\n            bottomCenterRightEighthRow.alignment = .centerY\n            bottomCenterRightEighthRow.spacing = 18\n            bottomCenterRightEighthRow.addArrangedSubview(bottomCenterRightEighthLabelStack)\n            bottomCenterRightEighthRow.addArrangedSubview(bottomCenterRightEighthShortcutView)\n\n            let bottomRightEighthRow = NSStackView()\n            bottomRightEighthRow.orientation = .horizontal\n            bottomRightEighthRow.alignment = .centerY\n            bottomRightEighthRow.spacing = 18\n            bottomRightEighthRow.addArrangedSubview(bottomRightEighthLabelStack)\n            bottomRightEighthRow.addArrangedSubview(bottomRightEighthShortcutView)\n\n            mainStackView.addArrangedSubview(headerLabel)\n            mainStackView.setCustomSpacing(10, after: headerLabel)\n            mainStackView.addArrangedSubview(largerWidthRow)\n            mainStackView.addArrangedSubview(smallerWidthRow)\n            mainStackView.addArrangedSubview(widthStepRow)\n            mainStackView.addArrangedSubview(topVerticalThirdRow)\n            mainStackView.addArrangedSubview(middleVerticalThirdRow)\n            mainStackView.addArrangedSubview(bottomVerticalThirdRow)\n            mainStackView.addArrangedSubview(topVerticalTwoThirdsRow)\n            mainStackView.addArrangedSubview(bottomVerticalTwoThirdsRow)\n            // Grid Positions - cycling shortcuts for larger grids\n            let showAdditionalSizesCheckbox = NSButton(checkboxWithTitle: NSLocalizedString(\"Show additional sizes in menu\", tableName: \"Main\", value: \"\", comment: \"\"), target: self, action: #selector(toggleShowAdditionalSizesInMenu(_:)))\n            showAdditionalSizesCheckbox.state = Defaults.showAdditionalSizesInMenu.userEnabled ? .on : .off\n            showAdditionalSizesCheckbox.translatesAutoresizingMaskIntoConstraints = false\n            showAdditionalSizesCheckbox.alignment = .left\n            showAdditionalSizesCheckbox.imageHugsTitle = true\n\n            //\n            let gridHeaderLabel = NSTextField(labelWithString: NSLocalizedString(\"Grid Positions\", tableName: \"Main\", value: \"\", comment: \"\"))\n            gridHeaderLabel.font = NSFont.boldSystemFont(ofSize: NSFont.systemFontSize)\n            gridHeaderLabel.alignment = .center\n            gridHeaderLabel.translatesAutoresizingMaskIntoConstraints = false\n\n            let cyclingHintLabel = NSTextField(wrappingLabelWithString: NSLocalizedString(\"Press the shortcut repeatedly to cycle through all positions in the grid.\", tableName: \"Main\", value: \"\", comment: \"\"))\n            cyclingHintLabel.font = NSFont.systemFont(ofSize: NSFont.smallSystemFontSize)\n            cyclingHintLabel.textColor = .secondaryLabelColor\n            cyclingHintLabel.alignment = .center\n            cyclingHintLabel.translatesAutoresizingMaskIntoConstraints = false\n\n            // Cycling shortcut rows - Ninths, Twelfths, Sixteenths\n            let ninthsCyclingLabel = NSTextField(labelWithString: NSLocalizedString(\"Ninths (3\\u{00d7}3)\", tableName: \"Main\", value: \"\", comment: \"\"))\n            ninthsCyclingLabel.alignment = .right\n            ninthsCyclingLabel.translatesAutoresizingMaskIntoConstraints = false\n            let twelfthsCyclingLabel = NSTextField(labelWithString: NSLocalizedString(\"Twelfths (4\\u{00d7}3)\", tableName: \"Main\", value: \"\", comment: \"\"))\n            twelfthsCyclingLabel.alignment = .right\n            twelfthsCyclingLabel.translatesAutoresizingMaskIntoConstraints = false\n\n            let sixteenthsCyclingLabel = NSTextField(labelWithString: NSLocalizedString(\"Sixteenths (4\\u{00d7}4)\", tableName: \"Main\", value: \"\", comment: \"\"))\n            sixteenthsCyclingLabel.alignment = .right\n            sixteenthsCyclingLabel.translatesAutoresizingMaskIntoConstraints = false\n\n            let ninthsCyclingShortcutView = MASShortcutView(frame: NSRect(x: 0, y: 0, width: 160, height: 19))\n            let twelfthsCyclingShortcutView = MASShortcutView(frame: NSRect(x: 0, y: 0, width: 160, height: 19))\n            let sixteenthsCyclingShortcutView = MASShortcutView(frame: NSRect(x: 0, y: 0, width: 160, height: 19))\n\n            ninthsCyclingShortcutView.setAssociatedUserDefaultsKey(WindowAction.topLeftNinth.name, withTransformerName: MASDictionaryTransformerName)\n            twelfthsCyclingShortcutView.setAssociatedUserDefaultsKey(WindowAction.topLeftTwelfth.name, withTransformerName: MASDictionaryTransformerName)\n            sixteenthsCyclingShortcutView.setAssociatedUserDefaultsKey(WindowAction.topLeftSixteenth.name, withTransformerName: MASDictionaryTransformerName)\n\n            let ninthsCyclingIcon = NSImageView(frame: NSRect(x: 0, y: 0, width: 21, height: 14))\n            ninthsCyclingIcon.image = WindowAction.topLeftNinth.image\n            ninthsCyclingIcon.image?.size = NSSize(width: 21, height: 14)\n            let twelfthsCyclingIcon = NSImageView(frame: NSRect(x: 0, y: 0, width: 21, height: 14))\n            twelfthsCyclingIcon.image = WindowAction.topLeftTwelfth.image\n            twelfthsCyclingIcon.image?.size = NSSize(width: 21, height: 14)\n            let sixteenthsCyclingIcon = NSImageView(frame: NSRect(x: 0, y: 0, width: 21, height: 14))\n            sixteenthsCyclingIcon.image = WindowAction.topLeftSixteenth.image\n            sixteenthsCyclingIcon.image?.size = NSSize(width: 21, height: 14)\n\n            func makeLabelStack(_ label: NSTextField, _ icon: NSImageView) -> NSStackView {\n                let stack = NSStackView()\n                stack.orientation = .horizontal\n                stack.alignment = .centerY\n                stack.spacing = 8\n                stack.addArrangedSubview(label)\n                stack.addArrangedSubview(icon)\n                return stack\n            }\n\n            func makeRow(_ labelStack: NSStackView, _ shortcutView: MASShortcutView) -> NSStackView {\n                let row = NSStackView()\n                row.orientation = .horizontal\n                row.alignment = .centerY\n                row.spacing = 18\n                row.addArrangedSubview(labelStack)\n                row.addArrangedSubview(shortcutView)\n                return row\n            }\n\n            let ninthsCyclingRow = makeRow(makeLabelStack(ninthsCyclingLabel, ninthsCyclingIcon), ninthsCyclingShortcutView)\n            let twelfthsCyclingRow = makeRow(makeLabelStack(twelfthsCyclingLabel, twelfthsCyclingIcon), twelfthsCyclingShortcutView)\n            let sixteenthsCyclingRow = makeRow(makeLabelStack(sixteenthsCyclingLabel, sixteenthsCyclingIcon), sixteenthsCyclingShortcutView)\n\n            if Defaults.allowAnyShortcut.enabled {\n                let passThroughValidator = PassthroughShortcutValidator()\n                ninthsCyclingShortcutView.shortcutValidator = passThroughValidator\n                twelfthsCyclingShortcutView.shortcutValidator = passThroughValidator\n                sixteenthsCyclingShortcutView.shortcutValidator = passThroughValidator\n            }\n\n            mainStackView.addArrangedSubview(gridHeaderLabel)\n            mainStackView.setCustomSpacing(4, after: gridHeaderLabel)\n            mainStackView.addArrangedSubview(showAdditionalSizesCheckbox)\n            mainStackView.setCustomSpacing(8, after: showAdditionalSizesCheckbox)\n            mainStackView.addArrangedSubview(cyclingHintLabel)\n            mainStackView.setCustomSpacing(8, after: cyclingHintLabel)\n            mainStackView.addArrangedSubview(topLeftEighthRow)\n            mainStackView.addArrangedSubview(topCenterLeftEighthRow)\n            mainStackView.addArrangedSubview(topCenterRightEighthRow)\n            mainStackView.addArrangedSubview(topRightEighthRow)\n            mainStackView.addArrangedSubview(bottomLeftEighthRow)\n            mainStackView.addArrangedSubview(bottomCenterLeftEighthRow)\n            mainStackView.addArrangedSubview(bottomCenterRightEighthRow)\n            mainStackView.addArrangedSubview(bottomRightEighthRow)\n            mainStackView.addArrangedSubview(ninthsCyclingRow)\n            mainStackView.addArrangedSubview(twelfthsCyclingRow)\n            mainStackView.addArrangedSubview(sixteenthsCyclingRow)\n\n\n            mainStackView.addArrangedSubview(splitRatioHeaderLabel)\n            mainStackView.setCustomSpacing(10, after: splitRatioHeaderLabel)\n            mainStackView.addArrangedSubview(hSplitRow)\n            mainStackView.addArrangedSubview(vSplitRow)\n\n            NSLayoutConstraint.activate([\n                headerLabel.widthAnchor.constraint(equalTo: mainStackView.widthAnchor),\n                splitRatioHeaderLabel.widthAnchor.constraint(equalTo: mainStackView.widthAnchor),\n                largerWidthLabel.widthAnchor.constraint(equalTo: smallerWidthLabel.widthAnchor),\n                smallerWidthLabel.widthAnchor.constraint(equalTo: widthStepLabel.widthAnchor),\n                widthStepLabel.widthAnchor.constraint(equalTo: topVerticalThirdLabel.widthAnchor),\n                topVerticalThirdLabel.widthAnchor.constraint(equalTo: middleVerticalThirdLabel.widthAnchor),\n                middleVerticalThirdLabel.widthAnchor.constraint(equalTo: bottomVerticalThirdLabel.widthAnchor),\n                bottomVerticalThirdLabel.widthAnchor.constraint(equalTo: topVerticalTwoThirdsLabel.widthAnchor),\n                topVerticalTwoThirdsLabel.widthAnchor.constraint(equalTo: bottomVerticalTwoThirdsLabel.widthAnchor),\n                bottomVerticalTwoThirdsLabel.widthAnchor.constraint(equalTo: topLeftEighthLabel.widthAnchor),\n                topLeftEighthLabel.widthAnchor.constraint(equalTo: topCenterLeftEighthLabel.widthAnchor),\n                topCenterLeftEighthLabel.widthAnchor.constraint(equalTo: topCenterRightEighthLabel.widthAnchor),\n                topCenterRightEighthLabel.widthAnchor.constraint(equalTo: topRightEighthLabel.widthAnchor),\n                topRightEighthLabel.widthAnchor.constraint(equalTo: bottomLeftEighthLabel.widthAnchor),\n                bottomLeftEighthLabel.widthAnchor.constraint(equalTo: bottomCenterLeftEighthLabel.widthAnchor),\n                bottomCenterLeftEighthLabel.widthAnchor.constraint(equalTo: bottomCenterRightEighthLabel.widthAnchor),\n                bottomCenterRightEighthLabel.widthAnchor.constraint(equalTo: bottomRightEighthLabel.widthAnchor),\n                bottomRightEighthLabel.widthAnchor.constraint(equalTo: ninthsCyclingLabel.widthAnchor),\n                ninthsCyclingLabel.widthAnchor.constraint(equalTo: twelfthsCyclingLabel.widthAnchor),\n                twelfthsCyclingLabel.widthAnchor.constraint(equalTo: sixteenthsCyclingLabel.widthAnchor),\n                sixteenthsCyclingLabel.widthAnchor.constraint(equalTo: hSplitLabel.widthAnchor),\n                hSplitLabel.widthAnchor.constraint(equalTo: vSplitLabel.widthAnchor),\n                largerWidthLabelStack.widthAnchor.constraint(equalTo: smallerWidthLabelStack.widthAnchor),\n                largerWidthShortcutView.widthAnchor.constraint(equalToConstant: 160),\n                smallerWidthShortcutView.widthAnchor.constraint(equalToConstant: 160),\n                widthStepField.widthAnchor.constraint(equalToConstant: 160),\n                topVerticalThirdShortcutView.widthAnchor.constraint(equalToConstant: 160),\n                middleVerticalThirdShortcutView.widthAnchor.constraint(equalToConstant: 160),\n                bottomVerticalThirdShortcutView.widthAnchor.constraint(equalToConstant: 160),\n                topVerticalTwoThirdsShortcutView.widthAnchor.constraint(equalToConstant: 160),\n                bottomVerticalTwoThirdsShortcutView.widthAnchor.constraint(equalToConstant: 160),\n                topLeftEighthShortcutView.widthAnchor.constraint(equalToConstant: 160),\n                topCenterLeftEighthShortcutView.widthAnchor.constraint(equalToConstant: 160),\n                topCenterRightEighthShortcutView.widthAnchor.constraint(equalToConstant: 160),\n                topRightEighthShortcutView.widthAnchor.constraint(equalToConstant: 160),\n                bottomLeftEighthShortcutView.widthAnchor.constraint(equalToConstant: 160),\n                bottomCenterLeftEighthShortcutView.widthAnchor.constraint(equalToConstant: 160),\n                bottomCenterRightEighthShortcutView.widthAnchor.constraint(equalToConstant: 160),\n                bottomRightEighthShortcutView.widthAnchor.constraint(equalToConstant: 160),\n                ninthsCyclingShortcutView.widthAnchor.constraint(equalToConstant: 160),\n                twelfthsCyclingShortcutView.widthAnchor.constraint(equalToConstant: 160),\n                sixteenthsCyclingShortcutView.widthAnchor.constraint(equalToConstant: 160),\n                widthStepField.trailingAnchor.constraint(equalTo: largerWidthShortcutView.trailingAnchor),\n                hSplitField.widthAnchor.constraint(equalToConstant: 160),\n                vSplitField.widthAnchor.constraint(equalToConstant: 160),\n                showAdditionalSizesCheckbox.leadingAnchor.constraint(equalTo: largerWidthShortcutView.leadingAnchor),\n                smallerWidthShortcutView.leadingAnchor.constraint(equalTo: largerWidthShortcutView.leadingAnchor),\n                topVerticalThirdShortcutView.leadingAnchor.constraint(equalTo: largerWidthShortcutView.leadingAnchor),\n                middleVerticalThirdShortcutView.leadingAnchor.constraint(equalTo: largerWidthShortcutView.leadingAnchor),\n                bottomVerticalThirdShortcutView.leadingAnchor.constraint(equalTo: largerWidthShortcutView.leadingAnchor),\n                topVerticalTwoThirdsShortcutView.leadingAnchor.constraint(equalTo: largerWidthShortcutView.leadingAnchor),\n                bottomVerticalTwoThirdsShortcutView.leadingAnchor.constraint(equalTo: largerWidthShortcutView.leadingAnchor),\n                topLeftEighthShortcutView.leadingAnchor.constraint(equalTo: largerWidthShortcutView.leadingAnchor),\n                topCenterLeftEighthShortcutView.leadingAnchor.constraint(equalTo: largerWidthShortcutView.leadingAnchor),\n                topCenterRightEighthShortcutView.leadingAnchor.constraint(equalTo: largerWidthShortcutView.leadingAnchor),\n                topRightEighthShortcutView.leadingAnchor.constraint(equalTo: largerWidthShortcutView.leadingAnchor),\n                bottomLeftEighthShortcutView.leadingAnchor.constraint(equalTo: largerWidthShortcutView.leadingAnchor),\n                bottomCenterLeftEighthShortcutView.leadingAnchor.constraint(equalTo: largerWidthShortcutView.leadingAnchor),\n                bottomCenterRightEighthShortcutView.leadingAnchor.constraint(equalTo: largerWidthShortcutView.leadingAnchor),\n                bottomRightEighthShortcutView.leadingAnchor.constraint(equalTo: largerWidthShortcutView.leadingAnchor),\n                ninthsCyclingShortcutView.leadingAnchor.constraint(equalTo: largerWidthShortcutView.leadingAnchor),\n                twelfthsCyclingShortcutView.leadingAnchor.constraint(equalTo: largerWidthShortcutView.leadingAnchor),\n                sixteenthsCyclingShortcutView.leadingAnchor.constraint(equalTo: largerWidthShortcutView.leadingAnchor),\n                gridHeaderLabel.widthAnchor.constraint(equalTo: mainStackView.widthAnchor),\n                cyclingHintLabel.widthAnchor.constraint(equalTo: mainStackView.widthAnchor, constant: -20),\n                hSplitField.trailingAnchor.constraint(equalTo: largerWidthShortcutView.trailingAnchor),\n                vSplitField.trailingAnchor.constraint(equalTo: largerWidthShortcutView.trailingAnchor)\n            ])\n\n            let containerView = NSView()\n            containerView.addSubview(mainStackView)\n\n            NSLayoutConstraint.activate([\n                mainStackView.topAnchor.constraint(equalTo: containerView.topAnchor, constant: 10),\n                mainStackView.bottomAnchor.constraint(equalTo: containerView.bottomAnchor, constant: -10),\n                mainStackView.leadingAnchor.constraint(equalTo: containerView.leadingAnchor, constant: 15),\n                mainStackView.trailingAnchor.constraint(equalTo: containerView.trailingAnchor, constant: -15)\n            ])\n\n            viewController.view = containerView\n            popover.contentViewController = viewController\n            extraSettingsPopover = popover\n        }\n        extraSettingsPopover?.show(relativeTo: sender.bounds, of: sender, preferredEdge: .maxY)\n    }\n    \n    override func awakeFromNib() {\n        initializeToggles()\n\n        checkForUpdatesAutomaticallyCheckbox.bind(.value, to: AppDelegate.instance.updaterController.updater, withKeyPath: \"automaticallyChecksForUpdates\", options: nil)\n        \n        let appVersionString: String = Bundle.main.object(forInfoDictionaryKey: \"CFBundleShortVersionString\") as! String\n        let buildString: String = Bundle.main.object(forInfoDictionaryKey: \"CFBundleVersion\") as! String\n        \n        versionLabel.stringValue = \"v\" + appVersionString + \" (\" + buildString + \")\"\n\n        updateCheckForUpdatesTitle()\n        \n        initializeTodoModeSettings()\n        \n        self.cycleSizeCheckboxes.forEach {\n            $0.removeFromSuperview()\n        }\n        \n        let cycleSizeCheckboxes = makeCycleSizeCheckboxes()\n        cycleSizeCheckboxes.forEach { checkbox in\n            cycleSizesView.addArrangedSubview(checkbox)\n        }\n        self.cycleSizeCheckboxes = cycleSizeCheckboxes\n        \n        initializeCycleSizesView(animated: false)\n        \n        Notification.Name.configImported.onPost(using: {_ in\n            self.initializeTodoModeSettings()\n            self.initializeToggles()\n            self.initializeCycleSizesView(animated: false)\n        })\n        \n        Notification.Name.menuBarIconHidden.onPost(using: {_ in\n            self.hideMenuBarIconCheckbox.state = .on\n        })\n        \n        Notification.Name.updateAvailability.onPost { _ in\n            self.updateCheckForUpdatesTitle()\n        }\n    }\n    \n    func updateCheckForUpdatesTitle() {\n        checkForUpdatesButton.title = AppDelegate.instance.hasPendingUpdate ? \"Update Available…\".localized : \"Check for Updates…\".localized(key: \"74m-kw-w1f.title\")\n    }\n    \n    func initializeTodoModeSettings() {\n        todoCheckbox.state = Defaults.todo.userEnabled ? .on : .off\n        todoAppWidthField.stringValue = String(Defaults.todoSidebarWidth.value)\n        todoAppWidthField.delegate = self\n        todoAppWidthField.defaults = Defaults.todoSidebarWidth\n        todoAppWidthField.defaultsSetAction = {\n            TodoManager.moveAllIfNeeded(false)\n        }\n        todoAppWidthUnitPopUpButton.selectItem(withTag: Defaults.todoSidebarWidthUnit.value.rawValue)\n        todoAppSidePopUpButton.selectItem(withTag: Defaults.todoSidebarSide.value.rawValue)\n        TodoManager.initToggleShortcut()\n        TodoManager.initReflowShortcut()\n        toggleTodoShortcutView.setAssociatedUserDefaultsKey(TodoManager.toggleDefaultsKey, withTransformerName: MASDictionaryTransformerName)\n        reflowTodoShortcutView.setAssociatedUserDefaultsKey(TodoManager.reflowDefaultsKey, withTransformerName: MASDictionaryTransformerName)\n        showHideTodoModeSettings(animated: false)\n    }\n    \n    private func showHideTodoModeSettings(animated: Bool) {\n        setVisibility(shown: Defaults.todo.userEnabled, ofView: todoView, withConstraint: todoViewHeightConstraint, animated: animated)\n    }\n    \n    func initializeToggles() {\n        checkForUpdatesAutomaticallyCheckbox.state = Defaults.SUEnableAutomaticChecks.enabled ? .on : .off\n        \n        launchOnLoginCheckbox.state = Defaults.launchOnLogin.enabled ? .on : .off\n        \n        hideMenuBarIconCheckbox.state = Defaults.hideMenuBarIcon.enabled ? .on : .off\n        \n        subsequentExecutionPopUpButton.selectItem(withTag: Defaults.subsequentExecutionMode.value.rawValue)\n        \n        allowAnyShortcutCheckbox.state = Defaults.allowAnyShortcut.enabled ? .on : .off\n                \n        gapSlider.intValue = Int32(Defaults.gapSize.value)\n        gapLabel.stringValue = \"\\(gapSlider.intValue) px\"\n        gapSlider.isContinuous = true\n        \n        cursorAcrossCheckbox.state = Defaults.moveCursorAcrossDisplays.userEnabled ? .on : .off\n\n        useCursorScreenDetectionCheckbox.isHidden = !Defaults.useCursorScreenDetection.enabled\n        useCursorScreenDetectionCheckbox.state = Defaults.useCursorScreenDetection.enabled ? .on : .off\n\n        doubleClickTitleBarCheckbox.state = WindowAction(rawValue: Defaults.doubleClickTitleBar.value - 1) != nil ? .on : .off\n\n        if StageUtil.stageCapable {\n            stageSlider.intValue = Int32(Defaults.stageSize.value)\n            stageSlider.isContinuous = true\n            stageLabel.stringValue = \"\\(stageSlider.intValue) px\"\n        } else {\n            stageView.isHidden = true\n        }\n        \n        \n        setToggleStatesForCycleSizeCheckboxes()\n    }\n    \n    private func initializeCycleSizesView(animated: Bool = false) {\n        let showOptionsView = Defaults.subsequentExecutionMode.resizes\n        \n        if showOptionsView {\n            setToggleStatesForCycleSizeCheckboxes()\n        }\n        \n        setVisibility(shown: showOptionsView, ofView: cycleSizesView, withConstraint: cycleSizesViewHeightConstraint, animated: animated)\n    }\n\n    private func setVisibility(shown: Bool, ofView view: NSView, withConstraint constraint: NSLayoutConstraint, animated: Bool) {\n        \n        if shown {\n            view.isHidden = false\n            constraint.isActive = false\n            animateChanges(animated: animated) {\n                view.animator().alphaValue = 1\n            }\n        } else {\n            animateChanges(animated: animated) {\n                view.isHidden = true\n                constraint.isActive = true\n            }\n            DispatchQueue.main.async {\n                view.alphaValue = 0\n            }\n        }\n    }\n    \n    private func animateChanges(animated: Bool, block: () -> Void) {\n        if animated {\n            view.layoutSubtreeIfNeeded()\n            NSAnimationContext.runAnimationGroup({ context in\n                context.duration = 0.3\n                context.allowsImplicitAnimation = true\n                \n                block()\n                view.layoutSubtreeIfNeeded()\n            }, completionHandler: nil)\n        } else {\n            block()\n        }\n    }\n    \n    private func makeCycleSizeCheckboxes() -> [NSButton] {\n        CycleSize.sortedSizes.map { division in\n            let button = NSButton(checkboxWithTitle: division.title, target: self, action: #selector(didCheckCycleSizeCheckbox(sender:)))\n            button.tag = division.rawValue\n            button.setContentCompressionResistancePriority(.required, for: .vertical)\n            return button\n        }\n    }\n    \n    @objc private func didCheckCycleSizeCheckbox(sender: Any?) {\n        guard let checkbox = sender as? NSButton else {\n            Logger.log(\"Expected action to be sent from NSButton. Instead, sender is: \\(String(describing: sender))\")\n            return\n        }\n        \n        let rawValue = checkbox.tag\n        \n        guard let cycleSize = CycleSize(rawValue: rawValue) else {\n            Logger.log(\"Expected tag of cycle size checkbox to match a value of CycleSize. Got: \\(String(describing: rawValue))\")\n            return\n        }\n        \n        // If selected cycle sizes has not been changed, write the defaults.\n        if !Defaults.cycleSizesIsChanged.enabled {\n            Defaults.selectedCycleSizes.value = CycleSize.defaultSizes\n        }\n        \n        Defaults.cycleSizesIsChanged.enabled = true\n        \n        if checkbox.state == .on {\n            Defaults.selectedCycleSizes.value.insert(cycleSize)\n        } else {\n            Defaults.selectedCycleSizes.value.remove(cycleSize)\n        }\n    }\n    \n    private func setToggleStatesForCycleSizeCheckboxes() {\n        let useDefaultCycleSizes = !Defaults.cycleSizesIsChanged.enabled\n        let cycleSizes = useDefaultCycleSizes ? CycleSize.defaultSizes : Defaults.selectedCycleSizes.value\n        \n        cycleSizeCheckboxes.forEach { checkbox in\n            guard let cycleSizeForCheckbox = CycleSize(rawValue: checkbox.tag) else {\n                return\n            }\n            \n            let isAlwaysEnabled = cycleSizeForCheckbox.isAlwaysEnabled\n            let isChecked = isAlwaysEnabled || cycleSizes.contains(cycleSizeForCheckbox)\n            checkbox.state = isChecked ? .on : .off\n            \n            // Show that the box cannot be unchecked.\n            if isAlwaysEnabled {\n                checkbox.isEnabled = false\n            }\n        }\n    }\n\n}\n\nextension SettingsViewController {\n    static func freshController() -> SettingsViewController {\n        let storyboard = NSStoryboard(name: \"Main\", bundle: nil)\n        let identifier = \"SettingsViewController\"\n        guard let viewController = storyboard.instantiateController(withIdentifier: identifier) as? SettingsViewController else {\n            fatalError(\"Unable to find ViewController - Check Main.storyboard\")\n        }\n        return viewController\n    }\n}\n\nextension SettingsViewController: NSTextFieldDelegate {\n    func controlTextDidChange(_ obj: Notification) {\n        guard let sender = obj.object as? AutoSaveFloatField,\n              let defaults: FloatDefault = sender.defaults else { return }\n\n        Debounce<Float>.input(sender.floatValue, comparedAgainst: sender.floatValue) { floatValue in\n            defaults.value = floatValue\n            sender.defaultsSetAction?()\n        }\n    }\n\n    func controlTextDidEndEditing(_ obj: Notification) {\n        guard let sender = obj.object as? AutoSaveFloatField,\n              let defaults: FloatDefault = sender.defaults else { return }\n\n        if sender.stringValue.isEmpty {\n            let fallback = sender.fallbackValue\n            sender.stringValue = \"\\(Int(fallback))\"\n            defaults.value = fallback\n            sender.defaultsSetAction?()\n        }\n    }\n}\n\nclass AutoSaveFloatField: NSTextField {\n    var defaults: FloatDefault?\n    var defaultsSetAction: (() -> Void)?\n    var fallbackValue: Float = 30\n}\n"
  },
  {
    "path": "Rectangle/PrefsWindow/SnapAreaViewController.swift",
    "content": "//\n//  SnapAreaViewController.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 8/13/22.\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Cocoa\n\nclass SnapAreaViewController: NSViewController {\n    \n    @IBOutlet weak var windowSnappingCheckbox: NSButton!\n    @IBOutlet weak var unsnapRestoreButton: NSButton!\n    @IBOutlet weak var animateFootprintCheckbox: NSButton!\n    @IBOutlet weak var hapticFeedbackCheckbox: NSButton!\n    @IBOutlet weak var missionControlDraggingCheckbox: NSButton!\n\n    @IBOutlet weak var topLeftLandscapeSelect: NSPopUpButton!\n    @IBOutlet weak var topLandscapeSelect: NSPopUpButton!\n    @IBOutlet weak var topRightLandscapeSelect: NSPopUpButton!\n    @IBOutlet weak var leftLandscapeSelect: NSPopUpButton!\n    @IBOutlet weak var rightLandscapeSelect: NSPopUpButton!\n    @IBOutlet weak var bottomLeftLandscapeSelect: NSPopUpButton!\n    @IBOutlet weak var bottomLandscapeSelect: NSPopUpButton!\n    @IBOutlet weak var bottomRightLandscapeSelect: NSPopUpButton!\n    \n    @IBOutlet weak var portraitStackView: NSStackView!\n    \n    @IBOutlet weak var topLeftPortraitSelect: NSPopUpButton!\n    @IBOutlet weak var topPortraitSelect: NSPopUpButton!\n    @IBOutlet weak var topRightPortraitSelect: NSPopUpButton!\n    @IBOutlet weak var leftPortraitSelect: NSPopUpButton!\n    @IBOutlet weak var rightPortraitSelect: NSPopUpButton!\n    @IBOutlet weak var bottomLeftPortraitSelect: NSPopUpButton!\n    @IBOutlet weak var bottomPortraitSelect: NSPopUpButton!\n    @IBOutlet weak var bottomRightPortraitSelect: NSPopUpButton!\n    \n    @IBAction func toggleWindowSnapping(_ sender: NSButton) {\n        let newSetting: Bool = sender.state == .on\n        Defaults.windowSnapping.enabled = newSetting\n        Notification.Name.windowSnapping.post(object: newSetting)\n        if newSetting {\n            MacTilingDefaults.checkForBuiltInTiling(skipIfAlreadyNotified: false)\n        }\n    }\n    \n    @IBAction func toggleUnsnapRestore(_ sender: NSButton) {\n        let newSetting: Bool = sender.state == .on\n        Defaults.unsnapRestore.enabled = newSetting\n    }\n    \n    @IBAction func toggleAnimateFootprint(_ sender: NSButton) {\n        let newSetting: Float = sender.state == .on ? 0.75 : 0\n        Defaults.footprintAnimationDurationMultiplier.value = newSetting\n    }\n    \n    @IBAction func toggleHapticFeedback(_ sender: NSButton) {\n        let newSetting: Bool = sender.state == .on\n        Defaults.hapticFeedbackOnSnap.enabled = newSetting\n    }\n    \n    @IBAction func toggleMissionControlDragging(_ sender: NSButton) {\n        let newSetting: Bool = sender.state == .off\n        Defaults.missionControlDragging.enabled = newSetting\n        Notification.Name.missionControlDragging.post(object: newSetting)\n    }\n    \n    @IBAction func setLandscapeSnapArea(_ sender: NSPopUpButton) {\n        setSnapArea(sender: sender, type: .landscape)\n    }\n\n    @IBAction func setPortraitSnapArea(_ sender: NSPopUpButton) {\n        setSnapArea(sender: sender, type: .portrait)\n    }\n    \n    private func setSnapArea(sender: NSPopUpButton, type: DisplayOrientation) {\n        guard let directional = Directional(rawValue: sender.tag) else { return }\n        let selectedTag = sender.selectedTag()\n        var snapAreaConfig: SnapAreaConfig?\n        if selectedTag < -1, let compound = CompoundSnapArea(rawValue: selectedTag) {\n           snapAreaConfig = SnapAreaConfig(compound: compound)\n        } else if selectedTag > -1, let action = WindowAction(rawValue: selectedTag) {\n            snapAreaConfig = SnapAreaConfig(action: action)\n        }\n        SnapAreaModel.instance.setConfig(type: type, directional: directional, snapAreaConfig: snapAreaConfig)\n    }\n    \n    override func viewDidLoad() {\n        windowSnappingCheckbox.state = Defaults.windowSnapping.userDisabled ? .off : .on\n        unsnapRestoreButton.state = Defaults.unsnapRestore.userDisabled ? .off : .on\n        animateFootprintCheckbox.state = Defaults.footprintAnimationDurationMultiplier.value > 0 ? .on : .off\n        hapticFeedbackCheckbox.state = Defaults.hapticFeedbackOnSnap.userEnabled ? .on : .off\n        missionControlDraggingCheckbox.state = Defaults.missionControlDragging.userDisabled ? .on : .off\n        missionControlDraggingCheckbox.isHidden = !Defaults.missionControlDragging.userDisabled\n        loadSnapAreas()\n        showHidePortrait()\n        \n        Notification.Name.configImported.onPost(using: { [weak self] _ in\n            self?.loadSnapAreas()\n        })\n        Notification.Name.defaultSnapAreas.onPost(using: { [weak self] _ in\n            self?.loadSnapAreas()\n        })\n        Notification.Name.appWillBecomeActive.onPost() { [weak self] _ in\n            self?.showHidePortrait()\n        }\n        Notification.Name.windowSnapping.onPost { [weak self] _ in\n            self?.windowSnappingCheckbox.state = Defaults.windowSnapping.userDisabled ? .off : .on\n        }\n        NotificationCenter.default.addObserver(forName: NSApplication.didChangeScreenParametersNotification, object: nil, queue: nil) { [weak self] _ in\n            self?.showHidePortrait()\n        }\n    }\n    \n    func showHidePortrait() {\n        portraitStackView.isHidden = !NSScreen.portraitDisplayConnected\n    }\n    \n    func loadSnapAreas() {\n\n        let landscapeSelects: [NSPopUpButton] = [\n            topLeftLandscapeSelect,\n            topLandscapeSelect,\n            topRightLandscapeSelect,\n            leftLandscapeSelect,\n            rightLandscapeSelect,\n            bottomLeftLandscapeSelect,\n            bottomLandscapeSelect,\n            bottomRightLandscapeSelect\n        ]\n\n        let portraitSelects: [NSPopUpButton] = [\n            topLeftPortraitSelect,\n            topPortraitSelect,\n            topRightPortraitSelect,\n            leftPortraitSelect,\n            rightPortraitSelect,\n            bottomLeftPortraitSelect,\n            bottomPortraitSelect,\n            bottomRightPortraitSelect\n        ]\n        \n        landscapeSelects.forEach { configure(select: $0, orientation: .landscape)}\n        portraitSelects.forEach { configure(select: $0, orientation: .portrait)}\n    }\n    \n    private func configure(select: NSPopUpButton, orientation: DisplayOrientation) {\n        guard let directional = Directional(rawValue: select.tag) else { return }\n        let snapAreaConfig = orientation == .landscape\n            ? SnapAreaModel.instance.landscape[directional]\n            : SnapAreaModel.instance.portrait[directional]\n        \n        select.removeAllItems()\n        select.addItem(withTitle: \"-\")\n        select.menu?.items.first?.tag = -1\n\n        let selectedTag = snapAreaConfig?.action?.rawValue ?? snapAreaConfig?.compound?.rawValue ?? -1\n\n        for compoundSnapArea in CompoundSnapArea.all {\n            guard compoundSnapArea.compatibleOrientation.contains(orientation), compoundSnapArea.compatibleDirectionals.contains(directional) else { continue }\n            \n            let item = NSMenuItem(title: compoundSnapArea.displayName, action: nil, keyEquivalent: \"\")\n            item.tag = compoundSnapArea.rawValue\n            select.menu?.addItem(item)\n            if selectedTag == item.tag {\n                select.select(item)\n            }\n        }\n        select.menu?.addItem(NSMenuItem.separator())\n        for windowAction in WindowAction.active {\n            if windowAction.isDragSnappable,\n                let name = windowAction.displayName {\n                let item = NSMenuItem(title: name, action: nil, keyEquivalent: \"\")\n                item.tag = windowAction.rawValue\n                item.image = windowAction.image.copy() as? NSImage\n                item.image?.size.height = 12\n                item.image?.size.width = 18\n                select.menu?.addItem(item)\n                if selectedTag == item.tag {\n                    select.select(item)\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "Rectangle/Rectangle-Bridging-Header.h",
    "content": "//\n//  Use this file to import your target's public headers that you would like to expose to Swift.\n//\n\n#import <AppKit/AppKit.h>\n\nAXError _AXUIElementGetWindow(AXUIElementRef element, uint32_t *identifier);\n"
  },
  {
    "path": "Rectangle/Rectangle.entitlements",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict/>\n</plist>\n"
  },
  {
    "path": "Rectangle/RectangleRelease.entitlements",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict/>\n</plist>\n"
  },
  {
    "path": "Rectangle/RectangleStatusItem.swift",
    "content": "//\n//  RectangleStatusItem.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 6/11/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Cocoa\n\nclass RectangleStatusItem {\n    static let instance = RectangleStatusItem()\n    \n    private var nsStatusItem: NSStatusItem?\n    private var added: Bool = false\n    public var statusMenu: NSMenu? {\n        didSet {\n            nsStatusItem?.menu = statusMenu\n        }\n    }\n    private var isVisibleObserver: NSKeyValueObservation?\n    \n    private init() {}\n    \n    public func refreshVisibility() {\n        if Defaults.hideMenuBarIcon.enabled {\n            remove()\n        } else {\n            add()\n        }\n    }\n    \n    public func openMenu() {\n        if !added {\n            add()\n        }\n        nsStatusItem?.button?.performClick(self)\n        refreshVisibility()\n    }\n    \n    private func add() {\n        added = true\n        nsStatusItem = NSStatusBar.system.statusItem(withLength: NSStatusItem.variableLength)\n        nsStatusItem?.menu = self.statusMenu\n        nsStatusItem?.button?.image = NSImage(named: \"StatusTemplate\")\n        nsStatusItem?.behavior = .removalAllowed\n        isVisibleObserver = nsStatusItem?.observe(\\.isVisible, options: [.old, .new]) { nsStatusItem, change in\n            if change.oldValue == true && change.newValue == false {\n                Notification.Name.menuBarIconHidden.post()\n                Defaults.hideMenuBarIcon.enabled = true\n            }\n        }\n        nsStatusItem?.isVisible = true\n    }\n    \n    private func remove() {\n        added = false\n        guard let nsStatusItem = nsStatusItem else { return }\n        NSStatusBar.system.removeStatusItem(nsStatusItem)\n    }\n    \n}\n"
  },
  {
    "path": "Rectangle/ScreenDetection.swift",
    "content": "//\n//  ScreenDetection.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 6/12/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Cocoa\n\nclass ScreenDetection {\n\n    func detectScreens(using frontmostWindowElement: AccessibilityElement?) -> UsableScreens? {\n        let screens = NSScreen.screens\n        guard let firstScreen = screens.first else { return nil }\n        \n        if screens.count == 1 {\n            let adjacentScreens = Defaults.traverseSingleScreen.enabled == true\n            ? AdjacentScreens(prev: firstScreen, next: firstScreen)\n            : nil\n            \n            return UsableScreens(currentScreen: firstScreen, adjacentScreens: adjacentScreens, numScreens: screens.count, screensOrdered: [firstScreen])\n        }\n        \n        let screensOrdered = order(screens: screens)\n        guard let sourceScreen: NSScreen = screenContaining(frontmostWindowElement?.frame ?? CGRect.zero, screens: screensOrdered) else {\n            let adjacentScreens = AdjacentScreens(prev: firstScreen, next: firstScreen)\n            return UsableScreens(currentScreen: firstScreen, adjacentScreens: adjacentScreens, numScreens: screens.count, screensOrdered: screensOrdered)\n        }\n        \n        let adjacentScreens = adjacent(toFrameOfScreen: sourceScreen.frame, screens: screensOrdered)\n        \n        return UsableScreens(currentScreen: sourceScreen, adjacentScreens: adjacentScreens, numScreens: screens.count, screensOrdered: screensOrdered)\n    }\n\n    func detectScreensAtCursor() -> UsableScreens? {\n        let screens = NSScreen.screens\n        if screens.count == 1 {\n            return detectScreens(using: nil)\n        }\n\n        let screensOrdered = order(screens: screens)\n\n        guard let cursorScreen = screens.first(where: { $0.frame.contains(NSEvent.mouseLocation)})\n        else {\n            return detectScreens(using: nil)\n        }\n\n        let adjacentScreens = adjacent(toFrameOfScreen: cursorScreen.frame, screens: screensOrdered)\n\n        return UsableScreens(currentScreen: cursorScreen, adjacentScreens: adjacentScreens, numScreens: screens.count, screensOrdered: screensOrdered)\n    }\n\n    func screenContaining(_ rect: CGRect, screens: [NSScreen]) -> NSScreen? {\n        var result: NSScreen? = NSScreen.main\n        var largestPercentageOfRectWithinFrameOfScreen: CGFloat = 0.0\n        for currentScreen in screens {\n            let currentFrameOfScreen = NSRectToCGRect(currentScreen.frame)\n            let normalizedRect: CGRect = rect.screenFlipped\n            if currentFrameOfScreen.contains(normalizedRect) {\n                result = currentScreen\n                break\n            }\n            let percentageOfRectWithinCurrentFrameOfScreen: CGFloat = percentageOf(normalizedRect, withinFrameOfScreen: currentFrameOfScreen)\n            if percentageOfRectWithinCurrentFrameOfScreen > largestPercentageOfRectWithinFrameOfScreen {\n                largestPercentageOfRectWithinFrameOfScreen = percentageOfRectWithinCurrentFrameOfScreen\n                result = currentScreen\n            }\n        }\n        return result\n    }\n\n    func percentageOf(_ rect: CGRect, withinFrameOfScreen frameOfScreen: CGRect) -> CGFloat {\n        let intersectionOfRectAndFrameOfScreen: CGRect = rect.intersection(frameOfScreen)\n        var result: CGFloat = 0.0\n        if !intersectionOfRectAndFrameOfScreen.isNull {\n            result = computeAreaOfRect(rect: intersectionOfRectAndFrameOfScreen) / computeAreaOfRect(rect: rect)\n        }\n        return result\n    }\n    \n    func adjacent(toFrameOfScreen frameOfScreen: CGRect, screens: [NSScreen]) -> AdjacentScreens? {\n        if screens.count == 2 {\n            let otherScreen = screens.first(where: { screen in\n                let frame = NSRectToCGRect(screen.frame)\n                return !frame.equalTo(frameOfScreen)\n            })\n            if let otherScreen = otherScreen {\n                return AdjacentScreens(prev: otherScreen, next: otherScreen)\n            }\n        } else if screens.count > 2 {\n            let currentScreenIndex = screens.firstIndex(where: { screen in\n                let frame = NSRectToCGRect(screen.frame)\n                return frame.equalTo(frameOfScreen)\n            })\n            if let currentScreenIndex = currentScreenIndex {\n                let nextIndex = currentScreenIndex == screens.count - 1\n                    ? 0\n                    : currentScreenIndex + 1\n                let prevIndex = currentScreenIndex == 0\n                    ? screens.count - 1\n                    : currentScreenIndex - 1\n                return AdjacentScreens(prev: screens[prevIndex], next: screens[nextIndex])\n            }\n        }\n        \n        return nil\n    }\n\n    func order(screens: [NSScreen]) -> [NSScreen] {\n        if Defaults.screensOrderedByX.userEnabled {\n            let screensOrderedByX = screens.sorted(by: { screen1, screen2 in\n                return screen1.frame.origin.x < screen2.frame.origin.x\n            })\n            return screensOrderedByX\n        }\n        \n        let sortedScreens = screens.sorted(by: { screen1, screen2 in\n            if screen2.frame.maxY <= screen1.frame.minY {\n                return true\n            }\n            if screen1.frame.maxY <= screen2.frame.minY {\n                return false\n            }\n            return screen1.frame.minX < screen2.frame.minX\n        })\n        return sortedScreens\n    }\n    \n    private func computeAreaOfRect(rect: CGRect) -> CGFloat {\n        return rect.size.width * rect.size.height\n    }\n\n}\n\nstruct UsableScreens {\n    let currentScreen: NSScreen\n    let adjacentScreens: AdjacentScreens?\n    let frameOfCurrentScreen: CGRect\n    let numScreens: Int\n    let screensOrdered: [NSScreen]\n\n    init(currentScreen: NSScreen, adjacentScreens: AdjacentScreens? = nil, numScreens: Int, screensOrdered: [NSScreen]? = nil) {\n        self.currentScreen = currentScreen\n        self.adjacentScreens = adjacentScreens\n        self.frameOfCurrentScreen = currentScreen.frame\n        self.numScreens = numScreens\n        self.screensOrdered = screensOrdered ?? [currentScreen]\n    }\n}\n\nstruct AdjacentScreens {\n    let prev: NSScreen\n    let next: NSScreen\n}\n\nextension NSScreen {\n\n    func adjustedVisibleFrame(_ ignoreTodo: Bool = false, _ ignoreStage: Bool = false) -> CGRect {\n        var newFrame = visibleFrame\n        \n        if !ignoreStage && Defaults.stageSize.value > 0 {\n            if StageUtil.stageCapable && StageUtil.stageEnabled && StageUtil.stageStripShow && StageUtil.isStageStripVisible(self) {\n                let stageSize = Defaults.stageSize.value < 1\n                    ? newFrame.size.width * Defaults.stageSize.cgFloat\n                    : Defaults.stageSize.cgFloat\n                \n                if StageUtil.stageStripPosition == .left {\n                    newFrame.origin.x += stageSize\n                }\n                newFrame.size.width -= stageSize\n            }\n        }\n        \n        if !ignoreTodo, Defaults.todo.userEnabled, Defaults.todoMode.enabled, TodoManager.todoScreen == self, TodoManager.hasTodoWindow() {\n            let sidebarWidth = TodoManager.getSidebarWidth(visibleFrameWidth: visibleFrame.width)\n            newFrame.size.width -= sidebarWidth\n            if Defaults.todoSidebarSide.value == .left {\n                newFrame.origin.x += sidebarWidth\n            }\n        }\n\n        if Defaults.screenEdgeGapsOnMainScreenOnly.enabled, self != NSScreen.screens.first {\n            return newFrame\n        }\n\n        newFrame.origin.x += Defaults.screenEdgeGapLeft.cgFloat\n        newFrame.origin.y += Defaults.screenEdgeGapBottom.cgFloat\n        newFrame.size.width -= (Defaults.screenEdgeGapLeft.cgFloat + Defaults.screenEdgeGapRight.cgFloat)\n        \n        if #available(macOS 12.0, *), self.safeAreaInsets.top != 0, Defaults.screenEdgeGapTopNotch.value != 0 {\n            newFrame.size.height -= (Defaults.screenEdgeGapTopNotch.cgFloat + Defaults.screenEdgeGapBottom.cgFloat)\n        } else {\n            newFrame.size.height -= (Defaults.screenEdgeGapTop.cgFloat + Defaults.screenEdgeGapBottom.cgFloat)\n        }\n        \n        return newFrame\n    }\n\n    static var portraitDisplayConnected: Bool {\n        NSScreen.screens.contains(where: {!$0.frame.isLandscape})\n    }\n}\n\n"
  },
  {
    "path": "Rectangle/ShortcutManager.swift",
    "content": "//\n//  ShortcutManager.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 6/12/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\nimport MASShortcut\n\nclass ShortcutManager {\n    \n    let windowManager: WindowManager\n    \n    init(windowManager: WindowManager) {\n        self.windowManager = windowManager\n        \n        MASShortcutBinder.shared()?.bindingOptions = [NSBindingOption.valueTransformerName: MASDictionaryTransformerName]\n        \n        registerDefaults()\n\n        bindShortcuts()\n        \n        subscribeAll(selector: #selector(windowActionTriggered))\n        \n        Notification.Name.changeDefaults.onPost { _ in self.registerDefaults() }\n    }\n    \n    public func reloadFromDefaults() {\n        unsubscribe()\n        unbindShortcuts()\n        registerDefaults()\n        bindShortcuts()\n        subscribeAll(selector: #selector(windowActionTriggered))\n    }\n    \n    public func bindShortcuts() {\n        for action in WindowAction.active {\n            MASShortcutBinder.shared()?.bindShortcut(withDefaultsKey: action.name, toAction: action.post)\n        }\n    }\n    \n    public func unbindShortcuts() {\n        for action in WindowAction.active {\n            MASShortcutBinder.shared()?.breakBinding(withDefaultsKey: action.name)\n        }\n    }\n    \n    public func getKeyEquivalent(action: WindowAction) -> (String?, NSEvent.ModifierFlags)? {\n        guard let masShortcut = MASShortcutBinder.shared()?.value(forKey: action.name) as? MASShortcut else { return nil }\n        return (masShortcut.keyCodeStringForKeyEquivalent, masShortcut.modifierFlags)\n    }\n    \n    deinit {\n        unsubscribe()\n    }\n    \n    private func registerDefaults() {\n        \n        let defaultShortcuts = WindowAction.active.reduce(into: [String: MASShortcut]()) { dict, windowAction in\n            guard let defaultShortcut = Defaults.alternateDefaultShortcuts.enabled\n                ? windowAction.alternateDefault\n                : windowAction.spectacleDefault\n            else { return }\n            let shortcut = MASShortcut(keyCode: defaultShortcut.keyCode, modifierFlags: NSEvent.ModifierFlags(rawValue: defaultShortcut.modifierFlags))\n            dict[windowAction.name] = shortcut\n        }\n        \n        MASShortcutBinder.shared()?.registerDefaultShortcuts(defaultShortcuts)\n    }\n    \n    @objc func windowActionTriggered(notification: NSNotification) {\n        guard var parameters = notification.object as? ExecutionParameters else { return }\n        \n        if MultiWindowManager.execute(parameters: parameters) {\n            return\n        }\n        \n        if TodoManager.execute(parameters: parameters) {\n            return\n        }\n        \n        // Check if repeat cycles displays\n        if Defaults.subsequentExecutionMode.value == .cycleMonitor,\n           parameters.action.classification != .size,\n           parameters.action.classification != .display {\n            guard let windowElement = parameters.windowElement ?? AccessibilityElement.getFrontWindowElement(),\n                  let windowId = parameters.windowId ?? windowElement.getWindowId()\n            else {\n                NSSound.beep()\n                return\n            }\n            \n            if isRepeatAction(parameters: parameters, windowElement: windowElement, windowId: windowId) {\n                if let screen = ScreenDetection().detectScreens(using: windowElement)?.adjacentScreens?.next{\n                    parameters = ExecutionParameters(parameters.action, updateRestoreRect: parameters.updateRestoreRect, screen: screen, windowElement: windowElement, windowId: windowId)\n                    // Bypass any other subsequent action by removing the last action\n                    AppDelegate.windowHistory.lastRectangleActions.removeValue(forKey: windowId)\n                }\n            }\n        }\n        \n        windowManager.execute(parameters)\n    }\n    \n    private func isRepeatAction(parameters: ExecutionParameters, windowElement: AccessibilityElement, windowId: CGWindowID) -> Bool {\n        \n        if parameters.action == .maximize {\n            if ScreenDetection().detectScreens(using: windowElement)?.currentScreen.visibleFrame.size == windowElement.frame.size {\n                return true\n            }\n        }\n        if parameters.action == AppDelegate.windowHistory.lastRectangleActions[windowId]?.action {\n            return true\n        }\n        return false\n    }\n    \n    private func subscribe(notification: WindowAction, selector: Selector) {\n        NotificationCenter.default.addObserver(self, selector: selector, name: notification.notificationName, object: nil)\n    }\n    \n    private func unsubscribe() {\n        NotificationCenter.default.removeObserver(self)\n    }\n    \n    private func subscribeAll(selector: Selector) {\n        for windowAction in WindowAction.active {\n            subscribe(notification: windowAction, selector: selector)\n        }\n    }\n}\n"
  },
  {
    "path": "Rectangle/Snapping/CompoundSnapArea/CompoundSnapArea.swift",
    "content": "//\n//  CompoundSnapArea.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 8/23/22.\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nenum CompoundSnapArea: Int, Codable {\n    \n    case leftTopBottomHalf = -2, rightTopBottomHalf = -3, thirds = -4, portraitThirdsSide = -5, halves = -6, topSixths = -7, bottomSixths = -8, fourths = -9, portraitTopBottomHalves = -10, topEighths = -11, bottomEighths = -12\n\n    static let all = [leftTopBottomHalf, rightTopBottomHalf, thirds, portraitThirdsSide, halves, topSixths, bottomSixths, fourths, portraitTopBottomHalves, topEighths, bottomEighths]\n    \n    static let leftCompoundCalculation = LeftTopBottomHalfCalculation()\n    static let rightCompoundCalculation = RightTopBottomHalfCalculation()\n    static let thirdsCompoundCalculation = ThirdsCompoundCalculation()\n    static let portraitSideThirdsCalculation = PortraitSideThirdsCompoundCalculation()\n    static let leftRightHalvesCalculation = LeftRightHalvesCompoundCalculation()\n    static let topSixthsCalculation = TopSixthsCompoundCalculation()\n    static let bottomSixthsCalculation = BottomSixthsCompoundCalculation()\n    static let fourthsColumnCalculation = FourthsColumnCompoundCalculation()\n    static let portraitTopBottomCalculation = TopBottomHalvesCalculation()\n    static let topEighthsCalculation = TopEighthsCompoundCalculation()\n    static let bottomEighthsCalculation = BottomEighthsCompoundCalculation()\n\n    var displayName: String {\n        switch self {\n        case .leftTopBottomHalf:\n            return NSLocalizedString(\"Left half, top/bottom half near corners\", tableName: \"Main\", value: \"\", comment: \"\")\n        case .rightTopBottomHalf:\n            return NSLocalizedString(\"Right half, top/bottom half near corners\", tableName: \"Main\", value: \"\", comment: \"\")\n        case .thirds:\n            return NSLocalizedString(\"Thirds, drag toward center for two thirds\", tableName: \"Main\", value: \"\", comment: \"\")\n        case .portraitThirdsSide:\n            return NSLocalizedString(\"Thirds, top/bottom half near corners\", tableName: \"Main\", value: \"\", comment: \"\")\n        case .halves:\n            return NSLocalizedString(\"Left or right half\", tableName: \"Main\", value: \"\", comment: \"\")\n        case .topSixths:\n            return NSLocalizedString(\"Top sixths from corners; maximize\", tableName: \"Main\", value: \"\", comment: \"\")\n        case .bottomSixths:\n            return NSLocalizedString(\"Bottom sixths from corners; thirds\", tableName: \"Main\", value: \"\", comment: \"\")\n        case .fourths:\n            return NSLocalizedString(\"Fourths columns\", tableName: \"Main\", value: \"\", comment: \"\")\n        case .portraitTopBottomHalves:\n            return NSLocalizedString(\"Top/bottom halves\", tableName: \"Main\", value: \"\", comment: \"\")\n        case .topEighths:\n            return NSLocalizedString(\"Top eighths from corners; maximize\", tableName: \"Main\", value: \"\", comment: \"\")\n        case .bottomEighths:\n            return NSLocalizedString(\"Bottom eighths from corners; thirds\", tableName: \"Main\", value: \"\", comment: \"\")\n        }\n    }\n    \n    var calculation: CompoundSnapAreaCalculation {\n        switch self {\n        case .leftTopBottomHalf:\n            return Self.leftCompoundCalculation\n        case .rightTopBottomHalf:\n            return Self.rightCompoundCalculation\n        case .thirds:\n            return Self.thirdsCompoundCalculation\n        case .portraitThirdsSide:\n            return Self.portraitSideThirdsCalculation\n        case .halves:\n            return Self.leftRightHalvesCalculation\n        case .topSixths:\n            return Self.topSixthsCalculation\n        case .bottomSixths:\n            return Self.bottomSixthsCalculation\n        case .fourths:\n            return Self.fourthsColumnCalculation\n        case .portraitTopBottomHalves:\n            return Self.portraitTopBottomCalculation\n        case .topEighths:\n            return Self.topEighthsCalculation\n        case .bottomEighths:\n            return Self.bottomEighthsCalculation\n        }\n    }\n    \n    var compatibleDirectionals: [Directional] {\n        switch self {\n        case .leftTopBottomHalf:\n            return [.l]\n        case .rightTopBottomHalf:\n            return [.r]\n        case .thirds:\n            return [.t, .b]\n        case .portraitThirdsSide:\n            return [.l, .r]\n        case .halves:\n            return [.t, .b]\n        case .topSixths:\n            return [.t]\n        case .bottomSixths:\n            return [.b]\n        case .fourths:\n            return [.t, .b]\n        case .portraitTopBottomHalves:\n            return [.l, .r]\n        case .topEighths:\n            return [.t]\n        case .bottomEighths:\n            return [.b]\n        }\n    }\n    \n    var compatibleOrientation: [DisplayOrientation] {\n        switch self {\n        case .leftTopBottomHalf, .rightTopBottomHalf, .halves:\n            return [.portrait, .landscape]\n        case .portraitThirdsSide, .portraitTopBottomHalves:\n            return [.portrait]\n        case .thirds, .topSixths, .bottomSixths, .fourths, .topEighths, .bottomEighths:\n            return [.landscape]\n        }\n    }\n}\n\nprotocol CompoundSnapAreaCalculation {\n    func snapArea(cursorLocation: NSPoint, screen: NSScreen, directional: Directional, priorSnapArea: SnapArea?) -> SnapArea?\n}\n"
  },
  {
    "path": "Rectangle/Snapping/CompoundSnapArea/EighthsCompoundCalculation.swift",
    "content": "//\n//  EighthsCompoundCalculation.swift\n//  Rectangle\n//\n//  Copyright © 2024 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nstruct TopEighthsCompoundCalculation: CompoundSnapAreaCalculation {\n\n    func snapArea(cursorLocation loc: NSPoint, screen: NSScreen, directional: Directional, priorSnapArea: SnapArea?) -> SnapArea? {\n        guard let priorAction = priorSnapArea?.action\n        else { return SnapArea(screen: screen, directional: directional, action: .maximize) }\n\n        let frame = screen.frame\n        let quarterWidth = floor(frame.width / 4)\n        if loc.x <= frame.minX + quarterWidth {\n            if priorAction == .topLeft || priorAction == .topLeftEighth || priorAction == .topCenterLeftEighth {\n                return SnapArea(screen: screen, directional: directional, action: .topLeftEighth)\n            }\n        }\n        if loc.x >= frame.minX + quarterWidth, loc.x <= frame.midX {\n            if priorAction == .topLeftEighth || priorAction == .topCenterLeftEighth || priorAction == .topCenterRightEighth {\n                return SnapArea(screen: screen, directional: directional, action: .topCenterLeftEighth)\n            }\n        }\n        if loc.x >= frame.midX, loc.x <= frame.maxX - quarterWidth {\n            if priorAction == .topCenterLeftEighth || priorAction == .topCenterRightEighth || priorAction == .topRightEighth {\n                return SnapArea(screen: screen, directional: directional, action: .topCenterRightEighth)\n            }\n        }\n        if loc.x >= frame.maxX - quarterWidth {\n            if priorAction == .topRight || priorAction == .topRightEighth || priorAction == .topCenterRightEighth {\n                return SnapArea(screen: screen, directional: directional, action: .topRightEighth)\n            }\n        }\n        if priorAction == .topLeftEighth || priorAction == .topCenterLeftEighth || priorAction == .topCenterRightEighth || priorAction == .topRightEighth {\n            return SnapArea(screen: screen, directional: directional, action: .maximize)\n        }\n        return SnapArea(screen: screen, directional: directional, action: .maximize)\n    }\n}\n\nstruct BottomEighthsCompoundCalculation: CompoundSnapAreaCalculation {\n\n    func snapArea(cursorLocation loc: NSPoint, screen: NSScreen, directional: Directional, priorSnapArea: SnapArea?) -> SnapArea? {\n        guard let priorAction = priorSnapArea?.action else {\n            return CompoundSnapArea.thirdsCompoundCalculation.snapArea(cursorLocation: loc, screen: screen, directional: directional, priorSnapArea: priorSnapArea)\n        }\n\n        let frame = screen.frame\n        let quarterWidth = floor(frame.width / 4)\n        if loc.x <= frame.minX + quarterWidth {\n            if priorAction == .bottomLeft || priorAction == .bottomLeftEighth || priorAction == .bottomCenterLeftEighth {\n                return SnapArea(screen: screen, directional: directional, action: .bottomLeftEighth)\n            }\n        }\n        if loc.x >= frame.minX + quarterWidth, loc.x <= frame.midX {\n            if priorAction == .bottomLeftEighth || priorAction == .bottomCenterLeftEighth || priorAction == .bottomCenterRightEighth {\n                return SnapArea(screen: screen, directional: directional, action: .bottomCenterLeftEighth)\n            }\n        }\n        if loc.x >= frame.midX, loc.x <= frame.maxX - quarterWidth {\n            if priorAction == .bottomCenterLeftEighth || priorAction == .bottomCenterRightEighth || priorAction == .bottomRightEighth {\n                return SnapArea(screen: screen, directional: directional, action: .bottomCenterRightEighth)\n            }\n        }\n        if loc.x >= frame.maxX - quarterWidth {\n            if priorAction == .bottomRight || priorAction == .bottomRightEighth || priorAction == .bottomCenterRightEighth {\n                return SnapArea(screen: screen, directional: directional, action: .bottomRightEighth)\n            }\n        }\n        return CompoundSnapArea.thirdsCompoundCalculation.snapArea(cursorLocation: loc, screen: screen, directional: directional, priorSnapArea: priorSnapArea)\n    }\n}\n"
  },
  {
    "path": "Rectangle/Snapping/CompoundSnapArea/FourthsCompoundCalculation.swift",
    "content": "//\n//  FourthsCompoundCalculation.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 8/24/22.\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nstruct FourthsColumnCompoundCalculation: CompoundSnapAreaCalculation {\n    \n    func snapArea(cursorLocation loc: NSPoint, screen: NSScreen, directional: Directional, priorSnapArea: SnapArea?) -> SnapArea? {\n        let frame = screen.frame\n        let quarterWidth = floor(frame.width / 4)\n        \n        // check first quarter column\n        if loc.x <= frame.minX + quarterWidth {\n            return SnapArea(screen: screen, directional: directional, action: .firstFourth)\n        }\n        \n        // check second quarter column\n        if loc.x >= frame.minX + quarterWidth && loc.x <= frame.maxX - quarterWidth*2 {\n            if let priorAction = priorSnapArea?.action {\n                if priorAction == .firstFourth || priorAction == .firstThreeFourths {\n                    return SnapArea(screen: screen, directional: directional, action: .firstThreeFourths)\n                }\n                if priorAction == .thirdFourth || priorAction == .lastThreeFourths || priorAction == .centerHalf {\n                    return SnapArea(screen: screen, directional: directional, action: .centerHalf)\n                }\n            }\n            return SnapArea(screen: screen, directional: directional, action: .secondFourth)\n        }\n        \n        // check third quarter column\n        if loc.x >= frame.minX + quarterWidth * 2 && loc.x <= frame.maxX - quarterWidth {\n            if let priorAction = priorSnapArea?.action {\n                if priorAction == .lastFourth || priorAction == .lastThreeFourths {\n                    return SnapArea(screen: screen, directional: directional, action: .lastThreeFourths)\n                }\n                if priorAction == .secondFourth || priorAction == .firstThreeFourths || priorAction == .centerHalf {\n                    return SnapArea(screen: screen, directional: directional, action: .centerHalf)\n                }\n            }\n            return SnapArea(screen: screen, directional: directional, action: .thirdFourth)\n        }\n        \n        // check fourth quarter column\n        if loc.x >= frame.minX + quarterWidth * 2 {\n            return SnapArea(screen: screen, directional: directional, action: .lastFourth)\n        }\n        \n        return nil\n    }\n}\n"
  },
  {
    "path": "Rectangle/Snapping/CompoundSnapArea/HalvesCompoundCalculation.swift",
    "content": "//\n//  HalvesCompoundCalculation.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 8/23/22.\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nstruct LeftTopBottomHalfCalculation: CompoundSnapAreaCalculation {\n    \n    private let marginTop = Defaults.snapEdgeMarginTop.cgFloat\n    private let marginBottom = Defaults.snapEdgeMarginBottom.cgFloat\n    \n    private let ignoredSnapAreas = SnapAreaOption(rawValue: Defaults.ignoredSnapAreas.value)\n    \n    func snapArea(cursorLocation loc: NSPoint, screen: NSScreen, directional: Directional, priorSnapArea: SnapArea?) -> SnapArea? {\n        let frame = screen.frame\n        let shortEdgeSize = CGFloat(Defaults.shortEdgeSnapAreaSize.value)\n\n        if loc.y <= frame.minY + marginBottom + shortEdgeSize {\n            if !ignoredSnapAreas.contains(.bottomLeftShort) {\n                return SnapArea(screen: screen, directional: directional, action: .bottomHalf)\n            }\n        }\n        if loc.y >= frame.maxY - marginTop - shortEdgeSize {\n            if !ignoredSnapAreas.contains(.topLeftShort) {\n                return SnapArea(screen: screen, directional: directional, action: .topHalf)\n            }\n        }\n        return SnapArea(screen: screen, directional: directional, action: .leftHalf)\n    }\n    \n}\n\nstruct RightTopBottomHalfCalculation: CompoundSnapAreaCalculation {\n    \n    private let marginTop = Defaults.snapEdgeMarginTop.cgFloat\n    private let marginBottom = Defaults.snapEdgeMarginBottom.cgFloat\n    \n    private let ignoredSnapAreas = SnapAreaOption(rawValue: Defaults.ignoredSnapAreas.value)\n    \n    func snapArea(cursorLocation loc: NSPoint, screen: NSScreen, directional: Directional, priorSnapArea: SnapArea?) -> SnapArea? {\n        let frame = screen.frame\n        let shortEdgeSize = CGFloat(Defaults.shortEdgeSnapAreaSize.value)\n\n        if loc.y <= frame.minY + marginBottom + shortEdgeSize {\n            if !ignoredSnapAreas.contains(.bottomRightShort) {\n                return SnapArea(screen: screen, directional: directional, action: .bottomHalf)\n            }\n        }\n        if loc.y >= frame.maxY - marginTop - shortEdgeSize {\n            if !ignoredSnapAreas.contains(.topRightShort) {\n                return SnapArea(screen: screen, directional: directional, action: .topHalf)\n            }\n        }\n        return SnapArea(screen: screen, directional: directional, action: .rightHalf)\n    }\n    \n}\n\nstruct LeftRightHalvesCompoundCalculation: CompoundSnapAreaCalculation {\n    \n    func snapArea(cursorLocation loc: NSPoint, screen: NSScreen, directional: Directional, priorSnapArea: SnapArea?) -> SnapArea? {\n        return loc.x < screen.frame.maxX - (screen.frame.width / 2)\n            ? SnapArea(screen: screen, directional: directional, action: .leftHalf)\n            : SnapArea(screen: screen, directional: directional, action: .rightHalf)\n    }\n    \n}\n\nstruct TopBottomHalvesCalculation: CompoundSnapAreaCalculation {\n    private let marginTop = Defaults.snapEdgeMarginTop.cgFloat\n    private let marginBottom = Defaults.snapEdgeMarginBottom.cgFloat\n    private let ignoredSnapAreas = SnapAreaOption(rawValue: Defaults.ignoredSnapAreas.value)\n    \n    func snapArea(cursorLocation loc: NSPoint, screen: NSScreen, directional: Directional, priorSnapArea: SnapArea?) -> SnapArea? {\n        let frame = screen.frame\n        let halfHeight = floor(frame.height / 2)\n        let shortEdgeSize = Defaults.shortEdgeSnapAreaSize.cgFloat\n        \n        if loc.y <= frame.minY + marginBottom + shortEdgeSize {\n            let snapAreaOption: SnapAreaOption = loc.x < frame.midX ? .bottomLeftShort : .bottomRightShort\n            if !ignoredSnapAreas.contains(snapAreaOption) {\n                return SnapArea(screen: screen, directional: directional, action: .bottomHalf)\n            }\n        }\n        \n        if loc.y >= frame.maxY - marginTop - shortEdgeSize {\n            let snapAreaOption: SnapAreaOption = loc.x < frame.midX ? .topLeftShort : .topRightShort\n            if !ignoredSnapAreas.contains(snapAreaOption) {\n                return SnapArea(screen: screen, directional: directional, action: .topHalf)\n            }\n        }\n        \n        if loc.y >= frame.minY && loc.y <= frame.minY + halfHeight {\n            return SnapArea(screen: screen, directional: directional, action: .bottomHalf)\n        }\n        \n        if loc.y > frame.minY + halfHeight && loc.y <= frame.maxY {\n            return SnapArea(screen: screen, directional: directional, action: .topHalf)\n        }\n        \n        return nil\n    }\n}\n"
  },
  {
    "path": "Rectangle/Snapping/CompoundSnapArea/SixthsCompoundCalculation.swift",
    "content": "//\n//  SixthsCompoundCalculation.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 8/23/22.\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nstruct TopSixthsCompoundCalculation: CompoundSnapAreaCalculation {\n    \n    func snapArea(cursorLocation loc: NSPoint, screen: NSScreen, directional: Directional, priorSnapArea: SnapArea?) -> SnapArea? {\n        guard let priorAction = priorSnapArea?.action\n        else { return SnapArea(screen: screen, directional: directional, action: .maximize) }\n        \n        let frame = screen.frame\n        let thirdWidth = floor(frame.width / 3)\n        if loc.x <= frame.minX + thirdWidth {\n            if priorAction == .topLeft || priorAction == .topLeftSixth || priorAction == .topCenterSixth {\n                return SnapArea(screen: screen, directional: directional, action: .topLeftSixth)\n            }\n        }\n        if loc.x >= frame.maxX - thirdWidth {\n            if priorAction == .topRight || priorAction == .topRightSixth || priorAction == .topCenterSixth {\n                return SnapArea(screen: screen, directional: directional, action: .topRightSixth)\n            }\n        }\n        if priorAction == .topLeftSixth || priorAction == .topRightSixth || priorAction == .topCenterSixth {\n            return SnapArea(screen: screen, directional: directional, action: .topCenterSixth)\n        } else {\n            return SnapArea(screen: screen, directional: directional, action: .maximize)\n        }\n    }\n}\n\nstruct BottomSixthsCompoundCalculation: CompoundSnapAreaCalculation {\n    \n    func snapArea(cursorLocation loc: NSPoint, screen: NSScreen, directional: Directional, priorSnapArea: SnapArea?) -> SnapArea? {\n        guard let priorAction = priorSnapArea?.action else {\n            return CompoundSnapArea.thirdsCompoundCalculation.snapArea(cursorLocation: loc, screen: screen, directional: directional, priorSnapArea: priorSnapArea)\n        }\n\n        let frame = screen.frame\n        let thirdWidth = floor(frame.width / 3)\n        if loc.x <= frame.minX + thirdWidth {\n            if priorAction == .bottomLeft || priorAction == .bottomLeftSixth || priorAction == .bottomCenterSixth {\n                return SnapArea(screen: screen, directional: directional, action: .bottomLeftSixth)\n            }\n        }\n        if loc.x >= frame.minX + thirdWidth, loc.x <= frame.maxX - thirdWidth {\n            if priorAction == .bottomRightSixth || priorAction == .bottomLeftSixth || priorAction == .bottomCenterSixth {\n                return SnapArea(screen: screen, directional: directional, action: .bottomCenterSixth)\n            }\n        }\n        if loc.x >= frame.minX + thirdWidth {\n            if priorAction == .bottomRight || priorAction == .bottomRightSixth || priorAction == .bottomCenterSixth {\n                return SnapArea(screen: screen, directional: directional, action: .bottomRightSixth)\n            }\n        }\n        return CompoundSnapArea.thirdsCompoundCalculation.snapArea(cursorLocation: loc, screen: screen, directional: directional, priorSnapArea: priorSnapArea)\n    }\n    \n}\n"
  },
  {
    "path": "Rectangle/Snapping/CompoundSnapArea/ThirdsCompoundCalculation.swift",
    "content": "//\n//  ThirdsCompoundCalculation.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 8/23/22.\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nstruct ThirdsCompoundCalculation: CompoundSnapAreaCalculation {\n    \n    func snapArea(cursorLocation loc: NSPoint, screen: NSScreen, directional: Directional, priorSnapArea: SnapArea?) -> SnapArea? {\n        let frame = screen.frame\n        let thirdWidth = floor(frame.width / 3)\n        if loc.x <= frame.minX + thirdWidth {\n            return SnapArea(screen: screen, directional: directional, action: .firstThird)\n        }\n        if loc.x >= frame.minX + thirdWidth && loc.x <= frame.maxX - thirdWidth{\n            if let priorAction = priorSnapArea?.action {\n                let action: WindowAction\n                switch priorAction {\n                case .firstThird, .firstTwoThirds:\n                    action = .firstTwoThirds\n                case .lastThird, .lastTwoThirds:\n                    action = .lastTwoThirds\n                default: action = .centerThird\n                }\n                return SnapArea(screen: screen, directional: directional, action: action)\n            }\n            return SnapArea(screen: screen, directional: directional, action: .centerThird)\n        }\n        if loc.x >= frame.minX + thirdWidth {\n            return SnapArea(screen: screen, directional: directional, action: .lastThird)\n        }\n        return nil\n    }\n    \n}\n\nstruct PortraitSideThirdsCompoundCalculation: CompoundSnapAreaCalculation {\n    \n    private let marginTop = Defaults.snapEdgeMarginTop.cgFloat\n    private let marginBottom = Defaults.snapEdgeMarginBottom.cgFloat\n    private let ignoredSnapAreas = SnapAreaOption(rawValue: Defaults.ignoredSnapAreas.value)\n    \n    func snapArea(cursorLocation loc: NSPoint, screen: NSScreen, directional: Directional, priorSnapArea: SnapArea?) -> SnapArea? {\n        let frame = screen.frame\n        let thirdHeight = floor(frame.height / 3)\n        let shortEdgeSize = Defaults.shortEdgeSnapAreaSize.cgFloat\n        \n        if loc.y <= frame.minY + marginBottom + shortEdgeSize {\n            let snapAreaOption: SnapAreaOption = loc.x < frame.midX ? .bottomLeftShort : .bottomRightShort\n            if !ignoredSnapAreas.contains(snapAreaOption) {\n                return SnapArea(screen: screen, directional: directional, action: .bottomHalf)\n            }\n        }\n        if loc.y >= frame.maxY - marginTop - shortEdgeSize {\n            let snapAreaOption: SnapAreaOption = loc.x < frame.midX ? .topLeftShort : .topRightShort\n            if !ignoredSnapAreas.contains(snapAreaOption) {\n                return SnapArea(screen: screen, directional: directional, action: .topHalf)\n            }\n        }\n        \n        if loc.y >= frame.minY && loc.y <= frame.minY + thirdHeight {\n            return SnapArea(screen: screen, directional: directional, action: .lastThird)\n        }\n        if loc.y >= frame.minY + thirdHeight && loc.y <= frame.maxY - thirdHeight {\n            if let priorAction = priorSnapArea?.action {\n                let action: WindowAction\n                switch priorAction {\n                case .firstThird, .firstTwoThirds:\n                    action = .firstTwoThirds\n                case .lastThird, .lastTwoThirds:\n                    action = .lastTwoThirds\n                default: action = .centerThird\n                }\n                return SnapArea(screen: screen, directional: directional, action: action)\n            }\n            return SnapArea(screen: screen, directional: directional, action: .centerThird)\n        }\n        if loc.y >= frame.minY + thirdHeight && loc.y <= frame.maxY {\n            return SnapArea(screen: screen, directional: directional, action: .firstThird)\n        }\n        return nil\n    }\n\n}\n"
  },
  {
    "path": "Rectangle/Snapping/FootprintWindow.swift",
    "content": "//\n//  FootprintWindow.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 10/17/20.\n//  Copyright © 2020 Ryan Hanson. All rights reserved.\n//\n\nimport Cocoa\n\nclass FootprintWindow: NSWindow {\n    private var orderOutCanceled = false\n    \n    init() {\n        let initialRect = NSRect(x: 0, y: 0, width: 0, height: 0)\n        super.init(contentRect: initialRect, styleMask: .titled, backing: .buffered, defer: false)\n\n        title = \"Rectangle\"\n        isOpaque = false\n        level = .modalPanel\n        hasShadow = false\n        isReleasedWhenClosed = false\n        alphaValue = Defaults.footprintFade.userDisabled\n            ? CGFloat(Defaults.footprintAlpha.value)\n            : 0\n  \n        styleMask.insert(.fullSizeContentView)\n        titleVisibility = .hidden\n        titlebarAppearsTransparent = true\n        collectionBehavior.insert(.transient)\n        standardWindowButton(.closeButton)?.isHidden = true\n        standardWindowButton(.miniaturizeButton)?.isHidden = true\n        standardWindowButton(.zoomButton)?.isHidden = true\n        standardWindowButton(.toolbarButton)?.isHidden = true\n        \n        let boxView = NSBox()\n        boxView.boxType = .custom\n        boxView.borderColor = .lightGray\n        boxView.borderWidth = CGFloat(Defaults.footprintBorderWidth.value)\n        \n        if #available(macOS 26.0, *) {\n            boxView.cornerRadius = 16\n        } else if #available(macOS 11.0, *) {\n            boxView.cornerRadius = 10\n        } else {\n            boxView.cornerRadius = 5\n        }\n        boxView.wantsLayer = true\n        boxView.fillColor = Defaults.footprintColor.typedValue?.nsColor ?? NSColor.black\n        \n        contentView = boxView\n    }\n    \n    override var isVisible: Bool {\n        // Workaround for footprint getting pushed off of Stage Manager\n        if StageUtil.stageCapable && StageUtil.stageEnabled && StageUtil.stageStripShow {\n            return true\n        }\n        return realIsVisible\n    }\n    \n    var realIsVisible: Bool {\n        if Defaults.footprintFade.userDisabled {\n            return super.isVisible\n        } else {\n            return alphaValue == Defaults.footprintAlpha.cgFloat\n        }\n    }\n    \n    override func orderFront(_ sender: Any?) {\n        if Defaults.footprintFade.userDisabled {\n            super.orderFront(sender)\n        } else {\n            orderOutCanceled = true\n            super.orderFront(sender)\n            animator().alphaValue = Defaults.footprintAlpha.cgFloat\n        }\n    }\n    \n    override func orderOut(_ sender: Any?) {\n        if Defaults.footprintFade.userDisabled {\n            super.orderOut(nil)\n        } else {\n            orderOutCanceled = false\n            NSAnimationContext.runAnimationGroup { changes in\n                animator().alphaValue = 0.0\n            } completionHandler: {\n                if !self.orderOutCanceled {\n                    super.orderOut(nil)\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "Rectangle/Snapping/SnapAreaModel.swift",
    "content": "//\n//  SnapAreaModel.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 8/19/22.\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass SnapAreaModel {\n    static let instance = SnapAreaModel()\n    \n    private init() {}\n    \n    static let defaultLandscape: [Directional:SnapAreaConfig] = [\n        .tl: SnapAreaConfig(action: .topLeft),\n        .t: SnapAreaConfig(action: .maximize),\n        .tr: SnapAreaConfig(action: .topRight),\n        .l: SnapAreaConfig(compound: .leftTopBottomHalf),\n        .r: SnapAreaConfig(compound: .rightTopBottomHalf),\n        .bl: SnapAreaConfig(action: .bottomLeft),\n        .b: SnapAreaConfig(compound: .thirds),\n        .br: SnapAreaConfig(action: .bottomRight)\n    ]\n    \n    static let defaultPortrait: [Directional:SnapAreaConfig] = [\n        .tl: SnapAreaConfig(action: .topLeft),\n        .t: SnapAreaConfig(action: .maximize),\n        .tr: SnapAreaConfig(action: .topRight),\n        .l: SnapAreaConfig(compound: .portraitThirdsSide),\n        .r: SnapAreaConfig(compound: .portraitThirdsSide),\n        .bl: SnapAreaConfig(action: .bottomLeft),\n        .b: SnapAreaConfig(compound: .halves),\n        .br: SnapAreaConfig(action: .bottomRight)\n    ]\n    \n    var landscape: [Directional:SnapAreaConfig] {\n        Defaults.landscapeSnapAreas.typedValue ?? SnapAreaModel.defaultLandscape\n    }\n    var portrait: [Directional:SnapAreaConfig] {\n        Defaults.portraitSnapAreas.typedValue ?? SnapAreaModel.defaultPortrait\n    }\n    \n    var isTopConfigured: Bool {\n        if let landscapeTop = landscape[.t] {\n            if landscapeTop.action != nil || landscapeTop.compound != nil {\n                return true\n            }\n        }\n        if NSScreen.portraitDisplayConnected, let portraitTop = portrait[.t] {\n            if portraitTop.action != nil || portraitTop.compound != nil {\n                return true\n            }\n        }\n        return false\n    }\n        \n    func setConfig(type: DisplayOrientation, directional: Directional, snapAreaConfig: SnapAreaConfig?) {\n        switch type {\n        case .landscape: setLandscape(directional: directional, snapAreaConfig: snapAreaConfig)\n        case .portrait: setPortrait(directional: directional, snapAreaConfig: snapAreaConfig)\n        }\n    }\n    \n    func setLandscape(directional: Directional, snapAreaConfig: SnapAreaConfig?) {\n        var newConfig = landscape\n        newConfig[directional] = snapAreaConfig\n        Defaults.landscapeSnapAreas.typedValue = newConfig\n    }\n    \n    func setPortrait(directional: Directional, snapAreaConfig: SnapAreaConfig?) {\n        var newConfig = portrait\n        newConfig[directional] = snapAreaConfig\n        Defaults.portraitSnapAreas.typedValue = newConfig\n    }\n    \n    func migrate() {\n        if Defaults.sixthsSnapArea.userEnabled {\n            setLandscape(directional: .t, snapAreaConfig: SnapAreaConfig(compound: .topSixths))\n            setLandscape(directional: .b, snapAreaConfig: SnapAreaConfig(compound: .bottomSixths))\n        }\n\n        let ignoredSnapAreas = SnapAreaOption(rawValue: Defaults.ignoredSnapAreas.value)\n        guard ignoredSnapAreas.rawValue > 0 else { return }\n        \n        let directionalToSnapAreaOption: [Directional: SnapAreaOption] = [\n            .tl: .topLeft,\n            .t: .top,\n            .tr: .topRight,\n            .l: .left,\n            .r: .right,\n            .bl: .bottomLeft,\n            .b: .bottom,\n            .br: .bottomRight\n        ]\n        \n        for directional in Directional.cases {\n            if let option = directionalToSnapAreaOption[directional] {\n                if ignoredSnapAreas.contains(option) {\n                    setLandscape(directional: directional, snapAreaConfig: nil)\n                    setPortrait(directional: directional, snapAreaConfig: nil)\n                }\n            }\n        }\n        \n        if ignoredSnapAreas.contains(.bottomLeftShort) && ignoredSnapAreas.contains(.topLeftShort) {\n            setLandscape(directional: .l, snapAreaConfig: SnapAreaConfig(action: .leftHalf))\n        }\n        \n        if ignoredSnapAreas.contains(.bottomRightShort) && ignoredSnapAreas.contains(.topRightShort) {\n            setLandscape(directional: .r, snapAreaConfig: SnapAreaConfig(action: .rightHalf))\n        }\n    }\n}\n\nenum DisplayOrientation {\n    case landscape, portrait\n}\n\nstruct SnapAreaConfig: Codable {\n    let compound: CompoundSnapArea?\n    let action: WindowAction?\n    \n    init(compound: CompoundSnapArea? = nil, action: WindowAction? = nil) {\n        self.compound = compound\n        self.action = action\n    }\n}\n\nenum Directional: Int, Codable {\n    case tl = 1,\n         t = 2,\n         tr = 3,\n         l = 4,\n         r = 5,\n         bl = 6,\n         b = 7,\n         br = 8,\n         c = 9\n    \n    static var cases = [tl, t, tr, l, r, bl, b, br]\n}\n\nstruct SnapAreaOption: OptionSet, Hashable {\n    let rawValue: Int\n    \n    static let top = SnapAreaOption(rawValue: 1 << 0)\n    static let bottom = SnapAreaOption(rawValue: 1 << 1)\n    static let left = SnapAreaOption(rawValue: 1 << 2)\n    static let right = SnapAreaOption(rawValue: 1 << 3)\n    static let topLeft = SnapAreaOption(rawValue: 1 << 4)\n    static let topRight = SnapAreaOption(rawValue: 1 << 5)\n    static let bottomLeft = SnapAreaOption(rawValue: 1 << 6)\n    static let bottomRight = SnapAreaOption(rawValue: 1 << 7)\n    static let topLeftShort = SnapAreaOption(rawValue: 1 << 8)\n    static let topRightShort = SnapAreaOption(rawValue: 1 << 9)\n    static let bottomLeftShort = SnapAreaOption(rawValue: 1 << 10)\n    static let bottomRightShort = SnapAreaOption(rawValue: 1 << 11)\n    \n    static let all: SnapAreaOption = [.top, .bottom, .left, .right, .topLeft, .topRight, .bottomLeft, .bottomRight, .topLeftShort, .topRightShort, .bottomLeftShort, .bottomRightShort]\n    static let none: SnapAreaOption = []\n}\n"
  },
  {
    "path": "Rectangle/Snapping/SnappingManager.swift",
    "content": "//\n//  SnappingManager.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 9/4/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Cocoa\n\nstruct SnapArea: Equatable {\n    let screen: NSScreen\n    let directional: Directional\n    let action: WindowAction\n}\n\nclass SnappingManager {\n    \n    private let fullIgnoreIds: [String] = Defaults.fullIgnoreBundleIds.typedValue ?? [\"com.install4j\", \n                                                                                      \"com.mathworks.matlab\",\n                                                                                      \"com.live2d.cubism.CECubismEditorApp\",\n                                                                                      \"com.aquafold.datastudio.DataStudio\",\n                                                                                      \"com.adobe.illustrator\",\n                                                                                      \"com.adobe.AfterEffects\"]\n    \n    var eventMonitor: EventMonitor?\n    var windowElement: AccessibilityElement?\n    var windowId: CGWindowID?\n    var windowIdAttempt: Int = 0\n    var lastWindowIdAttempt: TimeInterval?\n    var windowMoving: Bool = false\n    var isFullScreen: Bool = false\n    var allowListening: Bool = true\n    var initialWindowRect: CGRect?\n    var currentSnapArea: SnapArea?\n    var dragPrevY: Double?\n    var dragRestrictionExpirationTimestamp: UInt64 = 0\n    var dragRestrictionExpired: Bool { DispatchTime.now().uptimeMilliseconds > dragRestrictionExpirationTimestamp }\n    \n    var box: FootprintWindow?\n\n    let screenDetection = ScreenDetection()\n    \n    private let marginTop = Defaults.snapEdgeMarginTop.cgFloat\n    private let marginBottom = Defaults.snapEdgeMarginBottom.cgFloat\n    private let marginLeft = Defaults.snapEdgeMarginLeft.cgFloat\n    private let marginRight = Defaults.snapEdgeMarginRight.cgFloat\n    \n    init() {\n        if Defaults.windowSnapping.enabled != false {\n            enableSnapping()\n        }\n        \n        registerWorkspaceChangeNote()\n        \n        Notification.Name.windowSnapping.onPost { notification in\n            if let enabled = notification.object as? Bool {\n                self.allowListening = enabled\n            }\n            self.toggleListening()\n        }\n        Notification.Name.missionControlDragging.onPost { notification in\n            self.stopEventMonitor()\n            self.startEventMonitor()\n        }\n        Notification.Name.frontAppChanged.onPost(using: frontAppChanged)\n    }\n    \n    func frontAppChanged(notification: Notification) {\n        if ApplicationToggle.shortcutsDisabled {\n            DispatchQueue.main.async {\n                if !Defaults.ignoreDragSnapToo.userDisabled {\n                    self.allowListening = false\n                    self.toggleListening()\n                } else {\n                    for id in self.fullIgnoreIds {\n                        if ApplicationToggle.frontAppId?.starts(with: id) == true {\n                            self.allowListening = false\n                            self.toggleListening()\n                            break\n                        }\n                    }\n                }\n            }\n        } else {\n            allowListening = true\n            checkFullScreen()\n        }\n    }\n    \n    func toggleListening() {\n        if allowListening, !isFullScreen, !Defaults.windowSnapping.userDisabled {\n            enableSnapping()\n        } else {\n            disableSnapping()\n        }\n    }\n    \n    private func registerWorkspaceChangeNote() {\n        NSWorkspace.shared.notificationCenter.addObserver(self, selector: #selector(receiveWorkspaceNote(_:)), name: NSWorkspace.activeSpaceDidChangeNotification, object: nil)\n        checkFullScreen()\n    }\n    \n    func checkFullScreen() {\n        isFullScreen = AccessibilityElement.getFrontWindowElement()?.isFullScreen == true\n        toggleListening()\n    }\n    \n    @objc func receiveWorkspaceNote(_ notification: Notification) {\n        checkFullScreen()\n    }\n        \n    public func reloadFromDefaults() {\n        if Defaults.windowSnapping.userDisabled {\n            if eventMonitor?.running == true {\n                disableSnapping()\n            }\n        } else {\n            if eventMonitor?.running == true {\n                if Defaults.missionControlDragging.userDisabled != (eventMonitor is ActiveEventMonitor) {\n                    stopEventMonitor()\n                    startEventMonitor()\n                }\n            } else {\n                enableSnapping()\n            }\n        }\n    }\n    \n    private func enableSnapping() {\n        if box == nil {\n            box = FootprintWindow()\n        }\n        if eventMonitor == nil {\n            startEventMonitor()\n        }\n    }\n    \n    private func disableSnapping() {\n        box = nil\n        stopEventMonitor()\n    }\n    \n    private func startEventMonitor() {\n        let mask: NSEvent.EventTypeMask = [.leftMouseDown, .leftMouseUp, .leftMouseDragged]\n        eventMonitor = Defaults.missionControlDragging.userDisabled ? ActiveEventMonitor(mask: mask, filterer: filter, handler: handle) : PassiveEventMonitor(mask: mask, handler: handle)\n        eventMonitor?.start()\n    }\n    \n    private func stopEventMonitor() {\n        eventMonitor?.stop()\n        eventMonitor = nil\n    }\n    \n    func filter(event: NSEvent) -> Bool {\n        switch event.type {\n        case .leftMouseUp:\n            dragPrevY = nil\n        case .leftMouseDragged:\n            if let cgEvent = event.cgEvent, let screen = NSScreen.main {\n                let minY = screen.frame.screenFlipped.minY\n                if cgEvent.location.y == minY && dragPrevY == minY {\n                    if event.deltaY < -Defaults.missionControlDraggingAllowedOffscreenDistance.cgFloat {\n                        cgEvent.location.y = minY + 1\n                        dragRestrictionExpirationTimestamp = DispatchTime.now().uptimeMilliseconds + UInt64(Defaults.missionControlDraggingDisallowedDuration.value)\n                    } else if !dragRestrictionExpired {\n                        cgEvent.location.y = minY + 1\n                    }\n                }\n                dragPrevY = cgEvent.location.y\n            }\n        default:\n            break\n        }\n        return false\n    }\n    \n    func canSnap(_ event: NSEvent) -> Bool {\n        if Defaults.snapModifiers.value > 0 {\n            if event.modifierFlags.intersection(.deviceIndependentFlagsMask).rawValue != Defaults.snapModifiers.value {\n                return false\n            }\n        }\n        if let windowId = windowId {\n            if StageUtil.stageCapable && StageUtil.stageEnabled && StageUtil.getStageStripWindowGroup(windowId) != nil {\n                return false\n            }\n        }\n        return true\n    }\n    \n    func handle(event: NSEvent) {\n        switch event.type {\n        case .leftMouseDown:\n            if !Defaults.obtainWindowOnClick.userDisabled {\n                windowElement = AccessibilityElement.getWindowElementUnderCursor()\n                windowId = windowElement?.getWindowId()\n                initialWindowRect = windowElement?.frame\n            }\n        case .leftMouseUp:\n            if let currentSnapArea = self.currentSnapArea {\n                box?.orderOut(nil)\n                currentSnapArea.action.postSnap(windowElement: windowElement, windowId: windowId, screen: currentSnapArea.screen)\n                self.currentSnapArea = nil\n            } else {\n                // it's possible that the window has moved, but the mouse dragged events are not getting the updated window position\n                // this typically only happens if the user is dragging and dropping windows really quickly\n                // in this scenario, the footprint doesn't display but the snap will still occur, as long as the window position is updated as of mouse up.\n                if let currentRect = windowElement?.frame,\n                   let windowId = windowId,\n                   currentRect.size == initialWindowRect?.size,\n                   currentRect.origin != initialWindowRect?.origin {\n  \n                    unsnapRestore(windowId: windowId, currentRect: currentRect, cursorLoc: event.cgEvent?.location)\n                    \n                    if let snapArea = snapAreaContainingCursor(priorSnapArea: currentSnapArea)  {\n                        box?.orderOut(nil)\n                        if canSnap(event) {\n                            snapArea.action.postSnap(windowElement: windowElement, windowId: windowId, screen: snapArea.screen)\n                        }\n                        self.currentSnapArea = nil\n                    }\n                }\n            }\n            windowElement = nil\n            windowId = nil\n            windowMoving = false\n            initialWindowRect = nil\n            windowIdAttempt = 0\n            lastWindowIdAttempt = nil\n        case .leftMouseDragged:\n            if windowId == nil, windowIdAttempt < 20 {\n                if let lastWindowIdAttempt = lastWindowIdAttempt {\n                    if event.timestamp - lastWindowIdAttempt < 0.1 {\n                        return\n                    }\n                }\n                if windowElement == nil {\n                    windowElement = AccessibilityElement.getWindowElementUnderCursor()\n                }\n                windowId = windowElement?.getWindowId()\n                initialWindowRect = windowElement?.frame\n                windowIdAttempt += 1\n                lastWindowIdAttempt = event.timestamp\n            }\n            guard let currentRect = windowElement?.frame,\n                let windowId = windowId\n            else { return }\n            \n            if !windowMoving {\n                if let initialWindowRect, (currentRect.size == initialWindowRect.size || currentRect.numSharedEdges(withRect: initialWindowRect) < 2) {\n                    if currentRect.origin != initialWindowRect.origin {\n                        windowMoving = true\n                        unsnapRestore(windowId: windowId, currentRect: currentRect, cursorLoc: event.cgEvent?.location)\n                    }\n                }\n                else {\n                    AppDelegate.windowHistory.lastRectangleActions.removeValue(forKey: windowId)\n                }\n            }\n            if windowMoving {\n                if !canSnap(event) {\n                    if currentSnapArea != nil {\n                        box?.orderOut(nil)\n                        currentSnapArea = nil\n                    }\n                    return\n                }\n                \n                if let snapArea = snapAreaContainingCursor(priorSnapArea: currentSnapArea) {\n                    if snapArea == currentSnapArea {\n                        return\n                    }\n                    \n                    if Defaults.hapticFeedbackOnSnap.userEnabled {\n                        NSHapticFeedbackManager.defaultPerformer.perform(.alignment, performanceTime: .now)\n                    }\n                    \n                    let currentWindow = Window(id: windowId, rect: currentRect)\n                    \n                    if let newBoxRect = getBoxRect(hotSpot: snapArea, currentWindow: currentWindow) {\n                        if box == nil {\n                            box = FootprintWindow()\n                        }\n                        if Defaults.footprintAnimationDurationMultiplier.value > 0 {\n                            if !box!.realIsVisible, let origin = getFootprintAnimationOrigin(snapArea, newBoxRect) {\n                                let frame = CGRect(origin: origin, size: .zero)\n                                box!.setFrame(frame, display: false)\n                            }\n                        } else {\n                            box!.setFrame(newBoxRect, display: true)\n                        }\n                        box!.orderFront(nil)\n                        if Defaults.footprintAnimationDurationMultiplier.value > 0 {\n                            NSAnimationContext.runAnimationGroup { changes in\n                                changes.duration = getFootprintAnimationDuration(box!, newBoxRect)\n                                box!.animator().setFrame(newBoxRect, display: true)\n                            }\n                        }\n                    }\n                    \n                    currentSnapArea = snapArea\n                } else {\n                    if currentSnapArea != nil {\n                        box?.orderOut(nil)\n                        currentSnapArea = nil\n                    }\n                }\n            }\n        default:\n            return\n        }\n    }\n    \n    func unsnapRestore(windowId: CGWindowID, currentRect: CGRect, cursorLoc: CGPoint?) {\n        if Defaults.unsnapRestore.enabled != false {\n            // if window was put there by rectangle, restore size\n            if let lastRect = AppDelegate.windowHistory.lastRectangleActions[windowId]?.rect,\n                lastRect == initialWindowRect,\n                let restoreRect = AppDelegate.windowHistory.restoreRects[windowId] {\n                \n                if let windowElement = windowElement {\n                    if #available(macOS 12, *) { // earlier versions of macOS would stutter the reposition when dragging the window\n                        var newRect = currentRect\n                        newRect.size = restoreRect.size\n                        if let cursorLoc = cursorLoc {\n                            if !newRect.contains(cursorLoc) { // keep the same maxX if possible\n                                newRect.origin = CGPoint(x: currentRect.maxX - newRect.width, y: newRect.minY)\n                                \n                                if !newRect.contains(cursorLoc) { // still doesn't contain cursor\n                                    newRect.origin = CGPoint(x: cursorLoc.x - (newRect.width / 2), y: newRect.minY)\n                                }\n                            }\n                        }\n                        windowElement.setFrame(newRect, adjustSizeFirst: false)\n                    } else {\n                        windowElement.size = restoreRect.size\n                    }\n                }\n                \n                AppDelegate.windowHistory.lastRectangleActions.removeValue(forKey: windowId)\n            } else {\n                AppDelegate.windowHistory.restoreRects[windowId] = initialWindowRect\n            }\n        }\n    }\n    \n    func getFootprintAnimationDuration(_ box: FootprintWindow, _ boxRect: CGRect) -> Double {\n        return box.animationResizeTime(boxRect) * Double(Defaults.footprintAnimationDurationMultiplier.value)\n    }\n    \n    func getFootprintAnimationOrigin(_ snapArea: SnapArea, _ boxRect: CGRect) -> CGPoint? {\n        switch snapArea.directional {\n        case .tl:\n            return CGPoint(x: boxRect.minX, y: boxRect.maxY)\n        case .t:\n            return CGPoint(x: boxRect.midX, y: boxRect.maxY)\n        case .tr:\n            return CGPoint(x: boxRect.maxX, y: boxRect.maxY)\n        case .l:\n            return CGPoint(x: boxRect.minX, y: boxRect.midY)\n        case .r:\n            return CGPoint(x: boxRect.maxX, y: boxRect.midY)\n        case .bl:\n            return CGPoint(x: boxRect.minX, y: boxRect.minY)\n        case .b:\n            return CGPoint(x: boxRect.midX, y: boxRect.minY)\n        case .br:\n            return CGPoint(x: boxRect.maxX, y: boxRect.minY)\n        default:\n            return nil\n        }\n    }\n    \n    func getBoxRect(hotSpot: SnapArea, currentWindow: Window) -> CGRect? {\n        if let calculation = WindowCalculationFactory.calculationsByAction[hotSpot.action] {\n            \n            let ignoreTodo = TodoManager.isTodoWindow(currentWindow.id)\n            let rectCalcParams = RectCalculationParameters(window: currentWindow, visibleFrameOfScreen: hotSpot.screen.adjustedVisibleFrame(ignoreTodo), action: hotSpot.action, lastAction: nil)\n            let rectResult = calculation.calculateRect(rectCalcParams)\n            \n            let gapsApplicable = hotSpot.action.gapsApplicable\n            \n            if Defaults.gapSize.value > 0, gapsApplicable != .none {\n                let gapSharedEdges = rectResult.subAction?.gapSharedEdge ?? hotSpot.action.gapSharedEdge\n\n                return GapCalculation.applyGaps(rectResult.rect, dimension: gapsApplicable, sharedEdges: gapSharedEdges, gapSize: Defaults.gapSize.value)\n            }\n            \n            return rectResult.rect\n        }\n        return nil\n    }\n    \n    func snapAreaContainingCursor(priorSnapArea: SnapArea?) -> SnapArea? {\n        let loc = NSEvent.mouseLocation\n        \n        for screen in NSScreen.screens {\n            guard let directional = directionalLocationOfCursor(loc: loc, screen: screen)\n            else { continue }\n            \n            if let windowId = windowId, Defaults.todo.userEnabled && Defaults.todoMode.enabled && TodoManager.isTodoWindow(windowId) {\n                if Defaults.todoSidebarSide.value == .left && directional == .l {\n                    return SnapArea(screen: screen, directional: directional, action: .leftTodo)\n                }\n                if Defaults.todoSidebarSide.value == .right && directional == .r {\n                    return SnapArea(screen: screen, directional: directional, action: .rightTodo)\n                }\n            }\n            \n            let config = screen.frame.isLandscape\n            ? SnapAreaModel.instance.landscape[directional]\n            : SnapAreaModel.instance.portrait[directional]\n            \n            if let action = config?.action {\n                return SnapArea(screen: screen, directional: directional, action: action)\n            }\n            if let compound = config?.compound {\n                return compound.calculation.snapArea(cursorLocation: loc, screen: screen, directional: directional, priorSnapArea: priorSnapArea)\n            }\n        }\n        \n        return nil\n    }\n    \n    func directionalLocationOfCursor(loc: NSPoint, screen: NSScreen) -> Directional? {\n        let frame = screen.frame\n        let cornerSize = Defaults.cornerSnapAreaSize.cgFloat\n        \n        /// cgrect contains doesn't include max edges, so manually compare\n        guard loc.x >= frame.minX,\n              loc.x <= frame.maxX,\n              loc.y >= frame.minY,\n              loc.y <= frame.maxY\n        else { return nil }\n        \n        if loc.x < frame.minX + marginLeft + cornerSize {\n            if loc.y >= frame.maxY - marginTop - cornerSize {\n                return .tl\n            }\n            if loc.y <= frame.minY + marginBottom + cornerSize {\n                return .bl\n            }\n            if loc.x < frame.minX + marginLeft {\n                return .l\n            }\n        }\n        \n        if loc.x > frame.maxX - marginRight - cornerSize {\n            if loc.y >= frame.maxY - marginTop - cornerSize {\n                return .tr\n            }\n            if loc.y <= frame.minY + marginBottom + cornerSize {\n                return .br\n            }\n            if loc.x > frame.maxX - marginRight {\n                return .r\n            }\n        }\n        \n        if loc.y > frame.maxY - marginTop {\n            return .t\n        }\n        if loc.y < frame.minY + marginBottom {\n            return .b\n        }\n        \n        return nil\n    }\n}\n"
  },
  {
    "path": "Rectangle/SubsequentExecutionMode.swift",
    "content": "//\n//  SubsequentExecutionMode.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 8/15/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nenum SubsequentExecutionMode: Int {\n    case resize = 0 // based on Spectacle\n    case acrossMonitor = 1\n    case none = 2\n    case acrossAndResize = 3 // across monitor for right/left, spectacle resize for all else\n    case cycleMonitor = 4\n    case resizeAndCycleQuadrants = 5\n}\n\nclass SubsequentExecutionDefault: Default {\n    public private(set) var key: String = \"subsequentExecutionMode\"\n    private var initialized = false\n    \n    var value: SubsequentExecutionMode {\n        didSet {\n            if initialized {\n                UserDefaults.standard.set(value.rawValue, forKey: key)\n            }\n        }\n    }\n    \n    init() {\n        let intValue = UserDefaults.standard.integer(forKey: key)\n        value = SubsequentExecutionMode(rawValue: intValue) ?? .resize\n        initialized = true\n    }\n    \n    var resizes: Bool {\n        switch value {\n        case .resize, .acrossAndResize, .resizeAndCycleQuadrants: return true\n        default: return false\n        }\n    }\n\n    var cyclesQuadrantPositions: Bool {\n        switch value {\n        case .resizeAndCycleQuadrants: return true\n        default: return false\n        }\n    }\n\n    var traversesDisplays: Bool {\n        switch value {\n        case .acrossMonitor, .acrossAndResize: return true\n        default: return false\n        }\n    }\n\n    func load(from codable: CodableDefault) {\n        if let int = codable.int,\n           let mode = SubsequentExecutionMode(rawValue: int) {\n            value = mode\n        }\n    }\n    \n    func toCodable() -> CodableDefault {\n        return CodableDefault(int: value.rawValue)\n    }\n\n}\n"
  },
  {
    "path": "Rectangle/TitleBarManager.swift",
    "content": "//\n//  TitleBarManager.swift\n//  Rectangle\n//\n//  Copyright © 2023 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass TitleBarManager {\n    private var eventMonitor: EventMonitor!\n    private var lastEventNumber: Int?\n\n    init() {\n        eventMonitor = PassiveEventMonitor(mask: .leftMouseUp, handler: handle)\n        toggleListening()\n        Notification.Name.windowTitleBar.onPost { notification in\n            self.toggleListening()\n        }\n        Notification.Name.configImported.onPost { notification in\n            self.toggleListening()\n        }\n    }\n    \n    private func toggleListening() {\n        if WindowAction(rawValue: Defaults.doubleClickTitleBar.value - 1) != nil {\n            eventMonitor.start()\n        } else {\n            eventMonitor.stop()\n        }\n    }\n    \n    private func handle(_ event: NSEvent) {\n        guard\n            event.type == .leftMouseUp,\n            event.clickCount == 2,\n            event.eventNumber != lastEventNumber,\n            TitleBarManager.systemSettingDisabled,\n            let action = WindowAction(rawValue: Defaults.doubleClickTitleBar.value - 1),\n            case let location = NSEvent.mouseLocation.screenFlipped,\n            let element = AccessibilityElement(location)?.getSelfOrChildElementRecursively(location),\n            let windowElement = element.windowElement,\n            var titleBarFrame = windowElement.titleBarFrame\n        else {\n            return\n        }\n        lastEventNumber = event.eventNumber\n        \n        var bundleIdentifier: String?\n        if let pid = element.pid {\n            bundleIdentifier = NSRunningApplication(processIdentifier: pid)?.bundleIdentifier\n        }\n        \n        if let toolbarFrame = windowElement.getChildElement(.toolbar)?.frame, toolbarFrame != .null {\n            if let bundleIdentifier,\n               let toolbarIgnoredIds = Defaults.doubleClickToolBarIgnoredApps.typedValue,\n               toolbarIgnoredIds.contains(bundleIdentifier) {\n               // don't add the toolbar frame to the title bar\n            } else {\n                titleBarFrame = titleBarFrame.union(toolbarFrame)\n            }\n        }\n        guard\n            titleBarFrame.contains(location),\n            element.isWindow == true || element.isToolbar == true || element.isGroup == true || element.isTabGroup == true || element.isStaticText == true\n        else {\n            return\n        }\n        if let bundleIdentifier,\n            let ignoredApps = Defaults.doubleClickTitleBarIgnoredApps.typedValue,\n            ignoredApps.contains(bundleIdentifier) {\n            return\n        }\n        if Defaults.doubleClickTitleBarRestore.enabled != false,\n           let windowId = windowElement.windowId,\n           case let windowFrame = windowElement.frame,\n           windowFrame != .null,\n           let historyAction = AppDelegate.windowHistory.lastRectangleActions[windowId],\n           historyAction.action == action,\n           historyAction.rect == windowFrame {\n            WindowAction.restore.postTitleBar(windowElement: windowElement)\n            return\n        }\n        action.postTitleBar(windowElement: windowElement)\n    }\n}\n\nextension TitleBarManager {\n    static var systemSettingDisabled: Bool {\n        UserDefaults(suiteName: \".GlobalPreferences\")?.string(forKey: \"AppleActionOnDoubleClick\") == \"None\"\n    }\n}\n"
  },
  {
    "path": "Rectangle/TodoMode/TodoManager.swift",
    "content": "//\n//  TodoManager.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 1/18/21.\n//  Copyright © 2021 Ryan Hanson. All rights reserved.\n//\n\nimport Cocoa\nimport MASShortcut\n\nclass TodoManager {\n    private static var todoWindowId: CGWindowID?\n    \n    static var todoScreen : NSScreen?\n    static let toggleDefaultsKey = \"toggleTodo\"\n    static let reflowDefaultsKey = \"reflowTodo\"\n    static let defaultsKeys = [toggleDefaultsKey, reflowDefaultsKey]\n    \n    static func setTodoMode(_ enabled: Bool, _ bringToFront: Bool = true) {\n        Defaults.todoMode.enabled = enabled\n        registerUnregisterReflowShortcut()\n        moveAllIfNeeded(bringToFront)\n    }\n    \n    static func initToggleShortcut() {\n        if UserDefaults.standard.dictionary(forKey: toggleDefaultsKey) == nil {\n            guard let dictTransformer = ValueTransformer(forName: NSValueTransformerName(rawValue: MASDictionaryTransformerName)) else { return }\n            \n            let toggleShortcut = MASShortcut(keyCode: kVK_ANSI_B,\n                                             modifierFlags: [NSEvent.ModifierFlags.control, NSEvent.ModifierFlags.option])\n            let toggleShortcutDict = dictTransformer.reverseTransformedValue(toggleShortcut)\n            UserDefaults.standard.set(toggleShortcutDict, forKey: toggleDefaultsKey)\n        }\n    }\n    \n    static func initReflowShortcut() {\n        if UserDefaults.standard.dictionary(forKey: reflowDefaultsKey) == nil {\n            guard let dictTransformer = ValueTransformer(forName: NSValueTransformerName(rawValue: MASDictionaryTransformerName)) else { return }\n            \n            let reflowShortcut = MASShortcut(keyCode: kVK_ANSI_N,\n                                             modifierFlags: [NSEvent.ModifierFlags.control, NSEvent.ModifierFlags.option])\n            let reflowShortcutDict = dictTransformer.reverseTransformedValue(reflowShortcut)\n            UserDefaults.standard.set(reflowShortcutDict, forKey: reflowDefaultsKey)\n        }\n    }\n    \n    private static func registerToggleShortcut() {\n        MASShortcutBinder.shared()?.bindShortcut(withDefaultsKey: toggleDefaultsKey, toAction: {\n            let enabled = !Defaults.todoMode.enabled\n            setTodoMode(enabled)\n        })\n    }\n    \n    private static func registerReflowShortcut() {\n        MASShortcutBinder.shared()?.bindShortcut(withDefaultsKey: reflowDefaultsKey, toAction: {\n            moveAll()\n        })\n    }\n    \n    private static func unregisterToggleShortcut() {\n        MASShortcutBinder.shared()?.breakBinding(withDefaultsKey: toggleDefaultsKey)\n    }\n    \n    private static func unregisterReflowShortcut() {\n        MASShortcutBinder.shared()?.breakBinding(withDefaultsKey: reflowDefaultsKey)\n    }\n    \n    static func registerUnregisterToggleShortcut() {\n        if Defaults.todo.userEnabled {\n            registerToggleShortcut()\n        } else {\n            unregisterToggleShortcut()\n        }\n    }\n    \n    static func registerUnregisterReflowShortcut() {\n        if Defaults.todo.userEnabled && Defaults.todoMode.enabled {\n            registerReflowShortcut()\n        } else {\n            unregisterReflowShortcut()\n        }\n    }\n    \n    static func getToggleKeyDisplay() -> (String?, NSEvent.ModifierFlags)? {\n        guard\n            let shortcutDict = UserDefaults.standard.dictionary(forKey: toggleDefaultsKey),\n            let dictTransformer = ValueTransformer(forName: NSValueTransformerName(rawValue: MASDictionaryTransformerName)),\n            let shortcut = dictTransformer.transformedValue(shortcutDict) as? MASShortcut\n        else {\n            return nil\n        }\n        return (shortcut.keyCodeStringForKeyEquivalent, shortcut.modifierFlags)\n    }\n    \n    static func getReflowKeyDisplay() -> (String?, NSEvent.ModifierFlags)? {\n        guard\n            let shortcutDict = UserDefaults.standard.dictionary(forKey: reflowDefaultsKey),\n            let dictTransformer = ValueTransformer(forName: NSValueTransformerName(rawValue: MASDictionaryTransformerName)),\n            let shortcut = dictTransformer.transformedValue(shortcutDict) as? MASShortcut\n        else {\n            return nil\n        }\n        return (shortcut.keyCodeStringForKeyEquivalent, shortcut.modifierFlags)\n    }\n    \n    private static func getTodoWindowElement() -> AccessibilityElement? {\n        guard let bundleId = Defaults.todoApplication.value, let windowElements = AccessibilityElement(bundleId)?.windowElements else {\n            todoWindowId = nil\n            return nil\n        }\n        if let windowId = todoWindowId, !(windowElements.contains { $0.windowId == windowId }) {\n            todoWindowId = nil\n        }\n        if todoWindowId == nil {\n            todoWindowId = windowElements.first?.windowId\n        }\n        if let windowId = todoWindowId, let windowElement = (windowElements.first { $0.windowId == windowId }) {\n            return windowElement\n        }\n        todoWindowId = nil\n        return nil\n    }\n    \n    static func hasTodoWindow() -> Bool {\n        return getTodoWindowElement() != nil\n    }\n    \n    static func isTodoWindowFront() -> Bool {\n        guard let windowElement = AccessibilityElement.getFrontWindowElement() else { return false }\n        return isTodoWindow(windowElement)\n    }\n    \n    static func isTodoWindow(_ windowElement: AccessibilityElement) -> Bool {\n        guard let windowId = windowElement.windowId else { return false }\n        return isTodoWindow(windowId)\n    }\n    \n    static func isTodoWindow(_ windowId: CGWindowID) -> Bool {\n        return getTodoWindowElement()?.windowId == windowId\n    }\n    \n    static func resetTodoWindow() {\n        todoWindowId = nil\n        _ = getTodoWindowElement()\n    }\n    \n    static func moveAll(_ bringToFront: Bool = true) {\n        TodoManager.refreshTodoScreen()\n\n        let pid = ProcessInfo.processInfo.processIdentifier\n        // Avoid footprint window\n        let windows = AccessibilityElement.getAllWindowElements().filter { $0.pid != pid }\n\n        if let todoWindow = getTodoWindowElement() {\n            if let screen = TodoManager.todoScreen {\n                let sd = ScreenDetection()\n                var adjustedVisibleFrame = screen.adjustedVisibleFrame()\n                // Clear all windows from the todo app sidebar\n                for w in windows {\n                    let wScreen = sd.detectScreens(using: w)?.currentScreen\n                    if w.getWindowId() != todoWindow.getWindowId() &&\n                        wScreen == TodoManager.todoScreen {\n                        shiftWindowOffSidebar(w, screenVisibleFrame: adjustedVisibleFrame)\n                    }\n                }\n\n                adjustedVisibleFrame = screen.adjustedVisibleFrame(true)\n                let sidebarWidth = getSidebarWidth(visibleFrameWidth: adjustedVisibleFrame.width)\n\n                var sharedEdge: Edge\n                var rect = adjustedVisibleFrame\n                let isRightSide = Defaults.todoSidebarSide.value == .right\n\n                sharedEdge = isRightSide ? .left : .right\n\n                if isRightSide {\n                    rect.origin.x = adjustedVisibleFrame.maxX - sidebarWidth\n                }\n                rect.size.width = sidebarWidth\n\n                rect = rect.screenFlipped\n                \n                if Defaults.gapSize.value > 0 {\n                    rect = GapCalculation.applyGaps(rect, sharedEdges: sharedEdge, gapSize: Defaults.gapSize.value)\n                }\n                todoWindow.setFrame(rect)\n            }\n\n            if bringToFront {\n                todoWindow.bringToFront()\n            }\n        }\n    }\n    \n    static func getSidebarWidth(visibleFrameWidth: CGFloat) -> CGFloat {\n        var sidebarWidth = Defaults.todoSidebarWidth.cgFloat\n        \n        if sidebarWidth > 0 && sidebarWidth <= 1 {\n            sidebarWidth = sidebarWidth * visibleFrameWidth\n        } else if Defaults.todoSidebarWidthUnit.value == .pct {\n            sidebarWidth = convert(width: sidebarWidth, toUnit: .pixels, visibleFrameWidth: visibleFrameWidth)\n        }\n        \n        return sidebarWidth\n    }\n    \n    static func convert(width: CGFloat, toUnit unit: TodoSidebarWidthUnit, visibleFrameWidth: CGFloat) -> CGFloat {\n        unit == .pixels\n        ? ((width * 0.01) * visibleFrameWidth).rounded()\n        : ((width / visibleFrameWidth) * 100).rounded()\n    }\n    \n    static func moveAllIfNeeded(_ bringToFront: Bool = true) {\n        guard Defaults.todo.userEnabled && Defaults.todoMode.enabled else { return }\n        moveAll(bringToFront)\n    }\n    \n    static func refreshTodoScreen() {\n        let todoWindow = getTodoWindowElement()\n        let screens = ScreenDetection().detectScreens(using: todoWindow)\n        TodoManager.todoScreen = screens?.currentScreen\n    }\n    \n    private static func shiftWindowOffSidebar(_ w: AccessibilityElement, screenVisibleFrame: CGRect) {\n        var rect = w.frame\n        let halfGapWidth = CGFloat(Defaults.gapSize.value) / 2\n        let screenVisibleFrameMinX = screenVisibleFrame.minX + halfGapWidth\n        let screenVisibleFrameMaxX = screenVisibleFrame.maxX - halfGapWidth\n\n        if Defaults.todoSidebarSide.value == .left && rect.minX < screenVisibleFrameMinX {\n            // Shift it to the right\n            rect.origin.x = min(screenVisibleFrame.maxX - rect.width, rect.origin.x + (screenVisibleFrameMinX - rect.minX))\n            \n            // If it's still too wide, scale it down\n            if rect.minX < screenVisibleFrameMinX {\n                let widthDiff = screenVisibleFrameMinX - rect.minX\n                rect.origin.x += widthDiff\n                rect.size.width -= widthDiff\n            }\n            \n            w.setFrame(rect)\n        } else if Defaults.todoSidebarSide.value == .right && rect.maxX > screenVisibleFrameMaxX {\n            // Shift it to the left\n            rect.origin.x = min(rect.origin.x, max(screenVisibleFrame.minX, rect.origin.x - (rect.maxX - screenVisibleFrameMaxX)))\n            \n            // If it's still too wide, scale it down\n            if rect.maxX > screenVisibleFrameMaxX {\n                rect.size.width -= rect.maxX - screenVisibleFrameMaxX\n            }\n            \n            w.setFrame(rect)\n        }\n    }\n    \n    static func execute(parameters: ExecutionParameters) -> Bool {\n        if [.leftTodo, .rightTodo].contains(parameters.action) {\n            moveAll()\n            return true\n        }\n        return false\n    }\n}\n\nenum TodoSidebarSide: Int {\n    case right = 1\n    case left = 2\n}\n\nenum TodoSidebarWidthUnit: Int, CustomStringConvertible {\n    case pixels = 1\n    case pct = 2\n    \n    var description: String {\n        switch self {\n        case .pixels:\n            return \"px\"\n        case .pct:\n            return \"%\"\n        }\n    }\n}\n"
  },
  {
    "path": "Rectangle/Utilities/AXExtension.swift",
    "content": "//\n//  AXExtension.swift\n//  Rectangle\n//\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nextension NSAccessibility.Attribute {\n    static let enhancedUserInterface = NSAccessibility.Attribute(rawValue: \"AXEnhancedUserInterface\")\n    static let windowIds = NSAccessibility.Attribute(rawValue: \"AXWindowsIDs\")\n}\n\nextension AXValue {\n    func toValue<T>() -> T? {\n        let pointer = UnsafeMutablePointer<T>.allocate(capacity: 1)\n        let success = AXValueGetValue(self, AXValueGetType(self), pointer)\n        let value = pointer.pointee\n        pointer.deallocate()\n        return success ? value : nil\n    }\n    \n    static func from<T>(value: T, type: AXValueType) -> AXValue? {\n        var value = value\n        return withUnsafePointer(to: &value) { valuePointer in\n            AXValueCreate(type, valuePointer)\n        }\n    }\n}\n\nextension AXUIElement {\n    static let systemWide = AXUIElementCreateSystemWide()\n    \n    func isValueSettable(_ attribute: NSAccessibility.Attribute) -> Bool? {\n        var isSettable = DarwinBoolean(false)\n        let result = AXUIElementIsAttributeSettable(self, attribute.rawValue as CFString, &isSettable)\n        guard result == .success else { return nil }\n        return isSettable.boolValue\n    }\n    \n    func getValue(_ attribute: NSAccessibility.Attribute) -> AnyObject? {\n        var value: AnyObject?\n        let result = AXUIElementCopyAttributeValue(self, attribute.rawValue as CFString, &value)\n        guard result == .success else { return nil }\n        return value\n    }\n    \n    func getWrappedValue<T>(_ attribute: NSAccessibility.Attribute) -> T? {\n        guard let value = getValue(attribute), CFGetTypeID(value) == AXValueGetTypeID() else { return nil }\n        return (value as! AXValue).toValue()\n    }\n    \n    private func setValue(_ attribute: NSAccessibility.Attribute, _ value: AnyObject) {\n        AXUIElementSetAttributeValue(self, attribute.rawValue as CFString, value)\n    }\n    \n    func setValue(_ attribute: NSAccessibility.Attribute, _ value: Bool) {\n        setValue(attribute, value as CFBoolean)\n    }\n    \n    private func setWrappedValue<T>(_ attribute: NSAccessibility.Attribute, _ value: T, _ type: AXValueType) {\n        guard let value = AXValue.from(value: value, type: type) else { return }\n        setValue(attribute, value)\n    }\n    \n    func setValue(_ attribute: NSAccessibility.Attribute, _ value: CGPoint) {\n        setWrappedValue(attribute, value, .cgPoint)\n    }\n    \n    func setValue(_ attribute: NSAccessibility.Attribute, _ value: CGSize) {\n        setWrappedValue(attribute, value, .cgSize)\n    }\n    \n    func getElementAtPosition(_ position: CGPoint) -> AXUIElement? {\n        var element: AXUIElement?\n        let result = AXUIElementCopyElementAtPosition(self, Float(position.x), Float(position.y), &element)\n        guard result == .success else { return nil }\n        return element\n    }\n    \n    func getPid() -> pid_t? {\n        var pid = pid_t(0)\n        let result = AXUIElementGetPid(self, &pid)\n        guard result == .success else { return nil }\n        return pid\n    }\n    \n    func getWindowId() -> CGWindowID? {\n        var windowId = CGWindowID(0)\n        let result = _AXUIElementGetWindow(self, &windowId)\n        guard result == .success else { return nil }\n        return windowId\n    }\n}\n"
  },
  {
    "path": "Rectangle/Utilities/AlertUtil.swift",
    "content": "//\n//  AlertUtil.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 4/26/20.\n//  Copyright © 2020 Ryan Hanson. All rights reserved.\n//\n\nimport Cocoa\n\nclass AlertUtil {\n\n    static func oneButtonAlert(question: String, text: String, confirmText: String = \"OK\") {\n        let alert = NSAlert()\n        alert.messageText = question\n        alert.informativeText = text\n        alert.alertStyle = .warning\n        alert.addButton(withTitle: confirmText)\n        alert.runModal()\n    }\n    \n    static func twoButtonAlert(question: String, text: String, confirmText: String = \"OK\", cancelText: String = \"Cancel\") -> NSApplication.ModalResponse {\n        let alert = NSAlert()\n        alert.messageText = question\n        alert.informativeText = text\n        alert.alertStyle = .warning\n        alert.addButton(withTitle: confirmText)\n        alert.addButton(withTitle: cancelText)\n        return alert.runModal()\n    }\n    \n    static func threeButtonAlert(question: String, text: String, buttonOneText: String, buttonTwoText: String, buttonThreeText: String) -> NSApplication.ModalResponse {\n        let alert = NSAlert()\n        alert.messageText = question\n        alert.informativeText = text\n        alert.alertStyle = .warning\n        alert.addButton(withTitle: buttonOneText)\n        alert.addButton(withTitle: buttonTwoText)\n        alert.addButton(withTitle: buttonThreeText)\n        return alert.runModal()\n    }\n}\n"
  },
  {
    "path": "Rectangle/Utilities/CFExtension.swift",
    "content": "//\n//  CFExtension.swift\n//  Rectangle\n//\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nextension CFArray {\n    func getValue<T>(_ index: CFIndex) -> T {\n        return unsafeBitCast(CFArrayGetValueAtIndex(self, index), to: T.self)\n    }\n    \n    func getCount() -> CFIndex {\n        return CFArrayGetCount(self)\n    }\n}\n\nextension CFDictionary {\n    func getValue<T>(_ key: CFString) -> T {\n        return unsafeBitCast(CFDictionaryGetValue(self, unsafeBitCast(key, to: UnsafeRawPointer.self)), to: T.self)\n    }\n}\n"
  },
  {
    "path": "Rectangle/Utilities/CGExtension.swift",
    "content": "//\n//  CGExtension.swift\n//  Rectangle\n//\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nextension CGPoint {\n    var screenFlipped: CGPoint {\n        .init(x: x, y: NSScreen.screens[0].frame.maxY - y)\n    }\n}\n\nextension CGRect {\n    var screenFlipped: CGRect {\n        guard !isNull else {\n            return self\n        }\n        return .init(origin: .init(x: origin.x, y: NSScreen.screens[0].frame.maxY - maxY), size: size)\n    }\n\n    var isLandscape: Bool { width > height }\n    \n    var centerPoint: CGPoint {\n        NSMakePoint(NSMidX(self), NSMidY(self))\n    }\n    \n    func numSharedEdges(withRect rect: CGRect) -> Int {\n        var sharedEdgeCount = 0\n        if minX == rect.minX { sharedEdgeCount += 1 }\n        if maxX == rect.maxX { sharedEdgeCount += 1 }\n        if minY == rect.minY { sharedEdgeCount += 1 }\n        if maxY == rect.maxY { sharedEdgeCount += 1 }\n        return sharedEdgeCount\n    }\n}\n"
  },
  {
    "path": "Rectangle/Utilities/CUtil.swift",
    "content": "//\n//  CUtil.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 6/12/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass CUtil {\n    \n    // bridge object into a pointer to pass into C function\n    static func bridge<T : AnyObject>(obj : T) -> UnsafeMutableRawPointer {\n        return UnsafeMutableRawPointer(Unmanaged.passUnretained(obj).toOpaque())\n    }\n    \n    // bridge pointer back into an object within C function\n    static func bridge<T : AnyObject>(ptr : UnsafeMutableRawPointer) -> T {\n        return Unmanaged<T>.fromOpaque(ptr).takeUnretainedValue()\n    }\n    \n}\n"
  },
  {
    "path": "Rectangle/Utilities/Debounce.swift",
    "content": "//\n//  Debounce.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 10/7/21.\n//  Copyright © 2021 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\nimport Dispatch\n\nclass Debounce<T: Equatable> {\n\n    private init() {}\n\n    static func input(_ input: T,\n                      comparedAgainst current: @escaping @autoclosure () -> (T),\n                      perform: @escaping (T) -> ()) {\n\n        DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {\n            if input == current() { perform(input) }\n        }\n    }\n}\n"
  },
  {
    "path": "Rectangle/Utilities/DispatchTimeExtension.swift",
    "content": "//\n//  DispatchTimeExtension.swift\n//  Rectangle\n//\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nextension DispatchTime {\n    var uptimeMilliseconds: UInt64 { uptimeNanoseconds / 1_000_000 }\n}\n"
  },
  {
    "path": "Rectangle/Utilities/EventMonitor.swift",
    "content": "//\n//  EventMonitor.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 9/4/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Cocoa\n\nprotocol EventMonitor {\n    var running: Bool { get }\n    \n    func start()\n    func stop()\n}\n\npublic class PassiveEventMonitor: EventMonitor {\n    private var localMonitor: Any?\n    private var globalMonitor: Any?\n    private let mask: NSEvent.EventTypeMask\n    private let handler: (NSEvent) -> Void\n\n    var running: Bool { localMonitor != nil && globalMonitor != nil }\n    \n    public init(mask: NSEvent.EventTypeMask, handler: @escaping (NSEvent) -> Void) {\n        self.mask = mask\n        self.handler = handler\n    }\n    \n    deinit {\n        stop()\n    }\n    \n    public func start() {\n        localMonitor = NSEvent.addLocalMonitorForEvents(matching: mask) { event in\n            self.handler(event)\n            return event\n        }\n        globalMonitor = NSEvent.addGlobalMonitorForEvents(matching: mask, handler: handler)\n    }\n    \n    public func stop() {\n        if localMonitor != nil {\n            NSEvent.removeMonitor(localMonitor!)\n            localMonitor = nil\n        }\n        if globalMonitor != nil {\n            NSEvent.removeMonitor(globalMonitor!)\n            globalMonitor = nil\n        }\n    }\n}\n\npublic class ActiveEventMonitor: EventMonitor {\n    private var tap: CFMachPort?\n    private var thread: RunLoopThread?\n    private let mask: NSEvent.EventTypeMask\n    public let filterer: (NSEvent) -> Bool\n    public let handler: (NSEvent) -> Void\n\n    var running: Bool { tap != nil }\n    \n    public init(mask: NSEvent.EventTypeMask, filterer: @escaping (NSEvent) -> Bool, handler: @escaping (NSEvent) -> Void) {\n        self.mask = mask\n        self.filterer = filterer\n        self.handler = handler\n    }\n    \n    deinit {\n        stop()\n    }\n    \n    public func start() {\n        tap = CGEvent.tapCreate(tap: .cgSessionEventTap, place: .headInsertEventTap, options: .defaultTap, eventsOfInterest: mask.rawValue, callback: tapCallback, userInfo: CUtil.bridge(obj: self))\n        if let tap = tap {\n            thread = RunLoopThread(mode: .default, qualityOfService: .userInteractive, start: true)\n            thread!.runLoop!.add(tap, forMode: .default)\n        }\n    }\n    \n    public func stop() {\n        if let tap = tap {\n            thread!.runLoop!.remove(tap, forMode: .default)\n            thread!.cancel()\n            thread = nil\n            CGEvent.tapEnable(tap: tap, enable: false)\n        }\n        tap = nil\n    }\n}\n\nfileprivate func tapCallback(proxy: CGEventTapProxy, type: CGEventType, event: CGEvent, refcon: UnsafeMutableRawPointer?) -> Unmanaged<CGEvent>? {\n    var filtered = false\n    if let ptr = refcon {\n        let eventMonitor = CUtil.bridge(ptr: ptr) as ActiveEventMonitor\n        if type == .tapDisabledByTimeout || type == .tapDisabledByUserInput {\n            eventMonitor.stop()\n            eventMonitor.start()\n        } else {\n            if let nsEvent = NSEvent(cgEvent: event) {\n                filtered = eventMonitor.filterer(nsEvent)\n                DispatchQueue.main.async { eventMonitor.handler(nsEvent) }\n            }\n        }\n    }\n    return filtered ? nil : Unmanaged.passUnretained(event)\n}\n"
  },
  {
    "path": "Rectangle/Utilities/MASShortcutMigration.swift",
    "content": "//\n//  MASShortcutMigration.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 12/22/20.\n//  Copyright © 2020 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\nimport MASShortcut\n\nclass MASShortcutMigration {\n    \n    static func migrate() {\n        \n        guard let dataTransformer = ValueTransformer(forName: .secureUnarchiveFromDataTransformerName) else { return }\n        \n        guard let dictTransformer = ValueTransformer(forName: NSValueTransformerName(rawValue: MASDictionaryTransformerName)) else { return }\n\n        for action in WindowAction.active {\n            \n            if let dataValue = UserDefaults.standard.data(forKey: action.name) {\n                if let shortcut = dataTransformer.transformedValue(dataValue) {\n                    \n                    let dictValue = dictTransformer.reverseTransformedValue(shortcut)\n                    UserDefaults.standard.setValue(dictValue, forKey: action.name)\n                }\n            }\n            \n        }\n        \n    }\n    \n}\n"
  },
  {
    "path": "Rectangle/Utilities/MacTilingDefaults.swift",
    "content": "//\n//  MacTilingDefaults.swift\n//  Rectangle\n//\n//  Copyright © 2024 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\n/// Read / disable the user defaults values for the macOS built-in window tiling, added in macOS 15 Sequoia.\n/// These are toggled in the Desktop & Dock System Settings Pane:\nenum MacTilingDefaults: String {\n    case tilingByEdgeDrag = \"EnableTilingByEdgeDrag\"\n    case tilingOptionAccelerator = \"EnableTilingOptionAccelerator\"\n    case tiledWindowMargins = \"EnableTiledWindowMargins\"\n    case topTilingByEdgeDrag = \"EnableTopTilingByEdgeDrag\"\n    \n    var enabled: Bool {\n        guard #available(macOS 15, *), let defaults = UserDefaults(suiteName: \"com.apple.WindowManager\")\n        else {\n            return false\n        }\n        \n        if defaults.object(forKey: self.rawValue) == nil { // These are enabled by default\n            return true\n        }\n        return defaults.bool(forKey: self.rawValue)\n    }\n    \n    func disable() {\n        guard let defaults = UserDefaults(suiteName: \"com.apple.WindowManager\")\n        else {\n            return\n        }\n        \n        defaults.set(false, forKey: self.rawValue)\n        defaults.synchronize()\n    }\n    \n    static func openSystemSettings() {\n        NSWorkspace.shared.open(URL(string:\"x-apple.systempreferences:com.apple.preference.Desktop-Settings.extension\")!)\n    }\n    \n    static func checkForBuiltInTiling(skipIfAlreadyNotified: Bool) {\n        guard #available(macOS 15, *), !Defaults.windowSnapping.userDisabled\n        else { return }\n\n        let isStandardTilingConflicting = (tilingByEdgeDrag.enabled || tilingOptionAccelerator.enabled)\n        \n        let shouldSkipStandardCheck = skipIfAlreadyNotified && Defaults.internalTilingNotified.enabled\n        \n        if isStandardTilingConflicting && !shouldSkipStandardCheck {\n            resolveStandardTilingConflict()\n        } else if isTopTilingConflicting {\n            resolveTopTilingConflict()\n        }\n        Defaults.internalTilingNotified.enabled = true\n    }\n    \n    private static func resolveTopTilingConflict() {\n        Logger.log(\"Automatically disabling macOS top edge tiling to resolve conflict with macOS.\")\n        \n        topTilingByEdgeDrag.disable()\n        \n        if !Defaults.internalTilingNotified.enabled {\n            // First time running Rectangle & only has drag to top enabled in macOS\n            let result = AlertUtil.twoButtonAlert(\n                question: \"Top screen edge tiling in macOS is now disabled\".localized,\n                text: \"To adjust macOS tiling, go to System Settings → Desktop & Dock → Windows\".localized,\n                cancelText: \"Open System Settings\".localized)\n            if result == .alertSecondButtonReturn {\n                openSystemSettings()\n            }\n        }\n    }\n    \n    private static var isTopTilingConflicting: Bool {\n        guard #available(macOS 15.1, *) else { return false }\n        return topTilingByEdgeDrag.enabled && SnapAreaModel.instance.isTopConfigured\n    }\n    \n    private static func resolveStandardTilingConflict() {\n        let result = AlertUtil.threeButtonAlert(\n            question: \"Conflict with macOS tiling\".localized,\n            text: \"Drag to screen edge tiling is enabled in both Rectangle and macOS.\".localized,\n            buttonOneText: \"Disable in macOS\".localized,\n            buttonTwoText: \"Disable in Rectangle\".localized,\n            buttonThreeText: \"Dismiss\".localized)\n        switch result {\n        case .alertFirstButtonReturn:\n            disableMacTiling()\n\n            let result = AlertUtil.twoButtonAlert(\n                question: \"Tiling in macOS has been disabled\".localized,\n                text: \"To re-enable it, go to System Settings → Desktop & Dock → Windows\".localized,\n                cancelText: \"Open System Settings\".localized)\n            if result == .alertSecondButtonReturn {\n                openSystemSettings()\n            }\n        case .alertSecondButtonReturn:\n            Defaults.windowSnapping.enabled = false\n            Notification.Name.windowSnapping.post(object: false)\n\n            let result = AlertUtil.twoButtonAlert(\n                question: \"Tiling in Rectangle has been disabled\".localized,\n                text: \"To adjust macOS tiling, go to System Settings → Desktop & Dock → Windows\".localized,\n                cancelText: \"Open System Settings\".localized)\n            if result == .alertSecondButtonReturn {\n                openSystemSettings()\n            }\n        default:\n            break\n        }\n    }\n    \n    private static func disableMacTiling() {\n        tilingByEdgeDrag.disable()\n        tilingOptionAccelerator.disable()\n        topTilingByEdgeDrag.disable()\n    }\n}\n"
  },
  {
    "path": "Rectangle/Utilities/NSImageExtension.swift",
    "content": "//\n//  NSImageExtension.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 4/9/21.\n//  Copyright © 2021 Ryan Hanson. All rights reserved.\n//\n\nimport Cocoa\n\nextension NSImage {\n    func rotated(by degrees: CGFloat) -> NSImage {\n        let sinDegrees = abs(sin(degrees * CGFloat.pi / 180.0))\n        let cosDegrees = abs(cos(degrees * CGFloat.pi / 180.0))\n        let newSize = CGSize(width: size.height * sinDegrees + size.width * cosDegrees,\n                             height: size.width * sinDegrees + size.height * cosDegrees)\n\n        let imageBounds = NSRect(x: (newSize.width - size.width) / 2,\n                                 y: (newSize.height - size.height) / 2,\n                                 width: size.width, height: size.height)\n\n        let otherTransform = NSAffineTransform()\n        otherTransform.translateX(by: newSize.width / 2, yBy: newSize.height / 2)\n        otherTransform.rotate(byDegrees: degrees)\n        otherTransform.translateX(by: -newSize.width / 2, yBy: -newSize.height / 2)\n\n        let rotatedImage = NSImage(size: newSize)\n        rotatedImage.lockFocus()\n        otherTransform.concat()\n        draw(in: imageBounds, from: CGRect.zero, operation: NSCompositingOperation.copy, fraction: 1.0)\n        rotatedImage.unlockFocus()\n\n        return rotatedImage\n    }\n}\n"
  },
  {
    "path": "Rectangle/Utilities/NotificationExtension.swift",
    "content": "//\n//  NotificationExtension.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 12/23/20.\n//  Copyright © 2020 Ryan Hanson. All rights reserved.\n//\n\nimport Cocoa\n\nextension Notification.Name {\n  \n    static let configImported = Notification.Name(\"configImported\")\n    static let windowSnapping = Notification.Name(\"windowSnapping\")\n    static let frontAppChanged = Notification.Name(\"frontAppChanged\")\n    static let allowAnyShortcut = Notification.Name(\"allowAnyShortcutToggle\")\n    static let changeDefaults = Notification.Name(\"changeDefaults\")\n    static let todoMenuToggled = Notification.Name(\"todoMenuToggled\")\n    static let appWillBecomeActive = Notification.Name(\"appWillBecomeActive\")\n    static let missionControlDragging = Notification.Name(\"missionControlDragging\")\n    static let menuBarIconHidden = Notification.Name(\"menuBarIconHidden\")\n    static let windowTitleBar = Notification.Name(\"windowTitleBar\")\n    static let defaultSnapAreas = Notification.Name(\"defaultSnapAreas\")\n    static let updateAvailability = Notification.Name(\"updateAvailability\")\n    static let showAdditionalSizesInMenuChanged = Notification.Name(\"showAdditionalSizesInMenuChanged\")\n\n    func post(\n        center: NotificationCenter = NotificationCenter.default,\n        object: Any? = nil,\n        userInfo: [AnyHashable : Any]? = nil) {\n        \n        center.post(name: self, object: object, userInfo: userInfo)\n    }\n    \n    @discardableResult\n    func onPost(\n        center: NotificationCenter = NotificationCenter.default,\n        object: Any? = nil,\n        queue: OperationQueue? = nil,\n        using: @escaping (Notification) -> Void)\n    -> NSObjectProtocol {\n        \n        return center.addObserver(\n            forName: self,\n            object: object,\n            queue: queue,\n            using: using)\n    }\n\n}\n\n"
  },
  {
    "path": "Rectangle/Utilities/RunLoopThread.swift",
    "content": "//\n//  RunLoopThread.swift\n//  Rectangle\n//\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass RunLoopThread: Thread {\n    private let startSemaphore = DispatchSemaphore(value: 0)\n    private let mode: RunLoop.Mode\n    private(set) var runLoop: RunLoop?\n    \n    init(mode: RunLoop.Mode, qualityOfService: QualityOfService? = nil, start: Bool = false) {\n        self.mode = mode\n        super.init()\n        if let qualityOfService = qualityOfService { self.qualityOfService = qualityOfService }\n        if start { self.start() }\n    }\n    \n    override func start() {\n        super.start()\n        startSemaphore.wait()\n    }\n    \n    override func main() {\n        runLoop = RunLoop.current\n        startSemaphore.signal()\n        while !isCancelled {\n            if !runLoop!.run(mode: mode, before: .distantFuture) {\n                Thread.sleep(forTimeInterval: 0.1)\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "Rectangle/Utilities/SequenceExtension.swift",
    "content": "//\n//  SequenceExtension.swift\n//  Rectangle\n//\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nextension Sequence {\n    func uniqueMap<T>(_ transform: (Element) -> T) -> [T] where T: Hashable {\n        var set = Set<T>()\n        var array = Array<T>()\n        for element in self {\n            let element = transform(element)\n            if set.insert(element).inserted {\n                array.append(element)\n            }\n        }\n        return array\n    }\n}\n"
  },
  {
    "path": "Rectangle/Utilities/StageUtil.swift",
    "content": "//\n//  StageUtil.swift\n//  Rectangle\n//\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass StageUtil {\n    private static let windowManagerDefaults = UserDefaults(suiteName: \"com.apple.WindowManager\")\n    private static let dockDefaults = UserDefaults(suiteName: \"com.apple.dock\")\n    \n    static var stageCapable: Bool {\n        guard #available(macOS 13, *) else {\n            return false\n        }\n        return true\n    }\n    \n    static var stageEnabled: Bool {\n        guard let value = windowManagerDefaults?.object(forKey: \"GloballyEnabled\") as? Bool else {\n            return false\n        }\n        return value\n    }\n    \n    static var stageStripShow: Bool {\n        guard let value = windowManagerDefaults?.object(forKey: \"AutoHide\") as? Bool else {\n            return false\n        }\n        return !value\n    }\n    \n    static var stageStripPosition: StageStripPosition {\n        switch dockDefaults?.string(forKey: \"orientation\") {\n        case \"left\":\n            return .right\n        case \"right\":\n            return .left\n        default: // bottom\n            var isRTL = false\n            if #available(macOS 13, *), Locale.current.language.characterDirection == .rightToLeft {\n                isRTL = true\n            }\n            return isRTL ? .right : .left\n        }\n    }\n    \n    static func isStageStripVisible(_ screen: NSScreen? = .main) -> Bool {\n        guard let screen else {\n            return false\n        }\n        let infos = WindowUtil.getWindowList().filter { info in\n            guard info.processName == \"WindowManager\" else {\n                return false\n            }\n            let frame = info.frame.screenFlipped\n            let screens = NSScreen.screens.filter { $0.frame.minY <= frame.minY && frame.maxY <= $0.frame.maxY }\n            var infoScreen: NSScreen?\n            if stageStripPosition == .left {\n                infoScreen = screens.min { abs(frame.minX - $0.frame.minX) < abs(frame.minX - $1.frame.minX) }\n            } else {\n                infoScreen = screens.min { abs($0.frame.maxX - frame.maxX) < abs($1.frame.maxX - frame.maxX) }\n            }\n            return infoScreen == screen\n        }\n        // A single window could be for the dragged window\n        return infos.count >= 2\n    }\n    \n    private static func getStageStripWindowGroups(_ screen: NSScreen? = .main) -> [[CGWindowID]] {\n        guard\n            let screen,\n            let appElement = AccessibilityElement(\"com.apple.WindowManager\"),\n            let stripElements = appElement.getChildElements(.group),\n            let stripElement = (stripElements.first {\n                let frame = $0.frame.screenFlipped\n                return !frame.isNull && screen.frame.contains(frame)\n            }),\n            let groupElements = stripElement.getChildElement(.list)?.getChildElements(.button)\n        else {\n            return []\n        }\n        return groupElements.compactMap { $0.windowIds }\n    }\n    \n    static func getStageStripWindowGroup(_ windowId: CGWindowID, _ screen: NSScreen? = .main) -> [CGWindowID]? {\n        return getStageStripWindowGroups(screen).first { $0.contains(windowId) }\n    }\n}\n\nenum StageStripPosition {\n    case left\n    case right\n}\n"
  },
  {
    "path": "Rectangle/Utilities/StringExtension.swift",
    "content": "//\n//  StringExtension.swift\n//  Rectangle\n//\n//  Copyright © 2024 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nextension String {\n    \n    var localized: String {\n        NSLocalizedString(self, tableName: \"Main\", comment: \"\")\n    }\n    \n    func localized(key: String) -> String {\n        NSLocalizedString(key, tableName: \"Main\", value: self, comment: \"\")\n    }\n    \n}\n"
  },
  {
    "path": "Rectangle/Utilities/TimeoutCache.swift",
    "content": "//\n//  TimeoutCache.swift\n//  Rectangle\n//\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass TimeoutCache<Key: Hashable, Value> {\n    private let timeout: UInt64\n    private var head: Entry?\n    private var tail: Entry?\n    private var cache = [Key: Entry]()\n    private var purgeRestrictionExpirationTimestamp: UInt64 = 0\n    private var purgeRestrictionExpired: Bool { DispatchTime.now().uptimeMilliseconds > purgeRestrictionExpirationTimestamp }\n    \n    init(timeout: UInt64) {\n        self.timeout = timeout\n    }\n    \n    subscript(key: Key) -> Value? {\n        get {\n            guard let entry = cache[key], !entry.expired else {\n                remove(key)\n                return nil\n            }\n            return entry.value\n        }\n        set {\n            remove(key)\n            purge()\n            guard let value = newValue else { return }\n            let expirationTimestamp = DispatchTime.now().uptimeMilliseconds + timeout\n            let entry = Entry(key: key, value: value, expirationTimestamp: expirationTimestamp, previous: tail)\n            entry.previous?.next = entry\n            if head == nil { head = entry }\n            tail = entry\n            cache[key] = entry\n        }\n    }\n    \n    private func remove(_ key: Key) {\n        guard let entry = cache[key] else { return }\n        cache[key] = nil\n        if entry === tail { tail = entry.previous }\n        if entry === head { head = entry.next }\n        entry.previous?.next = entry.next\n        entry.next?.previous = entry.previous\n    }\n    \n    private func purge() {\n        guard purgeRestrictionExpired else { return }\n        var entry = head\n        while entry != nil && entry!.expired {\n            remove(entry!.key)\n            entry = entry!.next\n        }\n        purgeRestrictionExpirationTimestamp = DispatchTime.now().uptimeMilliseconds + (100 * timeout)\n    }\n    \n    private class Entry {\n        let key: Key\n        let value: Value\n        let expirationTimestamp: UInt64\n        var previous: Entry?\n        var next: Entry?\n        var expired: Bool { DispatchTime.now().uptimeMilliseconds > expirationTimestamp }\n        \n        init(key: Key, value: Value, expirationTimestamp: UInt64, previous: Entry?) {\n            self.key = key\n            self.value = value\n            self.expirationTimestamp = expirationTimestamp\n            self.previous = previous\n        }\n    }\n}\n"
  },
  {
    "path": "Rectangle/Utilities/WindowUtil.swift",
    "content": "//\n//  WindowUtil.swift\n//  Rectangle\n//\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass WindowUtil {\n    private static var windowListCache = TimeoutCache<[CGWindowID]?, [WindowInfo]>(timeout: 100)\n    \n    static func getWindowList(ids: [CGWindowID]? = nil, all: Bool = false) -> [WindowInfo] {\n        if let infos = windowListCache[ids] {\n            return infos\n        }\n        var infos = [WindowInfo]()\n        var rawInfos: CFArray?\n        if let ids {\n            let values = UnsafeMutablePointer<UnsafeRawPointer?>.allocate(capacity: ids.count)\n            for (i, id) in ids.enumerated() {\n                values[i] = UnsafeRawPointer(bitPattern: UInt(id))\n            }\n            let rawIds = CFArrayCreate(kCFAllocatorDefault, values, ids.count, nil)\n            rawInfos = CGWindowListCreateDescriptionFromArray(rawIds)\n        } else {\n            rawInfos = CGWindowListCopyWindowInfo([all ? .optionAll : .optionOnScreenOnly, .excludeDesktopElements], kCGNullWindowID)\n        }\n        if let rawInfos {\n            let count = rawInfos.getCount()\n            for i in 0..<count {\n                let rawInfo = rawInfos.getValue(i) as CFDictionary\n                let rawId = rawInfo.getValue(kCGWindowNumber) as CFNumber\n                let rawLevel = rawInfo.getValue(kCGWindowLayer) as CFNumber\n                let rawFrame = rawInfo.getValue(kCGWindowBounds) as CFDictionary\n                let rawPid = rawInfo.getValue(kCGWindowOwnerPID) as CFNumber\n                let rawProcessName = rawInfo.getValue(kCGWindowOwnerName) as CFString?\n                let id = CGWindowID(truncating: rawId)\n                let level = CGWindowLevel(truncating: rawLevel)\n                guard let frame = CGRect(dictionaryRepresentation: rawFrame) else {\n                    continue\n                }\n                let pid = pid_t(truncating: rawPid)\n                var processName: String?\n                if let rawProcessName {\n                    processName = String(rawProcessName)\n                }\n                let info = WindowInfo(id: id, level: level, frame: frame, pid: pid, processName: processName)\n                infos.append(info)\n            }\n        }\n        windowListCache[ids] = infos\n        return infos\n    }\n}\n\nstruct WindowInfo {\n    let id: CGWindowID\n    let level: CGWindowLevel\n    let frame: CGRect\n    let pid: pid_t\n    let processName: String?\n}\n"
  },
  {
    "path": "Rectangle/WelcomeWindow/WelcomeViewController.swift",
    "content": "//\n//  WelcomeViewController.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 4/9/20.\n//  Copyright © 2020 Ryan Hanson. All rights reserved.\n//\n\nimport Cocoa\n\nclass WelcomeViewController: NSViewController {\n    \n    @IBAction func selectRecommended(_ sender: Any) {\n        NSApp.stopModal(withCode: .alertFirstButtonReturn)\n    }\n    \n    @IBAction func selectSpectacle(_ sender: Any) {\n        NSApp.stopModal(withCode: .alertSecondButtonReturn)\n    }\n}\n\nclass WelcomeWindowController: NSWindowController {\n    \n    override func windowDidLoad() {\n        super.windowDidLoad()\n        let closeButton = self.window?.standardWindowButton(.closeButton)\n        closeButton?.target = self\n        closeButton?.action = #selector(windowClosed)\n    }\n    \n    @objc func windowClosed() {\n        NSApp.stopModal(withCode: .alertFirstButtonReturn)\n    }\n\n}\n\n"
  },
  {
    "path": "Rectangle/WindowAction.swift",
    "content": "//\n//  WindowAction.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 6/12/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\nimport Carbon\nimport Cocoa\nimport MASShortcut\n\nfileprivate let alt = NSEvent.ModifierFlags.option.rawValue\nfileprivate let ctrl = NSEvent.ModifierFlags.control.rawValue\nfileprivate let shift = NSEvent.ModifierFlags.shift.rawValue\nfileprivate let cmd = NSEvent.ModifierFlags.command.rawValue\n\nenum WindowAction: Int, Codable {\n    case leftHalf = 0,\n         rightHalf = 1,\n         maximize = 2,\n         maximizeHeight = 3,\n         previousDisplay = 4,\n         nextDisplay = 5,\n         larger = 8,\n         smaller = 9,\n         bottomHalf = 10,\n         topHalf = 11,\n         center = 12,\n         bottomLeft = 13,\n         bottomRight = 14,\n         topLeft = 15,\n         topRight = 16,\n         restore = 19,\n         firstThird = 20,\n         firstTwoThirds = 21,\n         centerThird = 22,\n         lastTwoThirds = 23,\n         lastThird = 24,\n         moveLeft = 25,\n         moveRight = 26,\n         moveUp = 27,\n         moveDown = 28,\n         almostMaximize = 29,\n         centerHalf = 30,\n         firstFourth = 31,\n         secondFourth = 32,\n         thirdFourth = 33,\n         lastFourth = 34,\n         firstThreeFourths = 35,\n         lastThreeFourths = 36,\n         topLeftSixth = 37,\n         topCenterSixth = 38,\n         topRightSixth = 39,\n         bottomLeftSixth = 40,\n         bottomCenterSixth = 41,\n         bottomRightSixth = 42,\n         specified = 43,\n         reverseAll = 44,\n         topLeftNinth = 45,\n         topCenterNinth = 46,\n         topRightNinth = 47,\n         middleLeftNinth = 48,\n         middleCenterNinth = 49,\n         middleRightNinth = 50,\n         bottomLeftNinth = 51,\n         bottomCenterNinth = 52,\n         bottomRightNinth = 53,\n         topLeftThird = 54,\n         topRightThird = 55,\n         bottomLeftThird = 56,\n         bottomRightThird = 57,\n         topLeftEighth = 58,\n         topCenterLeftEighth = 59,\n         topCenterRightEighth = 60,\n         topRightEighth = 61,\n         bottomLeftEighth = 62,\n         bottomCenterLeftEighth = 63,\n         bottomCenterRightEighth = 64,\n         bottomRightEighth = 65,\n         tileAll = 66,\n         cascadeAll = 67,\n         leftTodo = 68,\n         rightTodo = 69,\n         cascadeActiveApp = 70,\n         centerProminently = 71,\n         doubleHeightUp = 72,\n         doubleHeightDown = 73,\n         doubleWidthLeft = 74,\n         doubleWidthRight = 75,\n         halveHeightUp = 76,\n         halveHeightDown = 77,\n         halveWidthLeft = 78,\n         halveWidthRight = 79,\n         largerWidth = 80,\n         smallerWidth = 81,\n         largerHeight = 82,\n         smallerHeight = 83,\n         centerTwoThirds = 84,\n         centerThreeFourths = 85,\n         tileActiveApp = 86,\n         topVerticalThird = 87,\n         middleVerticalThird = 88,\n         bottomVerticalThird = 89,\n         topVerticalTwoThirds = 90,\n         bottomVerticalTwoThirds = 91,\n         topLeftTwelfth = 92,\n         topCenterLeftTwelfth = 93,\n         topCenterRightTwelfth = 94,\n         topRightTwelfth = 95,\n         middleLeftTwelfth = 96,\n         middleCenterLeftTwelfth = 97,\n         middleCenterRightTwelfth = 98,\n         middleRightTwelfth = 99,\n         bottomLeftTwelfth = 100,\n         bottomCenterLeftTwelfth = 101,\n         bottomCenterRightTwelfth = 102,\n         bottomRightTwelfth = 103,\n         topLeftSixteenth = 104,\n         topCenterLeftSixteenth = 105,\n         topCenterRightSixteenth = 106,\n         topRightSixteenth = 107,\n         upperMiddleLeftSixteenth = 108,\n         upperMiddleCenterLeftSixteenth = 109,\n         upperMiddleCenterRightSixteenth = 110,\n         upperMiddleRightSixteenth = 111,\n         lowerMiddleLeftSixteenth = 112,\n         lowerMiddleCenterLeftSixteenth = 113,\n         lowerMiddleCenterRightSixteenth = 114,\n         lowerMiddleRightSixteenth = 115,\n         bottomLeftSixteenth = 116,\n         bottomCenterLeftSixteenth = 117,\n         bottomCenterRightSixteenth = 118,\n         bottomRightSixteenth = 119\n\n    // Order matters here - it's used in the menu\n    static let active = [leftHalf, rightHalf, centerHalf, topHalf, bottomHalf,\n                         topLeft, topRight, bottomLeft, bottomRight,\n                         firstThird, centerThird, lastThird, firstTwoThirds, centerTwoThirds, lastTwoThirds,\n                         topVerticalThird, middleVerticalThird, bottomVerticalThird, topVerticalTwoThirds, bottomVerticalTwoThirds,\n                         maximize, almostMaximize, maximizeHeight, larger, smaller, largerWidth, smallerWidth, largerHeight, smallerHeight,\n                         center, centerProminently, restore,\n                         nextDisplay, previousDisplay,\n                         moveLeft, moveRight, moveUp, moveDown,\n                         firstFourth, secondFourth, thirdFourth, lastFourth, firstThreeFourths, centerThreeFourths, lastThreeFourths,\n                         topLeftSixth, topCenterSixth, topRightSixth, bottomLeftSixth, bottomCenterSixth, bottomRightSixth,\n                         specified, reverseAll,\n                         topLeftThird, topRightThird, bottomLeftThird, bottomRightThird,\n                         topLeftEighth, topCenterLeftEighth, topCenterRightEighth, topRightEighth,\n                         bottomLeftEighth, bottomCenterLeftEighth, bottomCenterRightEighth, bottomRightEighth,\n                         topLeftNinth, topCenterNinth, topRightNinth,\n                         middleLeftNinth, middleCenterNinth, middleRightNinth,\n                         bottomLeftNinth, bottomCenterNinth, bottomRightNinth,\n                         topLeftTwelfth, topCenterLeftTwelfth, topCenterRightTwelfth, topRightTwelfth,\n                         middleLeftTwelfth, middleCenterLeftTwelfth, middleCenterRightTwelfth, middleRightTwelfth,\n                         bottomLeftTwelfth, bottomCenterLeftTwelfth, bottomCenterRightTwelfth, bottomRightTwelfth,\n                         topLeftSixteenth, topCenterLeftSixteenth, topCenterRightSixteenth, topRightSixteenth,\n                         upperMiddleLeftSixteenth, upperMiddleCenterLeftSixteenth, upperMiddleCenterRightSixteenth, upperMiddleRightSixteenth,\n                         lowerMiddleLeftSixteenth, lowerMiddleCenterLeftSixteenth, lowerMiddleCenterRightSixteenth, lowerMiddleRightSixteenth,\n                         bottomLeftSixteenth, bottomCenterLeftSixteenth, bottomCenterRightSixteenth, bottomRightSixteenth,\n                         doubleHeightUp, doubleHeightDown, doubleWidthLeft, doubleWidthRight,\n                         halveHeightUp, halveHeightDown, halveWidthLeft, halveWidthRight,\n                         tileAll, cascadeAll,\n                         leftTodo, rightTodo,\n                         cascadeActiveApp, tileActiveApp\n    ]\n\n    func post() {\n        NotificationCenter.default.post(name: notificationName, object: ExecutionParameters(self))\n    }\n    \n    func postMenu() {\n        NotificationCenter.default.post(name: notificationName, object: ExecutionParameters(self, source: .menuItem))\n    }\n\n    func postSnap(windowElement: AccessibilityElement?, windowId: CGWindowID?, screen: NSScreen) {\n        NotificationCenter.default.post(name: notificationName, object: ExecutionParameters(self, updateRestoreRect: false, screen: screen, windowElement: windowElement, windowId: windowId, source: .dragToSnap))\n    }\n    \n    func postUrl() {\n        NotificationCenter.default.post(name: notificationName, object: ExecutionParameters(self, source: .url))\n    }\n    \n    func postTitleBar(windowElement: AccessibilityElement?) {\n        NotificationCenter.default.post(name: notificationName, object: ExecutionParameters(self, windowElement: windowElement, source: .titleBar))\n    }\n\n    // Determines where separators should be used in the menu\n    var firstInGroup: Bool {\n        switch self {\n        case .leftHalf, .topLeft, .firstThird, .maximize, .almostMaximize, .nextDisplay, .moveLeft, .firstFourth, .topLeftSixth, .topLeftEighth, .topLeftNinth, .topLeftTwelfth, .topLeftSixteenth:\n            return true\n        default:\n            return false\n        }\n    }\n\n    var name: String {\n        switch self {\n        case .leftHalf: return \"leftHalf\"\n        case .rightHalf: return \"rightHalf\"\n        case .maximize: return \"maximize\"\n        case .maximizeHeight: return \"maximizeHeight\"\n        case .previousDisplay: return \"previousDisplay\"\n        case .nextDisplay: return \"nextDisplay\"\n        case .larger: return \"larger\"\n        case .smaller: return \"smaller\"\n        case .bottomHalf: return \"bottomHalf\"\n        case .topHalf: return \"topHalf\"\n        case .center: return \"center\"\n        case .bottomLeft: return \"bottomLeft\"\n        case .bottomRight: return \"bottomRight\"\n        case .topLeft: return \"topLeft\"\n        case .topRight: return \"topRight\"\n        case .restore: return \"restore\"\n        case .firstThird: return \"firstThird\"\n        case .firstTwoThirds: return \"firstTwoThirds\"\n        case .centerThird: return \"centerThird\"\n        case .centerTwoThirds: return \"centerTwoThirds\"\n        case .lastTwoThirds: return \"lastTwoThirds\"\n        case .lastThird: return \"lastThird\"\n        case .moveLeft: return \"moveLeft\"\n        case .moveRight: return \"moveRight\"\n        case .moveUp: return \"moveUp\"\n        case .moveDown: return \"moveDown\"\n        case .almostMaximize: return \"almostMaximize\"\n        case .centerHalf: return \"centerHalf\"\n        case .firstFourth: return \"firstFourth\"\n        case .secondFourth: return \"secondFourth\"\n        case .thirdFourth: return \"thirdFourth\"\n        case .lastFourth: return \"lastFourth\"\n        case .firstThreeFourths: return \"firstThreeFourths\"\n        case .centerThreeFourths: return \"centerThreeFourths\"\n        case .lastThreeFourths: return \"lastThreeFourths\"\n        case .topLeftSixth: return \"topLeftSixth\"\n        case .topCenterSixth: return \"topCenterSixth\"\n        case .topRightSixth: return \"topRightSixth\"\n        case .bottomLeftSixth: return \"bottomLeftSixth\"\n        case .bottomCenterSixth: return \"bottomCenterSixth\"\n        case .bottomRightSixth: return \"bottomRightSixth\"\n        case .specified: return \"specified\"\n        case .reverseAll: return \"reverseAll\"\n        case .topLeftNinth: return \"topLeftNinth\"\n        case .topCenterNinth: return \"topCenterNinth\"\n        case .topRightNinth: return \"topRightNinth\"\n        case .middleLeftNinth: return \"middleLeftNinth\"\n        case .middleCenterNinth: return \"middleCenterNinth\"\n        case .middleRightNinth: return \"middleRightNinth\"\n        case .bottomLeftNinth: return \"bottomLeftNinth\"\n        case .bottomCenterNinth: return \"bottomCenterNinth\"\n        case .bottomRightNinth: return \"bottomRightNinth\"\n        case .topLeftThird: return \"topLeftThird\"\n        case .topRightThird: return \"topRightThird\"\n        case .bottomLeftThird: return \"bottomLeftThird\"\n        case .bottomRightThird: return \"bottomRightThird\"\n        case .topLeftEighth: return \"topLeftEighth\"\n        case .topCenterLeftEighth: return \"topCenterLeftEighth\"\n        case .topCenterRightEighth: return \"topCenterRightEighth\"\n        case .topRightEighth: return \"topRightEighth\"\n        case .bottomLeftEighth: return \"bottomLeftEighth\"\n        case .bottomCenterLeftEighth: return \"bottomCenterLeftEighth\"\n        case .bottomCenterRightEighth: return \"bottomCenterRightEighth\"\n        case .bottomRightEighth: return \"bottomRightEighth\"\n        case .doubleHeightUp: return \"doubleHeightUp\"\n        case .doubleHeightDown: return \"doubleHeightDown\"\n        case .doubleWidthLeft: return \"doubleWidthLeft\"\n        case .doubleWidthRight: return \"doubleWidthRight\"\n        case .halveHeightUp: return \"halveHeightUp\"\n        case .halveHeightDown: return \"halveHeightDown\"\n        case .halveWidthLeft: return \"halveWidthLeft\"\n        case .halveWidthRight: return \"halveWidthRight\"\n        case .tileAll: return \"tileAll\"\n        case .cascadeAll: return \"cascadeAll\"\n        case .leftTodo: return \"leftTodo\"\n        case .rightTodo: return \"rightTodo\"\n        case .cascadeActiveApp: return \"cascadeActiveApp\"\n        case .tileActiveApp: return \"tileActiveApp\"\n        case .centerProminently: return \"centerProminently\"\n        case .largerWidth: return \"largerWidth\"\n        case .smallerWidth: return \"smallerWidth\"\n        case .largerHeight: return \"largerHeight\"\n        case .smallerHeight: return \"smallerHeight\"\n        case .topVerticalThird: return \"topVerticalThird\"\n        case .middleVerticalThird: return \"middleVerticalThird\"\n        case .bottomVerticalThird: return \"bottomVerticalThird\"\n        case .topVerticalTwoThirds: return \"topVerticalTwoThirds\"\n        case .bottomVerticalTwoThirds: return \"bottomVerticalTwoThirds\"\n        case .topLeftTwelfth: return \"topLeftTwelfth\"\n        case .topCenterLeftTwelfth: return \"topCenterLeftTwelfth\"\n        case .topCenterRightTwelfth: return \"topCenterRightTwelfth\"\n        case .topRightTwelfth: return \"topRightTwelfth\"\n        case .middleLeftTwelfth: return \"middleLeftTwelfth\"\n        case .middleCenterLeftTwelfth: return \"middleCenterLeftTwelfth\"\n        case .middleCenterRightTwelfth: return \"middleCenterRightTwelfth\"\n        case .middleRightTwelfth: return \"middleRightTwelfth\"\n        case .bottomLeftTwelfth: return \"bottomLeftTwelfth\"\n        case .bottomCenterLeftTwelfth: return \"bottomCenterLeftTwelfth\"\n        case .bottomCenterRightTwelfth: return \"bottomCenterRightTwelfth\"\n        case .bottomRightTwelfth: return \"bottomRightTwelfth\"\n        case .topLeftSixteenth: return \"topLeftSixteenth\"\n        case .topCenterLeftSixteenth: return \"topCenterLeftSixteenth\"\n        case .topCenterRightSixteenth: return \"topCenterRightSixteenth\"\n        case .topRightSixteenth: return \"topRightSixteenth\"\n        case .upperMiddleLeftSixteenth: return \"upperMiddleLeftSixteenth\"\n        case .upperMiddleCenterLeftSixteenth: return \"upperMiddleCenterLeftSixteenth\"\n        case .upperMiddleCenterRightSixteenth: return \"upperMiddleCenterRightSixteenth\"\n        case .upperMiddleRightSixteenth: return \"upperMiddleRightSixteenth\"\n        case .lowerMiddleLeftSixteenth: return \"lowerMiddleLeftSixteenth\"\n        case .lowerMiddleCenterLeftSixteenth: return \"lowerMiddleCenterLeftSixteenth\"\n        case .lowerMiddleCenterRightSixteenth: return \"lowerMiddleCenterRightSixteenth\"\n        case .lowerMiddleRightSixteenth: return \"lowerMiddleRightSixteenth\"\n        case .bottomLeftSixteenth: return \"bottomLeftSixteenth\"\n        case .bottomCenterLeftSixteenth: return \"bottomCenterLeftSixteenth\"\n        case .bottomCenterRightSixteenth: return \"bottomCenterRightSixteenth\"\n        case .bottomRightSixteenth: return \"bottomRightSixteenth\"\n        }\n    }\n\n    var displayName: String? {\n        var key: String\n        var value: String\n\n        switch self {\n        case .leftHalf:\n            key = \"Xc8-Sm-pig.title\"\n            value = \"Left Half\"\n        case .rightHalf:\n            key = \"F8S-GI-LiB.title\"\n            value = \"Right Half\"\n        case .maximize:\n            key = \"8oe-J2-oUU.title\"\n            value = \"Maximize\"\n        case .maximizeHeight:\n            key = \"6DV-cd-fda.title\"\n            value = \"Maximize Height\"\n        case .previousDisplay:\n            key = \"QwF-QN-YH7.title\"\n            value = \"Previous Display\"\n        case .nextDisplay:\n            key = \"Jnd-Lc-nlh.title\"\n            value = \"Next Display\"\n        case .larger:\n            key = \"Eah-KL-kbn.title\"\n            value = \"Larger\"\n        case .smaller:\n            key = \"MzN-CJ-ASD.title\"\n            value = \"Smaller\"\n        case .bottomHalf:\n            key = \"ec4-FB-fMa.title\"\n            value = \"Bottom Half\"\n        case .topHalf:\n            key = \"d7y-s8-7GE.title\"\n            value = \"Top Half\"\n        case .center:\n            key = \"8Bg-SZ-hDO.title\"\n            value = \"Center\"\n        case .bottomLeft:\n            key = \"6ma-hP-5xX.title\"\n            value = \"Bottom Left\"\n        case .bottomRight:\n            key = \"J6t-sg-Wwz.title\"\n            value = \"Bottom Right\"\n        case .topLeft:\n            key = \"adp-cN-qkh.title\"\n            value = \"Top Left\"\n        case .topRight:\n            key = \"0Ak-33-SM7.title\"\n            value = \"Top Right\"\n        case .restore:\n            key = \"C9v-g0-DH8.title\"\n            value = \"Restore\"\n        case .firstThird:\n            key = \"F12-EV-Lfz.title\"\n            value = \"First Third\"\n        case .firstTwoThirds:\n            key = \"3zd-xE-oWl.title\"\n            value = \"First Two Thirds\"\n        case .centerThird:\n            key = \"7YK-9Z-lzw.title\"\n            value = \"Center Third\"\n        case .centerTwoThirds:\n            key = \"oSu-n4-8Yu.title\"\n            value = \"Center Two Thirds\"\n        case .lastTwoThirds:\n            key = \"08q-Ce-1QL.title\"\n            value = \"Last Two Thirds\"\n        case .lastThird:\n            key = \"cRm-wn-Yv6.title\"\n            value = \"Last Third\"\n        case .moveLeft:\n            key = \"v2f-bX-xiM.title\"\n            value = \"Move Left\"\n        case .moveRight:\n            key = \"rzr-Qq-702.title\"\n            value = \"Move Right\"\n        case .moveUp:\n            key = \"HOm-BV-2jc.title\"\n            value = \"Move Up\"\n        case .moveDown:\n            key = \"1Rc-Od-eP5.title\"\n            value = \"Move Down\"\n        case .almostMaximize:\n            key = \"e57-QJ-6bL.title\"\n            value = \"Almost Maximize\"\n        case .centerHalf:\n            key = \"bRX-dV-iAR.title\"\n            value = \"Center Half\"\n        case .firstFourth:\n            key = \"Q6Q-6J-okH.title\"\n            value = \"First Fourth\"\n        case .secondFourth:\n            key = \"Fko-xs-gN5.title\"\n            value = \"Second Fourth\"\n        case .thirdFourth:\n            key = \"ZTK-rS-b17.title\"\n            value = \"Third Fourth\"\n        case .lastFourth:\n            key = \"6HX-rn-VIp.title\"\n            value = \"Last Fourth\"\n        case .firstThreeFourths:\n            key = \"T9Z-QF-gwc.title\"\n            value = \"First Three Fourths\"\n        case .centerThreeFourths:\n            key = \"Vph-Z0-euH.title\"\n            value = \"Center Three Fourths\"\n        case .lastThreeFourths:\n            key = \"nwX-h6-fwm.title\"\n            value = \"Last Three Fourths\"\n        case .topLeftSixth:\n            key = \"mFt-Kg-UYG.title\"\n            value = \"Top Left Sixth\"\n        case .topCenterSixth:\n            key = \"TTx-7X-Wie.title\"\n            value = \"Top Center Sixth\"\n        case .topRightSixth:\n            key = \"f3Q-q7-Pcy.title\"\n            value = \"Top Right Sixth\"\n        case .bottomLeftSixth:\n            key = \"LqQ-pM-jRN.title\"\n            value = \"Bottom Left Sixth\"\n        case .bottomCenterSixth:\n            key = \"iOQ-1e-esP.title\"\n            value = \"Bottom Center Sixth\"\n        case .bottomRightSixth:\n            key = \"m2F-eA-g7w.title\"\n            value = \"Bottom Right Sixth\"\n        case .topLeftNinth:\n            key = \"topLeftNinth.title\"\n            value = \"Top Left Ninth\"\n        case .topCenterNinth:\n            key = \"topCenterNinth.title\"\n            value = \"Top Center Ninth\"\n        case .topRightNinth:\n            key = \"topRightNinth.title\"\n            value = \"Top Right Ninth\"\n        case .middleLeftNinth:\n            key = \"middleLeftNinth.title\"\n            value = \"Middle Left Ninth\"\n        case .middleCenterNinth:\n            key = \"middleCenterNinth.title\"\n            value = \"Middle Center Ninth\"\n        case .middleRightNinth:\n            key = \"middleRightNinth.title\"\n            value = \"Middle Right Ninth\"\n        case .bottomLeftNinth:\n            key = \"bottomLeftNinth.title\"\n            value = \"Bottom Left Ninth\"\n        case .bottomCenterNinth:\n            key = \"bottomCenterNinth.title\"\n            value = \"Bottom Center Ninth\"\n        case .bottomRightNinth:\n            key = \"bottomRightNinth.title\"\n            value = \"Bottom Right Ninth\"\n        case .topLeftThird, .topRightThird, .bottomLeftThird, .bottomRightThird:\n            return nil\n        case .topLeftEighth:\n            key = \"topLeftEighth.title\"\n            value = \"Top Left Eighth\"\n        case .topCenterLeftEighth:\n            key = \"topCenterLeftEighth.title\"\n            value = \"Top Center Left Eighth\"\n        case .topCenterRightEighth:\n            key = \"topCenterRightEighth.title\"\n            value = \"Top Center Right Eighth\"\n        case .topRightEighth:\n            key = \"topRightEighth.title\"\n            value = \"Top Right Eighth\"\n        case .bottomLeftEighth:\n            key = \"bottomLeftEighth.title\"\n            value = \"Bottom Left Eighth\"\n        case .bottomCenterLeftEighth:\n            key = \"bottomCenterLeftEighth.title\"\n            value = \"Bottom Center Left Eighth\"\n        case .bottomCenterRightEighth:\n            key = \"bottomCenterRightEighth.title\"\n            value = \"Bottom Center Right Eighth\"\n        case .bottomRightEighth:\n            key = \"bottomRightEighth.title\"\n            value = \"Bottom Right Eighth\"\n        case .doubleHeightUp, .doubleHeightDown, .doubleWidthLeft, .doubleWidthRight, .halveHeightUp, .halveHeightDown, .halveWidthLeft, .halveWidthRight:\n            return nil\n        case .specified, .reverseAll, .tileAll, .cascadeAll, .leftTodo, .rightTodo, .cascadeActiveApp, .tileActiveApp:\n            return nil\n        case .centerProminently, .largerWidth, .smallerWidth, .largerHeight, .smallerHeight:\n            return nil\n        case .topVerticalThird, .middleVerticalThird, .bottomVerticalThird, .topVerticalTwoThirds, .bottomVerticalTwoThirds:\n            return nil\n        case .topLeftTwelfth:\n            key = \"topLeftTwelfth.title\"\n            value = \"Top Left Twelfth\"\n        case .topCenterLeftTwelfth:\n            key = \"topCenterLeftTwelfth.title\"\n            value = \"Top Center Left Twelfth\"\n        case .topCenterRightTwelfth:\n            key = \"topCenterRightTwelfth.title\"\n            value = \"Top Center Right Twelfth\"\n        case .topRightTwelfth:\n            key = \"topRightTwelfth.title\"\n            value = \"Top Right Twelfth\"\n        case .middleLeftTwelfth:\n            key = \"middleLeftTwelfth.title\"\n            value = \"Middle Left Twelfth\"\n        case .middleCenterLeftTwelfth:\n            key = \"middleCenterLeftTwelfth.title\"\n            value = \"Middle Center Left Twelfth\"\n        case .middleCenterRightTwelfth:\n            key = \"middleCenterRightTwelfth.title\"\n            value = \"Middle Center Right Twelfth\"\n        case .middleRightTwelfth:\n            key = \"middleRightTwelfth.title\"\n            value = \"Middle Right Twelfth\"\n        case .bottomLeftTwelfth:\n            key = \"bottomLeftTwelfth.title\"\n            value = \"Bottom Left Twelfth\"\n        case .bottomCenterLeftTwelfth:\n            key = \"bottomCenterLeftTwelfth.title\"\n            value = \"Bottom Center Left Twelfth\"\n        case .bottomCenterRightTwelfth:\n            key = \"bottomCenterRightTwelfth.title\"\n            value = \"Bottom Center Right Twelfth\"\n        case .bottomRightTwelfth:\n            key = \"bottomRightTwelfth.title\"\n            value = \"Bottom Right Twelfth\"\n        case .topLeftSixteenth:\n            key = \"topLeftSixteenth.title\"\n            value = \"Top Left Sixteenth\"\n        case .topCenterLeftSixteenth:\n            key = \"topCenterLeftSixteenth.title\"\n            value = \"Top Center Left Sixteenth\"\n        case .topCenterRightSixteenth:\n            key = \"topCenterRightSixteenth.title\"\n            value = \"Top Center Right Sixteenth\"\n        case .topRightSixteenth:\n            key = \"topRightSixteenth.title\"\n            value = \"Top Right Sixteenth\"\n        case .upperMiddleLeftSixteenth:\n            key = \"upperMiddleLeftSixteenth.title\"\n            value = \"Upper Middle Left Sixteenth\"\n        case .upperMiddleCenterLeftSixteenth:\n            key = \"upperMiddleCenterLeftSixteenth.title\"\n            value = \"Upper Middle Center Left Sixteenth\"\n        case .upperMiddleCenterRightSixteenth:\n            key = \"upperMiddleCenterRightSixteenth.title\"\n            value = \"Upper Middle Center Right Sixteenth\"\n        case .upperMiddleRightSixteenth:\n            key = \"upperMiddleRightSixteenth.title\"\n            value = \"Upper Middle Right Sixteenth\"\n        case .lowerMiddleLeftSixteenth:\n            key = \"lowerMiddleLeftSixteenth.title\"\n            value = \"Lower Middle Left Sixteenth\"\n        case .lowerMiddleCenterLeftSixteenth:\n            key = \"lowerMiddleCenterLeftSixteenth.title\"\n            value = \"Lower Middle Center Left Sixteenth\"\n        case .lowerMiddleCenterRightSixteenth:\n            key = \"lowerMiddleCenterRightSixteenth.title\"\n            value = \"Lower Middle Center Right Sixteenth\"\n        case .lowerMiddleRightSixteenth:\n            key = \"lowerMiddleRightSixteenth.title\"\n            value = \"Lower Middle Right Sixteenth\"\n        case .bottomLeftSixteenth:\n            key = \"bottomLeftSixteenth.title\"\n            value = \"Bottom Left Sixteenth\"\n        case .bottomCenterLeftSixteenth:\n            key = \"bottomCenterLeftSixteenth.title\"\n            value = \"Bottom Center Left Sixteenth\"\n        case .bottomCenterRightSixteenth:\n            key = \"bottomCenterRightSixteenth.title\"\n            value = \"Bottom Center Right Sixteenth\"\n        case .bottomRightSixteenth:\n            key = \"bottomRightSixteenth.title\"\n            value = \"Bottom Right Sixteenth\"\n        }\n\n        return NSLocalizedString(key, tableName: \"Main\", value: value, comment: \"\")\n    }\n\n    var notificationName: Notification.Name {\n        return Notification.Name(name)\n    }\n\n    var resizes: Bool {\n        switch self {\n        case .center, .centerProminently, .nextDisplay, .previousDisplay: return false\n        case .moveUp, .moveDown, .moveLeft, .moveRight: return Defaults.resizeOnDirectionalMove.enabled\n        default: return true\n        }\n    }\n    \n    var allowedToExtendOutsideCurrentScreenArea: Bool {\n        switch self {\n        case .doubleHeightUp, .doubleHeightDown, .doubleWidthLeft, .doubleWidthRight:\n            return true\n        default:\n            return false\n        }\n    }\n    \n    var isDragSnappable: Bool {\n        switch self {\n        case .restore, .previousDisplay, .nextDisplay, .moveUp, .moveDown, .moveLeft, .moveRight, .specified, .reverseAll, .tileAll, .cascadeAll, .larger, .smaller, .largerWidth, .smallerWidth, .cascadeActiveApp, .tileActiveApp,\n            // Ninths\n            .topLeftNinth, .topCenterNinth, .topRightNinth, .middleLeftNinth, .middleCenterNinth, .middleRightNinth, .bottomLeftNinth, .bottomCenterNinth, .bottomRightNinth,\n            // Corner thirds\n            .topLeftThird, .topRightThird, .bottomLeftThird, .bottomRightThird:\n            return false\n        default:\n            return true\n        }\n    }\n\n    var spectacleDefault: Shortcut? {\n        switch self {\n        case .leftHalf: return Shortcut( cmd|alt, kVK_LeftArrow )\n        case .rightHalf: return Shortcut( cmd|alt, kVK_RightArrow )\n        case .maximize: return Shortcut( cmd|alt, kVK_ANSI_F )\n        case .maximizeHeight: return Shortcut( ctrl|alt|shift, kVK_UpArrow )\n        case .previousDisplay: return Shortcut( ctrl|alt|cmd, kVK_LeftArrow )\n        case .nextDisplay:  return Shortcut( ctrl|alt|cmd, kVK_RightArrow )\n        case .larger: return Shortcut( ctrl|alt|shift, kVK_RightArrow )\n        case .smaller: return Shortcut( ctrl|alt|shift, kVK_LeftArrow )\n        case .bottomHalf: return Shortcut( cmd|alt, kVK_DownArrow )\n        case .topHalf: return Shortcut( cmd|alt, kVK_UpArrow )\n        case .center: return Shortcut( alt|cmd, kVK_ANSI_C )\n        case .bottomLeft: return Shortcut( cmd|ctrl|shift, kVK_LeftArrow )\n        case .bottomRight: return Shortcut( cmd|ctrl|shift, kVK_RightArrow )\n        case .topLeft: return Shortcut( ctrl|cmd, kVK_LeftArrow )\n        case .topRight: return Shortcut( ctrl|cmd, kVK_RightArrow )\n        case .restore: return Shortcut( ctrl|alt, kVK_Delete)\n        default: return nil\n        }\n    }\n\n    var alternateDefault: Shortcut? {\n        switch self {\n        case .leftHalf: return Shortcut( ctrl|alt, kVK_LeftArrow )\n        case .rightHalf: return Shortcut( ctrl|alt, kVK_RightArrow )\n        case .bottomHalf: return Shortcut( ctrl|alt, kVK_DownArrow )\n        case .topHalf: return Shortcut( ctrl|alt, kVK_UpArrow )\n        case .bottomLeft: return Shortcut( ctrl|alt, kVK_ANSI_J )\n        case .bottomRight: return Shortcut( ctrl|alt, kVK_ANSI_K )\n        case .topLeft: return Shortcut( ctrl|alt, kVK_ANSI_U )\n        case .topRight: return Shortcut( ctrl|alt, kVK_ANSI_I )\n        case .maximize: return Shortcut( ctrl|alt, kVK_Return )\n        case .maximizeHeight: return Shortcut( ctrl|alt|shift, kVK_UpArrow )\n        case .previousDisplay: return Shortcut( ctrl|alt|cmd, kVK_LeftArrow )\n        case .nextDisplay: return Shortcut( ctrl|alt|cmd, kVK_RightArrow )\n        case .larger: return Shortcut( ctrl|alt, kVK_ANSI_Equal )\n        case .smaller: return Shortcut( ctrl|alt, kVK_ANSI_Minus )\n        case .center: return Shortcut( ctrl|alt, kVK_ANSI_C )\n        case .restore: return Shortcut( ctrl|alt, kVK_Delete)\n        case .firstThird: return Shortcut( ctrl|alt, kVK_ANSI_D )\n        case .firstTwoThirds: return Shortcut( ctrl|alt, kVK_ANSI_E )\n        case .centerThird: return Shortcut( ctrl|alt, kVK_ANSI_F )\n        case .lastTwoThirds: return Shortcut( ctrl|alt, kVK_ANSI_T )\n        case .lastThird: return Shortcut( ctrl|alt, kVK_ANSI_G )\n        case .centerTwoThirds:\n            if let installVersion = Defaults.installVersion.value,\n               let intInstallVersion = Int(installVersion),\n               intInstallVersion > 94 {\n                return Shortcut( ctrl|alt, kVK_ANSI_R )\n            }\n            return nil\n        default: return nil\n        }\n    }\n\n    var image: NSImage {\n        switch self {\n        case .leftHalf: return NSImage(imageLiteralResourceName: \"leftHalfTemplate\")\n        case .rightHalf: return NSImage(imageLiteralResourceName: \"rightHalfTemplate\")\n        case .maximize: return NSImage(imageLiteralResourceName: \"maximizeTemplate\")\n        case .maximizeHeight: return NSImage(imageLiteralResourceName: \"maximizeHeightTemplate\")\n        case .previousDisplay: return NSImage(imageLiteralResourceName: \"prevDisplayTemplate\")\n        case .nextDisplay: return NSImage(imageLiteralResourceName: \"nextDisplayTemplate\")\n        case .larger: return NSImage(imageLiteralResourceName: \"makeLargerTemplate\")\n        case .smaller: return NSImage(imageLiteralResourceName: \"makeSmallerTemplate\")\n        case .bottomHalf: return NSImage(imageLiteralResourceName: \"bottomHalfTemplate\")\n        case .topHalf: return NSImage(imageLiteralResourceName: \"topHalfTemplate\")\n        case .center: return NSImage(imageLiteralResourceName: \"centerTemplate\")\n        case .bottomLeft: return NSImage(imageLiteralResourceName: \"bottomLeftTemplate\")\n        case .bottomRight: return NSImage(imageLiteralResourceName: \"bottomRightTemplate\")\n        case .topLeft: return NSImage(imageLiteralResourceName: \"topLeftTemplate\")\n        case .topRight: return NSImage(imageLiteralResourceName: \"topRightTemplate\")\n        case .restore: return NSImage(imageLiteralResourceName: \"restoreTemplate\")\n        case .firstThird: return NSImage(imageLiteralResourceName: \"firstThirdTemplate\")\n        case .firstTwoThirds: return NSImage(imageLiteralResourceName: \"firstTwoThirdsTemplate\")\n        case .centerThird: return NSImage(imageLiteralResourceName: \"centerThirdTemplate\")\n        case .centerTwoThirds: return NSImage(imageLiteralResourceName: \"centerTwoThirdsTemplate\")\n        case .lastTwoThirds: return NSImage(imageLiteralResourceName: \"lastTwoThirdsTemplate\")\n        case .lastThird: return NSImage(imageLiteralResourceName: \"lastThirdTemplate\")\n        case .moveLeft: return NSImage(imageLiteralResourceName: \"moveLeftTemplate\")\n        case .moveRight: return NSImage(imageLiteralResourceName: \"moveRightTemplate\")\n        case .moveUp: return NSImage(imageLiteralResourceName: \"moveUpTemplate\")\n        case .moveDown: return NSImage(imageLiteralResourceName: \"moveDownTemplate\")\n        case .almostMaximize: return NSImage(imageLiteralResourceName: \"almostMaximizeTemplate\")\n        case .centerHalf: return NSImage(imageLiteralResourceName: \"halfWidthCenterTemplate\")\n        case .firstFourth: return NSImage(imageLiteralResourceName: \"leftFourthTemplate\")\n        case .secondFourth: return NSImage(imageLiteralResourceName: \"centerLeftFourthTemplate\")\n        case .thirdFourth: return NSImage(imageLiteralResourceName: \"centerRightFourthTemplate\")\n        case .lastFourth: return NSImage(imageLiteralResourceName: \"rightFourthTemplate\")\n        case .firstThreeFourths: return NSImage(imageLiteralResourceName: \"firstThreeFourthsTemplate\")\n        case .centerThreeFourths: return NSImage(imageLiteralResourceName: \"centerThreeFourthsTemplate\")\n        case .lastThreeFourths: return NSImage(imageLiteralResourceName: \"lastThreeFourthsTemplate\")\n        case .topLeftSixth: return NSImage(imageLiteralResourceName: \"topLeftSixthTemplate\")\n        case .topCenterSixth: return NSImage(imageLiteralResourceName: \"topCenterSixthTemplate\")\n        case .topRightSixth: return NSImage(imageLiteralResourceName: \"topRightSixthTemplate\")\n        case .bottomLeftSixth: return NSImage(imageLiteralResourceName: \"bottomLeftSixthTemplate\")\n        case .bottomCenterSixth: return NSImage(imageLiteralResourceName: \"bottomCenterSixthTemplate\")\n        case .bottomRightSixth: return NSImage(imageLiteralResourceName: \"bottomRightSixthTemplate\")\n        case .topLeftNinth: return NSImage(imageLiteralResourceName: \"topLeftNinthTemplate\")\n        case .topCenterNinth: return NSImage(imageLiteralResourceName: \"topCenterNinthTemplate\")\n        case .topRightNinth: return NSImage(imageLiteralResourceName: \"topRightNinthTemplate\")\n        case .middleLeftNinth: return NSImage(imageLiteralResourceName: \"middleLeftNinthTemplate\")\n        case .middleCenterNinth: return NSImage(imageLiteralResourceName: \"middleCenterNinthTemplate\")\n        case .middleRightNinth: return NSImage(imageLiteralResourceName: \"middleRightNinthTemplate\")\n        case .bottomLeftNinth: return NSImage(imageLiteralResourceName: \"bottomLeftNinthTemplate\")\n        case .bottomCenterNinth: return NSImage(imageLiteralResourceName: \"bottomCenterNinthTemplate\")\n        case .bottomRightNinth: return NSImage(imageLiteralResourceName: \"bottomRightNinthTemplate\")\n        case .topLeftThird: return NSImage()\n        case .topRightThird: return NSImage()\n        case .bottomLeftThird: return NSImage()\n        case .bottomRightThird: return NSImage()\n        case .topLeftEighth: return NSImage(imageLiteralResourceName: \"tlEighthTemplate\")\n        case .topCenterLeftEighth: return NSImage(imageLiteralResourceName: \"ctlEighthTemplate\")\n        case .topCenterRightEighth: return NSImage(imageLiteralResourceName: \"ctrEighthTemplate\")\n        case .topRightEighth: return NSImage(imageLiteralResourceName: \"trEighthTemplate\")\n        case .bottomLeftEighth: return NSImage(imageLiteralResourceName: \"blEighthTemplate\")\n        case .bottomCenterLeftEighth: return NSImage(imageLiteralResourceName: \"cblEighthTemplate\")\n        case .bottomCenterRightEighth: return NSImage(imageLiteralResourceName: \"cbrEighthTemplate\")\n        case .bottomRightEighth: return NSImage(imageLiteralResourceName: \"brEighthTemplate\")\n        case .doubleHeightUp: return  NSImage()\n        case .doubleHeightDown: return  NSImage()\n        case .doubleWidthLeft: return  NSImage()\n        case .doubleWidthRight: return  NSImage()\n        case .halveHeightUp: return  NSImage()\n        case .halveHeightDown: return  NSImage()\n        case .halveWidthLeft: return  NSImage()\n        case .halveWidthRight: return  NSImage()\n        case .specified, .reverseAll: return NSImage()\n        case .tileAll: return NSImage()\n        case .cascadeAll: return NSImage()\n        case .leftTodo: return NSImage()\n        case .rightTodo: return NSImage()\n        case .cascadeActiveApp: return NSImage()\n        case .tileActiveApp: return NSImage()\n        case .centerProminently: return NSImage()\n        case .largerWidth: return NSImage(imageLiteralResourceName: \"largerWidthTemplate\")\n        case .smallerWidth: return NSImage(imageLiteralResourceName: \"smallerWidthTemplate\")\n        case .largerHeight: return NSImage()\n        case .smallerHeight: return NSImage()\n        case .topVerticalThird: return NSImage(imageLiteralResourceName: \"topThirdTemplate\")\n        case .middleVerticalThird: return NSImage(imageLiteralResourceName: \"centerThirdHorizontalTemplate\")\n        case .bottomVerticalThird: return NSImage(imageLiteralResourceName: \"bottomThirdTemplate\")\n        case .topVerticalTwoThirds: return NSImage(imageLiteralResourceName: \"topTwoThirdsTemplate\")\n        case .bottomVerticalTwoThirds: return NSImage(imageLiteralResourceName: \"bottomTwoThirdsTemplate\")\n        case .topLeftTwelfth: return NSImage(imageLiteralResourceName: \"topLeftTwelfthTemplate\")\n        case .topCenterLeftTwelfth: return NSImage(imageLiteralResourceName: \"topCenterLeftTwelfthTemplate\")\n        case .topCenterRightTwelfth: return NSImage(imageLiteralResourceName: \"topCenterRightTwelfthTemplate\")\n        case .topRightTwelfth: return NSImage(imageLiteralResourceName: \"topRightTwelfthTemplate\")\n        case .middleLeftTwelfth: return NSImage(imageLiteralResourceName: \"middleLeftTwelfthTemplate\")\n        case .middleCenterLeftTwelfth: return NSImage(imageLiteralResourceName: \"middleCenterLeftTwelfthTemplate\")\n        case .middleCenterRightTwelfth: return NSImage(imageLiteralResourceName: \"middleCenterRightTwelfthTemplate\")\n        case .middleRightTwelfth: return NSImage(imageLiteralResourceName: \"middleRightTwelfthTemplate\")\n        case .bottomLeftTwelfth: return NSImage(imageLiteralResourceName: \"bottomLeftTwelfthTemplate\")\n        case .bottomCenterLeftTwelfth: return NSImage(imageLiteralResourceName: \"bottomCenterLeftTwelfthTemplate\")\n        case .bottomCenterRightTwelfth: return NSImage(imageLiteralResourceName: \"bottomCenterRightTwelfthTemplate\")\n        case .bottomRightTwelfth: return NSImage(imageLiteralResourceName: \"bottomRightTwelfthTemplate\")\n        case .topLeftSixteenth: return NSImage(imageLiteralResourceName: \"topLeftSixteenthTemplate\")\n        case .topCenterLeftSixteenth: return NSImage(imageLiteralResourceName: \"topCenterLeftSixteenthTemplate\")\n        case .topCenterRightSixteenth: return NSImage(imageLiteralResourceName: \"topCenterRightSixteenthTemplate\")\n        case .topRightSixteenth: return NSImage(imageLiteralResourceName: \"topRightSixteenthTemplate\")\n        case .upperMiddleLeftSixteenth: return NSImage(imageLiteralResourceName: \"upperMiddleLeftSixteenthTemplate\")\n        case .upperMiddleCenterLeftSixteenth: return NSImage(imageLiteralResourceName: \"upperMiddleCenterLeftSixteenthTemplate\")\n        case .upperMiddleCenterRightSixteenth: return NSImage(imageLiteralResourceName: \"upperMiddleCenterRightSixteenthTemplate\")\n        case .upperMiddleRightSixteenth: return NSImage(imageLiteralResourceName: \"upperMiddleRightSixteenthTemplate\")\n        case .lowerMiddleLeftSixteenth: return NSImage(imageLiteralResourceName: \"lowerMiddleLeftSixteenthTemplate\")\n        case .lowerMiddleCenterLeftSixteenth: return NSImage(imageLiteralResourceName: \"lowerMiddleCenterLeftSixteenthTemplate\")\n        case .lowerMiddleCenterRightSixteenth: return NSImage(imageLiteralResourceName: \"lowerMiddleCenterRightSixteenthTemplate\")\n        case .lowerMiddleRightSixteenth: return NSImage(imageLiteralResourceName: \"lowerMiddleRightSixteenthTemplate\")\n        case .bottomLeftSixteenth: return NSImage(imageLiteralResourceName: \"bottomLeftSixteenthTemplate\")\n        case .bottomCenterLeftSixteenth: return NSImage(imageLiteralResourceName: \"bottomCenterLeftSixteenthTemplate\")\n        case .bottomCenterRightSixteenth: return NSImage(imageLiteralResourceName: \"bottomCenterRightSixteenthTemplate\")\n        case .bottomRightSixteenth: return NSImage(imageLiteralResourceName: \"bottomRightSixteenthTemplate\")\n        }\n    }\n\n    var gapSharedEdge: Edge {\n        switch self {\n        case .leftHalf: return .right\n        case .rightHalf: return .left\n        case .bottomHalf: return .top\n        case .topHalf: return .bottom\n        case .bottomLeft: return [.top, .right]\n        case .bottomRight: return [.top, .left]\n        case .topLeft: return [.bottom, .right]\n        case .topRight: return [.bottom, .left]\n        case .moveUp: return Defaults.resizeOnDirectionalMove.enabled ? .bottom : .none\n        case .moveDown: return Defaults.resizeOnDirectionalMove.enabled ? .top : .none\n        case .moveLeft: return Defaults.resizeOnDirectionalMove.enabled ? .right : .none\n        case .moveRight: return Defaults.resizeOnDirectionalMove.enabled ? .left : .none\n        default:\n            return .none\n        }\n    }\n\n    var gapsApplicable: Dimension {\n        switch self {\n        case .leftHalf, .rightHalf, .bottomHalf, .topHalf, .centerHalf, .bottomLeft, .bottomRight, .topLeft, .topRight, .firstThird, .firstTwoThirds, .centerThird, .centerTwoThirds, .lastTwoThirds, .lastThird,\n                .firstFourth, .secondFourth, .thirdFourth, .lastFourth, .firstThreeFourths, .centerThreeFourths, .lastThreeFourths, .topLeftSixth, .topCenterSixth, .topRightSixth, .bottomLeftSixth, .bottomCenterSixth, .bottomRightSixth,\n            .topLeftNinth, .topCenterNinth, .topRightNinth, .middleLeftNinth, .middleCenterNinth, .middleRightNinth, .bottomLeftNinth, .bottomCenterNinth, .bottomRightNinth,\n            .topLeftThird, .topRightThird, .bottomLeftThird, .bottomRightThird,\n            .topLeftEighth, .topCenterLeftEighth, .topCenterRightEighth, .topRightEighth,\n            .bottomLeftEighth, .bottomCenterLeftEighth, .bottomCenterRightEighth, .bottomRightEighth,\n            .topLeftTwelfth, .topCenterLeftTwelfth, .topCenterRightTwelfth, .topRightTwelfth,\n            .middleLeftTwelfth, .middleCenterLeftTwelfth, .middleCenterRightTwelfth, .middleRightTwelfth,\n            .bottomLeftTwelfth, .bottomCenterLeftTwelfth, .bottomCenterRightTwelfth, .bottomRightTwelfth,\n            .topLeftSixteenth, .topCenterLeftSixteenth, .topCenterRightSixteenth, .topRightSixteenth,\n            .upperMiddleLeftSixteenth, .upperMiddleCenterLeftSixteenth, .upperMiddleCenterRightSixteenth, .upperMiddleRightSixteenth,\n            .lowerMiddleLeftSixteenth, .lowerMiddleCenterLeftSixteenth, .lowerMiddleCenterRightSixteenth, .lowerMiddleRightSixteenth,\n            .bottomLeftSixteenth, .bottomCenterLeftSixteenth, .bottomCenterRightSixteenth, .bottomRightSixteenth,\n             .doubleHeightUp, .doubleHeightDown, .doubleWidthLeft, .doubleWidthRight,\n             .halveHeightUp, .halveHeightDown, .halveWidthLeft, .halveWidthRight,\n            .leftTodo, .rightTodo,\n            .topVerticalThird, .middleVerticalThird, .bottomVerticalThird, .topVerticalTwoThirds, .bottomVerticalTwoThirds:\n            return .both\n        case .moveUp, .moveDown:\n            return Defaults.resizeOnDirectionalMove.enabled ? .vertical : .none;\n        case .moveLeft, .moveRight:\n            return Defaults.resizeOnDirectionalMove.enabled ? .horizontal : .none;\n        case .maximize:\n            return Defaults.applyGapsToMaximize.userDisabled ? .none : .both;\n        case .maximizeHeight:\n            return Defaults.applyGapsToMaximizeHeight.userDisabled ? .none : .vertical;\n        case .almostMaximize, .previousDisplay, .nextDisplay, .larger, .smaller, .largerWidth, .smallerWidth, .largerHeight, .smallerHeight, .center, .centerProminently, .restore, .specified, .reverseAll, .tileAll, .cascadeAll, .cascadeActiveApp, .tileActiveApp:\n            return .none\n        }\n    }\n    \n    var category: WindowActionCategory? { // used to specify a submenu\n        switch self {\n        case .firstThird, .centerThird, .lastThird, .firstTwoThirds, .centerTwoThirds, .lastTwoThirds: return .thirds\n        case .firstFourth, .secondFourth, .thirdFourth, .lastFourth, .firstThreeFourths, .centerThreeFourths, .lastThreeFourths: return .fourths\n        case .topLeftSixth, .topCenterSixth, .topRightSixth, .bottomLeftSixth, .bottomCenterSixth, .bottomRightSixth: return .sixths\n        case .topLeftEighth, .topCenterLeftEighth, .topCenterRightEighth, .topRightEighth, .bottomLeftEighth, .bottomCenterLeftEighth, .bottomCenterRightEighth, .bottomRightEighth: return .eighths\n        case .topLeftNinth, .topCenterNinth, .topRightNinth, .middleLeftNinth, .middleCenterNinth, .middleRightNinth, .bottomLeftNinth, .bottomCenterNinth, .bottomRightNinth: return .ninths\n        case .topLeftTwelfth, .topCenterLeftTwelfth, .topCenterRightTwelfth, .topRightTwelfth, .middleLeftTwelfth, .middleCenterLeftTwelfth, .middleCenterRightTwelfth, .middleRightTwelfth, .bottomLeftTwelfth, .bottomCenterLeftTwelfth, .bottomCenterRightTwelfth, .bottomRightTwelfth: return .twelfths\n        case .topLeftSixteenth, .topCenterLeftSixteenth, .topCenterRightSixteenth, .topRightSixteenth, .upperMiddleLeftSixteenth, .upperMiddleCenterLeftSixteenth, .upperMiddleCenterRightSixteenth, .upperMiddleRightSixteenth, .lowerMiddleLeftSixteenth, .lowerMiddleCenterLeftSixteenth, .lowerMiddleCenterRightSixteenth, .lowerMiddleRightSixteenth, .bottomLeftSixteenth, .bottomCenterLeftSixteenth, .bottomCenterRightSixteenth, .bottomRightSixteenth: return .sixteenths\n        case .moveUp, .moveDown, .moveLeft, .moveRight: return .move\n        case .almostMaximize, .maximizeHeight, .larger, .smaller, .largerWidth, .smallerWidth, .largerHeight, .smallerHeight: return .size\n        default: return nil\n        }\n    }\n\n    var classification: WindowActionCategory? {\n        switch self {\n        case .firstThird, .firstTwoThirds, .centerThird, .centerTwoThirds, .lastTwoThirds, .lastThird:\n            return .thirds\n        case .smaller, .larger, .smallerWidth, .largerWidth, .smallerHeight, .largerHeight:\n            return .size\n        case .previousDisplay, .nextDisplay:\n            return .display\n        default: return nil\n        }\n    }\n}\n\nenum SubWindowAction {\n    case leftThird,\n    centerVerticalThird,\n    rightThird,\n    leftTwoThirds,\n    rightTwoThirds,\n    \n    topThird,\n    centerHorizontalThird,\n    bottomThird,\n    topTwoThirds,\n    bottomTwoThirds,\n    \n    leftFourth,\n    centerLeftFourth,\n    centerRightFourth,\n    rightFourth,\n    \n    topFourth,\n    centerTopFourth,\n    centerBottomFourth,\n    bottomFourth,\n    \n    rightThreeFourths,\n    bottomThreeFourths,\n    leftThreeFourths,\n    topThreeFourths,\n    centerVerticalThreeFourths,\n    centerHorizontalThreeFourths,\n    \n    centerVerticalHalf,\n    centerHorizontalHalf,\n    \n    topLeftSixthLandscape,\n    topCenterSixthLandscape,\n    topRightSixthLandscape,\n    bottomLeftSixthLandscape,\n    bottomCenterSixthLandscape,\n    bottomRightSixthLandscape,\n    \n    topLeftSixthPortrait,\n    topRightSixthPortrait,\n    leftCenterSixthPortrait,\n    rightCenterSixthPortrait,\n    bottomLeftSixthPortrait,\n    bottomRightSixthPortrait,\n    \n    topLeftTwoSixthsLandscape,\n    topLeftTwoSixthsPortrait,\n    topRightTwoSixthsLandscape,\n    topRightTwoSixthsPortrait,\n    \n    bottomLeftTwoSixthsLandscape,\n    bottomLeftTwoSixthsPortrait,\n    bottomRightTwoSixthsLandscape,\n    bottomRightTwoSixthsPortrait,\n    \n    topLeftNinth,\n    topCenterNinth,\n    topRightNinth,\n    middleLeftNinth,\n    middleCenterNinth,\n    middleRightNinth,\n    bottomLeftNinth,\n    bottomCenterNinth,\n    bottomRightNinth,\n         \n    topLeftThird,\n    topRightThird,\n    bottomLeftThird,\n    bottomRightThird,\n\n    topLeftQuarter,\n    topRightQuarter,\n    bottomLeftQuarter,\n    bottomRightQuarter,\n\n    topLeftEighth,\n    topCenterLeftEighth,\n    topCenterRightEighth,\n    topRightEighth,\n    bottomLeftEighth,\n    bottomCenterLeftEighth,\n    bottomCenterRightEighth,\n    bottomRightEighth,\n\n    topLeftTwelfth,\n    topCenterLeftTwelfth,\n    topCenterRightTwelfth,\n    topRightTwelfth,\n    middleLeftTwelfth,\n    middleCenterLeftTwelfth,\n    middleCenterRightTwelfth,\n    middleRightTwelfth,\n    bottomLeftTwelfth,\n    bottomCenterLeftTwelfth,\n    bottomCenterRightTwelfth,\n    bottomRightTwelfth,\n\n    topLeftSixteenth,\n    topCenterLeftSixteenth,\n    topCenterRightSixteenth,\n    topRightSixteenth,\n    upperMiddleLeftSixteenth,\n    upperMiddleCenterLeftSixteenth,\n    upperMiddleCenterRightSixteenth,\n    upperMiddleRightSixteenth,\n    lowerMiddleLeftSixteenth,\n    lowerMiddleCenterLeftSixteenth,\n    lowerMiddleCenterRightSixteenth,\n    lowerMiddleRightSixteenth,\n    bottomLeftSixteenth,\n    bottomCenterLeftSixteenth,\n    bottomCenterRightSixteenth,\n    bottomRightSixteenth,\n\n    maximize,\n    \n    leftTodo,\n    rightTodo\n\n    var gapSharedEdge: Edge {\n        switch self {\n        case .leftThird: return .right\n        case .centerVerticalThird: return [.right, .left]\n        case .rightThird: return .left\n        case .leftTwoThirds: return .right\n        case .rightTwoThirds: return .left\n        case .topThird: return .bottom\n        case .centerHorizontalThird: return [.top, .bottom]\n        case .bottomThird: return .top\n        case .topTwoThirds: return .bottom\n        case .bottomTwoThirds: return .top\n        case .leftFourth: return .right\n        case .centerLeftFourth: return [.right, .left]\n        case .centerRightFourth: return [.right, .left]\n        case .rightFourth: return .left\n        case .topFourth: return .bottom\n        case .centerTopFourth: return [.top, .bottom]\n        case .centerBottomFourth: return [.top, .bottom]\n        case .bottomFourth: return .top\n        case .rightThreeFourths: return .left\n        case .bottomThreeFourths: return .top\n        case .leftThreeFourths: return .right\n        case .topThreeFourths: return .bottom\n        case .centerVerticalThreeFourths: return [.right, .left]\n        case .centerHorizontalThreeFourths: return [.top, .bottom]\n        case .centerVerticalHalf: return [.right, .left]\n        case .centerHorizontalHalf: return [.top, .bottom]\n        case .topLeftSixthLandscape: return [.right, .bottom]\n        case .topCenterSixthLandscape: return [.right, .left, .bottom]\n        case .topRightSixthLandscape: return [.left, .bottom]\n        case .bottomLeftSixthLandscape: return [.top, .right]\n        case .bottomCenterSixthLandscape: return [.left, .right, .top]\n        case .bottomRightSixthLandscape: return [.left, .top]\n        case .topLeftSixthPortrait: return [.right, .bottom]\n        case .topRightSixthPortrait: return [.left, .bottom]\n        case .leftCenterSixthPortrait: return [.top, .bottom, .right]\n        case .rightCenterSixthPortrait: return [.left, .top, .bottom]\n        case .bottomLeftSixthPortrait: return [.top, .right]\n        case .bottomRightSixthPortrait: return [.left, .top]\n        case .topLeftTwoSixthsLandscape: return [.right, .bottom]\n        case .topLeftTwoSixthsPortrait: return [.right, .bottom]\n        case .topRightTwoSixthsLandscape: return [.left, .bottom]\n        case .topRightTwoSixthsPortrait: return [.left, .bottom]\n        case .bottomLeftTwoSixthsLandscape: return [.right, .top]\n        case .bottomLeftTwoSixthsPortrait: return [.right, .top]\n        case .bottomRightTwoSixthsLandscape: return [.left, .top]\n        case .bottomRightTwoSixthsPortrait: return [.left, .top]\n        case .topLeftNinth: return [.right, .bottom]\n        case .topCenterNinth: return [.right, .left, .bottom]\n        case .topRightNinth: return [.left, .bottom]\n        case .middleLeftNinth: return [.top, .right, .bottom]\n        case .middleCenterNinth: return [.top, .right, .bottom, .left]\n        case .middleRightNinth: return [.left, .top, .bottom]\n        case .bottomLeftNinth: return [.top, .right]\n        case .bottomCenterNinth: return [.left, .top, .right]\n        case .bottomRightNinth: return [.left, .top]\n        case .topLeftThird: return [.right, .bottom]\n        case .topRightThird: return [.left, .bottom]\n        case .bottomLeftThird: return [.right, .top]\n        case .bottomRightThird: return [.left, .top]\n        case .topLeftQuarter: return [.right, .bottom]\n        case .topRightQuarter: return [.left, .bottom]\n        case .bottomLeftQuarter: return [.right, .top]\n        case .bottomRightQuarter: return [.left, .top]\n        case .topLeftEighth: return  [.right, .bottom]\n        case .topCenterLeftEighth: return  [.right, .left, .bottom]\n        case .topCenterRightEighth: return  [.right, .left, .bottom]\n        case .topRightEighth: return  [.left, .bottom]\n        case .bottomLeftEighth: return  [.right, .top]\n        case .bottomCenterLeftEighth: return  [.right, .left, .top]\n        case .bottomCenterRightEighth: return  [.right, .left, .top]\n        case .bottomRightEighth: return  [.left, .top]\n        case .topLeftTwelfth: return [.right, .bottom]\n        case .topCenterLeftTwelfth: return [.right, .left, .bottom]\n        case .topCenterRightTwelfth: return [.right, .left, .bottom]\n        case .topRightTwelfth: return [.left, .bottom]\n        case .middleLeftTwelfth: return [.top, .right, .bottom]\n        case .middleCenterLeftTwelfth: return [.top, .right, .bottom, .left]\n        case .middleCenterRightTwelfth: return [.top, .right, .bottom, .left]\n        case .middleRightTwelfth: return [.left, .top, .bottom]\n        case .bottomLeftTwelfth: return [.top, .right]\n        case .bottomCenterLeftTwelfth: return [.left, .top, .right]\n        case .bottomCenterRightTwelfth: return [.left, .top, .right]\n        case .bottomRightTwelfth: return [.left, .top]\n        case .topLeftSixteenth: return [.right, .bottom]\n        case .topCenterLeftSixteenth: return [.right, .left, .bottom]\n        case .topCenterRightSixteenth: return [.right, .left, .bottom]\n        case .topRightSixteenth: return [.left, .bottom]\n        case .upperMiddleLeftSixteenth: return [.top, .right, .bottom]\n        case .upperMiddleCenterLeftSixteenth: return [.top, .right, .bottom, .left]\n        case .upperMiddleCenterRightSixteenth: return [.top, .right, .bottom, .left]\n        case .upperMiddleRightSixteenth: return [.left, .top, .bottom]\n        case .lowerMiddleLeftSixteenth: return [.top, .right, .bottom]\n        case .lowerMiddleCenterLeftSixteenth: return [.top, .right, .bottom, .left]\n        case .lowerMiddleCenterRightSixteenth: return [.top, .right, .bottom, .left]\n        case .lowerMiddleRightSixteenth: return [.left, .top, .bottom]\n        case .bottomLeftSixteenth: return [.top, .right]\n        case .bottomCenterLeftSixteenth: return [.left, .top, .right]\n        case .bottomCenterRightSixteenth: return [.left, .top, .right]\n        case .bottomRightSixteenth: return [.left, .top]\n        case .maximize: return .none\n        case .leftTodo: return .right\n        case .rightTodo: return .left\n        }\n    }\n}\n\nstruct Shortcut: Codable {\n    let keyCode: Int\n    let modifierFlags: UInt\n    \n    init(_ modifierFlags: UInt, _ keyCode: Int) {\n        self.keyCode = keyCode\n        self.modifierFlags = modifierFlags\n    }\n    \n    init(masShortcut: MASShortcut) {\n        self.keyCode = masShortcut.keyCode\n        self.modifierFlags = masShortcut.modifierFlags.rawValue\n    }\n    \n    func toMASSHortcut() -> MASShortcut {\n        MASShortcut(keyCode: keyCode, modifierFlags: NSEvent.ModifierFlags(rawValue: modifierFlags))\n    }\n    \n    func displayString() -> String {\n        let masShortcut = toMASSHortcut()\n        return masShortcut.modifierFlagsString + (masShortcut.keyCodeString ?? \"\")\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowActionCategory.swift",
    "content": "//\n//  WindowActionCategory.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 10/3/20.\n//  Copyright © 2020 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nenum WindowActionCategory {\n\n    case halves, corners, thirds, max, size, display, move, other, sixths, fourths, eighths, ninths, twelfths, sixteenths\n\n    var menuOrder: Int {\n        switch self {\n        case .size: return 0\n        case .move: return 1\n        case .thirds: return 2\n        case .fourths: return 3\n        case .sixths: return 4\n        case .eighths: return 5\n        case .ninths: return 6\n        case .twelfths: return 7\n        case .sixteenths: return 8\n        default: return 99\n        }\n    }\n\n    var displayName: String {\n        switch self {\n        case .halves:\n            return NSLocalizedString(\"Halves\", tableName: \"Main\", value: \"\", comment: \"\")\n        case .corners:\n            return NSLocalizedString(\"Corners\", tableName: \"Main\", value: \"\", comment: \"\")\n        case .thirds:\n            return NSLocalizedString(\"Thirds\", tableName: \"Main\", value: \"\", comment: \"\")\n        case .max:\n            return NSLocalizedString(\"Maximize\", tableName: \"Main\", value: \"\", comment: \"\")\n        case .size:\n            return NSLocalizedString(\"Size\", tableName: \"Main\", value: \"\", comment: \"\")\n        case .display:\n            return NSLocalizedString(\"Display\", tableName: \"Main\", value: \"\", comment: \"\")\n        case .other:\n            return NSLocalizedString(\"Other\", tableName: \"Main\", value: \"\", comment: \"\")\n        case .move:\n            return NSLocalizedString(\"Move to Edge\", tableName: \"Main\", value: \"\", comment: \"\")\n        case .fourths:\n            return NSLocalizedString(\"Fourths\", tableName: \"Main\", value: \"\", comment: \"\")\n        case .sixths:\n            return NSLocalizedString(\"Sixths\", tableName: \"Main\", value: \"\", comment: \"\")\n        case .eighths:\n            return NSLocalizedString(\"Eighths\", tableName: \"Main\", value: \"\", comment: \"\")\n        case .ninths:\n            return NSLocalizedString(\"Ninths\", tableName: \"Main\", value: \"Ninths\", comment: \"\")\n        case .twelfths:\n            return NSLocalizedString(\"Twelfths\", tableName: \"Main\", value: \"Twelfths\", comment: \"\")\n        case .sixteenths:\n            return NSLocalizedString(\"Sixteenths\", tableName: \"Main\", value: \"Sixteenths\", comment: \"\")\n        }\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/AlmostMaximizeCalculation.swift",
    "content": "//\n//  AlmostMaximizeCalculation.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 7/26/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass AlmostMaximizeCalculation: WindowCalculation {\n    \n    let almostMaximizeHeight: CGFloat\n    let almostMaximizeWidth: CGFloat\n\n    override init() {\n        let defaultHeight = Defaults.almostMaximizeHeight.value\n        almostMaximizeHeight = (defaultHeight <= 0 || defaultHeight > 1)\n            ? 0.9\n            : CGFloat(defaultHeight)\n\n        let defaultWidth = Defaults.almostMaximizeWidth.value\n        almostMaximizeWidth = (defaultWidth <= 0 || defaultWidth > 1)\n            ? 0.9\n            : CGFloat(defaultWidth)\n    }\n    \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n        var calculatedWindowRect = visibleFrameOfScreen\n        \n        // Resize\n        calculatedWindowRect.size.height = round(visibleFrameOfScreen.height * almostMaximizeHeight)\n        calculatedWindowRect.size.width = round(visibleFrameOfScreen.width * almostMaximizeWidth)\n        \n        // Center\n        calculatedWindowRect.origin.x = round((visibleFrameOfScreen.width - calculatedWindowRect.width) / 2.0) + visibleFrameOfScreen.minX\n        calculatedWindowRect.origin.y = round((visibleFrameOfScreen.height - calculatedWindowRect.height) / 2.0) + visibleFrameOfScreen.minY\n        \n        return RectResult(calculatedWindowRect)\n    }\n    \n}\n\n"
  },
  {
    "path": "Rectangle/WindowCalculation/BottomCenterLeftEighthCalculation.swift",
    "content": "//\n//  BottomCenterLeftEighthCalculation.swift\n//  Rectangle\n//\n//  Created by Johannes Trussell Rasch on 2022-02-18.\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass BottomCenterLeftEighthCalculation: WindowCalculation, OrientationAware, EighthsRepeated {\n        \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if last.action != .bottomCenterLeftEighth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 2.0)\n        rect.origin.y = visibleFrameOfScreen.minY\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width\n        return RectResult(rect, subAction: .bottomCenterLeftEighth)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 2.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = floor(visibleFrameOfScreen.maxY - (visibleFrameOfScreen.height * 0.75))\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width\n        return RectResult(rect, subAction: .bottomCenterLeftEighth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/BottomCenterLeftSixteenthCalculation.swift",
    "content": "//\n//  BottomCenterLeftSixteenthCalculation.swift\n//  Rectangle\n//\n//  Copyright © 2024 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass BottomCenterLeftSixteenthCalculation: WindowCalculation, OrientationAware, SixteenthsRepeated {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if last.action != .bottomCenterLeftSixteenth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n\n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.minY\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width\n        return RectResult(rect, subAction: .bottomCenterLeftSixteenth)\n    }\n\n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.minY\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width\n        return RectResult(rect, subAction: .bottomCenterLeftSixteenth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/BottomCenterLeftTwelfthCalculation.swift",
    "content": "//\n//  BottomCenterLeftTwelfthCalculation.swift\n//  Rectangle\n//\n//  Copyright © 2024 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass BottomCenterLeftTwelfthCalculation: WindowCalculation, OrientationAware, TwelfthsRepeated {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if last.action != .bottomCenterLeftTwelfth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n\n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.minY\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width\n        return RectResult(rect, subAction: .bottomCenterLeftTwelfth)\n    }\n\n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.minY\n        rect.origin.x = visibleFrameOfScreen.minX\n        return RectResult(rect, subAction: .bottomCenterLeftTwelfth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/BottomCenterNinthCalculation.swift",
    "content": "//\n//  BottomCenterNinthCalculation.swift\n//  Rectangle\n//\n//  Created by Daniel Schultz on 1/2/22.\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass BottomCenterNinthCalculation: WindowCalculation, OrientationAware, NinthsRepeated {\n        \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if last.action != .bottomCenterNinth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.minY\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width\n        return RectResult(rect, subAction: .bottomCenterNinth)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.minY\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width\n        return RectResult(rect, subAction: .bottomCenterNinth)\n    }\n}\n\n\n"
  },
  {
    "path": "Rectangle/WindowCalculation/BottomCenterRightEighthCalculation.swift",
    "content": "//\n//  BottomCenterRightEighthCalculation.swift\n//  Rectangle\n//\n//  Created by Johannes Trussell Rasch on 2022-02-18.\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass BottomCenterRightEighthCalculation: WindowCalculation, OrientationAware, EighthsRepeated {\n        \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if last.action != .bottomCenterRightEighth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 2.0)\n        rect.origin.y = visibleFrameOfScreen.minY\n        rect.origin.x = visibleFrameOfScreen.minX + (2.0 * rect.width)\n        return RectResult(rect, subAction: .bottomCenterRightEighth)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 2.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.minY\n        rect.origin.x = visibleFrameOfScreen.minX\n        return RectResult(rect, subAction: .bottomCenterRightEighth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/BottomCenterRightSixteenthCalculation.swift",
    "content": "//\n//  BottomCenterRightSixteenthCalculation.swift\n//  Rectangle\n//\n//  Copyright © 2024 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass BottomCenterRightSixteenthCalculation: WindowCalculation, OrientationAware, SixteenthsRepeated {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if last.action != .bottomCenterRightSixteenth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n\n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.minY\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width * 2\n        return RectResult(rect, subAction: .bottomCenterRightSixteenth)\n    }\n\n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.minY\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width * 2\n        return RectResult(rect, subAction: .bottomCenterRightSixteenth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/BottomCenterRightTwelfthCalculation.swift",
    "content": "//\n//  BottomCenterRightTwelfthCalculation.swift\n//  Rectangle\n//\n//  Copyright © 2024 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass BottomCenterRightTwelfthCalculation: WindowCalculation, OrientationAware, TwelfthsRepeated {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if last.action != .bottomCenterRightTwelfth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n\n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.minY\n        rect.origin.x = visibleFrameOfScreen.minX + floor(visibleFrameOfScreen.width / 4.0) * 2.0\n        return RectResult(rect, subAction: .bottomCenterRightTwelfth)\n    }\n\n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.minY\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width\n        return RectResult(rect, subAction: .bottomCenterRightTwelfth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/BottomCenterSixthCalculation.swift",
    "content": "//\n//  BottomCenterCalculation.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 9/16/20.\n//  Copyright © 2020 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass BottomCenterSixthCalculation: WindowCalculation, OrientationAware {\n    \n    private let bottomRightTwoSixths = BottomRightTwoSixthsCalculation()\n    private let bottomLeftTwoSixths = BottomLeftTwoSixthsCalculation()\n    private let topRightTwoSixths = TopRightTwoSixthsCalculation()\n    \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction,\n              params.action == .bottomCenterSixth\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        let calc: SimpleCalc\n        switch lastSubAction{\n        case .bottomCenterSixthLandscape, .rightCenterSixthPortrait:\n            calc = bottomRightTwoSixths.orientationBasedRect\n        case .bottomRightTwoSixthsLandscape:\n            calc = bottomLeftTwoSixths.orientationBasedRect\n        case .bottomRightTwoSixthsPortrait:\n            calc = topRightTwoSixths.orientationBasedRect\n        default: calc = orientationBasedRect\n        }\n        \n        return calc(visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 2.0)\n        rect.origin.x = visibleFrameOfScreen.origin.x + rect.width\n        return RectResult(rect, subAction: .bottomCenterSixthLandscape)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 2.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.x = visibleFrameOfScreen.origin.x + rect.width\n        rect.origin.y = visibleFrameOfScreen.origin.y + rect.height\n        return RectResult(rect, subAction: .rightCenterSixthPortrait)\n    }\n}\n\nclass BottomRightTwoSixthsCalculation: WindowCalculation, OrientationAware {\n\n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width * 2.0 / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 2.0)\n        rect.origin.x = visibleFrameOfScreen.maxX - rect.width\n        return RectResult(rect, subAction: .bottomRightTwoSixthsLandscape)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 2.0)\n        rect.size.height = floor(visibleFrameOfScreen.height * 2.0 / 3.0)\n        rect.origin.x = visibleFrameOfScreen.maxX - rect.width\n        return RectResult(rect, subAction: .bottomRightTwoSixthsPortrait)\n    }\n}\n\nclass BottomLeftTwoSixthsCalculation: WindowCalculation, OrientationAware {\n\n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width * 2.0 / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 2.0)\n        return RectResult(rect, subAction: .bottomLeftTwoSixthsLandscape)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 2.0)\n        rect.size.height = floor(visibleFrameOfScreen.height * 2.0 / 3.0)\n        return RectResult(rect, subAction: .bottomLeftTwoSixthsPortrait)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/BottomHalfCalculation.swift",
    "content": "//\n//  BottomHalfCalculation.swift\n//  Rectangle, Ported from Spectacle\n//\n//  Created by Ryan Hanson on 6/14/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass BottomHalfCalculation: WindowCalculation, RepeatedExecutionsInThirdsCalculation {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n\n        if params.lastAction == nil || !Defaults.subsequentExecutionMode.resizes {\n            return calculateFirstRect(params)\n        }\n        \n        return calculateRepeatedRect(params)\n    }\n    \n    func calculateFirstRect(_ params: RectCalculationParameters) -> RectResult {\n        return calculateFractionalRect(params, fraction: 1.0 - Defaults.verticalSplitRatio.value / 100.0)\n    }\n\n    func calculateFractionalRect(_ params: RectCalculationParameters, fraction: Float) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        var rect = visibleFrameOfScreen\n        rect.size.height = floor(visibleFrameOfScreen.height * CGFloat(fraction))\n        return RectResult(rect)\n    }\n    \n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/BottomLeftEighthCalculation.swift",
    "content": "//\n//  BottomLeftEighthCalculation.swift\n//  Rectangle\n//\n//  Created by Johannes Trussell Rasch on 2022-02-18.\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass BottomLeftEighthCalculation: WindowCalculation, OrientationAware, EighthsRepeated {\n        \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if last.action != .bottomLeftEighth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 2.0)\n        rect.origin.y = visibleFrameOfScreen.minY\n        rect.origin.x = visibleFrameOfScreen.minX\n        return RectResult(rect, subAction: .bottomLeftEighth)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 2.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = floor(visibleFrameOfScreen.maxY - (visibleFrameOfScreen.height * 0.75))\n        rect.origin.x = visibleFrameOfScreen.minX\n        return RectResult(rect, subAction: .bottomLeftEighth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/BottomLeftNinthCalculation.swift",
    "content": "//\n//  BottomLeftNinthCalculation.swift\n//  Rectangle\n//\n//  Created by Daniel Schultz on 1/2/22.\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass BottomLeftNinthCalculation: WindowCalculation, OrientationAware, NinthsRepeated {\n        \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if last.action != .bottomLeftNinth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.minY\n        rect.origin.x = visibleFrameOfScreen.minX\n        return RectResult(rect, subAction: .bottomLeftNinth)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.minY\n        rect.origin.x = visibleFrameOfScreen.minX\n        return RectResult(rect, subAction: .bottomLeftNinth)\n    }\n}\n\n\n"
  },
  {
    "path": "Rectangle/WindowCalculation/BottomLeftSixteenthCalculation.swift",
    "content": "//\n//  BottomLeftSixteenthCalculation.swift\n//  Rectangle\n//\n//  Copyright © 2024 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass BottomLeftSixteenthCalculation: WindowCalculation, OrientationAware, SixteenthsRepeated {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if last.action != .bottomLeftSixteenth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n\n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.minY\n        rect.origin.x = visibleFrameOfScreen.minX\n        return RectResult(rect, subAction: .bottomLeftSixteenth)\n    }\n\n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.minY\n        rect.origin.x = visibleFrameOfScreen.minX\n        return RectResult(rect, subAction: .bottomLeftSixteenth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/BottomLeftSixthCalculation.swift",
    "content": "//\n//  BottomLeftSixthCalculation.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 9/16/20.\n//  Copyright © 2020 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass BottomLeftSixthCalculation: WindowCalculation, OrientationAware, SixthsRepeated {\n    \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if last.action != .bottomLeftSixth\n            && lastSubAction != .bottomLeftSixthLandscape\n            && lastSubAction != .bottomLeftSixthPortrait {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 2.0)\n        return RectResult(rect, subAction: .bottomLeftSixthLandscape)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 2.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        return RectResult(rect, subAction: .bottomLeftSixthPortrait)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/BottomLeftThirdCalculation.swift",
    "content": "//\n//  BottomLeftThirdCalculation.swift\n//  Rectangle\n//\n//  Created by Daniel Schultz on 1/2/22.\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass BottomLeftThirdCalculation: WindowCalculation, OrientationAware, HorizontalThirdsRepeated  {\n        \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if last.action != .bottomLeftThird {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(2.0 * visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 2.0)\n        rect.origin.y = visibleFrameOfScreen.minY\n        rect.origin.x = visibleFrameOfScreen.minX\n        return RectResult(rect, subAction: .bottomLeftThird)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 2.0)\n        rect.size.height = floor(2.0 * visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.minY\n        rect.origin.x = visibleFrameOfScreen.minX\n        return RectResult(rect, subAction: .bottomLeftThird)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/BottomLeftTwelfthCalculation.swift",
    "content": "//\n//  BottomLeftTwelfthCalculation.swift\n//  Rectangle\n//\n//  Copyright © 2024 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass BottomLeftTwelfthCalculation: WindowCalculation, OrientationAware, TwelfthsRepeated {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if last.action != .bottomLeftTwelfth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n\n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.minY\n        rect.origin.x = visibleFrameOfScreen.minX\n        return RectResult(rect, subAction: .bottomLeftTwelfth)\n    }\n\n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - (3.0 * rect.height)\n        rect.origin.x = visibleFrameOfScreen.minX + (2.0 * rect.width)\n        return RectResult(rect, subAction: .bottomLeftTwelfth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/BottomRightEighthCalculation.swift",
    "content": "//\n//  BottomRightEighthCalculation.swift\n//  Rectangle\n//\n//  Created by Johannes Trussell Rasch on 2022-02-18.\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass BottomRightEighthCalculation: WindowCalculation, OrientationAware, EighthsRepeated {\n        \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if last.action != .bottomRightEighth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 2.0)\n        rect.origin.y = visibleFrameOfScreen.minY\n        rect.origin.x = visibleFrameOfScreen.minX + (3.0 * rect.width)\n        return RectResult(rect, subAction: .bottomRightEighth)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 2.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.minY\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width\n        return RectResult(rect, subAction: .bottomRightEighth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/BottomRightNinthCalculation.swift",
    "content": "//\n//  BottomRightNinthCalculation.swift\n//  Rectangle\n//\n//  Created by Daniel Schultz on 1/2/22.\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass BottomRightNinthCalculation: WindowCalculation, OrientationAware, NinthsRepeated {\n        \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if last.action != .bottomRightNinth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.minY\n        rect.origin.x = visibleFrameOfScreen.minX + visibleFrameOfScreen.width - rect.width\n        return RectResult(rect, subAction: .bottomRightNinth)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.minY\n        rect.origin.x = visibleFrameOfScreen.minX + visibleFrameOfScreen.width - rect.width\n        return RectResult(rect, subAction: .bottomRightNinth)\n    }\n}\n\n\n"
  },
  {
    "path": "Rectangle/WindowCalculation/BottomRightSixteenthCalculation.swift",
    "content": "//\n//  BottomRightSixteenthCalculation.swift\n//  Rectangle\n//\n//  Copyright © 2024 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass BottomRightSixteenthCalculation: WindowCalculation, OrientationAware, SixteenthsRepeated {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if last.action != .bottomRightSixteenth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n\n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.minY\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width * 3\n        return RectResult(rect, subAction: .bottomRightSixteenth)\n    }\n\n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.minY\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width * 3\n        return RectResult(rect, subAction: .bottomRightSixteenth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/BottomRightSixthCalculation.swift",
    "content": "//\n//  BottomRightSixthCalculation.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 9/16/20.\n//  Copyright © 2020 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass BottomRightSixthCalculation: WindowCalculation, OrientationAware, SixthsRepeated {\n    \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        \n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if last.action != .bottomRightSixth\n            && lastSubAction != .bottomRightSixthLandscape\n            && lastSubAction != .bottomRightSixthPortrait {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .left) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 2.0)\n        rect.origin.x = visibleFrameOfScreen.origin.x + visibleFrameOfScreen.width - rect.width\n        return RectResult(rect, subAction: .bottomRightSixthLandscape)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 2.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.x = visibleFrameOfScreen.origin.x + visibleFrameOfScreen.width - rect.width\n        return RectResult(rect, subAction: .bottomRightSixthPortrait)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/BottomRightThirdCalculation.swift",
    "content": "//\n//  BottomRightThirdCalculation.swift\n//  Rectangle\n//\n//  Created by Daniel Schultz on 1/2/22.\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass BottomRightThirdCalculation: WindowCalculation, OrientationAware, HorizontalThirdsRepeated {\n        \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if last.action != .bottomRightThird {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(2.0 * visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 2.0)\n        rect.origin.y = visibleFrameOfScreen.minY\n        rect.origin.x = visibleFrameOfScreen.minX + visibleFrameOfScreen.width / 3.0\n        return RectResult(rect, subAction: .bottomRightThird)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 2.0)\n        rect.size.height = floor(2.0 * visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.minY\n        rect.origin.x = visibleFrameOfScreen.minX + visibleFrameOfScreen.width / 2.0\n        return RectResult(rect, subAction: .bottomRightThird)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/BottomRightTwelfthCalculation.swift",
    "content": "//\n//  BottomRightTwelfthCalculation.swift\n//  Rectangle\n//\n//  Copyright © 2024 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass BottomRightTwelfthCalculation: WindowCalculation, OrientationAware, TwelfthsRepeated {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if last.action != .bottomRightTwelfth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n\n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.minY\n        rect.origin.x = visibleFrameOfScreen.minX + floor(visibleFrameOfScreen.width / 4.0) * 3.0\n        return RectResult(rect, subAction: .bottomRightTwelfth)\n    }\n\n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.minY\n        rect.origin.x = visibleFrameOfScreen.minX + floor(visibleFrameOfScreen.width / 3.0) * 2.0\n        return RectResult(rect, subAction: .bottomRightTwelfth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/BottomVerticalThirdCalculation.swift",
    "content": "//\n//  BottomVerticalThirdCalculation.swift\n//  Rectangle\n//\n//  Created on 12/22/25.\n//\n\nimport Foundation\n\nclass BottomVerticalThirdCalculation: WindowCalculation {\n    \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n        \n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction, let lastSubAction = last.subAction else {\n            return calculateBottomThird(visibleFrameOfScreen)\n        }\n        \n        var calculation: WindowCalculation?\n        \n        if last.action == .bottomVerticalThird {\n            switch lastSubAction {\n            case .centerVerticalThird:\n                calculation = WindowCalculationFactory.topVerticalThirdCalculation\n            case .bottomThird:\n                calculation = WindowCalculationFactory.middleVerticalThirdCalculation\n            default:\n                break\n            }\n        }\n        else if last.action == .topVerticalThird {\n            switch lastSubAction {\n            case .bottomThird:\n                calculation = WindowCalculationFactory.middleVerticalThirdCalculation\n            default:\n                break\n            }\n        }\n        \n        if let calculation = calculation {\n            return calculation.calculateRect(params)\n        }\n        \n        return calculateBottomThird(visibleFrameOfScreen)\n    }\n    \n    func calculateBottomThird(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.minY\n        return RectResult(rect, subAction: .bottomThird)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/BottomVerticalTwoThirdsCalculation.swift",
    "content": "//\n//  BottomVerticalTwoThirdsCalculation.swift\n//  Rectangle\n//\n//  Created on 12/22/25.\n//\n\nimport Foundation\n\nclass BottomVerticalTwoThirdsCalculation: WindowCalculation {\n    \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction, let lastSubAction = last.subAction else {\n            return calculateBottomTwoThirds(visibleFrameOfScreen)\n        }\n\n        if lastSubAction == .bottomTwoThirds {\n            return WindowCalculationFactory.topVerticalTwoThirdsCalculation.calculateRect(params)\n        }\n        \n        return calculateBottomTwoThirds(visibleFrameOfScreen)\n    }\n    \n    func calculateBottomTwoThirds(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.height = floor(visibleFrameOfScreen.height * 2 / 3.0)\n        rect.origin.y = visibleFrameOfScreen.minY\n        return RectResult(rect, subAction: .bottomTwoThirds)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/CenterCalculation.swift",
    "content": "//\n//  CenterCalculation.swift\n//  Rectangle, Ported from Spectacle\n//\n//  Created by Ryan Hanson on 6/14/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass CenterCalculation: WindowCalculation {\n    \n    override func calculate(_ params: WindowCalculationParameters) -> WindowCalculationResult? {\n\n        var screenFrame: CGRect?\n        if !Defaults.alwaysAccountForStage.userEnabled {\n            screenFrame = params.usableScreens.currentScreen.adjustedVisibleFrame(params.ignoreTodo, true)\n        }\n                \n        let rectResult = calculateRect(params.asRectParams(visibleFrame: screenFrame))\n        \n        let resultingAction: WindowAction = rectResult.resultingAction ?? params.action\n\n        return WindowCalculationResult(rect: rectResult.rect,\n                                       screen: params.usableScreens.currentScreen,\n                                       resultingAction: resultingAction,\n                                       resultingScreenFrame: screenFrame)\n    }\n    \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n        var calculatedWindowRect = params.window.rect\n\n        let heightExceeded = params.window.rect.height > visibleFrameOfScreen.height\n        let widthExceeded = params.window.rect.width > visibleFrameOfScreen.width\n        \n        if heightExceeded && widthExceeded {\n            return RectResult(visibleFrameOfScreen, resultingAction: .maximize)\n        }\n        \n        if heightExceeded {\n            calculatedWindowRect.size.height = visibleFrameOfScreen.height\n            calculatedWindowRect.origin.y = visibleFrameOfScreen.minY\n        } else {\n            calculatedWindowRect.origin.y = round((visibleFrameOfScreen.height - params.window.rect.height) / 2.0) + visibleFrameOfScreen.minY\n        }\n        \n        if widthExceeded {\n            calculatedWindowRect.size.width = visibleFrameOfScreen.width\n            calculatedWindowRect.origin.x = visibleFrameOfScreen.minX\n        } else {\n            calculatedWindowRect.origin.x = round((visibleFrameOfScreen.width - params.window.rect.width) / 2.0) + visibleFrameOfScreen.minX\n        }\n\n        return RectResult(calculatedWindowRect)\n\n    }\n    \n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/CenterHalfCalculation.swift",
    "content": "//\n//  AlmostMaximizeCalculation.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 7/26/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass CenterHalfCalculation: WindowCalculation, OrientationAware, RepeatedExecutionsInThirdsCalculation {\n    \n    func calculateFractionalRect(_ params: RectCalculationParameters, fraction: Float) -> RectResult {\n        \n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n        return visibleFrameOfScreen.isLandscape\n            ? landscapeRect(visibleFrameOfScreen, fraction: fraction)\n            : portraitRect(visibleFrameOfScreen, fraction: fraction)\n    }\n    \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        \n        if (params.lastAction != nil && Defaults.subsequentExecutionMode.resizes) || Defaults.centerHalfCycles.userEnabled {\n            return calculateRepeatedRect(params)\n        }\n        \n        return orientationBasedRect(params.visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect, fraction: Float) -> RectResult {\n        var rect = visibleFrameOfScreen\n        \n        // Resize\n        rect.size.height = visibleFrameOfScreen.height\n        rect.size.width = round(visibleFrameOfScreen.width * CGFloat(fraction))\n        \n        // Center\n        rect.origin.x = round((visibleFrameOfScreen.width - rect.width) / 2.0) + visibleFrameOfScreen.minX\n        rect.origin.y = round((visibleFrameOfScreen.height - rect.height) / 2.0) + visibleFrameOfScreen.minY\n        \n        return RectResult(rect, subAction: .centerVerticalHalf)\n    }\n\n    func portraitRect(_ visibleFrameOfScreen: CGRect, fraction: Float) -> RectResult {\n        var rect = visibleFrameOfScreen\n        \n        // Resize\n        rect.size.width = visibleFrameOfScreen.width\n        rect.size.height = round(visibleFrameOfScreen.height * CGFloat(fraction))\n        \n        // Center\n        rect.origin.x = round((visibleFrameOfScreen.width - rect.width) / 2.0) + visibleFrameOfScreen.minX\n        rect.origin.y = round((visibleFrameOfScreen.height - rect.height) / 2.0) + visibleFrameOfScreen.minY\n        \n        return RectResult(rect, subAction: .centerHorizontalHalf)\n    }\n\n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        return landscapeRect(visibleFrameOfScreen, fraction: 0.5)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        return portraitRect(visibleFrameOfScreen, fraction: 0.5)\n    }\n\n}\n\n"
  },
  {
    "path": "Rectangle/WindowCalculation/CenterProminentlyCalculation.swift",
    "content": "//\n//  CenterProminentlyCalculation.swift\n//  Rectangle\n//\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass CenterProminentlyCalculation: WindowCalculation {\n    \n    override func calculate(_ params: WindowCalculationParameters) -> WindowCalculationResult? {\n        \n        var screenFrame: CGRect?\n        if !Defaults.alwaysAccountForStage.userEnabled {\n            screenFrame = params.usableScreens.currentScreen.adjustedVisibleFrame(params.ignoreTodo, true)\n        }\n                \n        let rectResult = calculateRect(params.asRectParams(visibleFrame: screenFrame))\n        \n        let resultingAction: WindowAction = rectResult.resultingAction ?? params.action\n\n        return WindowCalculationResult(rect: rectResult.rect,\n                                       screen: params.usableScreens.currentScreen,\n                                       resultingAction: resultingAction,\n                                       resultingScreenFrame: screenFrame)\n    }\n    \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        \n        let rectResult = WindowCalculationFactory.centerCalculation.calculateRect(params)\n        var rect = rectResult.rect\n        rect.origin.y += -0.25 * rect.height + 0.25 * params.visibleFrameOfScreen.height\n        return RectResult(rect, resultingAction: rectResult.resultingAction)\n\n    }\n    \n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/CenterThirdCalculation.swift",
    "content": "//\n//  HorizCenterThirdCalculation.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 7/26/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass CenterThirdCalculation: WindowCalculation, OrientationAware {\n    \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.origin.x = visibleFrameOfScreen.minX + floor(visibleFrameOfScreen.width / 3.0)\n        rect.origin.y = visibleFrameOfScreen.minY\n        rect.size.width = visibleFrameOfScreen.width / 3.0\n        rect.size.height = visibleFrameOfScreen.height\n        return RectResult(rect, subAction: .centerVerticalThird)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.origin.x = visibleFrameOfScreen.minX\n        rect.origin.y = visibleFrameOfScreen.minY + floor(visibleFrameOfScreen.height / 3.0)\n        rect.size.width = visibleFrameOfScreen.width\n        rect.size.height = visibleFrameOfScreen.height / 3.0\n        return RectResult(rect, subAction: .centerHorizontalThird)\n    }\n}\n\n"
  },
  {
    "path": "Rectangle/WindowCalculation/CenterThreeFourthsCalculation.swift",
    "content": "//\n//  CenterThreeFourthsCalculation.swift\n//  Rectangle\n//\n//  Created by Tom Grimwood-Taylor on 26/07/2025.\n//  Copyright © 2025 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass CenterThreeFourthsCalculation: WindowCalculation, OrientationAware {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n\n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.origin.x = visibleFrameOfScreen.minX + floor(visibleFrameOfScreen.width / 4.0) / 2\n        rect.origin.y = visibleFrameOfScreen.minY\n        rect.size.width = visibleFrameOfScreen.width / 4.0 * 3\n        rect.size.height = visibleFrameOfScreen.height\n        return RectResult(rect, subAction: .centerVerticalThreeFourths)\n    }\n\n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.origin.x = visibleFrameOfScreen.minX\n        rect.origin.y = visibleFrameOfScreen.minY + floor(visibleFrameOfScreen.height / 4.0) / 2\n        rect.size.width = visibleFrameOfScreen.width\n        rect.size.height = visibleFrameOfScreen.height / 4.0 * 3\n        return RectResult(rect, subAction: .centerHorizontalThreeFourths)\n    }\n}\n\n"
  },
  {
    "path": "Rectangle/WindowCalculation/CenterTwoThirdsCalculation.swift",
    "content": "//\n//  CenterTwoThirdsCalculation.swift\n//  Rectangle\n//\n//  Created by Mikhail Savin on 7/14/25.\n//  Copyright © 2025 Mikhail Savin. All rights reserved.\n//\n\nimport Foundation\n\nclass CenterTwoThirdsCalculation: WindowCalculation, OrientationAware {\n    \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.origin.x = visibleFrameOfScreen.minX + floor(visibleFrameOfScreen.width / 3.0) / 2\n        rect.origin.y = visibleFrameOfScreen.minY\n        rect.size.width = visibleFrameOfScreen.width / 3.0 * 2\n        rect.size.height = visibleFrameOfScreen.height\n        return RectResult(rect, subAction: .centerVerticalThird)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.origin.x = visibleFrameOfScreen.minX\n        rect.origin.y = visibleFrameOfScreen.minY + floor(visibleFrameOfScreen.height / 3.0) / 2\n        rect.size.width = visibleFrameOfScreen.width\n        rect.size.height = visibleFrameOfScreen.height / 3.0 * 2\n        return RectResult(rect, subAction: .centerHorizontalThird)\n    }\n}\n\n"
  },
  {
    "path": "Rectangle/WindowCalculation/ChangeSizeCalculation.swift",
    "content": "//\n//  ChangeSizeCalculation.swift\n//  Rectangle, Ported from Spectacle\n//\n//  Created by Ryan Hanson on 6/14/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass ChangeSizeCalculation: WindowCalculation, ChangeWindowDimensionCalculation {\n\n    let screenEdgeGapSize: CGFloat\n    let sizeOffsetAbs: CGFloat\n    let curtainChangeSize = Defaults.curtainChangeSize.enabled != false\n\n    var widthOffsetAbs: CGFloat {\n        CGFloat(Defaults.widthStepSize.value)\n    }\n\n    override init() {\n        let windowGapSize = Defaults.gapSize.value\n        screenEdgeGapSize = (windowGapSize <= 0) ? 5.0 : CGFloat(windowGapSize)\n\n        let defaultSizeOffset = Defaults.sizeOffset.value\n        sizeOffsetAbs = (defaultSizeOffset <= 0)\n            ? 30.0\n            : CGFloat(defaultSizeOffset)\n    }\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n\n        let sizeOffset: CGFloat\n        switch params.action {\n            case .larger, .largerHeight:\n                sizeOffset = sizeOffsetAbs\n            case .smaller, .smallerHeight:\n                sizeOffset = -sizeOffsetAbs\n            case .largerWidth:\n                sizeOffset = widthOffsetAbs\n            case .smallerWidth:\n                sizeOffset = -widthOffsetAbs\n            default:\n                sizeOffset = 0\n        }\n\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n        let window = params.window\n\n        // Calculate Width\n\n        var resizedWindowRect = window.rect\n\n        if [.larger, .smaller, .largerWidth, .smallerWidth].contains(params.action) {\n            resizedWindowRect.size.width = resizedWindowRect.width + sizeOffset\n            resizedWindowRect.origin.x = resizedWindowRect.minX - floor(sizeOffset / 2.0)\n\n            if curtainChangeSize {\n                resizedWindowRect = againstLeftAndRightScreenEdges(\n                    originalWindowRect: window.rect,\n                    resizedWindowRect: resizedWindowRect,\n                    visibleFrameOfScreen: visibleFrameOfScreen\n                )\n            }\n\n            if resizedWindowRect.width >= visibleFrameOfScreen.width {\n                resizedWindowRect.size.width = visibleFrameOfScreen.width\n            }\n        }\n\n        // Calculate Height\n\n        if [.larger, .smaller, .largerHeight, .smallerHeight].contains(params.action) {\n            resizedWindowRect.size.height = resizedWindowRect.height + sizeOffset\n            resizedWindowRect.origin.y = resizedWindowRect.minY - floor(sizeOffset / 2.0)\n\n            if curtainChangeSize, params.action != .smallerHeight {\n                resizedWindowRect = againstTopAndBottomScreenEdges(\n                    originalWindowRect: window.rect,\n                    resizedWindowRect: resizedWindowRect,\n                    visibleFrameOfScreen: visibleFrameOfScreen\n                )\n            }\n\n            if resizedWindowRect.height >= visibleFrameOfScreen.height {\n                resizedWindowRect.size.height = visibleFrameOfScreen.height\n                resizedWindowRect.origin.y = params.window.rect.minY\n            }\n        }\n\n\n        if againstAllScreenEdges(windowRect: window.rect, visibleFrameOfScreen: visibleFrameOfScreen) && (sizeOffset < 0) {\n            resizedWindowRect.size.width = params.window.rect.width + sizeOffset\n            resizedWindowRect.origin.x = params.window.rect.origin.x - floor(sizeOffset / 2.0)\n            resizedWindowRect.size.height = params.window.rect.height + sizeOffset\n            resizedWindowRect.origin.y = params.window.rect.origin.y - floor(sizeOffset / 2.0)\n        }\n        \n        if [.smaller, .smallerWidth, .smallerHeight].contains(params.action), resizedWindowRectIsTooSmall(windowRect: resizedWindowRect, visibleFrameOfScreen: visibleFrameOfScreen) {\n            resizedWindowRect = window.rect\n        }\n\n        return RectResult(resizedWindowRect)\n    }\n\n    private func againstScreenEdge(_ gap: CGFloat) -> Bool {\n        return abs(gap) <= screenEdgeGapSize\n    }\n\n    private func againstLeftScreenEdge(_ windowRect: CGRect, _ visibleFrameOfScreen: CGRect) -> Bool {\n        return againstScreenEdge(windowRect.minX - visibleFrameOfScreen.minX)\n    }\n\n    private func againstRightScreenEdge(_ windowRect: CGRect, _ visibleFrameOfScreen: CGRect) -> Bool {\n        return againstScreenEdge(windowRect.maxX - visibleFrameOfScreen.maxX)\n    }\n\n    private func againstTopScreenEdge(_ windowRect: CGRect, _ visibleFrameOfScreen: CGRect) -> Bool {\n        return againstScreenEdge(windowRect.maxY - visibleFrameOfScreen.maxY)\n    }\n\n    private func againstBottomScreenEdge(_ windowRect: CGRect, _ visibleFrameOfScreen: CGRect) -> Bool {\n        return againstScreenEdge(windowRect.minY - visibleFrameOfScreen.minY)\n    }\n\n    private func againstAllScreenEdges(windowRect: CGRect, visibleFrameOfScreen: CGRect) -> Bool {\n        return (againstLeftScreenEdge(windowRect, visibleFrameOfScreen)\n            && againstRightScreenEdge(windowRect, visibleFrameOfScreen)\n            && againstTopScreenEdge(windowRect, visibleFrameOfScreen)\n            && againstBottomScreenEdge(windowRect, visibleFrameOfScreen))\n    }\n\n    private func againstLeftAndRightScreenEdges(originalWindowRect: CGRect, resizedWindowRect: CGRect, visibleFrameOfScreen: CGRect) -> CGRect {\n        var adjustedWindowRect = resizedWindowRect\n        if againstRightScreenEdge(originalWindowRect, visibleFrameOfScreen) {\n            adjustedWindowRect.origin.x = visibleFrameOfScreen.maxX - adjustedWindowRect.width - CGFloat(Defaults.gapSize.value)\n            if againstLeftScreenEdge(originalWindowRect, visibleFrameOfScreen) {\n                adjustedWindowRect.size.width = visibleFrameOfScreen.width - (CGFloat(Defaults.gapSize.value) * 2)\n            }\n        }\n        if againstLeftScreenEdge(originalWindowRect, visibleFrameOfScreen) {\n            adjustedWindowRect.origin.x = visibleFrameOfScreen.minX + CGFloat(Defaults.gapSize.value)\n        }\n        return adjustedWindowRect\n    }\n\n    private func againstTopAndBottomScreenEdges(originalWindowRect: CGRect, resizedWindowRect: CGRect, visibleFrameOfScreen: CGRect) -> CGRect{\n        var adjustedWindowRect = resizedWindowRect\n        if againstTopScreenEdge(originalWindowRect, visibleFrameOfScreen) {\n            adjustedWindowRect.origin.y = visibleFrameOfScreen.maxY - adjustedWindowRect.height - CGFloat(Defaults.gapSize.value)\n            if againstBottomScreenEdge(originalWindowRect, visibleFrameOfScreen) {\n                adjustedWindowRect.size.height = visibleFrameOfScreen.height - (CGFloat(Defaults.gapSize.value) * 2)\n            }\n        }\n        if againstBottomScreenEdge(originalWindowRect, visibleFrameOfScreen) {\n            adjustedWindowRect.origin.y = visibleFrameOfScreen.minY + CGFloat(Defaults.gapSize.value)\n        }\n        return adjustedWindowRect\n    }\n\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/ChangeWindowDimensionCalculation.swift",
    "content": "//\n//  MinimumWindowDimensionAware.swift\n//  Rectangle\n//\n//  Created by Isaac Young on 23/04/24.\n//  Copyright © 2024 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nprotocol ChangeWindowDimensionCalculation {\n    func resizedWindowRectIsTooSmall(windowRect: CGRect, visibleFrameOfScreen: CGRect) -> Bool;\n}\n\nextension ChangeWindowDimensionCalculation {\n    private func minimumWindowWidth() -> CGFloat {\n        let defaultWidth = Defaults.minimumWindowWidth.value\n        return (defaultWidth <= 0 || defaultWidth > 1)\n            ? 0.25\n            : CGFloat(defaultWidth)\n    }\n    \n    private func minimumWindowHeight() -> CGFloat {\n        let defaultHeight = Defaults.minimumWindowHeight.value\n        return (defaultHeight <= 0 || defaultHeight > 1)\n            ? 0.25\n            : CGFloat(defaultHeight)\n    }\n    \n    func resizedWindowRectIsTooSmall(windowRect: CGRect, visibleFrameOfScreen: CGRect) -> Bool {\n        let minimumWindowRectWidth = floor(visibleFrameOfScreen.width * minimumWindowWidth())\n        let minimumWindowRectHeight = floor(visibleFrameOfScreen.height * minimumWindowHeight())\n        return (windowRect.width <= minimumWindowRectWidth) || (windowRect.height <= minimumWindowRectHeight)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/EighthsRepeated.swift",
    "content": "//\n//  EighthsRepeated.swift\n//  Rectangle\n//\n//  Created by Johannes Trussell Rasch on 2022-02-18.\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nprotocol EighthsRepeated {\n    func nextCalculation(subAction: SubWindowAction, direction: Direction) -> SimpleCalc?\n}\n\nextension EighthsRepeated {\n    func nextCalculation(subAction: SubWindowAction, direction: Direction) -> SimpleCalc? {\n        \n        if direction == .left {\n            switch subAction {\n            case .topLeftEighth:\n                return WindowCalculationFactory.bottomRightEighthCalculation.orientationBasedRect\n            case .topCenterLeftEighth:\n                return WindowCalculationFactory.topLeftEighthCalculation.orientationBasedRect\n            case .topCenterRightEighth:\n                return WindowCalculationFactory.topCenterLeftEighthCalculation.orientationBasedRect\n            case .topRightEighth:\n                return WindowCalculationFactory.topCenterRightEighthCalculation.orientationBasedRect\n            case .bottomLeftEighth:\n                return WindowCalculationFactory.topRightEighthCalculation.orientationBasedRect\n            case .bottomCenterLeftEighth:\n                return WindowCalculationFactory.bottomLeftEighthCalculation.orientationBasedRect\n            case .bottomCenterRightEighth:\n                return WindowCalculationFactory.bottomCenterLeftEighthCalculation.orientationBasedRect\n            case .bottomRightEighth:\n                return WindowCalculationFactory.bottomCenterRightEighthCalculation.orientationBasedRect\n            default: break\n            }\n        }\n        \n        else if direction == .right {\n            switch subAction {\n            case .topLeftEighth:\n                return WindowCalculationFactory.topCenterLeftEighthCalculation.orientationBasedRect\n            case .topCenterLeftEighth:\n                return WindowCalculationFactory.topCenterRightEighthCalculation.orientationBasedRect\n            case .topCenterRightEighth:\n                return WindowCalculationFactory.topRightEighthCalculation.orientationBasedRect\n            case .topRightEighth:\n                return WindowCalculationFactory.bottomLeftEighthCalculation.orientationBasedRect\n            case .bottomLeftEighth:\n                return WindowCalculationFactory.bottomCenterLeftEighthCalculation.orientationBasedRect\n            case .bottomCenterLeftEighth:\n                return WindowCalculationFactory.bottomCenterRightEighthCalculation.orientationBasedRect\n            case .bottomCenterRightEighth:\n                return WindowCalculationFactory.bottomRightEighthCalculation.orientationBasedRect\n            case .bottomRightEighth:\n                return WindowCalculationFactory.topLeftEighthCalculation.orientationBasedRect\n            default: break\n            }\n        }\n        \n        return nil\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/FirstFourthCalculation.swift",
    "content": "//\n//  LeftThirdCalculation.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 7/26/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass FirstFourthCalculation: WindowCalculation, OrientationAware {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n        \n        guard Defaults.subsequentExecutionMode.value != .none,\n              params.action == .firstFourth,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        var calculation: WindowCalculation?\n        if last.action == .firstFourth {\n            switch lastSubAction {\n            case .topFourth, .leftFourth:\n                calculation = WindowCalculationFactory.secondFourthCalculation\n            case .centerTopFourth, .centerLeftFourth:\n                calculation = WindowCalculationFactory.thirdFourthCalculation\n            case .centerBottomFourth, .centerRightFourth:\n                calculation = WindowCalculationFactory.lastFourthCalculation\n            default:\n                break\n            }\n        } else if last.action == .lastFourth {\n            switch lastSubAction {\n            case .leftFourth, .topFourth:\n                calculation = WindowCalculationFactory.secondFourthCalculation\n            default:\n                break\n            }\n        }\n\n        if let calculation = calculation {\n            return calculation.calculateRect(params)\n        }\n        \n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        return RectResult(rect, subAction: .leftFourth)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.origin.y + visibleFrameOfScreen.height - rect.height\n        return RectResult(rect, subAction: .topFourth)\n    }\n    \n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/FirstThirdCalculation.swift",
    "content": "//\n//  LeftThirdCalculation.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 7/26/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass FirstThirdCalculation: WindowCalculation, OrientationAware {\n    \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n        guard Defaults.subsequentExecutionMode.value != .none,\n            let last = params.lastAction, let lastSubAction = last.subAction else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        var calculation: WindowCalculation?\n        \n        if last.action == .firstThird {\n            switch lastSubAction {\n            case .topThird, .leftThird:\n                calculation = WindowCalculationFactory.centerThirdCalculation\n            case .centerHorizontalThird, .centerVerticalThird:\n                calculation = WindowCalculationFactory.lastThirdCalculation\n            default:\n                break\n            }\n        } else if last.action == .lastThird {\n            switch lastSubAction {\n            case .topThird, .leftThird:\n                calculation = WindowCalculationFactory.centerThirdCalculation\n            default:\n                break\n            }\n        }\n        \n        if let calculation = calculation {\n            return calculation.calculateRect(params)\n        }\n        \n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        return RectResult(rect, subAction: .leftThird)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.minY + visibleFrameOfScreen.height - rect.height\n        return RectResult(rect, subAction: .topThird)\n    }\n\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/FirstThreeFourthsCalculation.swift",
    "content": "//\n//  FirstThreeFourthsCalculation.swift\n//  Rectangle\n//\n//  Created by Björn Orri Sæmundsson on 26.06.21.\n//  Copyright © 2021 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass FirstThreeFourthsCalculation: WindowCalculation, OrientationAware {\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n        \n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction, let lastSubAction = last.subAction else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if lastSubAction == .leftThreeFourths || lastSubAction == .topThreeFourths {\n            return WindowCalculationFactory.lastThreeFourthsCalculation.orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width * 3 / 4.0)\n        return RectResult(rect, subAction: .leftThreeFourths)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.height = floor(visibleFrameOfScreen.height * 3 / 4.0)\n        rect.origin.y = visibleFrameOfScreen.origin.y + visibleFrameOfScreen.height - rect.height\n        return RectResult(rect, subAction: .topThreeFourths)\n    }\n    \n}\n\n"
  },
  {
    "path": "Rectangle/WindowCalculation/FirstTwoThirdsCalculation.swift",
    "content": "//\n//  LeftTwoThirdsCalculation.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 7/26/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass FirstTwoThirdsCalculation: WindowCalculation, OrientationAware {\n    \n    \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n            let last = params.lastAction, let lastSubAction = last.subAction else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if lastSubAction == .leftTwoThirds || lastSubAction == .topTwoThirds {\n            return WindowCalculationFactory.lastTwoThirdsCalculation.orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width * 2 / 3.0)\n        return RectResult(rect, subAction: .leftTwoThirds)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.height = floor(visibleFrameOfScreen.height * 2 / 3.0)\n        rect.origin.y = visibleFrameOfScreen.origin.y + visibleFrameOfScreen.height - rect.height\n        return RectResult(rect, subAction: .topTwoThirds)\n    }\n    \n}\n\n"
  },
  {
    "path": "Rectangle/WindowCalculation/GapCalculation.swift",
    "content": "//\n//  GapCalculation.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 1/14/20.\n//  Copyright © 2020 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass GapCalculation {\n    \n    static func applyGaps(_ rect: CGRect, dimension: Dimension = .both, sharedEdges: Edge = .none, gapSize: Float) -> CGRect {\n        \n        let cgGapSize = CGFloat(gapSize)\n        let halfGapSize = cgGapSize / 2\n        \n        var withGaps = rect.insetBy(\n            dx: dimension.contains(.horizontal) ? cgGapSize : 0,\n            dy: dimension.contains(.vertical) ? cgGapSize : 0\n        )\n        \n        if dimension.contains(.horizontal) {\n            if sharedEdges.contains(.left) {\n                withGaps.origin.x -= halfGapSize\n                withGaps.size.width += halfGapSize\n            }\n            \n            if sharedEdges.contains(.right) {\n                withGaps.size.width += halfGapSize\n            }\n        }\n        \n        \n        if dimension.contains(.vertical) {\n            if sharedEdges.contains(.bottom) {\n                withGaps.origin.y -= halfGapSize\n                withGaps.size.height += halfGapSize\n            }\n            \n            if sharedEdges.contains(.top) {\n                withGaps.size.height += halfGapSize\n            }\n        }\n        \n        return withGaps\n    }\n}\n\nstruct Dimension: OptionSet {\n    let rawValue: Int\n    \n    static let horizontal = Dimension(rawValue: 1 << 0)\n    static let vertical = Dimension(rawValue: 1 << 1)\n    \n    static let both: Dimension = [.horizontal, .vertical]\n    static let none: Dimension = []\n}\n\nstruct Edge: OptionSet {\n    let rawValue: Int\n    \n    static let left = Edge(rawValue: 1 << 0)\n    static let right = Edge(rawValue: 1 << 1)\n    static let top = Edge(rawValue: 1 << 2)\n    static let bottom = Edge(rawValue: 1 << 3)\n    \n    static let all: Edge = [.left, .right, .top, .bottom]\n    static let none: Edge = []\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/HalfOrDoubleDimensionCalculation.swift",
    "content": "//\n//  HalfOrDoubleDimensionCalculation.swift\n//  Rectangle\n//\n//  Created by Isaac Young on 23/04/24.\n//  Copyright © 2024 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass HalfOrDoubleDimensionCalculation: WindowCalculation, ChangeWindowDimensionCalculation {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let window = params.window\n\n        let resizedWindowRect = resized(window.rect, with: params.action)\n        \n        var resizedAndMovedWindowRect = repositionedIfRequired(original: window.rect, resized: resizedWindowRect, after: params.action)\n\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n        if isSizeReducing(params.action), resizedWindowRectIsTooSmall(windowRect: resizedAndMovedWindowRect, visibleFrameOfScreen: visibleFrameOfScreen) {\n            resizedAndMovedWindowRect = window.rect\n        }\n        return RectResult(resizedAndMovedWindowRect)\n    }\n    \n    private func isSizeReducing(_ action: WindowAction) -> Bool {\n        switch (action) {\n        case .halveHeightUp, .halveHeightDown, .halveWidthLeft, .halveWidthRight:\n            return true\n        default:\n            return false\n        }\n    }\n    \n    private func resized(_ windowRect: CGRect, with action: WindowAction) -> CGRect {\n        var resized = windowRect\n        switch (action) {\n        case .halveHeightUp, .halveHeightDown:\n            resized.size.height = resized.height * 0.5\n        case .halveWidthLeft, .halveWidthRight:\n            resized.size.width = resized.width * 0.5\n        case .doubleHeightUp, .doubleHeightDown:\n            resized.size.height = resized.height * 2.0\n        case .doubleWidthLeft, .doubleWidthRight:\n            resized.size.width = resized.width * 2.0\n        default:\n            break\n        }\n        return resized\n    }\n    \n    private func repositionedIfRequired(original originalWindowRect: CGRect, resized resizedWindowRect: CGRect, after action: WindowAction) -> CGRect {\n        switch (action) {\n        case .halveHeightUp:\n            return resizedWindowRect.offsetBy(dx: 0, dy: resizedWindowRect.height)\n        case .halveWidthRight:\n            return resizedWindowRect.offsetBy(dx: resizedWindowRect.width, dy: 0)\n        case .doubleHeightDown:\n            return resizedWindowRect.offsetBy(dx: 0, dy: -originalWindowRect.height)\n        case .doubleWidthLeft:\n            return resizedWindowRect.offsetBy(dx: -originalWindowRect.width, dy: 0)\n        default:\n            return resizedWindowRect\n        }\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/HorizontalThirdsRepeated.swift",
    "content": "//\n//  HorizontalThirdsRepeated.swift\n//  Rectangle\n//\n//  Created by Daniel Schultz on 1/2/22.\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nprotocol HorizontalThirdsRepeated {\n    func nextCalculation(subAction: SubWindowAction, direction: Direction) -> SimpleCalc?\n}\n\nextension HorizontalThirdsRepeated {\n    func nextCalculation(subAction: SubWindowAction, direction: Direction) -> SimpleCalc? {\n        \n        if direction == .left {\n            switch subAction {\n            case .topLeftThird:\n                return WindowCalculationFactory.bottomRightThirdCalculation.orientationBasedRect\n            case .topRightThird:\n                return WindowCalculationFactory.topLeftThirdCalculation.orientationBasedRect\n            case .bottomLeftThird:\n                return WindowCalculationFactory.topRightThirdCalculation.orientationBasedRect\n            case .bottomRightThird:\n                return WindowCalculationFactory.bottomLeftThirdCalculation.orientationBasedRect\n            default: break\n            }\n        }\n        \n        else if direction == .right {\n            switch subAction {\n            case .topLeftThird:\n                return WindowCalculationFactory.topRightThirdCalculation.orientationBasedRect\n            case .topRightThird:\n                return WindowCalculationFactory.bottomLeftThirdCalculation.orientationBasedRect\n            case .bottomLeftThird:\n                return WindowCalculationFactory.bottomRightThirdCalculation.orientationBasedRect\n            case .bottomRightThird:\n                return WindowCalculationFactory.topLeftThirdCalculation.orientationBasedRect\n            default: break\n            }\n        }\n        \n        return nil\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/LastFourthCalculation.swift",
    "content": "//\n//  LastFourthCalculation.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 9/16/20.\n//  Copyright © 2020 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass LastFourthCalculation: WindowCalculation, OrientationAware {\n    \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n        guard Defaults.subsequentExecutionMode.value != .none,\n            let last = params.lastAction, let lastSubAction = last.subAction else {\n                return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        var calculation: WindowCalculation?\n        if last.action == .lastFourth {\n            switch lastSubAction {\n            case .bottomFourth, .rightFourth:\n                calculation = WindowCalculationFactory.thirdFourthCalculation\n            case .centerBottomFourth, .centerRightFourth:\n                calculation = WindowCalculationFactory.secondFourthCalculation\n            case .centerTopFourth, .centerLeftFourth:\n                calculation = WindowCalculationFactory.firstFourthCalculation\n            default:\n                break\n            }\n        } else if last.action == .firstFourth {\n            switch lastSubAction {\n            case .bottomFourth, .rightFourth:\n                calculation = WindowCalculationFactory.thirdFourthCalculation\n            default:\n                break\n            }\n        }\n\n        if let calculation = calculation {\n            return calculation.calculateRect(params)\n        }\n        \n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n\n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.origin.x = visibleFrameOfScreen.origin.x + visibleFrameOfScreen.width - rect.width\n        return RectResult(rect, subAction: .rightFourth)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        return RectResult(rect, subAction: .bottomFourth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/LastThirdCalculation.swift",
    "content": "//\n//  RightThirdCalculation.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 7/26/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass LastThirdCalculation: WindowCalculation, OrientationAware {\n    \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n            let last = params.lastAction, let lastSubAction = last.subAction else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        var calculation: WindowCalculation?\n        \n        if last.action == .lastThird {\n            switch lastSubAction {\n            case .bottomThird, .rightThird:\n                calculation = WindowCalculationFactory.centerThirdCalculation\n            case .centerHorizontalThird, .centerVerticalThird:\n                calculation = WindowCalculationFactory.firstThirdCalculation\n            default:\n                break\n            }\n        } else if last.action == .firstThird {\n            switch lastSubAction {\n            case .bottomThird, .rightThird:\n                calculation = WindowCalculationFactory.centerThirdCalculation\n            default:\n                break\n            }\n        }\n        \n        if let calculation = calculation {\n            return calculation.calculateRect(params)\n        }\n        \n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.origin.x = visibleFrameOfScreen.origin.x + visibleFrameOfScreen.width - rect.width\n        return RectResult(rect, subAction: .rightThird)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        return RectResult(rect, subAction: .bottomThird)\n    }\n\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/LastThreeFourthsCalculation.swift",
    "content": "//\n//  LastThreeFourthsCalculation.swift\n//  Rectangle\n//\n//  Created by Björn Orri Sæmundsson on 26.06.21.\n//  Copyright © 2021 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass LastThreeFourthsCalculation: WindowCalculation, OrientationAware {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n            let last = params.lastAction, let lastSubAction = last.subAction else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if lastSubAction == .rightThreeFourths || lastSubAction == .bottomThreeFourths {\n            return WindowCalculationFactory.firstThreeFourthsCalculation.orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width * 3 / 4.0)\n        rect.origin.x = visibleFrameOfScreen.minX + visibleFrameOfScreen.width - rect.width\n        return RectResult(rect, subAction: .rightThreeFourths)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.height = floor(visibleFrameOfScreen.height * 3 / 4.0)\n        return RectResult(rect, subAction: .bottomThreeFourths)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/LastTwoThirdsCalculation.swift",
    "content": "//\n//  RightTwoThirdsCalculation.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 7/26/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass LastTwoThirdsCalculation: WindowCalculation, OrientationAware {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n            let last = params.lastAction, let lastSubAction = last.subAction else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if lastSubAction == .rightTwoThirds || lastSubAction == .bottomTwoThirds {\n            return WindowCalculationFactory.firstTwoThirdsCalculation.orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width * 2 / 3.0)\n        rect.origin.x = visibleFrameOfScreen.minX + visibleFrameOfScreen.width - rect.width\n        return RectResult(rect, subAction: .rightTwoThirds)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.height = floor(visibleFrameOfScreen.height * 2 / 3.0)\n        return RectResult(rect, subAction: .bottomTwoThirds)\n    }\n}\n\n"
  },
  {
    "path": "Rectangle/WindowCalculation/LeftRightHalfCalculation.swift",
    "content": "//\n//  LeftHalfCalculation.swift\n//  Rectangle, Ported from Spectacle\n//\n//  Created by Ryan Hanson on 6/13/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Cocoa\n\nclass LeftRightHalfCalculation: WindowCalculation, RepeatedExecutionsInThirdsCalculation {\n    \n    override func calculate(_ params: WindowCalculationParameters) -> WindowCalculationResult? {\n        \n        let usableScreens = params.usableScreens\n        \n        switch Defaults.subsequentExecutionMode.value {\n            \n        case .acrossMonitor:\n            return calculateAcrossDisplays(params)\n        case .acrossAndResize:\n            if usableScreens.numScreens == 1 {\n                return calculateResize(params)\n            }\n            return calculateAcrossDisplays(params)\n        case .resize, .resizeAndCycleQuadrants:\n            return calculateResize(params)\n        case .none, .cycleMonitor:\n            let screen = usableScreens.currentScreen\n            let oneHalfRect = calculateFirstRect(params.asRectParams())\n            return WindowCalculationResult(rect: oneHalfRect.rect, screen: screen, resultingAction: params.action)\n        }\n        \n    }\n    \n    func calculateFirstRect(_ params: RectCalculationParameters) -> RectResult {\n        let ratio = Defaults.horizontalSplitRatio.value / 100.0\n        let fraction = params.action == .rightHalf ? 1.0 - ratio : ratio\n        return calculateFractionalRect(params, fraction: fraction)\n    }\n\n    func calculateFractionalRect(_ params: RectCalculationParameters, fraction: Float) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        var rect = visibleFrameOfScreen\n\n        rect.size.width = floor(visibleFrameOfScreen.width * CGFloat(fraction))\n        if params.action == .rightHalf {\n            rect.origin.x = visibleFrameOfScreen.maxX - rect.width\n        }\n\n        return RectResult(rect)\n    }\n\n    func calculateResize(_ params: WindowCalculationParameters) -> WindowCalculationResult? {\n        let screen = params.usableScreens.currentScreen\n        let rectResult: RectResult = calculateRepeatedRect(params.asRectParams())\n        return WindowCalculationResult(rect: rectResult.rect, screen: screen, resultingAction: params.action)\n    }\n    \n    func calculateAcrossDisplays(_ params: WindowCalculationParameters) -> WindowCalculationResult? {\n        let screen = params.usableScreens.currentScreen\n        return params.action == .rightHalf\n            ? calculateRightAcrossDisplays(params, screen: screen)\n            : calculateLeftAcrossDisplays(params, screen: screen)\n    }\n    \n    func calculateLeftAcrossDisplays(_ params: WindowCalculationParameters, screen: NSScreen) -> WindowCalculationResult? {\n                \n        if isRepeatedCommand(params) {\n            if let prevScreen = params.usableScreens.adjacentScreens?.prev {\n\n                if Defaults.subsequentExecutionMode.value == .acrossAndResize && prevScreen == params.usableScreens.screensOrdered.last {\n                    return calculateResize(params)\n                }\n\n                return calculateRightAcrossDisplays(params.withDifferentAction(.rightHalf), screen: prevScreen)\n            }\n        }\n        \n        let oneHalfRect = calculateFirstRect(params.asRectParams(visibleFrame: screen.adjustedVisibleFrame(params.ignoreTodo), differentAction: .leftHalf))\n        return WindowCalculationResult(rect: oneHalfRect.rect, screen: screen, resultingAction: .leftHalf)\n    }\n    \n    \n    func calculateRightAcrossDisplays(_ params: WindowCalculationParameters, screen: NSScreen) -> WindowCalculationResult? {\n        \n        if isRepeatedCommand(params) {\n            if let nextScreen = params.usableScreens.adjacentScreens?.next {\n                \n                if Defaults.subsequentExecutionMode.value == .acrossAndResize && nextScreen == params.usableScreens.screensOrdered.first {\n                    return calculateResize(params)\n                }\n\n                return calculateLeftAcrossDisplays(params.withDifferentAction(.leftHalf), screen: nextScreen)\n            }\n        }\n        \n        let oneHalfRect = calculateFirstRect(params.asRectParams(visibleFrame: screen.adjustedVisibleFrame(params.ignoreTodo), differentAction: .rightHalf))\n        return WindowCalculationResult(rect: oneHalfRect.rect, screen: screen, resultingAction: .rightHalf)\n    }\n\n    // Used to draw box for snapping\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let ratio = CGFloat(Defaults.horizontalSplitRatio.value / 100.0)\n        var rect = params.visibleFrameOfScreen\n        let leftWidth = floor(rect.width * ratio)\n        if params.action == .leftHalf {\n            rect.size.width = leftWidth\n        } else {\n            rect.size.width = rect.width - leftWidth\n            rect.origin.x += leftWidth\n        }\n        return RectResult(rect)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/LeftTodoCalculation.swift",
    "content": "//\n//  LeftTodoCalculation.swift\n//  Rectangle\n//\n//  Copyright © 2023 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nfinal class LeftTodoCalculation: WindowCalculation {\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n        var calculatedWindowRect = visibleFrameOfScreen\n        let sidebarWidth = TodoManager.getSidebarWidth(visibleFrameWidth: visibleFrameOfScreen.width)\n\n        calculatedWindowRect.size.width = sidebarWidth\n\n        return RectResult(calculatedWindowRect, subAction: .leftTodo)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/LowerLeftCalculation.swift",
    "content": "//\n//  LowerLeftCalculation.swift\n//  Rectangle, Ported from Spectacle\n//\n//  Created by Ryan Hanson on 6/14/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass LowerLeftCalculation: WindowCalculation, RepeatedExecutionsInThirdsCalculation, QuartersRepeated {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n\n        if Defaults.subsequentExecutionMode.cyclesQuadrantPositions {\n            if let last = params.lastAction,\n               let lastSubAction = last.subAction,\n               last.action == .bottomLeft || lastSubAction == .bottomLeftQuarter {\n                if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n                    return calculation(params.visibleFrameOfScreen)\n                }\n            }\n            return quarterRect(params.visibleFrameOfScreen)\n        }\n\n        if params.lastAction == nil || !Defaults.subsequentExecutionMode.resizes {\n            return calculateFirstRect(params)\n        }\n\n        return calculateRepeatedRect(params)\n    }\n\n    func quarterRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 2.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 2.0)\n        return RectResult(rect, subAction: .bottomLeftQuarter)\n    }\n\n    func calculateFractionalRect(_ params: RectCalculationParameters, fraction: Float) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width * CGFloat(fraction))\n        rect.size.height = floor(visibleFrameOfScreen.height / 2.0)\n        return RectResult(rect)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/LowerMiddleCenterLeftSixteenthCalculation.swift",
    "content": "//\n//  LowerMiddleCenterLeftSixteenthCalculation.swift\n//  Rectangle\n//\n//  Copyright © 2024 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass LowerMiddleCenterLeftSixteenthCalculation: WindowCalculation, OrientationAware, SixteenthsRepeated {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if last.action != .lowerMiddleCenterLeftSixteenth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n\n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.minY + rect.height\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width\n        return RectResult(rect, subAction: .lowerMiddleCenterLeftSixteenth)\n    }\n\n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.minY + rect.height\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width\n        return RectResult(rect, subAction: .lowerMiddleCenterLeftSixteenth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/LowerMiddleCenterRightSixteenthCalculation.swift",
    "content": "//\n//  LowerMiddleCenterRightSixteenthCalculation.swift\n//  Rectangle\n//\n//  Copyright © 2024 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass LowerMiddleCenterRightSixteenthCalculation: WindowCalculation, OrientationAware, SixteenthsRepeated {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if last.action != .lowerMiddleCenterRightSixteenth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n\n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.minY + rect.height\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width * 2\n        return RectResult(rect, subAction: .lowerMiddleCenterRightSixteenth)\n    }\n\n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.minY + rect.height\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width * 2\n        return RectResult(rect, subAction: .lowerMiddleCenterRightSixteenth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/LowerMiddleLeftSixteenthCalculation.swift",
    "content": "//\n//  LowerMiddleLeftSixteenthCalculation.swift\n//  Rectangle\n//\n//  Copyright © 2024 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass LowerMiddleLeftSixteenthCalculation: WindowCalculation, OrientationAware, SixteenthsRepeated {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if last.action != .lowerMiddleLeftSixteenth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n\n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.minY + rect.height\n        rect.origin.x = visibleFrameOfScreen.minX\n        return RectResult(rect, subAction: .lowerMiddleLeftSixteenth)\n    }\n\n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.minY + rect.height\n        rect.origin.x = visibleFrameOfScreen.minX\n        return RectResult(rect, subAction: .lowerMiddleLeftSixteenth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/LowerMiddleRightSixteenthCalculation.swift",
    "content": "//\n//  LowerMiddleRightSixteenthCalculation.swift\n//  Rectangle\n//\n//  Copyright © 2024 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass LowerMiddleRightSixteenthCalculation: WindowCalculation, OrientationAware, SixteenthsRepeated {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if last.action != .lowerMiddleRightSixteenth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n\n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.minY + rect.height\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width * 3\n        return RectResult(rect, subAction: .lowerMiddleRightSixteenth)\n    }\n\n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.minY + rect.height\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width * 3\n        return RectResult(rect, subAction: .lowerMiddleRightSixteenth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/LowerRightCalculation.swift",
    "content": "//\n//  LowerRightCalculation.swift\n//  Rectangle, Ported from Spectacle\n//\n//  Created by Ryan Hanson on 6/14/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass LowerRightCalculation: WindowCalculation, RepeatedExecutionsInThirdsCalculation, QuartersRepeated {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n\n        if Defaults.subsequentExecutionMode.cyclesQuadrantPositions {\n            if let last = params.lastAction,\n               let lastSubAction = last.subAction,\n               last.action == .bottomRight || lastSubAction == .bottomRightQuarter {\n                if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n                    return calculation(params.visibleFrameOfScreen)\n                }\n            }\n            return quarterRect(params.visibleFrameOfScreen)\n        }\n\n        if params.lastAction == nil || !Defaults.subsequentExecutionMode.resizes {\n            return calculateFirstRect(params)\n        }\n\n        return calculateRepeatedRect(params)\n    }\n\n    func quarterRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 2.0)\n        rect.origin.x = visibleFrameOfScreen.maxX - rect.width\n        rect.size.height = floor(visibleFrameOfScreen.height / 2.0)\n        return RectResult(rect, subAction: .bottomRightQuarter)\n    }\n\n    func calculateFractionalRect(_ params: RectCalculationParameters, fraction: Float) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width * CGFloat(fraction))\n        rect.origin.x = visibleFrameOfScreen.maxX - rect.width\n        rect.size.height = floor(visibleFrameOfScreen.height / 2.0)\n        return RectResult(rect)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/MaximizeCalculation.swift",
    "content": "//\n//  MaximizeCalculation.swift\n//  Rectangle, Ported from Spectacle\n//\n//  Created by Ryan Hanson on 6/14/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass MaximizeCalculation: WindowCalculation {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        return RectResult(visibleFrameOfScreen)\n    }\n    \n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/MaximizeHeightCalculation.swift",
    "content": "//\n//  MaximizeHeightCalculation.swift\n//  Rectangle, Ported from Spectacle\n//\n//  Created by Ryan Hanson on 6/14/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass MaximizeHeightCalculation: WindowCalculation {\n    \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        \n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n        var maxHeightRect = params.window.rect\n        maxHeightRect.origin.y = visibleFrameOfScreen.minY\n        maxHeightRect.size.height = visibleFrameOfScreen.height\n        return RectResult(maxHeightRect)\n    }\n    \n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/MiddleCenterLeftTwelfthCalculation.swift",
    "content": "//\n//  MiddleCenterLeftTwelfthCalculation.swift\n//  Rectangle\n//\n//  Copyright © 2024 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass MiddleCenterLeftTwelfthCalculation: WindowCalculation, OrientationAware, TwelfthsRepeated {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if last.action != .middleCenterLeftTwelfth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n\n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.minY + rect.height\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width\n        return RectResult(rect, subAction: .middleCenterLeftTwelfth)\n    }\n\n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - (2.0 * rect.height)\n        rect.origin.x = visibleFrameOfScreen.minX + (2.0 * rect.width)\n        return RectResult(rect, subAction: .middleCenterLeftTwelfth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/MiddleCenterNinthCalculation.swift",
    "content": "//\n//  MiddleCenterNinthCalculation.swift\n//  Rectangle\n//\n//  Created by Daniel Schultz on 1/2/22.\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass MiddleCenterNinthCalculation: WindowCalculation, OrientationAware, NinthsRepeated {\n        \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if last.action != .middleCenterNinth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.minY + rect.height\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width\n        return RectResult(rect, subAction: .middleCenterNinth)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.minY + rect.height\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width\n        return RectResult(rect, subAction: .middleCenterNinth)\n    }\n}\n\n\n"
  },
  {
    "path": "Rectangle/WindowCalculation/MiddleCenterRightTwelfthCalculation.swift",
    "content": "//\n//  MiddleCenterRightTwelfthCalculation.swift\n//  Rectangle\n//\n//  Copyright © 2024 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass MiddleCenterRightTwelfthCalculation: WindowCalculation, OrientationAware, TwelfthsRepeated {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if last.action != .middleCenterRightTwelfth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n\n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.minY + rect.height\n        rect.origin.x = visibleFrameOfScreen.minX + floor(visibleFrameOfScreen.width / 4.0) * 2.0\n        return RectResult(rect, subAction: .middleCenterRightTwelfth)\n    }\n\n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - (3.0 * rect.height)\n        rect.origin.x = visibleFrameOfScreen.minX\n        return RectResult(rect, subAction: .middleCenterRightTwelfth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/MiddleLeftNinthCalculation.swift",
    "content": "//\n//  MiddleLeftNinthCalculation.swift\n//  Rectangle\n//\n//  Created by Daniel Schultz on 1/2/22.\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass MiddleLeftNinthCalculation: WindowCalculation, OrientationAware, NinthsRepeated {\n        \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if last.action != .middleLeftNinth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.minY + rect.height\n        rect.origin.x = visibleFrameOfScreen.minX\n        return RectResult(rect, subAction: .middleLeftNinth)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.minY + rect.height\n        rect.origin.x = visibleFrameOfScreen.minX\n        return RectResult(rect, subAction: .middleLeftNinth)\n    }\n}\n\n\n"
  },
  {
    "path": "Rectangle/WindowCalculation/MiddleLeftTwelfthCalculation.swift",
    "content": "//\n//  MiddleLeftTwelfthCalculation.swift\n//  Rectangle\n//\n//  Copyright © 2024 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass MiddleLeftTwelfthCalculation: WindowCalculation, OrientationAware, TwelfthsRepeated {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if last.action != .middleLeftTwelfth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n\n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.minY + rect.height\n        rect.origin.x = visibleFrameOfScreen.minX\n        return RectResult(rect, subAction: .middleLeftTwelfth)\n    }\n\n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - (2.0 * rect.height)\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width\n        return RectResult(rect, subAction: .middleLeftTwelfth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/MiddleRightNinthCalculation.swift",
    "content": "//\n//  MiddleRightNinthCalculation.swift\n//  Rectangle\n//\n//  Created by Daniel Schultz on 1/2/22.\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass MiddleRightNinthCalculation: WindowCalculation, OrientationAware, NinthsRepeated {\n        \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if last.action != .middleRightNinth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.minY + rect.height\n        rect.origin.x = visibleFrameOfScreen.minX + visibleFrameOfScreen.width - rect.width\n        return RectResult(rect, subAction: .middleRightNinth)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.minY + rect.height\n        rect.origin.x = visibleFrameOfScreen.minX + visibleFrameOfScreen.width - rect.width\n        return RectResult(rect, subAction: .middleRightNinth)\n    }\n}\n\n\n"
  },
  {
    "path": "Rectangle/WindowCalculation/MiddleRightTwelfthCalculation.swift",
    "content": "//\n//  MiddleRightTwelfthCalculation.swift\n//  Rectangle\n//\n//  Copyright © 2024 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass MiddleRightTwelfthCalculation: WindowCalculation, OrientationAware, TwelfthsRepeated {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if last.action != .middleRightTwelfth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n\n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.minY + rect.height\n        rect.origin.x = visibleFrameOfScreen.minX + floor(visibleFrameOfScreen.width / 4.0) * 3.0\n        return RectResult(rect, subAction: .middleRightTwelfth)\n    }\n\n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - (3.0 * rect.height)\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width\n        return RectResult(rect, subAction: .middleRightTwelfth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/MiddleVerticalThirdCalculation.swift",
    "content": "//\n//  MiddleVerticalThirdCalculation.swift\n//  Rectangle\n//\n//  Created on 12/22/25.\n//\n\nimport Foundation\n\nclass MiddleVerticalThirdCalculation: WindowCalculation {\n    \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n            let visibleFrameOfScreen = params.visibleFrameOfScreen\n            return calculateMiddleThird(visibleFrameOfScreen)\n        }\n        \n        func calculateMiddleThird(_ visibleFrameOfScreen: CGRect) -> RectResult {\n            var rect = visibleFrameOfScreen\n            rect.origin.x = visibleFrameOfScreen.minX\n            rect.origin.y = visibleFrameOfScreen.minY + floor(visibleFrameOfScreen.height / 3.0)\n            rect.size.width = visibleFrameOfScreen.width\n            rect.size.height = visibleFrameOfScreen.height / 3.0\n            return RectResult(rect, subAction: .centerVerticalThird)\n        }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/MoveLeftRightCalculation.swift",
    "content": "//\n//  MoveLeftRightCalculation.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 7/26/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Cocoa\n\n// Applicable options:\n// Defaults.subsequentExecutionMode.traversesDisplays\n// Defaults.centeredDirectionalMove.enabled\n// Defaults.resizeOnDirectionalMove.enabled (resizes in thirds, or just to half-width if traversesDisplays is enabled\n\nclass MoveLeftRightCalculation: WindowCalculation, RepeatedExecutionsInThirdsCalculation {\n    \n    override func calculate(_ params: WindowCalculationParameters) -> WindowCalculationResult? {\n        \n        var screen = params.usableScreens.currentScreen\n        var action = params.action\n        \n        let canTraverseDisplays = Defaults.subsequentExecutionMode.traversesDisplays && params.usableScreens.numScreens > 1\n        \n        let rectResult: RectResult\n        if canTraverseDisplays && isRepeatedCommand(params) {\n            if action == .moveLeft {\n                if let prevScreen = params.usableScreens.adjacentScreens?.prev {\n                    screen = prevScreen\n                }\n                action = .moveRight\n            } else {\n                if let nextScreen = params.usableScreens.adjacentScreens?.next {\n                    screen = nextScreen\n                }\n                action = .moveLeft\n            }\n            \n            rectResult = calculateRect(params.asRectParams(visibleFrame: screen.adjustedVisibleFrame(params.ignoreTodo), differentAction: action))\n        } else {\n            rectResult = calculateRect(params.asRectParams())\n        }\n        \n        return WindowCalculationResult(rect: rectResult.rect, screen: screen, resultingAction: action)\n\n    }\n    \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        calculateRect(params, newDisplay: false)\n    }\n    \n    func calculateRect(_ params: RectCalculationParameters, newDisplay: Bool) -> RectResult {\n        \n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n        \n        var calculatedWindowRect: CGRect\n        if newDisplay && Defaults.resizeOnDirectionalMove.enabled {\n            calculatedWindowRect = calculateFirstRect(params).rect\n        } else if Defaults.resizeOnDirectionalMove.enabled {\n            calculatedWindowRect = calculateRepeatedRect(params).rect\n        } else {\n            calculatedWindowRect = calculateGenericRect(params).rect\n        }\n        \n        if Defaults.centeredDirectionalMove.enabled != false {\n            calculatedWindowRect.origin.y = round((visibleFrameOfScreen.height - calculatedWindowRect.height) / 2.0) + visibleFrameOfScreen.minY\n        }\n        \n        if params.window.rect.height >= visibleFrameOfScreen.height {\n            calculatedWindowRect.size.height = visibleFrameOfScreen.height\n            calculatedWindowRect.origin.y = visibleFrameOfScreen.minY\n        }\n        \n        return RectResult(calculatedWindowRect)\n\n    }\n    \n    func calculateFractionalRect(_ params: RectCalculationParameters, fraction: Float) -> RectResult {\n        return calculateGenericRect(params, fraction: fraction)\n    }\n    \n    func calculateGenericRect(_ params: RectCalculationParameters, fraction: Float? = nil) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n        \n        var rect = params.window.rect\n        if let requestedFraction = fraction {\n            rect.size.width = floor(visibleFrameOfScreen.width * CGFloat(requestedFraction))\n        }\n        \n        if params.action == .moveRight {\n            rect.origin.x = visibleFrameOfScreen.maxX - rect.width\n        } else {\n            rect.origin.x = visibleFrameOfScreen.minX\n        }\n        \n        return RectResult(rect)\n    }\n    \n}\n\n"
  },
  {
    "path": "Rectangle/WindowCalculation/MoveUpDownCalculation.swift",
    "content": "//\n//  MoveUpDownCalculation.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 7/26/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass MoveUpDownCalculation: WindowCalculation, RepeatedExecutionsInThirdsCalculation {\n    \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        \n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n        \n        var calculatedWindowRect: CGRect\n        \n        if Defaults.resizeOnDirectionalMove.enabled {\n            calculatedWindowRect = calculateRepeatedRect(params).rect\n        } else {\n            calculatedWindowRect = calculateGenericRect(params).rect\n        }\n        \n        if Defaults.centeredDirectionalMove.enabled != false {\n            calculatedWindowRect.origin.x = round((visibleFrameOfScreen.width - calculatedWindowRect.width) / 2.0) + visibleFrameOfScreen.minX\n        }\n        \n        if params.window.rect.width >= visibleFrameOfScreen.width {\n            calculatedWindowRect.size.width = visibleFrameOfScreen.width\n            calculatedWindowRect.origin.x = visibleFrameOfScreen.minX\n        }\n        \n        return RectResult(calculatedWindowRect)\n\n    }\n    \n    func calculateFractionalRect(_ params: RectCalculationParameters, fraction: Float) -> RectResult {\n        return calculateGenericRect(params, fraction: fraction)\n    }\n    \n    func calculateGenericRect(_ params: RectCalculationParameters, fraction: Float? = nil) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n        \n        var rect = params.window.rect\n        if let requestedFraction = fraction {\n            rect.size.height = floor(visibleFrameOfScreen.height * CGFloat(requestedFraction))\n        }\n        \n        if params.action == .moveUp {\n            rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        } else {\n            rect.origin.y = visibleFrameOfScreen.minY\n        }\n        \n        return RectResult(rect)\n    }\n    \n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/NextPrevDisplayCalculation.swift",
    "content": "//\n//  NextPrevDisplayCalculation.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 8/19/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Cocoa\n\nclass NextPrevDisplayCalculation: WindowCalculation {\n    \n    override func calculate(_ params: WindowCalculationParameters) -> WindowCalculationResult? {\n        let usableScreens = params.usableScreens\n        \n        guard usableScreens.numScreens > 1 else { return nil }\n\n        var screen: NSScreen?\n        \n        if params.action == .nextDisplay {\n            screen = usableScreens.adjacentScreens?.next\n        } else if params.action == .previousDisplay {\n            screen = usableScreens.adjacentScreens?.prev\n        }\n\n        if let screen = screen {\n            let rectParams = params.asRectParams(visibleFrame: screen.adjustedVisibleFrame(params.ignoreTodo))\n            \n            if Defaults.attemptMatchOnNextPrevDisplay.userEnabled {\n                if let lastAction = params.lastAction,\n                   let calculation = WindowCalculationFactory.calculationsByAction[lastAction.action] {\n                    \n                    AppDelegate.windowHistory.lastRectangleActions.removeValue(forKey: params.window.id)\n                    \n                    let newCalculationParams = RectCalculationParameters(\n                        window: rectParams.window,\n                        visibleFrameOfScreen: rectParams.visibleFrameOfScreen,\n                        action: lastAction.action,\n                        lastAction: nil)\n                    let rectResult = calculation.calculateRect(newCalculationParams)\n                    \n                    return WindowCalculationResult(rect: rectResult.rect, screen: screen, resultingAction: lastAction.action)\n                }\n            }\n            \n            let rectResult = calculateRect(rectParams)\n            let resultingAction: WindowAction = rectResult.resultingAction ?? params.action\n            return WindowCalculationResult(rect: rectResult.rect, screen: screen, resultingAction: resultingAction)\n        }\n        \n        return nil\n    }\n    \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        if params.lastAction?.action == .maximize && !Defaults.autoMaximize.userDisabled {\n            let rectResult = WindowCalculationFactory.maximizeCalculation.calculateRect(params)\n            return RectResult(rectResult.rect, resultingAction: .maximize)\n        }\n        \n        return WindowCalculationFactory.centerCalculation.calculateRect(params)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/NinthsRepeated.swift",
    "content": "//\n//  NinthsRepeated.swift\n//  Rectangle\n//\n//  Created by Daniel Schultz on 1/2/22.\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nprotocol NinthsRepeated {\n    func nextCalculation(subAction: SubWindowAction, direction: Direction) -> SimpleCalc?\n}\n\nextension NinthsRepeated {\n    func nextCalculation(subAction: SubWindowAction, direction: Direction) -> SimpleCalc? {\n        \n        if direction == .left {\n            switch subAction {\n            case .topLeftNinth:\n                return WindowCalculationFactory.bottomRightNinthCalculation.orientationBasedRect\n            case .topCenterNinth:\n                return WindowCalculationFactory.topLeftNinthCalculation.orientationBasedRect\n            case .topRightNinth:\n                return WindowCalculationFactory.topCenterNinthCalculation.orientationBasedRect\n            case .middleLeftNinth:\n                return WindowCalculationFactory.topRightNinthCalculation.orientationBasedRect\n            case .middleCenterNinth:\n                return WindowCalculationFactory.middleLeftNinthCalculation.orientationBasedRect\n            case .middleRightNinth:\n                return WindowCalculationFactory.middleCenterNinthCalculation.orientationBasedRect\n            case .bottomLeftNinth:\n                return WindowCalculationFactory.middleRightNinthCalculation.orientationBasedRect\n            case .bottomCenterNinth:\n                return WindowCalculationFactory.bottomLeftNinthCalculation.orientationBasedRect\n            case .bottomRightNinth:\n                return WindowCalculationFactory.bottomCenterNinthCalculation.orientationBasedRect\n            default: break\n            }\n        }\n        \n        else if direction == .right {\n            switch subAction {\n            case .topLeftNinth:\n                return WindowCalculationFactory.topCenterNinthCalculation.orientationBasedRect\n            case .topCenterNinth:\n                return WindowCalculationFactory.topRightNinthCalculation.orientationBasedRect\n            case .topRightNinth:\n                return WindowCalculationFactory.middleLeftNinthCalculation.orientationBasedRect\n            case .middleLeftNinth:\n                return WindowCalculationFactory.middleCenterNinthCalculation.orientationBasedRect\n            case .middleCenterNinth:\n                return WindowCalculationFactory.middleRightNinthCalculation.orientationBasedRect\n            case .middleRightNinth:\n                return WindowCalculationFactory.bottomLeftNinthCalculation.orientationBasedRect\n            case .bottomLeftNinth:\n                return WindowCalculationFactory.bottomCenterNinthCalculation.orientationBasedRect\n            case .bottomCenterNinth:\n                return WindowCalculationFactory.bottomRightNinthCalculation.orientationBasedRect\n            case .bottomRightNinth:\n                return WindowCalculationFactory.topLeftNinthCalculation.orientationBasedRect\n            default: break\n            }\n        }\n        \n        return nil\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/OrientationAware.swift",
    "content": "//\n//  OrientationAware.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 9/23/20.\n//  Copyright © 2020 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\ntypealias SimpleCalc = (_ visibleFrameOfScreen: CGRect) -> RectResult\n\nprotocol OrientationAware {\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult\n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult\n    func orientationBasedRect(_ visibleFrameOfScreen: CGRect) -> RectResult\n    \n}\n\nextension OrientationAware {\n    func orientationBasedRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        return visibleFrameOfScreen.isLandscape\n            ? landscapeRect(visibleFrameOfScreen)\n            : portraitRect(visibleFrameOfScreen)\n    }\n}\n\n"
  },
  {
    "path": "Rectangle/WindowCalculation/QuartersRepeated.swift",
    "content": "//\n//  QuartersRepeated.swift\n//  Rectangle\n//\n//  Copyright © 2026 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nprotocol QuartersRepeated {\n    func nextCalculation(subAction: SubWindowAction, direction: Direction) -> SimpleCalc?\n}\n\nextension QuartersRepeated {\n    func nextCalculation(subAction: SubWindowAction, direction: Direction) -> SimpleCalc? {\n\n        if direction == .left {\n            switch subAction {\n            case .topLeftQuarter:\n                return WindowCalculationFactory.lowerRightCalculation.quarterRect\n            case .topRightQuarter:\n                return WindowCalculationFactory.upperLeftCalculation.quarterRect\n            case .bottomLeftQuarter:\n                return WindowCalculationFactory.upperRightCalculation.quarterRect\n            case .bottomRightQuarter:\n                return WindowCalculationFactory.lowerLeftCalculation.quarterRect\n            default: break\n            }\n        }\n\n        else if direction == .right {\n            switch subAction {\n            case .topLeftQuarter:\n                return WindowCalculationFactory.upperRightCalculation.quarterRect\n            case .topRightQuarter:\n                return WindowCalculationFactory.lowerLeftCalculation.quarterRect\n            case .bottomLeftQuarter:\n                return WindowCalculationFactory.lowerRightCalculation.quarterRect\n            case .bottomRightQuarter:\n                return WindowCalculationFactory.upperLeftCalculation.quarterRect\n            default: break\n            }\n        }\n\n        return nil\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/RepeatedExecutionsCalculation.swift",
    "content": "//\n//  RepeatedExecutionsCalculation.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 10/18/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nprotocol RepeatedExecutionsCalculation {\n    \n    func calculateFirstRect(_ params: RectCalculationParameters) -> RectResult\n    \n    func calculateRect(for cycleDivision: CycleSize, params: RectCalculationParameters) -> RectResult\n\n}\n\nextension RepeatedExecutionsCalculation {\n    \n    func calculateRepeatedRect(_ params: RectCalculationParameters) -> RectResult {\n        \n        guard let count = params.lastAction?.count,\n              params.lastAction?.action == params.action\n        else {\n            return calculateFirstRect(params)\n        }\n        \n        let useDefaultPositions = !Defaults.cycleSizesIsChanged.enabled\n        let positions = useDefaultPositions ? CycleSize.defaultSizes : Defaults.selectedCycleSizes.value\n        \n        let sortedPositions = CycleSize.sortedSizes\n            .filter { positions.contains($0) }\n                \n        let position = count % sortedPositions.count\n        \n        return calculateRect(for: sortedPositions[position], params: params)\n    }\n    \n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/RepeatedExecutionsInThirdsCalculation.swift",
    "content": "//\n//  RepeatedExecutionsInThirdsCalculation.swift\n//  Rectangle\n//\n//  Created by Charlie Harding on 12/06/20.\n//  Copyright © 2020 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nprotocol RepeatedExecutionsInThirdsCalculation: RepeatedExecutionsCalculation {\n    \n    func calculateFractionalRect(_ params: RectCalculationParameters, fraction: Float) -> RectResult\n\n}\n\nextension RepeatedExecutionsInThirdsCalculation {\n    \n    func calculateFirstRect(_ params: RectCalculationParameters) -> RectResult {\n        return calculateFractionalRect(params, fraction: 1 / 2.0)\n    }\n    \n    func calculateRect(for cycleDivision: CycleSize, params: RectCalculationParameters) -> RectResult {\n        let fraction = cycleDivision.fraction\n        return calculateFractionalRect(params, fraction: fraction)\n    }\n    \n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/RightTodoCalculation.swift",
    "content": "//\n//  RightTodoCalculation.swift\n//  Rectangle\n//\n//  Copyright © 2023 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nfinal class RightTodoCalculation: WindowCalculation {\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n        var calculatedWindowRect = visibleFrameOfScreen\n        let sidebarWidth = TodoManager.getSidebarWidth(visibleFrameWidth: visibleFrameOfScreen.width)\n        \n        calculatedWindowRect.origin.x = visibleFrameOfScreen.maxX - sidebarWidth\n        calculatedWindowRect.size.width = sidebarWidth\n\n        return RectResult(calculatedWindowRect, subAction: .rightTodo)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/SecondFourthCalculation.swift",
    "content": "//\n//  SecondFourthCalculation.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 9/16/20.\n//  Copyright © 2020 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass SecondFourthCalculation: WindowCalculation, OrientationAware {\n    \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        \n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n        \n        guard Defaults.subsequentExecutionMode.value != .none,\n            let last = params.lastAction,\n            let lastSubAction = last.subAction,\n            last.action == .secondFourth\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        let calc: SimpleCalc\n        switch lastSubAction {\n        case .centerLeftFourth:\n            calc = WindowCalculationFactory.lastThreeFourthsCalculation.landscapeRect\n        case .centerTopFourth:\n            calc = WindowCalculationFactory.lastThreeFourthsCalculation.portraitRect\n        case .rightThreeFourths:\n            calc = WindowCalculationFactory.centerHalfCalculation.landscapeRect\n        case .bottomThreeFourths:\n            calc = WindowCalculationFactory.centerHalfCalculation.portraitRect\n        default:\n            calc = orientationBasedRect\n        }\n        \n        return calc(visibleFrameOfScreen)\n    }\n        \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width\n        return RectResult(rect, subAction: .centerLeftFourth)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.minY + visibleFrameOfScreen.height - (rect.height * 2.0)\n        return RectResult(rect, subAction: .centerTopFourth)\n    }\n    \n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/SixteenthsRepeated.swift",
    "content": "//\n//  SixteenthsRepeated.swift\n//  Rectangle\n//\n//  Copyright © 2024 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nprotocol SixteenthsRepeated {\n    func nextCalculation(subAction: SubWindowAction, direction: Direction) -> SimpleCalc?\n}\n\nextension SixteenthsRepeated {\n    func nextCalculation(subAction: SubWindowAction, direction: Direction) -> SimpleCalc? {\n\n        if direction == .left {\n            switch subAction {\n            case .topLeftSixteenth:\n                return WindowCalculationFactory.bottomRightSixteenthCalculation.orientationBasedRect\n            case .topCenterLeftSixteenth:\n                return WindowCalculationFactory.topLeftSixteenthCalculation.orientationBasedRect\n            case .topCenterRightSixteenth:\n                return WindowCalculationFactory.topCenterLeftSixteenthCalculation.orientationBasedRect\n            case .topRightSixteenth:\n                return WindowCalculationFactory.topCenterRightSixteenthCalculation.orientationBasedRect\n            case .upperMiddleLeftSixteenth:\n                return WindowCalculationFactory.topRightSixteenthCalculation.orientationBasedRect\n            case .upperMiddleCenterLeftSixteenth:\n                return WindowCalculationFactory.upperMiddleLeftSixteenthCalculation.orientationBasedRect\n            case .upperMiddleCenterRightSixteenth:\n                return WindowCalculationFactory.upperMiddleCenterLeftSixteenthCalculation.orientationBasedRect\n            case .upperMiddleRightSixteenth:\n                return WindowCalculationFactory.upperMiddleCenterRightSixteenthCalculation.orientationBasedRect\n            case .lowerMiddleLeftSixteenth:\n                return WindowCalculationFactory.upperMiddleRightSixteenthCalculation.orientationBasedRect\n            case .lowerMiddleCenterLeftSixteenth:\n                return WindowCalculationFactory.lowerMiddleLeftSixteenthCalculation.orientationBasedRect\n            case .lowerMiddleCenterRightSixteenth:\n                return WindowCalculationFactory.lowerMiddleCenterLeftSixteenthCalculation.orientationBasedRect\n            case .lowerMiddleRightSixteenth:\n                return WindowCalculationFactory.lowerMiddleCenterRightSixteenthCalculation.orientationBasedRect\n            case .bottomLeftSixteenth:\n                return WindowCalculationFactory.lowerMiddleRightSixteenthCalculation.orientationBasedRect\n            case .bottomCenterLeftSixteenth:\n                return WindowCalculationFactory.bottomLeftSixteenthCalculation.orientationBasedRect\n            case .bottomCenterRightSixteenth:\n                return WindowCalculationFactory.bottomCenterLeftSixteenthCalculation.orientationBasedRect\n            case .bottomRightSixteenth:\n                return WindowCalculationFactory.bottomCenterRightSixteenthCalculation.orientationBasedRect\n            default: break\n            }\n        }\n\n        else if direction == .right {\n            switch subAction {\n            case .topLeftSixteenth:\n                return WindowCalculationFactory.topCenterLeftSixteenthCalculation.orientationBasedRect\n            case .topCenterLeftSixteenth:\n                return WindowCalculationFactory.topCenterRightSixteenthCalculation.orientationBasedRect\n            case .topCenterRightSixteenth:\n                return WindowCalculationFactory.topRightSixteenthCalculation.orientationBasedRect\n            case .topRightSixteenth:\n                return WindowCalculationFactory.upperMiddleLeftSixteenthCalculation.orientationBasedRect\n            case .upperMiddleLeftSixteenth:\n                return WindowCalculationFactory.upperMiddleCenterLeftSixteenthCalculation.orientationBasedRect\n            case .upperMiddleCenterLeftSixteenth:\n                return WindowCalculationFactory.upperMiddleCenterRightSixteenthCalculation.orientationBasedRect\n            case .upperMiddleCenterRightSixteenth:\n                return WindowCalculationFactory.upperMiddleRightSixteenthCalculation.orientationBasedRect\n            case .upperMiddleRightSixteenth:\n                return WindowCalculationFactory.lowerMiddleLeftSixteenthCalculation.orientationBasedRect\n            case .lowerMiddleLeftSixteenth:\n                return WindowCalculationFactory.lowerMiddleCenterLeftSixteenthCalculation.orientationBasedRect\n            case .lowerMiddleCenterLeftSixteenth:\n                return WindowCalculationFactory.lowerMiddleCenterRightSixteenthCalculation.orientationBasedRect\n            case .lowerMiddleCenterRightSixteenth:\n                return WindowCalculationFactory.lowerMiddleRightSixteenthCalculation.orientationBasedRect\n            case .lowerMiddleRightSixteenth:\n                return WindowCalculationFactory.bottomLeftSixteenthCalculation.orientationBasedRect\n            case .bottomLeftSixteenth:\n                return WindowCalculationFactory.bottomCenterLeftSixteenthCalculation.orientationBasedRect\n            case .bottomCenterLeftSixteenth:\n                return WindowCalculationFactory.bottomCenterRightSixteenthCalculation.orientationBasedRect\n            case .bottomCenterRightSixteenth:\n                return WindowCalculationFactory.bottomRightSixteenthCalculation.orientationBasedRect\n            case .bottomRightSixteenth:\n                return WindowCalculationFactory.topLeftSixteenthCalculation.orientationBasedRect\n            default: break\n            }\n        }\n\n        return nil\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/SixthsRepeated.swift",
    "content": "//\n//  SixthsRepeated.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 9/26/20.\n//  Copyright © 2020 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nprotocol SixthsRepeated {\n    func nextCalculation(subAction: SubWindowAction, direction: Direction) -> SimpleCalc?\n}\n\nenum Direction {\n    case left, right\n}\n\nextension SixthsRepeated {\n    func nextCalculation(subAction: SubWindowAction, direction: Direction) -> SimpleCalc? {\n        \n        if direction == .left {\n            switch subAction {\n            case .topLeftSixthLandscape:\n                return WindowCalculationFactory.bottomRightSixthCalculation.orientationBasedRect\n            case .topCenterSixthLandscape:\n                return WindowCalculationFactory.topLeftSixthCalculation.orientationBasedRect\n            case .topRightSixthLandscape:\n                return WindowCalculationFactory.topCenterSixthCalculation.orientationBasedRect\n            case .bottomLeftSixthLandscape:\n                return WindowCalculationFactory.topRightSixthCalculation.orientationBasedRect\n            case .bottomCenterSixthLandscape:\n                return WindowCalculationFactory.bottomLeftSixthCalculation.orientationBasedRect\n            case .bottomRightSixthLandscape:\n                return WindowCalculationFactory.bottomCenterSixthCalculation.orientationBasedRect\n                \n            case .topLeftSixthPortrait:\n                return WindowCalculationFactory.bottomRightSixthCalculation.orientationBasedRect\n            case .topRightSixthPortrait:\n                return WindowCalculationFactory.topLeftSixthCalculation.orientationBasedRect\n            case .leftCenterSixthPortrait:\n                return WindowCalculationFactory.topRightSixthCalculation.orientationBasedRect\n            case .rightCenterSixthPortrait:\n                return WindowCalculationFactory.topCenterSixthCalculation.orientationBasedRect\n            case .bottomLeftSixthPortrait:\n                return WindowCalculationFactory.bottomCenterSixthCalculation.orientationBasedRect\n            case .bottomRightSixthPortrait:\n                return WindowCalculationFactory.bottomLeftSixthCalculation.orientationBasedRect\n            default: break\n            }\n        }\n        \n        else if direction == .right {\n            switch subAction {\n            case .topLeftSixthLandscape:\n                return WindowCalculationFactory.topCenterSixthCalculation.orientationBasedRect\n            case .topCenterSixthLandscape:\n                return WindowCalculationFactory.topRightSixthCalculation.orientationBasedRect\n            case .topRightSixthLandscape:\n                return WindowCalculationFactory.bottomLeftSixthCalculation.orientationBasedRect\n            case .bottomLeftSixthLandscape:\n                return WindowCalculationFactory.bottomCenterSixthCalculation.orientationBasedRect\n            case .bottomCenterSixthLandscape:\n                return WindowCalculationFactory.bottomRightSixthCalculation.orientationBasedRect\n            case .bottomRightSixthLandscape:\n                return WindowCalculationFactory.topLeftSixthCalculation.orientationBasedRect\n                \n            case .topLeftSixthPortrait:\n                return WindowCalculationFactory.topRightSixthCalculation.orientationBasedRect\n            case .topRightSixthPortrait:\n                return WindowCalculationFactory.topCenterSixthCalculation.orientationBasedRect\n            case .leftCenterSixthPortrait:\n                return WindowCalculationFactory.bottomCenterSixthCalculation.orientationBasedRect\n            case .rightCenterSixthPortrait:\n                return WindowCalculationFactory.bottomLeftSixthCalculation.orientationBasedRect\n            case .bottomLeftSixthPortrait:\n                return WindowCalculationFactory.bottomRightSixthCalculation.orientationBasedRect\n            case .bottomRightSixthPortrait:\n                return WindowCalculationFactory.topLeftSixthCalculation.orientationBasedRect\n            default: break\n            }\n        }\n        \n        return nil\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/SpecifiedCalculation.swift",
    "content": "import Foundation\n\nfinal class SpecifiedCalculation: WindowCalculation {\n\n    private let specifiedHeight: CGFloat\n    private let specifiedWidth: CGFloat\n\n    override init() {\n        specifiedHeight = CGFloat(Defaults.specifiedHeight.value)\n        specifiedWidth = CGFloat(Defaults.specifiedWidth.value)\n    }\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n        var calculatedWindowRect = visibleFrameOfScreen\n\n        // Resize\n        calculatedWindowRect.size.height = specifiedHeight <= 1\n            ? visibleFrameOfScreen.height * specifiedHeight\n            : round(specifiedHeight)\n        calculatedWindowRect.size.width = specifiedWidth <= 1\n            ? visibleFrameOfScreen.width * specifiedWidth\n            : min(visibleFrameOfScreen.width, round(specifiedWidth))\n\n        // Center\n        calculatedWindowRect.origin.x = round((visibleFrameOfScreen.width - calculatedWindowRect.width) / 2.0) + visibleFrameOfScreen.minX\n        calculatedWindowRect.origin.y = round((visibleFrameOfScreen.height - calculatedWindowRect.height) / 2.0) + visibleFrameOfScreen.minY\n\n        return RectResult(calculatedWindowRect)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/ThirdFourthCalculation.swift",
    "content": "//\n//  ThirdFourthCalculation.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 9/16/20.\n//  Copyright © 2020 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass ThirdFourthCalculation: WindowCalculation, OrientationAware {\n    \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n        guard Defaults.subsequentExecutionMode.value != .none,\n            let last = params.lastAction,\n            let lastSubAction = last.subAction,\n            last.action == .thirdFourth\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        let calc: SimpleCalc\n        switch lastSubAction {\n        case .centerRightFourth:\n            calc = WindowCalculationFactory.firstThreeFourthsCalculation.landscapeRect\n        case .centerBottomFourth:\n            calc = WindowCalculationFactory.firstThreeFourthsCalculation.portraitRect\n        case .leftThreeFourths:\n            calc = WindowCalculationFactory.centerHalfCalculation.landscapeRect\n        case .topThreeFourths:\n            calc = WindowCalculationFactory.centerHalfCalculation.portraitRect\n        default:\n            calc = orientationBasedRect\n        }\n        \n        return calc(visibleFrameOfScreen)\n    }\n        \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.origin.x = visibleFrameOfScreen.minX + (rect.width * 2)\n        return RectResult(rect, subAction: .centerRightFourth)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.minY + visibleFrameOfScreen.height - (rect.height * 3.0)\n        return RectResult(rect, subAction: .centerBottomFourth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/TopCenterLeftEighthCalculation.swift",
    "content": "//\n//  TopCenterLeftEighthCalculation.swift\n//  Rectangle\n//\n//  Created by Johannes Trussell Rasch on 2022-02-18.\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass TopCenterLeftEighthCalculation: WindowCalculation, OrientationAware, EighthsRepeated {\n        \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if last.action != .topCenterLeftEighth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 2.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width\n        return RectResult(rect, subAction: .topCenterLeftEighth)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 2.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width\n        return RectResult(rect, subAction: .topCenterLeftEighth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/TopCenterLeftSixteenthCalculation.swift",
    "content": "//\n//  TopCenterLeftSixteenthCalculation.swift\n//  Rectangle\n//\n//  Copyright © 2024 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass TopCenterLeftSixteenthCalculation: WindowCalculation, OrientationAware, SixteenthsRepeated {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if last.action != .topCenterLeftSixteenth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n\n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width\n        return RectResult(rect, subAction: .topCenterLeftSixteenth)\n    }\n\n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width\n        return RectResult(rect, subAction: .topCenterLeftSixteenth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/TopCenterLeftTwelfthCalculation.swift",
    "content": "//\n//  TopCenterLeftTwelfthCalculation.swift\n//  Rectangle\n//\n//  Copyright © 2024 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass TopCenterLeftTwelfthCalculation: WindowCalculation, OrientationAware, TwelfthsRepeated {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if last.action != .topCenterLeftTwelfth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n\n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width\n        return RectResult(rect, subAction: .topCenterLeftTwelfth)\n    }\n\n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width\n        return RectResult(rect, subAction: .topCenterLeftTwelfth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/TopCenterNinthCalculation.swift",
    "content": "//\n//  TopCenterNinthCalculation.swift\n//  Rectangle\n//\n//  Created by Daniel Schultz on 1/2/22.\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass TopCenterNinthCalculation: WindowCalculation, OrientationAware, NinthsRepeated {\n        \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if last.action != .topCenterNinth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width\n        return RectResult(rect, subAction: .topCenterNinth)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width\n        return RectResult(rect, subAction: .topCenterNinth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/TopCenterRightEighthCalculation.swift",
    "content": "//\n//  TopCenterRightEighthCalculation.swift\n//  Rectangle\n//\n//  Created by Johannes Trussell Rasch on 2022-02-18.\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass TopCenterRightEighthCalculation: WindowCalculation, OrientationAware, EighthsRepeated {\n        \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if last.action != .topCenterRightEighth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 2.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        rect.origin.x = visibleFrameOfScreen.minX + (2.0 * rect.width)\n        return RectResult(rect, subAction: .topCenterRightEighth)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 2.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - (visibleFrameOfScreen.height / 2.0)\n        rect.origin.x = visibleFrameOfScreen.minX\n        return RectResult(rect, subAction: .topCenterRightEighth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/TopCenterRightSixteenthCalculation.swift",
    "content": "//\n//  TopCenterRightSixteenthCalculation.swift\n//  Rectangle\n//\n//  Copyright © 2024 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass TopCenterRightSixteenthCalculation: WindowCalculation, OrientationAware, SixteenthsRepeated {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if last.action != .topCenterRightSixteenth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n\n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width * 2\n        return RectResult(rect, subAction: .topCenterRightSixteenth)\n    }\n\n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width * 2\n        return RectResult(rect, subAction: .topCenterRightSixteenth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/TopCenterRightTwelfthCalculation.swift",
    "content": "//\n//  TopCenterRightTwelfthCalculation.swift\n//  Rectangle\n//\n//  Copyright © 2024 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass TopCenterRightTwelfthCalculation: WindowCalculation, OrientationAware, TwelfthsRepeated {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if last.action != .topCenterRightTwelfth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n\n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        rect.origin.x = visibleFrameOfScreen.minX + floor(visibleFrameOfScreen.width / 4.0) * 2.0\n        return RectResult(rect, subAction: .topCenterRightTwelfth)\n    }\n\n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        rect.origin.x = visibleFrameOfScreen.minX + floor(visibleFrameOfScreen.width / 3.0) * 2.0\n        return RectResult(rect, subAction: .topCenterRightTwelfth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/TopCenterSixthCalculation.swift",
    "content": "//\n//  TopCenterSixthCalculation.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 9/16/20.\n//  Copyright © 2020 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass TopCenterSixthCalculation: WindowCalculation, OrientationAware {\n    \n    private let topRightTwoSixths = TopRightTwoSixthsCalculation()\n    private let topLeftTwoSixths = TopLeftTwoSixthsCalculation()\n    private let bottomLeftTwoSixths = BottomLeftTwoSixthsCalculation()\n    \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        \n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction,\n              params.action == .topCenterSixth\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        let calc: SimpleCalc\n        switch lastSubAction{\n        case .topCenterSixthLandscape:\n            calc = topRightTwoSixths.orientationBasedRect\n        case .leftCenterSixthPortrait:\n            calc = bottomLeftTwoSixths.orientationBasedRect\n        case .topRightTwoSixthsLandscape, .bottomLeftTwoSixthsPortrait:\n            calc = topLeftTwoSixths.orientationBasedRect\n        default: calc = orientationBasedRect\n        }\n        \n        return calc(visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 2.0)\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        return RectResult(rect, subAction: .topCenterSixthLandscape)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 2.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.minY + rect.height\n        return RectResult(rect, subAction: .leftCenterSixthPortrait)\n    }\n}\n\nclass TopRightTwoSixthsCalculation: WindowCalculation, OrientationAware {\n\n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width * 2.0 / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 2.0)\n        rect.origin.x = visibleFrameOfScreen.maxX - rect.width\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        return RectResult(rect, subAction: .topRightTwoSixthsLandscape)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 2.0)\n        rect.size.height = floor(visibleFrameOfScreen.height * 2.0 / 3.0)\n        rect.origin.x = visibleFrameOfScreen.maxX - rect.width\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        return RectResult(rect, subAction: .topRightTwoSixthsPortrait)\n    }\n}\n\nclass TopLeftTwoSixthsCalculation: WindowCalculation, OrientationAware {\n\n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width * 2.0 / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 2.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        return RectResult(rect, subAction: .topLeftTwoSixthsLandscape)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 2.0)\n        rect.size.height = floor(visibleFrameOfScreen.height * 2.0 / 3.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        return RectResult(rect, subAction: .topLeftTwoSixthsPortrait)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/TopHalfCalculation.swift",
    "content": "//\n//  TopHalfCalculation.swift\n//  Rectangle, Ported from Spectacle\n//\n//  Created by Ryan Hanson on 6/14/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass TopHalfCalculation: WindowCalculation, RepeatedExecutionsInThirdsCalculation {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n\n        if params.lastAction == nil || !Defaults.subsequentExecutionMode.resizes {\n            return calculateFirstRect(params)\n        }\n        \n        return calculateRepeatedRect(params)\n    }\n    \n    func calculateFirstRect(_ params: RectCalculationParameters) -> RectResult {\n        return calculateFractionalRect(params, fraction: Defaults.verticalSplitRatio.value / 100.0)\n    }\n\n    func calculateFractionalRect(_ params: RectCalculationParameters, fraction: Float) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        var rect = visibleFrameOfScreen\n        rect.size.height = floor(visibleFrameOfScreen.height * CGFloat(fraction))\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        return RectResult(rect)\n    }\n    \n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/TopLeftEighthCalculation.swift",
    "content": "//\n//  TopLeftEighthCalculation.swift\n//  Rectangle\n//\n//  Created by Johannes Trussell Rasch on 2022-02-18.\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass TopLeftEighthCalculation: WindowCalculation, OrientationAware, EighthsRepeated {\n        \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if last.action != .topLeftEighth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 2.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        rect.origin.x = visibleFrameOfScreen.minX\n        return RectResult(rect, subAction: .topLeftEighth)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 2.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        rect.origin.x = visibleFrameOfScreen.minX\n        return RectResult(rect, subAction: .topLeftEighth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/TopLeftNinthCalculation.swift",
    "content": "//\n//  TopLeftNinthCalculation.swift\n//  Rectangle\n//\n//  Created by Daniel Schultz on 1/2/22.\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass TopLeftNinthCalculation: WindowCalculation, OrientationAware, NinthsRepeated {\n        \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if last.action != .topLeftNinth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        rect.origin.x = visibleFrameOfScreen.minX\n        return RectResult(rect, subAction: .topLeftNinth)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        rect.origin.x = visibleFrameOfScreen.minX\n        return RectResult(rect, subAction: .topLeftNinth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/TopLeftSixteenthCalculation.swift",
    "content": "//\n//  TopLeftSixteenthCalculation.swift\n//  Rectangle\n//\n//  Copyright © 2024 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass TopLeftSixteenthCalculation: WindowCalculation, OrientationAware, SixteenthsRepeated {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if last.action != .topLeftSixteenth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n\n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        rect.origin.x = visibleFrameOfScreen.minX\n        return RectResult(rect, subAction: .topLeftSixteenth)\n    }\n\n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        rect.origin.x = visibleFrameOfScreen.minX\n        return RectResult(rect, subAction: .topLeftSixteenth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/TopLeftSixthCalculation.swift",
    "content": "//\n//  TopLeftSixthCalculation.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 9/16/20.\n//  Copyright © 2020 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass TopLeftSixthCalculation: WindowCalculation, OrientationAware, SixthsRepeated {\n        \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if last.action != .topLeftSixth\n            && lastSubAction != .topLeftSixthLandscape\n            && lastSubAction != .topLeftSixthPortrait {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 2.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        return RectResult(rect, subAction: .topLeftSixthLandscape)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 2.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        return RectResult(rect, subAction: .topLeftSixthPortrait)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/TopLeftThirdCalculation.swift",
    "content": "//\n//  TopLeftThirdCalculation.swift\n//  Rectangle\n//\n//  Created by Daniel Schultz on 1/2/22.\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass TopLeftThirdCalculation: WindowCalculation, OrientationAware, HorizontalThirdsRepeated {\n        \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if last.action != .topLeftThird {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(2.0 * visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 2.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - visibleFrameOfScreen.height / 2.0\n        rect.origin.x = visibleFrameOfScreen.minX\n        return RectResult(rect, subAction: .topLeftThird)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 2.0)\n        rect.size.height = floor(2.0 * visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - visibleFrameOfScreen.height / 3.0\n        rect.origin.x = visibleFrameOfScreen.minX\n        return RectResult(rect, subAction: .topLeftThird)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/TopLeftTwelfthCalculation.swift",
    "content": "//\n//  TopLeftTwelfthCalculation.swift\n//  Rectangle\n//\n//  Copyright © 2024 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass TopLeftTwelfthCalculation: WindowCalculation, OrientationAware, TwelfthsRepeated {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if last.action != .topLeftTwelfth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n\n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        rect.origin.x = visibleFrameOfScreen.minX\n        return RectResult(rect, subAction: .topLeftTwelfth)\n    }\n\n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        rect.origin.x = visibleFrameOfScreen.minX\n        return RectResult(rect, subAction: .topLeftTwelfth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/TopRightEighthCalculation.swift",
    "content": "//\n//  TopRightEighthCalculation.swift\n//  Rectangle\n//\n//  Created by Johannes Trussell Rasch on 2022-02-18.\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass TopRightEighthCalculation: WindowCalculation, OrientationAware, EighthsRepeated {\n        \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if last.action != .topRightEighth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 2.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        rect.origin.x = visibleFrameOfScreen.minX + (3.0 * rect.width)\n        return RectResult(rect, subAction: .topRightEighth)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 2.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - (visibleFrameOfScreen.height / 2.0)\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width\n        return RectResult(rect, subAction: .topRightEighth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/TopRightNinthCalculation.swift",
    "content": "//\n//  TopRightNinthCalculation.swift\n//  Rectangle\n//\n//  Created by Daniel Schultz on 1/2/22.\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass TopRightNinthCalculation: WindowCalculation, OrientationAware, NinthsRepeated {\n        \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if last.action != .topRightNinth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        rect.origin.x = visibleFrameOfScreen.minX + visibleFrameOfScreen.width - rect.width\n        return RectResult(rect, subAction: .topRightNinth)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        rect.origin.x = visibleFrameOfScreen.minX + visibleFrameOfScreen.width - rect.width\n        return RectResult(rect, subAction: .topRightNinth)\n    }\n}\n\n"
  },
  {
    "path": "Rectangle/WindowCalculation/TopRightSixteenthCalculation.swift",
    "content": "//\n//  TopRightSixteenthCalculation.swift\n//  Rectangle\n//\n//  Copyright © 2024 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass TopRightSixteenthCalculation: WindowCalculation, OrientationAware, SixteenthsRepeated {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if last.action != .topRightSixteenth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n\n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width * 3\n        return RectResult(rect, subAction: .topRightSixteenth)\n    }\n\n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width * 3\n        return RectResult(rect, subAction: .topRightSixteenth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/TopRightSixthCalculation.swift",
    "content": "//\n//  TopRightSixthCalculation.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 9/16/20.\n//  Copyright © 2020 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass TopRightSixthCalculation: WindowCalculation, OrientationAware, SixthsRepeated {\n    \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if last.action != .topRightSixth\n            && lastSubAction != .topRightSixthLandscape\n            && lastSubAction != .topRightSixthPortrait {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .left) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 2.0)\n        rect.origin.x = visibleFrameOfScreen.minX + visibleFrameOfScreen.width - rect.width\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        return RectResult(rect, subAction: .topRightSixthLandscape)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 2.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        return RectResult(rect, subAction: .topRightSixthPortrait)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/TopRightThirdCalculation.swift",
    "content": "//\n//  TopRightThirdCalculation.swift\n//  Rectangle\n//\n//  Created by Daniel Schultz on 1/2/22.\n//  Copyright © 2022 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass TopRightThirdCalculation: WindowCalculation, OrientationAware, HorizontalThirdsRepeated {\n        \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if last.action != .topRightThird {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n        \n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n    \n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(2.0 * visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 2.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        rect.origin.x = visibleFrameOfScreen.minX + visibleFrameOfScreen.width / 3.0\n        return RectResult(rect, subAction: .topRightThird)\n    }\n    \n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 2.0)\n        rect.size.height = floor(2.0 * visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - visibleFrameOfScreen.height / 3.0\n        rect.origin.x = visibleFrameOfScreen.minX + visibleFrameOfScreen.width / 2.0\n        return RectResult(rect, subAction: .topRightThird)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/TopRightTwelfthCalculation.swift",
    "content": "//\n//  TopRightTwelfthCalculation.swift\n//  Rectangle\n//\n//  Copyright © 2024 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass TopRightTwelfthCalculation: WindowCalculation, OrientationAware, TwelfthsRepeated {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if last.action != .topRightTwelfth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n\n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        rect.origin.x = visibleFrameOfScreen.minX + floor(visibleFrameOfScreen.width / 4.0) * 3.0\n        return RectResult(rect, subAction: .topRightTwelfth)\n    }\n\n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 3.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - (2.0 * rect.height)\n        rect.origin.x = visibleFrameOfScreen.minX\n        return RectResult(rect, subAction: .topRightTwelfth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/TopVerticalThirdCalculation.swift",
    "content": "//\n//  TopVerticalThirdCalculation.swift\n//  Rectangle\n//\n//  Created on 12/22/25.\n//\n\nimport Foundation\n\nclass TopVerticalThirdCalculation: WindowCalculation {\n    \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n        \n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction, let lastSubAction = last.subAction else {\n            return calculateTopThird(visibleFrameOfScreen)\n        }\n        \n        var calculation: WindowCalculation?\n        \n        if last.action == .topVerticalThird {\n            switch lastSubAction {\n            case .topThird:\n                calculation = WindowCalculationFactory.middleVerticalThirdCalculation\n            case .centerVerticalThird:\n                calculation = WindowCalculationFactory.bottomVerticalThirdCalculation\n            default:\n                break\n            }\n        }\n        \n        else if last.action == .bottomVerticalThird {\n            switch lastSubAction {\n            case .topThird:\n                calculation = WindowCalculationFactory.middleVerticalThirdCalculation\n            default:\n                break\n            }\n        }\n                \n        \n        if let calculation = calculation {\n            return calculation.calculateRect(params)\n        }\n        \n        return calculateTopThird(visibleFrameOfScreen)\n    }\n    \n    func calculateTopThird(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.height = floor(visibleFrameOfScreen.height / 3.0)\n        rect.origin.y = visibleFrameOfScreen.minY + visibleFrameOfScreen.height - rect.height\n        return RectResult(rect, subAction: .topThird)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/TopVerticalTwoThirdsCalculation.swift",
    "content": "//\n//  TopVerticalTwoThirdsCalculation.swift\n//  Rectangle\n//\n//  Created on 12/22/25.\n//\n\nimport Foundation\n\nclass TopVerticalTwoThirdsCalculation: WindowCalculation {\n    \n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction, let lastSubAction = last.subAction else {\n            return calculateTopTwoThirds(visibleFrameOfScreen)\n        }\n\n        if lastSubAction == .topTwoThirds {\n            return WindowCalculationFactory.bottomVerticalTwoThirdsCalculation.calculateRect(params)\n        }\n        \n        return calculateTopTwoThirds(visibleFrameOfScreen)\n    }\n    \n    func calculateTopTwoThirds(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.height = floor(visibleFrameOfScreen.height * 2 / 3.0)\n        rect.origin.y = visibleFrameOfScreen.origin.y + visibleFrameOfScreen.height - rect.height\n        return RectResult(rect, subAction: .topTwoThirds)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/TwelfthsRepeated.swift",
    "content": "//\n//  TwelfthsRepeated.swift\n//  Rectangle\n//\n//  Copyright © 2024 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nprotocol TwelfthsRepeated {\n    func nextCalculation(subAction: SubWindowAction, direction: Direction) -> SimpleCalc?\n}\n\nextension TwelfthsRepeated {\n    func nextCalculation(subAction: SubWindowAction, direction: Direction) -> SimpleCalc? {\n\n        if direction == .left {\n            switch subAction {\n            case .topLeftTwelfth:\n                return WindowCalculationFactory.bottomRightTwelfthCalculation.orientationBasedRect\n            case .topCenterLeftTwelfth:\n                return WindowCalculationFactory.topLeftTwelfthCalculation.orientationBasedRect\n            case .topCenterRightTwelfth:\n                return WindowCalculationFactory.topCenterLeftTwelfthCalculation.orientationBasedRect\n            case .topRightTwelfth:\n                return WindowCalculationFactory.topCenterRightTwelfthCalculation.orientationBasedRect\n            case .middleLeftTwelfth:\n                return WindowCalculationFactory.topRightTwelfthCalculation.orientationBasedRect\n            case .middleCenterLeftTwelfth:\n                return WindowCalculationFactory.middleLeftTwelfthCalculation.orientationBasedRect\n            case .middleCenterRightTwelfth:\n                return WindowCalculationFactory.middleCenterLeftTwelfthCalculation.orientationBasedRect\n            case .middleRightTwelfth:\n                return WindowCalculationFactory.middleCenterRightTwelfthCalculation.orientationBasedRect\n            case .bottomLeftTwelfth:\n                return WindowCalculationFactory.middleRightTwelfthCalculation.orientationBasedRect\n            case .bottomCenterLeftTwelfth:\n                return WindowCalculationFactory.bottomLeftTwelfthCalculation.orientationBasedRect\n            case .bottomCenterRightTwelfth:\n                return WindowCalculationFactory.bottomCenterLeftTwelfthCalculation.orientationBasedRect\n            case .bottomRightTwelfth:\n                return WindowCalculationFactory.bottomCenterRightTwelfthCalculation.orientationBasedRect\n            default: break\n            }\n        }\n\n        else if direction == .right {\n            switch subAction {\n            case .topLeftTwelfth:\n                return WindowCalculationFactory.topCenterLeftTwelfthCalculation.orientationBasedRect\n            case .topCenterLeftTwelfth:\n                return WindowCalculationFactory.topCenterRightTwelfthCalculation.orientationBasedRect\n            case .topCenterRightTwelfth:\n                return WindowCalculationFactory.topRightTwelfthCalculation.orientationBasedRect\n            case .topRightTwelfth:\n                return WindowCalculationFactory.middleLeftTwelfthCalculation.orientationBasedRect\n            case .middleLeftTwelfth:\n                return WindowCalculationFactory.middleCenterLeftTwelfthCalculation.orientationBasedRect\n            case .middleCenterLeftTwelfth:\n                return WindowCalculationFactory.middleCenterRightTwelfthCalculation.orientationBasedRect\n            case .middleCenterRightTwelfth:\n                return WindowCalculationFactory.middleRightTwelfthCalculation.orientationBasedRect\n            case .middleRightTwelfth:\n                return WindowCalculationFactory.bottomLeftTwelfthCalculation.orientationBasedRect\n            case .bottomLeftTwelfth:\n                return WindowCalculationFactory.bottomCenterLeftTwelfthCalculation.orientationBasedRect\n            case .bottomCenterLeftTwelfth:\n                return WindowCalculationFactory.bottomCenterRightTwelfthCalculation.orientationBasedRect\n            case .bottomCenterRightTwelfth:\n                return WindowCalculationFactory.bottomRightTwelfthCalculation.orientationBasedRect\n            case .bottomRightTwelfth:\n                return WindowCalculationFactory.topLeftTwelfthCalculation.orientationBasedRect\n            default: break\n            }\n        }\n\n        return nil\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/UpperLeftCalculation.swift",
    "content": "//\n//  UpperLeftCalculation.swift\n//  Rectangle, Ported from Spectacle\n//\n//  Created by Ryan Hanson on 6/14/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass UpperLeftCalculation: WindowCalculation, RepeatedExecutionsInThirdsCalculation, QuartersRepeated {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n\n        if Defaults.subsequentExecutionMode.cyclesQuadrantPositions {\n            if let last = params.lastAction,\n               let lastSubAction = last.subAction,\n               last.action == .topLeft || lastSubAction == .topLeftQuarter {\n                if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n                    return calculation(params.visibleFrameOfScreen)\n                }\n            }\n            return quarterRect(params.visibleFrameOfScreen)\n        }\n\n        if params.lastAction == nil || !Defaults.subsequentExecutionMode.resizes {\n            return calculateFirstRect(params)\n        }\n\n        return calculateRepeatedRect(params)\n    }\n\n    func quarterRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 2.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 2.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        return RectResult(rect, subAction: .topLeftQuarter)\n    }\n\n    func calculateFractionalRect(_ params: RectCalculationParameters, fraction: Float) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width * CGFloat(fraction))\n        rect.size.height = floor(visibleFrameOfScreen.height / 2.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        return RectResult(rect)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/UpperMiddleCenterLeftSixteenthCalculation.swift",
    "content": "//\n//  UpperMiddleCenterLeftSixteenthCalculation.swift\n//  Rectangle\n//\n//  Copyright © 2024 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass UpperMiddleCenterLeftSixteenthCalculation: WindowCalculation, OrientationAware, SixteenthsRepeated {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if last.action != .upperMiddleCenterLeftSixteenth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n\n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height * 2\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width\n        return RectResult(rect, subAction: .upperMiddleCenterLeftSixteenth)\n    }\n\n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height * 2\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width\n        return RectResult(rect, subAction: .upperMiddleCenterLeftSixteenth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/UpperMiddleCenterRightSixteenthCalculation.swift",
    "content": "//\n//  UpperMiddleCenterRightSixteenthCalculation.swift\n//  Rectangle\n//\n//  Copyright © 2024 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass UpperMiddleCenterRightSixteenthCalculation: WindowCalculation, OrientationAware, SixteenthsRepeated {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if last.action != .upperMiddleCenterRightSixteenth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n\n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height * 2\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width * 2\n        return RectResult(rect, subAction: .upperMiddleCenterRightSixteenth)\n    }\n\n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height * 2\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width * 2\n        return RectResult(rect, subAction: .upperMiddleCenterRightSixteenth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/UpperMiddleLeftSixteenthCalculation.swift",
    "content": "//\n//  UpperMiddleLeftSixteenthCalculation.swift\n//  Rectangle\n//\n//  Copyright © 2024 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass UpperMiddleLeftSixteenthCalculation: WindowCalculation, OrientationAware, SixteenthsRepeated {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if last.action != .upperMiddleLeftSixteenth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n\n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height * 2\n        rect.origin.x = visibleFrameOfScreen.minX\n        return RectResult(rect, subAction: .upperMiddleLeftSixteenth)\n    }\n\n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height * 2\n        rect.origin.x = visibleFrameOfScreen.minX\n        return RectResult(rect, subAction: .upperMiddleLeftSixteenth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/UpperMiddleRightSixteenthCalculation.swift",
    "content": "//\n//  UpperMiddleRightSixteenthCalculation.swift\n//  Rectangle\n//\n//  Copyright © 2024 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass UpperMiddleRightSixteenthCalculation: WindowCalculation, OrientationAware, SixteenthsRepeated {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        guard Defaults.subsequentExecutionMode.value != .none,\n              let last = params.lastAction,\n              let lastSubAction = last.subAction\n        else {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if last.action != .upperMiddleRightSixteenth {\n            return orientationBasedRect(visibleFrameOfScreen)\n        }\n\n        if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n            return calculation(visibleFrameOfScreen)\n        }\n\n        return orientationBasedRect(visibleFrameOfScreen)\n    }\n\n    func landscapeRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height * 2\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width * 3\n        return RectResult(rect, subAction: .upperMiddleRightSixteenth)\n    }\n\n    func portraitRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 4.0)\n        rect.size.height = floor(visibleFrameOfScreen.height / 4.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height * 2\n        rect.origin.x = visibleFrameOfScreen.minX + rect.width * 3\n        return RectResult(rect, subAction: .upperMiddleRightSixteenth)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/UpperRightCalculation.swift",
    "content": "//\n//  UpperRightCalculation.swift\n//  Rectangle, Ported from Spectacle\n//\n//  Created by Ryan Hanson on 6/14/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass UpperRightCalculation: WindowCalculation, RepeatedExecutionsInThirdsCalculation, QuartersRepeated {\n\n    override func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n\n        if Defaults.subsequentExecutionMode.cyclesQuadrantPositions {\n            if let last = params.lastAction,\n               let lastSubAction = last.subAction,\n               last.action == .topRight || lastSubAction == .topRightQuarter {\n                if let calculation = self.nextCalculation(subAction: lastSubAction, direction: .right) {\n                    return calculation(params.visibleFrameOfScreen)\n                }\n            }\n            return quarterRect(params.visibleFrameOfScreen)\n        }\n\n        if params.lastAction == nil || !Defaults.subsequentExecutionMode.resizes {\n            return calculateFirstRect(params)\n        }\n\n        return calculateRepeatedRect(params)\n    }\n\n    func quarterRect(_ visibleFrameOfScreen: CGRect) -> RectResult {\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width / 2.0)\n        rect.origin.x = visibleFrameOfScreen.maxX - rect.width\n        rect.size.height = floor(visibleFrameOfScreen.height / 2.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        return RectResult(rect, subAction: .topRightQuarter)\n    }\n\n    func calculateFractionalRect(_ params: RectCalculationParameters, fraction: Float) -> RectResult {\n        let visibleFrameOfScreen = params.visibleFrameOfScreen\n\n        var rect = visibleFrameOfScreen\n        rect.size.width = floor(visibleFrameOfScreen.width * CGFloat(fraction))\n        rect.origin.x = visibleFrameOfScreen.maxX - rect.width\n        rect.size.height = floor(visibleFrameOfScreen.height / 2.0)\n        rect.origin.y = visibleFrameOfScreen.maxY - rect.height\n        return RectResult(rect)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowCalculation/WindowCalculation.swift",
    "content": "//\n//  WindowCalculation.swift\n//  Rectangle, Ported from Spectacle\n//\n//  Created by Ryan Hanson on 6/13/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Cocoa\n\nprotocol Calculation {\n    \n    func calculate(_ params: WindowCalculationParameters) -> WindowCalculationResult?\n    \n    func calculateRect(_ params: RectCalculationParameters) -> RectResult\n}\n\nclass WindowCalculation: Calculation {\n    \n     func calculate(_ params: WindowCalculationParameters) -> WindowCalculationResult? {\n        \n        let rectResult = calculateRect(params.asRectParams())\n        \n        if rectResult.rect.isNull {\n            return nil\n        }\n        \n        return WindowCalculationResult(rect: rectResult.rect, screen: params.usableScreens.currentScreen, resultingAction: params.action, resultingSubAction: rectResult.subAction)\n    }\n\n    func calculateRect(_ params: RectCalculationParameters) -> RectResult {\n        RectResult(.null)\n    }\n    \n    func rectCenteredWithinRect(_ rect1: CGRect, _ rect2: CGRect) -> Bool {\n        let centeredMidX = abs(rect2.midX - rect1.midX) <= 1.0\n        let centeredMidY = abs(rect2.midY - rect1.midY) <= 1.0\n        return rect1.contains(rect2) && centeredMidX && centeredMidY\n    }\n    \n    func rectFitsWithinRect(rect1: CGRect, rect2: CGRect) -> Bool {\n        (rect1.width <= rect2.width) && (rect1.height <= rect2.height)\n    }\n    \n    func isRepeatedCommand(_ params: WindowCalculationParameters) -> Bool {\n        if let lastAction = params.lastAction, lastAction.action == params.action {\n            let normalizedLastRect = lastAction.rect.screenFlipped\n            return normalizedLastRect == params.window.rect\n        }\n        return false\n    }\n    \n}\n\nstruct Window {\n    let id: CGWindowID\n    let rect: CGRect\n}\n\nstruct WindowCalculationParameters {\n    let window: Window\n    let usableScreens: UsableScreens\n    let action: WindowAction\n    let lastAction: RectangleAction?\n    let ignoreTodo: Bool\n    \n    func asRectParams(visibleFrame: CGRect? = nil, differentAction: WindowAction? = nil) -> RectCalculationParameters {\n        RectCalculationParameters(window: window,\n                                  visibleFrameOfScreen: visibleFrame ?? usableScreens.currentScreen.adjustedVisibleFrame(ignoreTodo),\n                                  action: differentAction ?? action,\n                                  lastAction: lastAction)\n    }\n    \n    func withDifferentAction(_ differentAction: WindowAction) -> WindowCalculationParameters {\n        .init(window: window,\n              usableScreens: usableScreens,\n              action: differentAction,\n              lastAction: lastAction,\n              ignoreTodo: ignoreTodo)\n    }\n}\n\nstruct RectCalculationParameters {\n    let window: Window\n    let visibleFrameOfScreen: CGRect\n    let action: WindowAction\n    let lastAction: RectangleAction?\n}\n\nstruct RectResult {\n    let rect: CGRect\n    let resultingAction: WindowAction?\n    let subAction: SubWindowAction?\n    \n    init(_ rect: CGRect, resultingAction: WindowAction? = nil, subAction: SubWindowAction? = nil) {\n        self.rect = rect\n        self.resultingAction = resultingAction\n        self.subAction = subAction\n    }\n}\n\nstruct WindowCalculationResult {\n    var rect: CGRect\n    let screen: NSScreen\n    let resultingAction: WindowAction\n    let resultingSubAction: SubWindowAction?\n    let resultingScreenFrame: CGRect?\n\n    init(rect: CGRect,\n         screen: NSScreen,\n         resultingAction: WindowAction,\n         resultingSubAction: SubWindowAction? = nil,\n         resultingScreenFrame: CGRect? = nil) {\n        \n        self.rect = rect\n        self.screen = screen\n        self.resultingAction = resultingAction\n        self.resultingSubAction = resultingSubAction\n        self.resultingScreenFrame = resultingScreenFrame\n    }\n}\n\nclass WindowCalculationFactory {\n    \n    static let leftHalfCalculation = LeftRightHalfCalculation()\n    static let rightHalfCalculation = LeftRightHalfCalculation()\n    static let centerHalfCalculation = CenterHalfCalculation()\n    static let bottomHalfCalculation = BottomHalfCalculation()\n    static let topHalfCalculation = TopHalfCalculation()\n    static let centerCalculation = CenterCalculation()\n    static let centerProminentlyCalculation = CenterProminentlyCalculation()\n    static let nextPrevDisplayCalculation = NextPrevDisplayCalculation()\n    static let maximizeCalculation = MaximizeCalculation()\n    static let changeSizeCalculation = ChangeSizeCalculation()\n    static let halfOrDoubleDimensionCalculation = HalfOrDoubleDimensionCalculation()\n    static let lowerLeftCalculation = LowerLeftCalculation()\n    static let lowerRightCalculation = LowerRightCalculation()\n    static let upperLeftCalculation = UpperLeftCalculation()\n    static let upperRightCalculation = UpperRightCalculation()\n    static let maxHeightCalculation = MaximizeHeightCalculation()\n    static let firstThirdCalculation = FirstThirdCalculation()\n    static let firstTwoThirdsCalculation = FirstTwoThirdsCalculation()\n    static let centerThirdCalculation = CenterThirdCalculation()\n    static let centerTwoThirdsCalculation = CenterTwoThirdsCalculation()\n    static let lastTwoThirdsCalculation = LastTwoThirdsCalculation()\n    static let lastThirdCalculation = LastThirdCalculation()\n    static let moveLeftRightCalculation = MoveLeftRightCalculation()\n    static let moveUpCalculation = MoveUpDownCalculation()\n    static let moveDownCalculation = MoveUpDownCalculation()\n    static let almostMaximizeCalculation = AlmostMaximizeCalculation()\n    static let firstFourthCalculation = FirstFourthCalculation()\n    static let secondFourthCalculation = SecondFourthCalculation()\n    static let thirdFourthCalculation = ThirdFourthCalculation()\n    static let lastFourthCalculation = LastFourthCalculation()\n    static let firstThreeFourthsCalculation = FirstThreeFourthsCalculation()\n    static let centerThreeFourthsCalculation = CenterThreeFourthsCalculation()\n    static let lastThreeFourthsCalculation = LastThreeFourthsCalculation()\n    static let topLeftSixthCalculation = TopLeftSixthCalculation()\n    static let topCenterSixthCalculation = TopCenterSixthCalculation()\n    static let topRightSixthCalculation = TopRightSixthCalculation()\n    static let bottomLeftSixthCalculation = BottomLeftSixthCalculation()\n    static let bottomCenterSixthCalculation = BottomCenterSixthCalculation()\n    static let bottomRightSixthCalculation = BottomRightSixthCalculation()\n    static let topLeftNinthCalculation = TopLeftNinthCalculation()\n    static let topCenterNinthCalculation = TopCenterNinthCalculation()\n    static let topRightNinthCalculation = TopRightNinthCalculation()\n    static let middleLeftNinthCalculation = MiddleLeftNinthCalculation()\n    static let middleCenterNinthCalculation = MiddleCenterNinthCalculation()\n    static let middleRightNinthCalculation = MiddleRightNinthCalculation()\n    static let bottomLeftNinthCalculation = BottomLeftNinthCalculation()\n    static let bottomCenterNinthCalculation = BottomCenterNinthCalculation()\n    static let bottomRightNinthCalculation = BottomRightNinthCalculation()\n    static let topLeftThirdCalculation = TopLeftThirdCalculation()\n    static let topRightThirdCalculation = TopRightThirdCalculation()\n    static let bottomLeftThirdCalculation = BottomLeftThirdCalculation()\n    static let bottomRightThirdCalculation = BottomRightThirdCalculation()\n    static let topLeftEighthCalculation = TopLeftEighthCalculation()\n    static let topCenterLeftEighthCalculation = TopCenterLeftEighthCalculation()\n    static let topCenterRightEighthCalculation = TopCenterRightEighthCalculation()\n    static let topRightEighthCalculation = TopRightEighthCalculation()\n    static let bottomLeftEighthCalculation = BottomLeftEighthCalculation()\n    static let bottomCenterLeftEighthCalculation = BottomCenterLeftEighthCalculation()\n    static let bottomCenterRightEighthCalculation = BottomCenterRightEighthCalculation()\n    static let bottomRightEighthCalculation = BottomRightEighthCalculation()\n    static let specifiedCalculation = SpecifiedCalculation()\n    static let leftTodoCalculation = LeftTodoCalculation()\n    static let rightTodoCalculation = RightTodoCalculation()\n    static let bottomVerticalTwoThirdsCalculation = BottomVerticalTwoThirdsCalculation()\n    static let topVerticalTwoThirdsCalculation = TopVerticalTwoThirdsCalculation()\n    static let bottomVerticalThirdCalculation = BottomVerticalThirdCalculation()\n    static let topVerticalThirdCalculation = TopVerticalThirdCalculation()\n    static let middleVerticalThirdCalculation = MiddleVerticalThirdCalculation()\n    static let topLeftTwelfthCalculation = TopLeftTwelfthCalculation()\n    static let topCenterLeftTwelfthCalculation = TopCenterLeftTwelfthCalculation()\n    static let topCenterRightTwelfthCalculation = TopCenterRightTwelfthCalculation()\n    static let topRightTwelfthCalculation = TopRightTwelfthCalculation()\n    static let middleLeftTwelfthCalculation = MiddleLeftTwelfthCalculation()\n    static let middleCenterLeftTwelfthCalculation = MiddleCenterLeftTwelfthCalculation()\n    static let middleCenterRightTwelfthCalculation = MiddleCenterRightTwelfthCalculation()\n    static let middleRightTwelfthCalculation = MiddleRightTwelfthCalculation()\n    static let bottomLeftTwelfthCalculation = BottomLeftTwelfthCalculation()\n    static let bottomCenterLeftTwelfthCalculation = BottomCenterLeftTwelfthCalculation()\n    static let bottomCenterRightTwelfthCalculation = BottomCenterRightTwelfthCalculation()\n    static let bottomRightTwelfthCalculation = BottomRightTwelfthCalculation()\n    static let topLeftSixteenthCalculation = TopLeftSixteenthCalculation()\n    static let topCenterLeftSixteenthCalculation = TopCenterLeftSixteenthCalculation()\n    static let topCenterRightSixteenthCalculation = TopCenterRightSixteenthCalculation()\n    static let topRightSixteenthCalculation = TopRightSixteenthCalculation()\n    static let upperMiddleLeftSixteenthCalculation = UpperMiddleLeftSixteenthCalculation()\n    static let upperMiddleCenterLeftSixteenthCalculation = UpperMiddleCenterLeftSixteenthCalculation()\n    static let upperMiddleCenterRightSixteenthCalculation = UpperMiddleCenterRightSixteenthCalculation()\n    static let upperMiddleRightSixteenthCalculation = UpperMiddleRightSixteenthCalculation()\n    static let lowerMiddleLeftSixteenthCalculation = LowerMiddleLeftSixteenthCalculation()\n    static let lowerMiddleCenterLeftSixteenthCalculation = LowerMiddleCenterLeftSixteenthCalculation()\n    static let lowerMiddleCenterRightSixteenthCalculation = LowerMiddleCenterRightSixteenthCalculation()\n    static let lowerMiddleRightSixteenthCalculation = LowerMiddleRightSixteenthCalculation()\n    static let bottomLeftSixteenthCalculation = BottomLeftSixteenthCalculation()\n    static let bottomCenterLeftSixteenthCalculation = BottomCenterLeftSixteenthCalculation()\n    static let bottomCenterRightSixteenthCalculation = BottomCenterRightSixteenthCalculation()\n    static let bottomRightSixteenthCalculation = BottomRightSixteenthCalculation()\n\n    static let calculationsByAction: [WindowAction: WindowCalculation] = [\n     .leftHalf: leftHalfCalculation,\n     .rightHalf: rightHalfCalculation,\n     .maximize: maximizeCalculation,\n     .maximizeHeight: maxHeightCalculation,\n     .previousDisplay: nextPrevDisplayCalculation,\n     .nextDisplay: nextPrevDisplayCalculation,\n     .larger: changeSizeCalculation,\n     .smaller: changeSizeCalculation,\n     .largerWidth: changeSizeCalculation,\n     .smallerWidth: changeSizeCalculation,\n     .largerHeight: changeSizeCalculation,\n     .smallerHeight: changeSizeCalculation,\n     .bottomHalf: bottomHalfCalculation,\n     .topHalf: topHalfCalculation,\n     .center: centerCalculation,\n     .centerProminently: centerProminentlyCalculation,\n     .bottomLeft: lowerLeftCalculation,\n     .bottomRight: lowerRightCalculation,\n     .topLeft: upperLeftCalculation,\n     .topRight: upperRightCalculation,\n     .firstThird: firstThirdCalculation,\n     .firstTwoThirds: firstTwoThirdsCalculation,\n     .centerThird: centerThirdCalculation,\n     .centerTwoThirds: centerTwoThirdsCalculation,\n     .lastTwoThirds: lastTwoThirdsCalculation,\n     .lastThird: lastThirdCalculation,\n     .moveLeft: moveLeftRightCalculation,\n     .moveRight: moveLeftRightCalculation,\n     .moveUp: moveUpCalculation,\n     .moveDown: moveDownCalculation,\n     .almostMaximize: almostMaximizeCalculation,\n     .centerHalf: centerHalfCalculation,\n     .firstFourth: firstFourthCalculation,\n     .secondFourth: secondFourthCalculation,\n     .thirdFourth: thirdFourthCalculation,\n     .lastFourth: lastFourthCalculation,\n     .firstThreeFourths: firstThreeFourthsCalculation,\n     .centerThreeFourths: centerThreeFourthsCalculation,\n     .lastThreeFourths: lastThreeFourthsCalculation,\n     .topLeftSixth: topLeftSixthCalculation,\n     .topCenterSixth: topCenterSixthCalculation,\n     .topRightSixth: topRightSixthCalculation,\n     .bottomLeftSixth: bottomLeftSixthCalculation,\n     .bottomCenterSixth: bottomCenterSixthCalculation,\n     .bottomRightSixth: bottomRightSixthCalculation,\n     .topLeftNinth: topLeftNinthCalculation,\n     .topCenterNinth: topCenterNinthCalculation,\n     .topRightNinth: topRightNinthCalculation,\n     .middleLeftNinth: middleLeftNinthCalculation,\n     .middleCenterNinth: middleCenterNinthCalculation,\n     .middleRightNinth: middleRightNinthCalculation,\n     .bottomLeftNinth: bottomLeftNinthCalculation,\n     .bottomCenterNinth: bottomCenterNinthCalculation,\n     .bottomRightNinth: bottomRightNinthCalculation,\n     .topLeftThird: topLeftThirdCalculation,\n     .topRightThird: topRightThirdCalculation,\n     .bottomLeftThird: bottomLeftThirdCalculation,\n     .bottomRightThird: bottomRightThirdCalculation,\n     .topLeftEighth: topLeftEighthCalculation,\n     .topCenterLeftEighth: topCenterLeftEighthCalculation,\n     .topCenterRightEighth: topCenterRightEighthCalculation,\n     .topRightEighth: topRightEighthCalculation,\n     .bottomLeftEighth: bottomLeftEighthCalculation,\n     .bottomCenterLeftEighth: bottomCenterLeftEighthCalculation,\n     .bottomCenterRightEighth: bottomCenterRightEighthCalculation,\n     .bottomRightEighth: bottomRightEighthCalculation,\n     .halveHeightUp: halfOrDoubleDimensionCalculation,\n     .halveHeightDown: halfOrDoubleDimensionCalculation,\n     .halveWidthLeft: halfOrDoubleDimensionCalculation,\n     .halveWidthRight: halfOrDoubleDimensionCalculation,\n     .doubleHeightUp: halfOrDoubleDimensionCalculation,\n     .doubleHeightDown: halfOrDoubleDimensionCalculation,\n     .doubleWidthLeft: halfOrDoubleDimensionCalculation,\n     .doubleWidthRight: halfOrDoubleDimensionCalculation,\n     .specified: specifiedCalculation,\n     .leftTodo: leftTodoCalculation,\n     .rightTodo: rightTodoCalculation,\n     .topVerticalThird: topVerticalThirdCalculation,\n     .middleVerticalThird: middleVerticalThirdCalculation,\n     .bottomVerticalThird: bottomVerticalThirdCalculation,\n     .topVerticalTwoThirds: topVerticalTwoThirdsCalculation,\n     .bottomVerticalTwoThirds: bottomVerticalTwoThirdsCalculation,\n     .topLeftTwelfth: topLeftTwelfthCalculation,\n     .topCenterLeftTwelfth: topCenterLeftTwelfthCalculation,\n     .topCenterRightTwelfth: topCenterRightTwelfthCalculation,\n     .topRightTwelfth: topRightTwelfthCalculation,\n     .middleLeftTwelfth: middleLeftTwelfthCalculation,\n     .middleCenterLeftTwelfth: middleCenterLeftTwelfthCalculation,\n     .middleCenterRightTwelfth: middleCenterRightTwelfthCalculation,\n     .middleRightTwelfth: middleRightTwelfthCalculation,\n     .bottomLeftTwelfth: bottomLeftTwelfthCalculation,\n     .bottomCenterLeftTwelfth: bottomCenterLeftTwelfthCalculation,\n     .bottomCenterRightTwelfth: bottomCenterRightTwelfthCalculation,\n     .bottomRightTwelfth: bottomRightTwelfthCalculation,\n     .topLeftSixteenth: topLeftSixteenthCalculation,\n     .topCenterLeftSixteenth: topCenterLeftSixteenthCalculation,\n     .topCenterRightSixteenth: topCenterRightSixteenthCalculation,\n     .topRightSixteenth: topRightSixteenthCalculation,\n     .upperMiddleLeftSixteenth: upperMiddleLeftSixteenthCalculation,\n     .upperMiddleCenterLeftSixteenth: upperMiddleCenterLeftSixteenthCalculation,\n     .upperMiddleCenterRightSixteenth: upperMiddleCenterRightSixteenthCalculation,\n     .upperMiddleRightSixteenth: upperMiddleRightSixteenthCalculation,\n     .lowerMiddleLeftSixteenth: lowerMiddleLeftSixteenthCalculation,\n     .lowerMiddleCenterLeftSixteenth: lowerMiddleCenterLeftSixteenthCalculation,\n     .lowerMiddleCenterRightSixteenth: lowerMiddleCenterRightSixteenthCalculation,\n     .lowerMiddleRightSixteenth: lowerMiddleRightSixteenthCalculation,\n     .bottomLeftSixteenth: bottomLeftSixteenthCalculation,\n     .bottomCenterLeftSixteenth: bottomCenterLeftSixteenthCalculation,\n     .bottomCenterRightSixteenth: bottomCenterRightSixteenthCalculation,\n     .bottomRightSixteenth: bottomRightSixteenthCalculation\n        //     .restore: nil\n    ]\n}\n"
  },
  {
    "path": "Rectangle/WindowHistory.swift",
    "content": "//\n//  WindowHistory.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 9/6/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass WindowHistory {\n    \n    var restoreRects = [CGWindowID: CGRect]() // the last window frame that the user positioned\n    \n    var lastRectangleActions = [CGWindowID: RectangleAction]() // the last window frame that this app positioned\n    \n}\n"
  },
  {
    "path": "Rectangle/WindowManager.swift",
    "content": "//\n//  WindowManager.swift\n//  Rectangle, Ported from Spectacle\n//\n//  Created by Ryan Hanson on 6/12/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Cocoa\n\nclass WindowManager {\n    \n    private let screenDetection = ScreenDetection()\n    private let standardWindowMoverChain: [WindowMover]\n    private let fixedSizeWindowMoverChain: [WindowMover]\n    \n    init() {\n        standardWindowMoverChain = [\n            StandardWindowMover(),\n            BestEffortWindowMover()\n        ]\n        \n        fixedSizeWindowMoverChain = [\n            CenteringFixedSizedWindowMover(),\n            BestEffortWindowMover()\n        ]\n    }\n    \n    private func recordAction(windowId: CGWindowID, resultingRect: CGRect, action: WindowAction, subAction: SubWindowAction?) {\n        let newCount: Int\n        if let lastRectangleAction = AppDelegate.windowHistory.lastRectangleActions[windowId], lastRectangleAction.action == action {\n            newCount = lastRectangleAction.count + 1\n        } else {\n            newCount = 1\n        }\n        \n        AppDelegate.windowHistory.lastRectangleActions[windowId] = RectangleAction(\n            action: action,\n            subAction: subAction,\n            rect: resultingRect,\n            count: newCount\n        )\n    }\n    \n    func execute(_ parameters: ExecutionParameters) {\n        guard let frontmostWindowElement = parameters.windowElement ?? AccessibilityElement.getFrontWindowElement(),\n              let windowId = parameters.windowId ?? frontmostWindowElement.getWindowId()\n        else {\n            NSSound.beep()\n            return\n        }\n        \n        let action = parameters.action\n        \n        if action == .restore {\n            if let restoreRect = AppDelegate.windowHistory.restoreRects[windowId] {\n                frontmostWindowElement.setFrame(restoreRect)\n            }\n            AppDelegate.windowHistory.lastRectangleActions.removeValue(forKey: windowId)\n            return\n        }\n        \n        var screens: UsableScreens?\n        if let screen = parameters.screen {\n            screens = UsableScreens(currentScreen: screen, numScreens: 1)\n        } else {\n            screens = Defaults.useCursorScreenDetection.enabled\n            ? screenDetection.detectScreensAtCursor()\n            : screenDetection.detectScreens(using: frontmostWindowElement)\n        }\n        \n        guard let usableScreens = screens else {\n            NSSound.beep()\n            Logger.log(\"Unable to obtain usable screens\")\n            return\n        }\n        \n        let currentWindowRect: CGRect = frontmostWindowElement.frame\n        \n        var lastRectangleAction = AppDelegate.windowHistory.lastRectangleActions[windowId]\n        \n        let windowMovedExternally = currentWindowRect != lastRectangleAction?.rect\n        \n        if windowMovedExternally {\n            lastRectangleAction = nil\n            AppDelegate.windowHistory.lastRectangleActions.removeValue(forKey: windowId)\n        }\n        \n        if parameters.updateRestoreRect {\n            if AppDelegate.windowHistory.restoreRects[windowId] == nil\n                || windowMovedExternally {\n                AppDelegate.windowHistory.restoreRects[windowId] = currentWindowRect\n            }\n        }\n        \n        let ignoreTodo = TodoManager.isTodoWindow(windowId)\n        \n        if frontmostWindowElement.isSheet == true\n            || currentWindowRect.isNull\n            || usableScreens.frameOfCurrentScreen.isNull\n            || usableScreens.currentScreen.adjustedVisibleFrame(ignoreTodo).isNull {\n            NSSound.beep()\n            Logger.log(\"Window is not snappable or usable screen is not valid\")\n            return\n        }\n        \n        let currentNormalizedRect = currentWindowRect.screenFlipped\n        let currentWindow = Window(id: windowId, rect: currentNormalizedRect)\n        \n        let windowCalculation = WindowCalculationFactory.calculationsByAction[action]\n        \n        let calculationParams = WindowCalculationParameters(window: currentWindow, usableScreens: usableScreens, action: action, lastAction: lastRectangleAction, ignoreTodo: ignoreTodo)\n        guard var calcResult = windowCalculation?.calculate(calculationParams) else {\n            NSSound.beep()\n            Logger.log(\"Nil calculation result\")\n            return\n        }\n        \n        let gapsApplicable = calcResult.resultingAction.gapsApplicable\n        \n        if Defaults.gapSize.value > 0, gapsApplicable != .none {\n            let gapSharedEdges = calcResult.resultingSubAction?.gapSharedEdge ?? calcResult.resultingAction.gapSharedEdge\n            \n            calcResult.rect = GapCalculation.applyGaps(calcResult.rect, dimension: gapsApplicable, sharedEdges: gapSharedEdges, gapSize: Defaults.gapSize.value)\n        }\n\n        if currentNormalizedRect.equalTo(calcResult.rect) {\n            Logger.log(\"Current frame is equal to new frame\")\n            \n            recordAction(windowId: windowId, resultingRect: currentWindowRect, action: calcResult.resultingAction, subAction: calcResult.resultingSubAction)\n            \n            return\n        }\n        \n        let visibleFrameOfDestinationScreen = calcResult.resultingScreenFrame ?? calcResult.screen.adjustedVisibleFrame(ignoreTodo)\n        let isFixedSize = (!frontmostWindowElement.isResizable() && action.resizes) || frontmostWindowElement.isSystemDialog == true\n        let resultParameters = ResultParameters(windowId: windowId,\n                                                action: action,\n                                                windowElement: frontmostWindowElement,\n                                                calcResult: calcResult,\n                                                usableScreens: usableScreens,\n                                                visibleFrameOfScreen: visibleFrameOfDestinationScreen,\n                                                source: parameters.source,\n                                                isFixedSize: isFixedSize)\n        \n        var resultingRect = apply(result: resultParameters)\n        \n        let isMovedAcrossDisplays = usableScreens.currentScreen != calcResult.screen\n        if isMovedAcrossDisplays {\n            if calcResult.rect.height != resultingRect.height {\n                Logger.log(\"Window size wasn't applied perfectly across displays. Trying again.\")\n                resultingRect = apply(result: resultParameters)\n                \n                if calcResult.rect.height != resultingRect.height {\n                    Logger.log(\"Final attempt to adjust across displays.\")\n                    DispatchQueue.main.asyncAfter(deadline: .now() + .milliseconds(25)) { [weak self] in\n                        guard let self else { return }\n                        let finalRect = self.apply(result: resultParameters)\n                        self.windowMovedAcrossDisplays(windowElement: frontmostWindowElement, resultingRect: finalRect)\n                        self.postProcess(result: resultParameters, resultingRect: finalRect)\n                    }\n                    return\n                }\n            }\n            windowMovedAcrossDisplays(windowElement: frontmostWindowElement, resultingRect: resultingRect)\n        }\n        \n        postProcess(result: resultParameters, resultingRect: resultingRect)\n    }\n    \n    /// Move/resize a window based on the calculation results.\n    /// - Returns: The rect of the window after applying the window action\n    func apply(result: ResultParameters) -> CGRect {\n        let windowMoverChain = result.isFixedSize\n        ? fixedSizeWindowMoverChain\n        : standardWindowMoverChain\n        \n        let newRect = result.calcResult.rect.screenFlipped\n        \n        for windowMover in windowMoverChain {\n            windowMover.moveWindowRect(newRect,\n                                       frameOfScreen: result.usableScreens.frameOfCurrentScreen,\n                                       visibleFrameOfScreen: result.visibleFrameOfScreen,\n                                       frontmostWindowElement: result.windowElement,\n                                       action: result.action)\n        }\n        \n        return result.windowElement.frame\n    }\n    \n    func windowMovedAcrossDisplays(windowElement: AccessibilityElement, resultingRect: CGRect) {\n        windowElement.bringToFront(force: true)\n        \n        if Defaults.moveCursorAcrossDisplays.userEnabled {\n            CGWarpMouseCursorPosition(resultingRect.centerPoint)\n        }\n    }\n    \n    func postProcess(result: ResultParameters, resultingRect: CGRect) {\n        let calcResult = result.calcResult\n        \n        if Defaults.moveCursor.userEnabled, result.source == .keyboardShortcut {\n            CGWarpMouseCursorPosition(resultingRect.centerPoint)\n        }\n        \n        recordAction(windowId: result.windowId, resultingRect: resultingRect, action: calcResult.resultingAction, subAction: calcResult.resultingSubAction)\n        \n        if Logger.logging {\n            var logItems = [\"\\(result.action.name)\",\n                            \"display: \\(result.visibleFrameOfScreen.debugDescription)\",\n                            \"calculatedRect: \\(result.calcResult.rect.screenFlipped.debugDescription)\",\n                            \"resultRect: \\(resultingRect.debugDescription)\",\n                            \"srcScreen: \\(result.usableScreens.currentScreen.localizedName)\",\n                            \"destScreen: \\(calcResult.screen.localizedName)\"]\n            if let resultScreens = screenDetection.detectScreens(using: result.windowElement) {\n                logItems.append(\"resultScreen: \\(resultScreens.currentScreen.localizedName)\")\n            }\n            Logger.log(logItems.joined(separator: \", \"))\n        }\n    }\n    \n    struct ResultParameters {\n        let windowId: CGWindowID\n        let action: WindowAction\n        let windowElement: AccessibilityElement\n        let calcResult: WindowCalculationResult\n        let usableScreens: UsableScreens\n        let visibleFrameOfScreen: CGRect\n        let source: ExecutionSource\n        let isFixedSize: Bool\n    }\n}\n\nstruct RectangleAction {\n    let action: WindowAction\n    let subAction: SubWindowAction?\n    let rect: CGRect\n    let count: Int\n}\n\nstruct ExecutionParameters {\n    let action: WindowAction\n    let updateRestoreRect: Bool\n    let screen: NSScreen?\n    let windowElement: AccessibilityElement?\n    let windowId: CGWindowID?\n    let source: ExecutionSource\n\n    init(_ action: WindowAction, updateRestoreRect: Bool = true, screen: NSScreen? = nil, windowElement: AccessibilityElement? = nil, windowId: CGWindowID? = nil, source: ExecutionSource = .keyboardShortcut) {\n        self.action = action\n        self.updateRestoreRect = updateRestoreRect\n        self.screen = screen\n        self.windowElement = windowElement\n        self.windowId = windowId\n        self.source = source\n    }\n}\n\nenum ExecutionSource {\n    case keyboardShortcut, dragToSnap, menuItem, url, titleBar\n}\n"
  },
  {
    "path": "Rectangle/WindowMover/BestEffortWindowMover.swift",
    "content": "//\n//  BestEffortWindowMover.swift\n//  Rectangle, Ported from Spectacle\n//\n//  Created by Ryan Hanson on 6/13/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\n/**\n * After a window has been moved and resized, if the window could not be resized small enough to fit the intended size, then some of the window may appear off the screen. The BestEffortWindowMover will move the window so that it fits entirely on the screen.\n */\n\nclass BestEffortWindowMover: WindowMover {\n    func moveWindowRect(_ windowRect: CGRect, frameOfScreen: CGRect, visibleFrameOfScreen: CGRect, frontmostWindowElement: AccessibilityElement?, action: WindowAction?) {\n        guard let currentWindowRect: CGRect = frontmostWindowElement?.frame else { return }\n        if action?.allowedToExtendOutsideCurrentScreenArea == true && !NSScreen.screensHaveSeparateSpaces { return }\n        \n        var adjustedWindowRect: CGRect = currentWindowRect\n        \n        if adjustedWindowRect.minX < visibleFrameOfScreen.minX {\n            \n            adjustedWindowRect.origin.x = visibleFrameOfScreen.minX\n            \n        } else if adjustedWindowRect.minX + adjustedWindowRect.width > visibleFrameOfScreen.minX + visibleFrameOfScreen.width {\n            \n            adjustedWindowRect.origin.x = visibleFrameOfScreen.minX + visibleFrameOfScreen.width - (adjustedWindowRect.width) - CGFloat(Defaults.gapSize.value)\n        }\n        \n        adjustedWindowRect = adjustedWindowRect.screenFlipped\n        if adjustedWindowRect.minY < visibleFrameOfScreen.minY {\n            \n            adjustedWindowRect.origin.y = visibleFrameOfScreen.minY\n            \n        } else if adjustedWindowRect.minY + adjustedWindowRect.height > visibleFrameOfScreen.minY + visibleFrameOfScreen.height {\n            \n            adjustedWindowRect.origin.y = visibleFrameOfScreen.minY + visibleFrameOfScreen.height - (adjustedWindowRect.height) - CGFloat(Defaults.gapSize.value)\n        }\n        \n        adjustedWindowRect = adjustedWindowRect.screenFlipped\n        if !currentWindowRect.equalTo(adjustedWindowRect) {\n            frontmostWindowElement?.setFrame(adjustedWindowRect)\n        }\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowMover/CenteringFixedSizedWindowMover.swift",
    "content": "//\n//  CenteringFixedSizedWindowMover.swift\n//  Rectangle\n//\n//  Created by Ryan Hanson on 1/14/20.\n//  Copyright © 2020 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\n/**\n    If the window is fixed size, center it in the proposed window area\n */\n\nclass CenteringFixedSizedWindowMover: WindowMover {\n    \n    func moveWindowRect(_ windowRect: CGRect, frameOfScreen: CGRect, visibleFrameOfScreen: CGRect, frontmostWindowElement: AccessibilityElement?, action: WindowAction?) {\n        guard let currentWindowRect: CGRect = frontmostWindowElement?.frame else { return }\n\n        var adjustedWindowRect: CGRect = currentWindowRect\n\n        if currentWindowRect.size.width != windowRect.width {\n            adjustedWindowRect.origin.x = round((windowRect.width - currentWindowRect.width) / 2.0) + windowRect.minX\n        }\n        \n        if currentWindowRect.size.height != windowRect.height {\n            adjustedWindowRect.origin.y = round((windowRect.height - currentWindowRect.height) / 2.0) + windowRect.minY\n        }\n        \n        if !adjustedWindowRect.equalTo(currentWindowRect) {\n            frontmostWindowElement?.setFrame(adjustedWindowRect)\n        }\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowMover/QuantizedWindowMover.swift",
    "content": "//\n//  QuantizedWindowMover.swift\n//  Rectangle, Ported from Spectacle\n//\n//  Created by Ryan Hanson on 6/13/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass QuantizedWindowMover: WindowMover {\n    func moveWindowRect(_ windowRect: CGRect, frameOfScreen: CGRect, visibleFrameOfScreen: CGRect, frontmostWindowElement: AccessibilityElement?, action: WindowAction?) {\n        guard var movedWindowRect: CGRect = frontmostWindowElement?.frame else { return }\n        if !movedWindowRect.equalTo(windowRect) {\n            var adjustedWindowRect: CGRect = windowRect\n            while movedWindowRect.width > windowRect.width || movedWindowRect.height > windowRect.height {\n                \n                if movedWindowRect.width > windowRect.width {\n                    adjustedWindowRect.size.width -= 2\n                }\n                if movedWindowRect.height > windowRect.height {\n                    adjustedWindowRect.size.height -= 2\n                }\n                if adjustedWindowRect.width < windowRect.width * 0.85 || adjustedWindowRect.height < windowRect.height * 0.85 {\n                    break\n                }\n                frontmostWindowElement?.setFrame(adjustedWindowRect)\n                if let frontMostRect = frontmostWindowElement?.frame {\n                    movedWindowRect = frontMostRect\n                }\n            }\n            adjustedWindowRect.origin.x += floor((windowRect.size.width - (movedWindowRect.size.width)) / 2.0)\n            adjustedWindowRect.origin.y += floor((windowRect.size.height - (movedWindowRect.size.height)) / 2.0)\n            frontmostWindowElement?.setFrame(adjustedWindowRect)\n        }\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowMover/StandardWindowMover.swift",
    "content": "//\n//  StandardWindowMover.swift\n//  Rectangle, Ported from Spectacle\n//\n//  Created by Ryan Hanson on 6/13/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nclass StandardWindowMover: WindowMover {\n    func moveWindowRect(_ windowRect: CGRect, frameOfScreen: CGRect, visibleFrameOfScreen: CGRect, frontmostWindowElement: AccessibilityElement?, action: WindowAction?) {\n        let previousWindowRect: CGRect? = frontmostWindowElement?.frame\n        if previousWindowRect?.isNull == true {\n            return\n        }\n        frontmostWindowElement?.setFrame(windowRect)\n    }\n}\n"
  },
  {
    "path": "Rectangle/WindowMover/WindowMover.swift",
    "content": "//\n//  WindowMover.swift\n//  Rectangle, Ported from Spectacle\n//\n//  Created by Ryan Hanson on 6/13/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Foundation\n\nprotocol WindowMover {\n    func moveWindowRect(_ windowRect: CGRect, frameOfScreen: CGRect, visibleFrameOfScreen: CGRect, frontmostWindowElement: AccessibilityElement?, action: WindowAction?)\n}\n"
  },
  {
    "path": "Rectangle/mul.lproj/Main.xcstrings",
    "content": "{\n  \"sourceLanguage\" : \"en\",\n  \"strings\" : {\n    \"0Ak-33-SM7.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Top Right\\\"; ObjectID = \\\"0Ak-33-SM7\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"اعلى اليمين\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"A dalt a la dreta\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Superior dreta\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vpravo nahoře\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Oben rechts\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Top Right\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Arriba a la derecha\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Arriba a la derecha\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"En haut à droite\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kanan Atas\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"In alto a destra\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右上\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"오른쪽 위\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dešinėje viršuje\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Øvre høgre\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rechtsboven\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Øvre høgre\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Prawy górny róg\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Em cima, à direita\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Em cima, à direita\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dreapta Sus\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Справа вверху\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vpravo hore\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Övre högra\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sağ üst\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Верхній правий кут\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Góc trên bên phải\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右上\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右上\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右上\"\n          }\n        }\n      }\n    },\n    \"0eh-6G-rMp.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"0 px\\\"; ObjectID = \\\"0eh-6G-rMp\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"0 px\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"0 px\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"0 px\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"0 px\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"0 px\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"0 px\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"0 px\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"0 px\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"0 px\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"0 px\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"0 px\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"0 px\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"0 px\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"0 px\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"0 px\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"0 px\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"0 px\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"0 px\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"0 px\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"0 px\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"0 px\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"0 px\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"0 px\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"0 px\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"0 px\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"0 пкс\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"0 px\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"0 px\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"0 px\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"0 px\"\n          }\n        }\n      }\n    },\n    \"1b7-l0-nxx.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Find\\\"; ObjectID = \\\"1b7-l0-nxx\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"يجد\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cerca\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cerca\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hledat\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Suchen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Find\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Encontrar\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Encontrar\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rechercher\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Temukan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Trova\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"検索\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"찾기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ieškoti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Finn\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoeken\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Finn\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Znajdź\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buscar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Encontrar\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Căutare\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Найти\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nájsť\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sök\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bul\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Знайти\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tìm kiếm\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"查找\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"尋找\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"尋找\"\n          }\n        }\n      }\n    },\n    \"1Rc-Od-eP5.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Move Down\\\"; ObjectID = \\\"1Rc-Od-eP5\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تحرك لأسفل\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Moure fins a baix\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Moure fins a baix\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Přesunout dolů\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nach unten bewegen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Move Down\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mover hasta abajo\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mover hasta abajo\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Déplacer en bas\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Turunkan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sposta giù\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"下に移動\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"아래로 이동\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Žemyn\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Flytt ned\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Naar beneden\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Flytt ned\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Przesuń w dół\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mover para baixo\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mover para baixo\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mută Jos\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Вниз\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Presunúť dole\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Flytta ner\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Aşağı kenar\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Перемістити вниз\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Đi xuống\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"向下移动\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"下移\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"下移\"\n          }\n        }\n      }\n    },\n    \"1tx-W0-xDw.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Lower\\\"; ObjectID = \\\"1tx-W0-xDw\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"أدنى\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Més baix\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Més baix\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tiefer\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Más bajo\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Más bajo\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Abaisser\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lebih Rendah\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Abbassa\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"下付き\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"아래로\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Apačioje\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nedre\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lager\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nedre\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Niżej\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Inferior\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Inferior\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Нижнее\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nedre\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1tx-W0-xDw.title\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"变为小写\"\n          }\n        }\n      }\n    },\n    \"1ui-PL-TkR.title\" : {\n      \"comment\" : \"Class = \\\"NSButtonCell\\\"; title = \\\"Snap windows by dragging\\\"; ObjectID = \\\"1ui-PL-TkR\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"التقط النوافذ عن طريق السحب\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ajusta les finestres arrossegant\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ajusta les finestres arrossegant\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Přichytávat okna tažením\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fenster zum Anordnen an Bildschirmrand ziehen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Snap windows by dragging\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ajustar ventanas arrastrando\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ajustar ventanas arrastrando\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Redimensionner les fenêtres en les faisant glisser\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jepret jendela dengan menyeret\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ridimensiona le finestre trascinandole\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ドラッグでウインドウをスナップ\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"드래그하여 창 배치\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Langų užrakinimas perkeliant\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fest vinduet ved å dra\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Snap windows door te slepen\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fest vindaguet ved å dra\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Złap okna poprzez przeciąganie\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Redimensionar janelas arrastando\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Encaixar janelas arrastando\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Deschide fereastra prin glisare\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Защелкивание окон путем перетаскивания\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Prichytávať okná ťahaním\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fäst fönster genom att dra\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pencereleri sürükleyerek tuttur\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Прив'язувати вікна перетягуванням\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kéo để bố trí cửa sổ\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"拖移以吸附窗口\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"拖移來貼齊視窗\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"拖移以貼齊視窗\"\n          }\n        }\n      }\n    },\n    \"1UK-8n-QPP.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Customize Toolbar…\\\"; ObjectID = \\\"1UK-8n-QPP\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تخصيص شريط الأدوات ...\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Personalitzar la barra d'eines…\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Personalitzar la barra d'eines…\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Symbolleiste anpassen…\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Personalizar la barra de herramientas…\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Personalizar la barra de herramientas…\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Personnaliser la barre d'outils…\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sesuaikan Bilah Alat…\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Personalizza la barra strumenti…\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ツールバーをカスタマイズ…\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"도구 막대 사용자화…\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Įrankių juostos nustatymai…\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tilpass verktøyfeltet…\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Werkbalk aanpassen…\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tilpass verktøyfeltet…\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dostosuj pasek narzędzi…\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Personalizar barra de ferramentas…\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Personalizar Toolbar…\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Настройка Панели инструментов…\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Anpassa verktygsfältet…\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tùy chỉnh thanh công cụ\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"自定义工具栏...\"\n          }\n        }\n      }\n    },\n    \"1Xt-HY-uBw.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Rectangle\\\"; ObjectID = \\\"1Xt-HY-uBw\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"مستطيل\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        }\n      }\n    },\n    \"01Z-t3-cBm.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"If you repeat move or half actions, the window will move to the next display instead of 1/2, 2/3, and 1/3 size.\\\"; ObjectID = \\\"01Z-t3-cBm\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"إذا كررت إجراء نقل أو نصف ، فستنتقل النافذة إلى الشاشة التالية بدلاً من حجم 1/2 و 2/3 و 1/3\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Si repeteixes accions de meitat o desplaçar, la finestra es mourà a la següent pantalla en lloc d'ajustar-se a 1/2, 2/3 o 1/3 de la mida.\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Si repeteixes accions de meitat o desplaçar, la finestra es mourà a la següent pantalla en lloc d'ajustar-se a 1/2, 2/3 o 1/3 de la mida.\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Wechsle bei wiederholten Links- oder Rechts-Befehlen zum nächsten Monitor anstatt zwischen den Fenstergrößen 1/2, 2/3, und 1/3.\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"If you repeat move or half actions, the window will move to the next display instead of 1/2, 2/3, and 1/3 size.\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Si repites acciones de mitad o desplazar, la ventana se moverá a la siguiente pantalla en lugar de ajustarse a 1/2, 2/3 o 1/3 del tamaño.\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Si repites acciones de mitad o desplazar, la ventana se moverá a la siguiente pantalla en lugar de ajustarse a 1/2, 2/3 o 1/3 del tamaño.\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"En répétant une action de déplacement ou de moitié d'écran, la fenêtre sera déplacée sur le moniteur suivant au lieu d'alterner les tailles 1/2, 2/3, et 1/3.\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jika Anda mengulangi gerakan atau tindakan setengah, jendela akan berpindah ke tampilan berikutnya, bukan ukuran 1/2, 2/3, dan 1/3.\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Se ripeti lo spostamento o i mezzi spostamenti, la finestra si sposterà sullo schermo successivo invece che ridimensionarsi a 1/2, 2/3 o 1/3.\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ウインドウを移動する動作や半分のサイズに変更する動作を繰り返すと、ウインドウをサイズ変更するのではなく、次のディスプレイに移動します。\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"이동하기 또는 절반 동작을 반복하면 창이 1/2, 2/3, 혹은 1/3 크기가 되는 대신, 다음 디스플레이로 이동합니다.\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jei pakartosite judėjimo ar pusės veiksmus, langas bus perkeltas į kitą ekraną, o ne į 1/2, 2/3 ir 1/3 dydį.\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Om du gjentar flytt- eller halv-handlinger, vil vinduet flyttes til neste skjerm i stedet for 1/2-, 2/3- og 1/3-størrelser.\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dit geldt alleen voor verplaatsingen of halve acties. De helft van de acties zal geen 2/3 & 1/3 gedrag uitvoeren indien ingeschakeld.\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Om du gjentek flytt- eller halv-handlingar, vil vindauget bli flytta til neste skjerm i staden for 1/2-, 2/3- og 1/3-storleik.\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jeżeli powtórzysz akcję przenoszącą okno, bądź zmieniającą jego rozmiar, okno przeniesie się do następnego pulpitu zamiast zmniejszać się do 1/2, 2/3 bądź 1/3 swego rozmiaru.\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Repetindo os comandos de movimento e divisão, a janela será movida para a próxima tela, em vez de diminuir para 1/2, 2/3 ou 1/3 do tamanho\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Se repetir as ações de mover ou de metade, a janela passa para o ecrã seguinte, em vez de mudar de tamanho para 1/2, 2/3, and 1/3.\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"При повторе перемещения или изменения размеров до трети или половины окна оно будет перемещено на следующий экран вместо изменения размеров.\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pri opakovaní presunutia alebo skratiek pre polovice sa okno presunie na ďalší displej namiesto ½, ⅔ a ⅓ veľkosti.\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Om du upprepar drag eller halva åtgärder, kommer fönstret att flyttas till nästa skärm i stället för 1/2-, 2/3- och 1/3-storlek.\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nếu bạn lặp lại thao tác di chuyển hoặc một nửa, cửa sổ sẽ chuyển sang màn hình hiển thị tiếp theo thay vì kích thước 1/2, 2/3 và 1/3.\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"如果你重复移动或进行一半的移动操作，窗口将移动到下一个显示器，而不是 1 / 2、2 / 3 或 1 / 3 大小。\"\n          }\n        }\n      }\n    },\n    \"1zK-sf-CSX.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Version\\\"; ObjectID = \\\"1zK-sf-CSX\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Verze\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Version\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Version\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Versión\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Versión\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Version\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Version\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Versione\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"バージョン\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"버전\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Version\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Versão\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Versão\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Versiune\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Verzia\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sürüm\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Версія\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Phiên bản\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"版本\"\n          }\n        }\n      }\n    },\n    \"2h7-ER-AoG.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Raise\\\"; ObjectID = \\\"2h7-ER-AoG\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"يرفع\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Eleva\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Eleva\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Höher\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Elevación\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Elevación\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lever\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Angkat\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Alza\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"上げる\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"올리기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pakelti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Løft\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Verhogen\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Løft\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Podnieś\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Levantar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Levantar\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Поднять\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Höja\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Đưa lên\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"升高\"\n          }\n        }\n      }\n    },\n    \"2oI-Rn-ZJC.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Transformations\\\"; ObjectID = \\\"2oI-Rn-ZJC\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"التحولات\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformacions\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformacions\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformationen\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformaciones\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformaciones\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformations\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformasi\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Trasformazioni\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"変換\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"변형\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformacijos\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformasjoner\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformaties\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformasjonar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zmień\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformações\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformações\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Преобразования\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformationer\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Chuyển đổi\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"转换\"\n          }\n        }\n      }\n    },\n    \"2ue-Mv-5Wh.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"-\\\"; ObjectID = \\\"2ue-Mv-5Wh\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"-\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        }\n      }\n    },\n    \"2XJ-Ca-9di.title\" : {\n      \"comment\" : \"Class = \\\"NSButtonCell\\\"; title = \\\"Spectacle\\\"; ObjectID = \\\"2XJ-Ca-9di\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spectacle\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spectacle\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Spectacle\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spectable\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spectacle\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spectacle\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spectacle\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spectable\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spectacle\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spectacle\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spectacle \"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spectacle\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spectacle\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spectacle\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spectacle\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spectacle\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spectacle\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spectacle\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spectacle\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"放大镜\"\n          }\n        }\n      }\n    },\n    \"2Zm-fl-PcC.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Repeated commands\\\"; ObjectID = \\\"2Zm-fl-PcC\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"أوامر متكررة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ordres repetides\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ordres repetides\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Opakované příkazy\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Wiederholte Befehle\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Repeated commands\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Comandos repetidos\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Comandos repetidos\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Commandes répétées\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Perintah berulang\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Comandi ripetuti\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"コマンドを繰り返した際の挙動\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"커맨드 반복 입력시\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kartojamos komandos\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gjentatte kommandoer\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Repeated commands\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gjentekne kommandoar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Repeated commands\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Comandos repetidos\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Repeated commands\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Comenzi repetitive\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Повторяющиеся команды\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Opakované príkazy\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Upprepade kommandon\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Yinelenen komutlar\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Повторювані команди\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Khi lệnh lặp lại\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"重复命令\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"重複的指令\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"重複的指令\"\n          }\n        }\n      }\n    },\n    \"3GE-la-fAZ.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"move to adjacent on left/right, or cycle size on half\\\"; ObjectID = \\\"3GE-la-fAZ\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"الانتقال إلى الحجم المجاور على اليسار / اليمين ، أو حجم الدورة على النصف\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"mou al costat adjacent a l'esquerra/dreta, o la mida del cicle a la meitat\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"mou al costat adjacent a l'esquerra/dreta, o la mida del cicle a la meitat\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"přesune na následující levou/pravou pozici\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zum benachbarten Bildschirm auf der linken/rechten Seite bewegen oder Größe auf die Hälfte einstellen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"move to adjacent on left/right, or cycle size on half\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"mover a adyacente en izquierda/derecha, o crear bucle de tamaño en mitades\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"mover a adyacente en izquierda/derecha, o crear bucle de tamaño en mitades\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"déplacer vers adjacent gauche/droite, ou scinder en deux\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"pindah ke yang berdekatan di kiri/kanan, atau ukuran siklus di setengah\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"sposta nell'adiacente a sinistra/destra, o scorri dimensioni con azioni di mezzi\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ウインドウを左右いずれかのディスプレイに移動させるか、サイズを半分にするのを繰り返す\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"인접한 왼쪽 또는 오른쪽 디스플레이로 이동, 절반 동작시 창 크기 순환\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"pereiti prie gretimo ekrano kairėje/dešinėje arba keisti pusės dydį\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"flytt til nærmeste til venstre/høgre, eller gå gjennom størrelsene på halvdeler\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"move to adjacent on left/right, or cycle size on half\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"flytt til nærmaste til venstre/høgre, eller gå gjennom storleikane på halvdelar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"move to adjacent on left/right, or cycle size on half\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"move to adjacent on left/right, or cycle size on half\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"move to adjacent on left/right, or cycle size on half\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"mută pe partea stângă/dreaptă adiacentă, sau permută între jumătăți\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"перейти к соседнему дисплею слева/справа или переключать размер половин\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"presunúť na vedľajšiu ľavú/pravú pozíciu alebo striedať polovice\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"flytta till intilliggande till vänster/höger, eller växla storlek på hälften\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"sağa/sola taşı veya yarım boyutlarda geçiş yap\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"перемістити на сусідній лівий/правий, або циклічно змінювати розмір на половину\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Di chuyển đến cạnh trái/phải, hoặc thay đổi tuần hoàn một nửa kích thước\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左／右移动到相邻，或半屏循环大小\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左／右移至相鄰，或一半循環大小\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左／右移到相鄰，或一半循環大小\"\n          }\n        }\n      }\n    },\n    \"3hZ-Cs-EZ6.title\" : {\n      \"comment\" : \"Class = \\\"NSButtonCell\\\"; title = \\\"Disable fast dragging to Mission Control\\\"; ObjectID = \\\"3hZ-Cs-EZ6\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تعطيل السحب السريع إلى Mission Control\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Disable fast dragging to Mission Control\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Disable fast dragging to Mission Control\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Disable fast dragging to Mission Control\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Schnelles Ziehen zu Mission Control deaktivieren\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Disable fast dragging to Mission Control\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Desactivar el arrastre rápido hacia el Mission Control\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Desactivar el arrastre rápido hacia el Mission Control\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Désactiver le glissement rapide vers Mission Control\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Disable fast dragging to Mission Control\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Disattiva il trascinamento rapido in Mission Control\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mission Controlへの高速ドラッグを無効にする\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"미션 컨트롤에 빠른 드래그 비활성화\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Išjungti greitą vilkimą „Mission Control“\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Slå av «raskt drag» til Mission Control\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Disable fast dragging to Mission Control\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Slå av «raskt drag» til Mission Control\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Disable fast dragging to Mission Control\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Disable fast dragging to Mission Control\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Disable fast dragging to Mission Control\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Disable fast dragging to Mission Control\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Отключить быстрое перетаскивание в Mission Control\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vypnúť rýchle ťahanie do Mission Control\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Disable fast dragging to Mission Control\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hızlı sürükleme ile Mission Control'ün açılmasını devre dışı bırak\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Вимкнути швидке перетягування до Mission Control\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tắt cơ chế kéo nhanh trong trình Điều khiển Tác vụ (Mission Control)\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"禁用快速拖移到调度中心\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"停用快速拖移至「指揮中心」\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"停用快速拖移到「指揮中心」\"\n          }\n        }\n      }\n    },\n    \"3IN-sU-3Bg.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Spelling\\\"; ObjectID = \\\"3IN-sU-3Bg\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"الإملائية\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ortografia\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ortografia\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rechtschreibung\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ortografía\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ortografía\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Orthographe\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ejaan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ortografia\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"スペル\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"맞춤법\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rašybos tikrinimas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stavekontroll\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spelling\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stavekontroll\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pisownia\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ortografia\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ortografia\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Правописание\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stavning\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Đọc chính tả\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"拼写\"\n          }\n        }\n      }\n    },\n    \"3Om-Ey-2VK.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Use Default\\\"; ObjectID = \\\"3Om-Ey-2VK\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"استخدم الافتراضي\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ús per defecte\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ús per defecte\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Standard verwenden\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Uso Predeterminado\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Uso Predeterminado\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Utiliser la valeur par défaut\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gunakan Bawaan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usa predefinito\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"デフォルトを使用\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"기본값 사용\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Naudoti pagal nutylėjimą\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk standard\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gebruik standaard\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk standard\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Użyj domyślnych\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usar Padrão\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usar Padrão\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Использовать по умолчанию\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Använd standard\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sử dụng mặc định\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"使用默认\"\n          }\n        }\n      }\n    },\n    \"3rS-ZA-NoH.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Speech\\\"; ObjectID = \\\"3rS-ZA-NoH\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"خطاب\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Veu\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Veu\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sprachausgabe\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Voz\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Voz\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Discours\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bicara\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Voce\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"スピーチ\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"말하기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kalba\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tale\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spraak\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tale\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mowa\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Voz\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fala\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Речь\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tal\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Đọc\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"语音\"\n          }\n        }\n      }\n    },\n    \"3zd-xE-oWl.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"First Two Thirds\\\"; ObjectID = \\\"3zd-xE-oWl\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"أول ثلثين\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Primers dos terços\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Primers dos terços\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"První dvě třetiny\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zwei Drittel links\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"First Two Thirds\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Primeros dos tercios\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Primeros dos tercios\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Deux tiers du haut\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dua Pertiga Pertama\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Primi due terzi\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"2/3にして左寄せ\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"처음 2/3\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kairės dvi trečiosios\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Første to tredjedelar\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Eerste tweederde deel\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fyrste to tredjedelar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dwie trzecie z lewej\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Primeiros dois terços\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Primeiros Dois Terços\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Primele Două Treimi\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Первые две трети\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Prvé dve tretiny\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Första två tredjedelar\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"İlk iki üçte bir\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Перші дві третини\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"2/3 đầu\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左侧２／３\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左側２/３\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左側２／３\"\n          }\n        }\n      }\n    },\n    \"4EN-yA-p0u.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Find\\\"; ObjectID = \\\"4EN-yA-p0u\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"يجد\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cerca\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cerca\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hledat\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Suchen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Find\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Encontrar\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Encontrar\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rechercher\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Temukan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Trova\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"検索\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"찾기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ieškoti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Finn\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoeken\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Finn\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Znajdź\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buscar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Encontrar\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Căutare\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Найти\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nájsť\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sök\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bul\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Знайти\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tìm kiếm\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"查找\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"尋找\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"尋找\"\n          }\n        }\n      }\n    },\n    \"4J7-dP-txa.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Enter Full Screen\\\"; ObjectID = \\\"4J7-dP-txa\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"أدخل ملء الشاشة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Entrar a pantalla completa\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Entrar a pantalla completa\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spustit režim celé obrazovky\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vollbildmodus\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Enter Full Screen\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Entrar en pantalla completa\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Entrar en pantalla completa\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Passer en plein écran\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Masuk Layar Penuh\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Attiva modalità a schermo intero\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"フルスクリーンにする\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"전체 화면 시작\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Įveskite visą ekraną\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Åpne helskjerm\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ga naar volledig scherm\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Opne heilskjerm\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pełny ekran\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Entrar em tela cheia\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Entrar em ecrã completo\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Intră în Ecran Complet\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Перейти в полноэкранный режим\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zobraziť na celej obrazovky\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Öppna helskärm\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tam Ekrana Geç\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Перейти до повноекранного режиму\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Toàn màn hình\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"进入全屏幕\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"進入全螢幕\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"進入全螢幕\"\n          }\n        }\n      }\n    },\n    \"4sb-4s-VLi.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Quit Rectangle\\\"; ObjectID = \\\"4sb-4s-VLi\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"قم بإنهاء المستطيل\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sortir de Rectangle\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sortir de Rectangle\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ukončit Rectangle\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle beenden\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Quit Rectangle\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Salir de Rectangle\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Salir de Rectangle\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quitter Rectangle\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Keluar Rectangle\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Esci da Rectangle\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangleを終了\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle 종료\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Išeiti iš Rectangle\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Avslutt Rectangle\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle stoppen\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Avslutt Rectangle\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Wyjdź z Rectangle\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fechar Rectangle\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sair do Rectangle\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Închide Rectangle\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Выход из Rectangle\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ukončiť Rectangle\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Avsluta Rectangle\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle'dan Çık\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Вийти з Rectangle\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Thoát Rectangle\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"退出 Rectangle\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"結束 Rectangle\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"結束Rectangle\"\n          }\n        }\n      }\n    },\n    \"5kV-Vb-QxS.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"About Rectangle\\\"; ObjectID = \\\"5kV-Vb-QxS\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"حول المستطيل\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quant a Rectangle\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quant a Rectangle\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"O aplikaci Rectangle\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Über Rectangle\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"About Rectangle\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Acerca de Rectangle\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Acerca de Rectangle\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"À propos de Rectangle\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tentang Rectangle\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Informazioni su Rectangle\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangleについて\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle 정보\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Apie Rectangle\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Om Rectangle\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Over Rectangle\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Om Rectangle\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"O Rectangle\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sobre o Rectangle\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sobre o Rectangle\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Despre Rectangle\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"О Rectangle\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"O aplikácii Rectangle\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Om Rectangle\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle Hakkında\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Про Rectangle\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Giới thiệu Rectangle\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"关于 Rectangle\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"關於 Rectangle\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"關於Rectangle\"\n          }\n        }\n      }\n    },\n    \"5LN-YU-Bwy.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"px\\\"; ObjectID = \\\"5LN-YU-Bwy\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"px\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"px\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"px\"\n          }\n        }\n      }\n    },\n    \"5QF-Oa-p0T.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Edit\\\"; ObjectID = \\\"5QF-Oa-p0T\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"يحرر\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edita\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edita\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Upravit\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bearbeiten\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Edit\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Editar\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Editar\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Modifier\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sunting\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Modifica\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"編集\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"편집\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Redaguoti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rediger\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bewerken\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rediger\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edytuj\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Editar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Editar\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Editare\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Редактировать\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Upraviť\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Redigera\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Düzenle\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Редагувати\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Chỉnh sửa\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"编辑\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"編輯\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"編輯\"\n          }\n        }\n      }\n    },\n    \"5Vv-lz-BsD.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Copy Style\\\"; ObjectID = \\\"5Vv-lz-BsD\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"نسخ النمط\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Estil de còpia\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Estil de còpia\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stil kopieren\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Estilo de copia\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Estilo de copia\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Style de copie\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Salin Gaya\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copia stile\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"スタイルをコピー\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"스타일 복사하기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kopijavimo stilius\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kopier stil\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kopieer stijl\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kopier stil\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Styl kopiowania\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copiar estilo\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copiar Estilo\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Стиль копирования\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kopiera stil\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sao chép phong cách\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"拷贝样式\"\n          }\n        }\n      }\n    },\n    \"5WR-Ui-uYB.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"-\\\"; ObjectID = \\\"5WR-Ui-uYB\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"-\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        }\n      }\n    },\n    \"6dh-zS-Vam.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Redo\\\"; ObjectID = \\\"6dh-zS-Vam\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"إعادة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Refés\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Refés\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Znovu\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Wiederholen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Redo\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rehacer\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rehacer\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Refaire\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ulangi\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ripeti\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"やり直し\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"실행 복귀\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kartoti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gjør på nytt\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Opnieuw\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gjer på nytt\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Powtórz\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Refazer\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Refazer\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Reaplicare\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Повторить\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Znovu\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gör om\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Yinele\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Повторити\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lặp lại hoàn tác\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"重做\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"重做\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"重做\"\n          }\n        }\n      }\n    },\n    \"6DV-cd-fda.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Maximize Height\\\"; ObjectID = \\\"6DV-cd-fda\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تعظيم الارتفاع\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximitzar alçada\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximitzar alçada\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximalizovat výšku\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Höhe maximieren\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Maximize Height\"\n          }\n        },\n        \"en-GB\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximise Height\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximizar altura\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximizar altura\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximiser la hauteur\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maksimalkan Tinggi\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Massimizza altezza\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"高さを最大化\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"높이 최대화\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maksimalus aukštis\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maksimer høgda\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximaliseer hoogte\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maksimer høgda\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maksymalna wysokość\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximizar altura\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximizar Altura\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximizează Înalțimea\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Максимизировать высоту\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximalizovať výšku\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximera höjden\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Azami Yükseklik\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Максимізувати висоту\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Phóng to tối đa chiều cao\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"最大化高度\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"將高度放到最大\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"將高度放到最大\"\n          }\n        }\n      }\n    },\n    \"6e0-ji-qXw.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Todo app width\\\"; ObjectID = \\\"6e0-ji-qXw\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"عرض تطبيق Todo\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Amplada de l'aplicació Todo\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Amplada de l'aplicació Todo\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Šířka Todo aplikace\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fensterbreite der To-do-Anwendung\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Todo app width\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ancho de la aplicación 'Todo'\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ancho de la aplicación 'Todo'\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Largeur de l’application Todo\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lebar aplikasi Todo\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Larghezza applicazione in evidenza\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ToDoアプリケーションのウインドウ幅\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todo 앱 폭\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todo programos lango plotis\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gjerøliste-bredde\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todo application width\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gjereliste-breidde\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todo application width\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todo application width\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todo application width\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lățimea aplicației Todo\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ширина окна Todo приложения\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Šírka Todo aplikácie\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Att göra-applikationsbredd\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todo uygulamasının genişliği\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ширина вікна Завдань\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Chiều rộng của ứng dụng Todo\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"待办应用程序宽度\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"待辦應用程式寬度\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"待辦應用程式寬度\"\n          }\n        }\n      }\n    },\n    \"6HX-rn-VIp.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Last Fourth\\\"; ObjectID = \\\"6HX-rn-VIp\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"الرابع الأخير\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Darrer quart\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Darrer quart\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Poslední čtvrtina\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Viertes Viertel\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Last Fourth\"\n          }\n        },\n        \"en-GB\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Last Quarter\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cuarto cuarto\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cuarto cuarto\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dernier quart\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Seperempat Terakhir\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ultimo quarto\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左から4番目\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"네번째 1/4\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paskutinė ketvirtis\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Siste fjerdedel\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Laatste kwart\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Siste fjerdedel\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ostatnia ćwiartka\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Último quarto\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Último Quarto\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ultimul Sfert\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Последняя четверть\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Posledná štvrtina\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sista fjärde\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Son Çeyrek\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Останній чверть\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1/4 cuối\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右首１／４\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右首１／４\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右首１／４\"\n          }\n        }\n      }\n    },\n    \"6ma-hP-5xX.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Bottom Left\\\"; ObjectID = \\\"6ma-hP-5xX\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"أسفل اليسار\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Inferior esquerra\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Inferior esquerra\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vlevo dole\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Unten links\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Bottom Left\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Abajo a la izquierda\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Abajo a la izquierda\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"En bas à gauche\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kiri Bawah\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"In basso a sinistra\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左下\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"왼쪽 아래\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Apačioje kairėje\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nedre venstre\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Linksonder\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nedre venstre\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lewy dolny róg\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Inferior esquerdo\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Inferior Esquerda\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stânga Jos\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Внизу слева\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vľavo dole\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nedre vänstra\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sol Alt\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Нижній лівий кут\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Góc dưới bên trái\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左下\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左下\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左下\"\n          }\n        }\n      }\n    },\n    \"7YK-9Z-lzw.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Center Third\\\"; ObjectID = \\\"7YK-9Z-lzw\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"المركز الثالث\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tercer central\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tercer central\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Prostřední třetina\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mittleres Drittel\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Center Third\"\n          }\n        },\n        \"en-GB\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Centre Third\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tercio central\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tercio central\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tiers central\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tengah Ketiga\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Terzo centrale\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1/3にして中央に表示\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"가운데 1/3\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Centrinė trečioji\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tredjedel i midten\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Middelste derde\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tredjedel i midten\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jedna trzecia na środku\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Terço central\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Terço Central\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Treimea din Mijloc\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Центральная треть\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Prostredná tretina\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mitten tredje\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Orta üçte bir\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Центральна третина\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1/3 giữa\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"中间１／３\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"中央１／３\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"中央１／３\"\n          }\n        }\n      }\n    },\n    \"7yS-wj-uWD.title\" : {\n      \"comment\" : \"Class = \\\"NSButtonCell\\\"; title = \\\"Show Todo Mode in menu\\\"; ObjectID = \\\"7yS-wj-uWD\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"إظهار وضع Todo في القائمة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostra el mode Todo en el menú\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostra el mode Todo en el menú\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zobrazit Todo mód v menu\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"To-do-Modus in Menü anzeigen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Show Todo Mode in menu\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar el modo 'Todo' en el menú\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar el modo 'Todo' en el menú\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Afficher le mode Todo dans le menu\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tampilkan Mode Todo di menu\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostra modalità In evidenza nel menu\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ToDoモードをメニューに表示\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"메뉴에서 Todo 모드 보기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rodyti Todo režimą meniu\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis Gjøreliste-modus i menyen\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Todo Mode in menu\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis Gjereliste-modus i menyen\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Todo Mode in menu\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar Todo Mode no menu\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Todo Mode in menu\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Arată Modul Todo în meniu\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Показывать Todo режим в меню\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zobraziť Todo režim v menu\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Visa Att göra-läge i menyn\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Menüde Todo Modunu göster\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Показувати режим Завдань в меню\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hiển thị chế độ Todo trên menu\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"在菜单中显示待办模式\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"在選單中顯示待辦模式\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"在選單中顯示待辦模式\"\n          }\n        }\n      }\n    },\n    \"8Bg-SZ-hDO.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Center\\\"; ObjectID = \\\"8Bg-SZ-hDO\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"مركز\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Centre\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Centre\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vycentrovat\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zentrieren\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Center\"\n          }\n        },\n        \"en-GB\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Centre\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Centrar\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Centrar\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Centrer\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tengah\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Centro\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"中央に表示\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"가운데\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Į centrą\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Midten\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Centreer\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Midten\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Środek\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Centro\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Centro\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Centru\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"В центр\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vycentrovať\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mitten\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Orta\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Центр\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Căn giữa\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"中间\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"中央\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"中央\"\n          }\n        }\n      }\n    },\n    \"8dv-v2-SPu.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"3. In the Rectangle menu, enable Todo Mode.\\\"; ObjectID = \\\"8dv-v2-SPu\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"3. في قائمة Rectangle ، قم بتمكين Todo Mode\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"3. Al menú Rectangle, habilita el mode Todo.\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"3. Al menú Rectangle, habilita el mode Todo.\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"3. Zapněte Todo mód v Rectangle menu.\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"3. Aktiviere den To-do-Modus im Rectangle-Menü.\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"3. In the Rectangle menu, enable Todo Mode.\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"3. En el menú de Rectangle, activa el modo Todo.\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"3. En el menú de Rectangle, activa el modo Todo.\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"3. Dans le menu de Rectangle, activer le mode Todo.\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"3. Di Menu Rectangle, Aktifkan mode Todo.\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"3. Nel menu di Rectangle, attiva modalità In evidenza\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"3. RectangleのメニューからToDoモードを有効にします。\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"3. Rectangle 메뉴에서, Todo 모드를 켭니다\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"3. „Rectangle“ meniu įjunkite Todo režimą.\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"3. I Rectangle-menyen: aktiver Gjøreliste-modus.\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"3. In the Rectangle menu, enable Todo Mode.\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"3. I Rectangle-menyen: aktiver Gjereliste-modus.\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"3. In the Rectangle menu, enable Todo Mode.\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"3. No menu do Rectangle, habilite o Todo Mode.\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"3. In the Rectangle menu, enable Todo Mode.\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"3. Activează modul Todo în meniul Rectangle.\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"3.  В меню Rectangle включите Todo режим.\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"3. Zapni Todo režim v Rectangle menu.\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"3. I Rectangle-menyn, aktivera Att göra-läge.\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"3. Rectangle menüsünde,  Todo Modunu aktif edin.\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"3. В меню Rectangle увімкніть режим Завдань.\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"3. Trên menu của Rectangle, bật chế độ Todo.\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"⒊在 Rectangle 菜单中，启用待办模式\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"⒊ 在 Rectangle 選單中，啟用待辦模式。\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"⒊在Rectangle選單中，啟用待辦模式。\"\n          }\n        }\n      }\n    },\n    \"8mr-sm-Yjd.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Writing Direction\\\"; ObjectID = \\\"8mr-sm-Yjd\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"اتجاه الكتابة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Direcció d'escriptura\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Direcció d'escriptura\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Schreibrichtung\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dirección de escritura\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dirección de escritura\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sens d'écriture\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Arah Penulisan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Direzione di scrittura\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"文字の向き\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"작성 방향\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rašymo kryptis\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skriveretning\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Schrijfrichting\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skriveretning\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kierunek pisania\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Direção de escrita\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Direção de Escrita\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Направление записи\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skrivriktning\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"8mr-sm-Yjd.title\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"书写方向\"\n          }\n        }\n      }\n    },\n    \"8oe-J2-oUU.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Maximize\\\"; ObjectID = \\\"8oe-J2-oUU\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تحقيق أقصى قدر\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximitzar\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximitzar\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximalizovat\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximieren\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Maximize\"\n          }\n        },\n        \"en-GB\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximise\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximizar\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximizar\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximiser\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maksimalkan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Massimizza\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"最大化\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"최대화\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maksimizuoti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maksimer\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximaliseer\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maksimer\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maksymalizuj\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximizar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximizar\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximizează\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Максимизировать\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximalizovať\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximera\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tamamını kapla\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Максимізувати\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Phóng to tối đa\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"最大化\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"放到最大\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"放到最大\"\n          }\n        }\n      }\n    },\n    \"08q-Ce-1QL.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Last Two Thirds\\\"; ObjectID = \\\"08q-Ce-1QL\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"الثلثين الأخيرين\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Últims dos terços\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Últims dos terços\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Poslední dvě třetiny\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zwei Drittel rechts\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Last Two Thirds\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Últimos dos tercios\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Últimos dos tercios\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Deux tiers du bas\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dua Pertiga Terakhir\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ultimi due terzi\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"2/3にして右寄せ\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"마지막 2/3\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dešinės dvi trečiosios\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Siste to tredjedeler\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Laatste tweederde deel\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Siste to tredjedelar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dwie trzecie z prawej\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Últimos dois terços\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Últimos dois terços\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ultimele Două Treimi\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Последние две трети\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Posledné dve tretiny\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sista två tredjedelar\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Son iki üçte bir\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Останні дві третини\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"2/3 cuối\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右侧２／３\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右側2／3\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右側２／３\"\n          }\n        }\n      }\n    },\n    \"9ic-FL-obx.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Substitutions\\\"; ObjectID = \\\"9ic-FL-obx\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"البدائل\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sustitucions\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sustitucions\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ersetzungen\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sustituciones\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sustituciones\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Remplacements\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pergantian\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sostituzioni\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"自動置換\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"대체\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pakeitimai\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Erstatninger\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vervangingen\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Erstatningar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zamienniki\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substituições\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substituições\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Замены\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substitutioner\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sự thay thế\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"替换\"\n          }\n        }\n      }\n    },\n    \"9JD-tZ-7jf.title\" : {\n      \"comment\" : \"Class = \\\"NSWindow\\\"; title = \\\"Authorize Rectangle\\\"; ObjectID = \\\"9JD-tZ-7jf\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تخويل المستطيل\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autoritzar el Rectangle\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autoritzar el Rectangle\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autorizovat Rectangle\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle autorisieren\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Authorize Rectangle\"\n          }\n        },\n        \"en-GB\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Authorise Rectangle\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autorizar Rectangle\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autorizar Rectangle\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autoriser Rectangle\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Izinkan Rectangle\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autorizza Rectangle\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangleを許可\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle 승인\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Leisti Rectangle\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autoriser Rectangle\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle toestemming geven\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autoriser Rectangle\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autoryzuj Rectangle\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autorizar Rectangle\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autorizar Rectangle\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autorizează Rectangle\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Разрешить Rectangle\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Povoliť Rectangle\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Auktorisera Rectangle\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle'ı Yetkilendir\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Авторизувати Rectangle\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cấp phép cho Rectangle\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"授权 Rectangle\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"授權 Rectangle\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"授權Rectangle\"\n          }\n        }\n      }\n    },\n    \"9XM-Zb-HEb.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"If the checkbox is disabled, click the padlock and enter your password\\\"; ObjectID = \\\"9XM-Zb-HEb\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"إذا تم تعطيل مربع الاختيار ، فانقر فوق القفل وأدخل كلمة المرور الخاصة بك\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Si la casella de selecció està desactivada, feu clic al cadenat i introduïu la vostra contrasenya.\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Si la casella de selecció està desactivada, feu clic al cadenat i introduïu la vostra contrasenya.\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pokud je zaškrtávací políčko vypnuto, tak klikněte na zámek a zadejte vaše heslo\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Wenn das Kontrollkästchen deaktiviert ist, klicke auf das Vorhängeschloss und gib dein Passwort ein.\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"If the checkbox is disabled, click the padlock and enter your password\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Si la casilla de verificación está desactivada, haga clic en el candado e introduzca su contraseña.\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Si la casilla de verificación está desactivada, haga clic en el candado e introduzca su contraseña.\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Si la case est décochée, cliquez sur le cadenas et entrez votre mot de passe.\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jika kotak centang dinonaktifkan, klik gembok dan masukkan kata sandi Anda\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Se la casella di controllo è disattivata, fai clic sul lucchetto e inserisci la password\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"チェックボックスが無効になっている場合は、カギをクリックしてパスワードを入力してください\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"확인란이 비활성화되어 있으면, 자물쇠를 클릭하고 암호를 입력하세요\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jei žymėjimas yra išjungtas, spustelėkite užraktą ir įveskite savo slaptažodį\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Om avkryssingsboksen er inaktiv, klikker du på hengelåsen og skriver inn passordet ditt.\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Als het selectievakje is uitgeschakeld, klik dan op het hangslot en voer uw wachtwoord in.\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Om avkryssingsboksen er inaktiv, klikkar du på hengelåsen og skriv inn passordet ditt.\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jeśli pole wyboru nie jest zaznaczone, kliknij kłódkę i wpisz hasło.\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Se a seleção estiver desativada, clique no cadeado e insira sua senha\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Se a caixa de verificação estiver desactivada, clique no cadeado e introduza a sua palavra-passe\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dacă checkbox-ul este dezactivat, apăsați pe lacăt și introduceți parola\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Если флажок отключен, щелкните на замок и введите свой пароль\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ak je zaškrtávacie políčko vypnuté, klikni na zámok a zadaj svoje heslo\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Om kryssrutan är inaktiverad klickar du på hänglåset och anger ditt lösenord.\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Eğer işaret kutusu devre dışı ise, kilit simgesine tıklayıp şifrenizi girin\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Якщо галочка вимкнена, натисніть на замок і введіть пароль\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nếu hộp kiểm bị tắt, hãy nhấp vào ổ khóa và nhập mật khẩu của bạn\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"如果复选框已禁用，点按锁型图标，然后输入您的密码\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"如果註記框已停用，按一下鎖頭圖示，然後輸入您的密碼\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"如果剔選框已停用，按一下掛鎖圖像，然後輸入你的密碼\"\n          }\n        }\n      }\n    },\n    \"9yt-4B-nSM.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Smart Copy/Paste\\\"; ObjectID = \\\"9yt-4B-nSM\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"نسخ / لصق ذكي\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copia/enganxa intel·ligent\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copia/enganxa intel·ligent\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Intelligentes Kopieren/Einfügen\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copiar y pegar de forma inteligente\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copiar y pegar de forma inteligente\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copier/coller intelligent\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Salin/Tempel Pintar\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copia/incolla intelligente\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"スマートコピー/ペースト\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"스마트 복사하기/붙여넣기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Protingas kopijavimas/įterpimas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart kopier/lim inn\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Slim kopiëren/plakken\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart kopier/lim inn\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Inteligentne kopiowanie/wklejanie\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copiar/Colar Inteligente\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copiar/Colar Inteligente\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Умное копирование/вставка\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart kopiera/klistra in\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sao chép/Dán thông minh\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"智能拷贝/粘贴\"\n          }\n        }\n      }\n    },\n    \"46P-cB-AYj.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Tighten\\\"; ObjectID = \\\"46P-cB-AYj\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"شد\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Estirar\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Estirar\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Enger\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ajustar\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ajustar\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Reserrer\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kencangkan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stringi\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"きつく\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"좁게\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tempkite\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stram inn\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Aanhalen\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stram inn\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ściśnij\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Apertar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Apertar\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Затяните\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dra åt\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Siết chặt\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"紧排\"\n          }\n        }\n      }\n    },\n    \"74m-kw-w1f.title\" : {\n      \"comment\" : \"Class = \\\"NSButtonCell\\\"; title = \\\"Check for Updates…\\\"; ObjectID = \\\"74m-kw-w1f\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zkontrolovat aktualizace…\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nach Updates suchen…\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Check for Updates…\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buscar actualizaciones…\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buscar actualizaciones…\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mettre à jour…\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Periksa Pembaruan…\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Controlla aggiornamenti…\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"アップデートを確認…\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"업데이트 확인…\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tikrinti atnaujinimus…\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Se etter oppdateringer…\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kijk of er updates zijn…\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sjå etter oppdateringar…\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sprawdź aktualizacje…\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Procurar por atualizações...\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Verifique se há atualizações…\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Verificare Actualizări…\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Проверить обновления…\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skontrolovať aktualizácie…\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sök efter uppdateringar…\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Güncellemeleri kontrol et…\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Перевірити оновлення…\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kiểm tra các bản cập nhật…\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"检查更新…\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"檢查更新項目⋯\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"檢查更新項目⋯\"\n          }\n        }\n      }\n    },\n    \"78Y-hA-62v.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Correct Spelling Automatically\\\"; ObjectID = \\\"78Y-hA-62v\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"التصحيح الإملائي تلقائيًا\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Corregir l'ortografia automàticament\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Corregir l'ortografia automàticament\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rechtschreibung automatisch korrigieren\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Corrección ortográfica automática\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Corrección ortográfica automática\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Corriger l'orthographe automatiquement\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Benarkan Ejaan Secara Otomatis\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Correggi automaticamente ortografia\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"スペルを自動的に修正\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"맞춤법 자동 수정\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Automatiškai taisyti rašybą\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Automatisk stavekontrollretting\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Corrigeer spelling automatisch\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Automatisk stavekontrollretting\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Popraw pisownię automatycznie\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Correção ortográfica automática\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Correção ortográfica automátic\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Автоматически исправлять орфографию\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Automatiskt rättstavning\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tự động sửa lỗi chính tả\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"自动纠正拼写\"\n          }\n        }\n      }\n    },\n    \"A66-A4-cGD.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Quit Rectangle\\\"; ObjectID = \\\"A66-A4-cGD\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"قم بإنهاء المستطيل\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sortir de Rectangle\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sortir de Rectangle\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ukončit Rectangle\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle beenden\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Quit Rectangle\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Salir de Rectangle\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Salir de Rectangle\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quitter Rectangle\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Keluar Rectangle\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Esci da Rectangle\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangleを終了\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle 종료\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Išeiti iš Rectangle\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Avslutt Rectangle\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle stoppen\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Avslutt Rectangle\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Wyjdź z Rectangle\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fechar Rectangle\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sair do Rectangle\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Închide Rectangle\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Выход из Rectangle\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ukončiť Rectangle\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Avsluta Rectangle\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle'dan Çık\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Вийти з Rectangle\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Thoát Rectangle\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"退出 Rectangle\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"結束 Rectangle\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"結束Rectangle\"\n          }\n        }\n      }\n    },\n    \"adp-cN-qkh.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Top Left\\\"; ObjectID = \\\"adp-cN-qkh\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"أعلى اليسار\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Superior esquerra\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Superior esquerra\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vlevo nahoře\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Oben links\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Top Left\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Arriba a la izquierda\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Arriba a la izquierda\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"En haut à gauche\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kiri Atas\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"In alto a sinistra\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左上\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"왼쪽 위\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kairėje viršuje\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Øvre venstre\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Linksboven\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Øvre venstre\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lewy górny róg\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Topo esquerdo\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Topo Esquerdo\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stânga Sus\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Слева вверху\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vľavo hore\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Övre vänstra\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sol Üst\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Верхній лівий кут\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Góc trên bên trái\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左上\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左上\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左上\"\n          }\n        }\n      }\n    },\n    \"AEr-NX-9wW.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"190 px\\\"; ObjectID = \\\"AEr-NX-9wW\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"190 px\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"190 px\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"190 px\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"190 px\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"190 px\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"190 px\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"190 px\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"190 px\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"190 px\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"190 px\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"190 px\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"190 px\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"190 px\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"190 px\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"190 px\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"190 px\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"190 px\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"190 px\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"190 px\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"190 px\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"190 px\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"190 пкс\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"190 px\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"190 px\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"190 px\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"190 px\"\n          }\n        }\n      }\n    },\n    \"agt-UL-0e3.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Use Default\\\"; ObjectID = \\\"agt-UL-0e3\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"استخدم الافتراضي\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ús per defecte\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ús per defecte\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Standard verwenden\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Uso predeterminado\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Uso predeterminado\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Utiliser la valeur par défaut\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gunakan Bawaan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usa predefinito\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"デフォルトを使用\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"기본값 사용\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Naudoti pagal nutylėjimą\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk standard\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gebruik standaard\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk standard\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Użyj domyślnych\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usar Padrão\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usar Padrão\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Использовать по умолчанию\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Använd standard\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sử dụng mặc định\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"使用默认\"\n          }\n        }\n      }\n    },\n    \"AgV-lP-6XB.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"%\\\"; ObjectID = \\\"AgV-lP-6XB\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"%\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"%\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"%\"\n          }\n        }\n      }\n    },\n    \"aTl-1u-JFS.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Print…\\\"; ObjectID = \\\"aTl-1u-JFS\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"مطبعة…\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Imprimeix…\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Imprimeix…\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Drucken…\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Imprimir…\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Imprimir…\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Imprimer…\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cetak…\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stampa…\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"プリント…\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"프린트…\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spausdinti…\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skriv ut…\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Afdrukken…\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skriv ut…\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Drukuj…\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Imprimir…\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Imprimir…\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Печать…\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skriv ut…\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"In…\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"打印…\"\n          }\n        }\n      }\n    },\n    \"aUF-d1-5bR.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Window\\\"; ObjectID = \\\"aUF-d1-5bR\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"نافذة او شباك\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Finestra\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Finestra\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Okno\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fenster\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Window\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ventana\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ventana\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fenêtre\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jendela\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Finestra\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ウインドウ\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"창\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Langas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vindu\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Venster\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vindauge\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Okno\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Janela\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Janela\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fereastră\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Окно\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Okno\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fönster\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pencere\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Вікно\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cửa sổ\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"窗口\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"視窗\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"視窗\"\n          }\n        }\n      }\n    },\n    \"aXa-aM-Jaq.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Font\\\"; ObjectID = \\\"aXa-aM-Jaq\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"الخط\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tipus de lletra\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tipus de lletra\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Schrift\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tipo de letra\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tipo de letra\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Police\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jenis Huruf\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Carattere\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"フォント\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"서체\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Šriftas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lettertype\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Czcionka\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fonte\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tipo de letra\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Шрифт\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Typsnitt\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Phông\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"字体\"\n          }\n        }\n      }\n    },\n    \"AYu-sK-qS6.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Main Menu\\\"; ObjectID = \\\"AYu-sK-qS6\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"القائمة الرئيسية\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Menú principal\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Menú principal\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hlavní menu\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hauptmenü\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Main Menu\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Menú principal\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Menú principal\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Menu principal\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Menu Utama\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Menu principale\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"メインメニュー\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"메인 메뉴\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pagrindinis meniu\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hovedmeny\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hoofdmenu\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hovudmeny\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Menu główne\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Menu Principal\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Menu principal\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Meniu Principal\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Главное меню\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hlavné menu\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Huvudmeny\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ana Menü\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Головне меню\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Menu chính\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"主菜单\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"主選單\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"主選單\"\n          }\n        }\n      }\n    },\n    \"ayu-YO-10p.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Stage Manager recent apps area\\\"; ObjectID = \\\"ayu-YO-10p\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"منطقة تطبيقات مدير المرحلة الأخيرة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Àrea d'aplicacions recents de Stage Manager\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Àrea d'aplicacions recents de Stage Manager\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stage Manager oblast posledních aplikací\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stage Manager Bereich für zuletzt verwendete Programme\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Stage Manager recent apps area\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"área para aplicaciones recientes en el State Manager\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"área para aplicaciones recientes en el State Manager\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zone des applications récentes de Stage Manager\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stage Manager recent apps area\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Area app recenti in Stage Manager\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ステージマネージャの最近使ったアプリケーションエリア\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"스테이지 매니저 최근 앱 영역\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Scenos valdytojas paskutinių programų sritys\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Område for siste brukte i Stage Manager\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stage Manager recent apps area\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Område for siste brukte i Stage Manager\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stage Manager recent apps area\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stage Manager recent apps area\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stage Manager recent apps area\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stage Manager recent apps area\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stage Manager область последних приложений\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stage Manager oblasť posledných aplikácií\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stage Manager recent apps area\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stage Manager son uygulamalar alanı\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Область недавніх застосунків Stage Manager\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vùng hiển thị ứng dụng hiện tại của Stage Manager\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"“台前调度”最近使用的应用程序区域\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"「幕前調度」最近使用過的應用程式區域\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"「幕前管理」最近使用過的應用程式區域\"\n          }\n        }\n      }\n    },\n    \"bg9-nw-YvU.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Gaps between windows\\\"; ObjectID = \\\"bg9-nw-YvU\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"فجوات بين النوافذ\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Espai entre finestres\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Espai entre finestres\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mezery mezi okny\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Abstände zwischen Fenstern\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Gaps between windows\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Espacio entre ventanas\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Espacio entre ventanas\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Écart entre fenêtres\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jarak Antar Jendela\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spazio tra le finestre\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ウインドウの間隔\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"창 사이 간격\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tarpai tarp langų\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mellomrom mellom vinduene\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gaps between windows\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mellomrom mellom vindaugo\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Przestrzeń między oknami\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Espaço entre janelas\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Espaços entre janelas\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Goluri între ferestre\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Промежутки между окнами\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Medzery medzi oknami\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mellanrum mellan fönsterna\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pencereler arası boşluk\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Відступи між вікнами\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Khoảng cách giữa các cửa sổ\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"窗口间空隙\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"視窗間空隙\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"視窗間空隙\"\n          }\n        }\n      }\n    },\n    \"BgM-ve-c93.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"\\\\tLeft to Right\\\"; ObjectID = \\\"BgM-ve-c93\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \" t من اليسار إلى اليمين\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tEsquerra a dreta\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tEsquerra a dreta\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tVon links nach rechts\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tIzquierda a derecha\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tIzquierda a derecha\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDe gauche à droite\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tKiri ke Kanan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDa sinistra a destra\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\t左から右\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\t좌에서 우로\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tIš kairės į dešinę\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tVenstre til høgre\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tVan links naar rechts\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tVenstre til høgre\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tOd lewej do prawej\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDa esquerda para a direita\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDa esquerda para a direita\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tСлева направо\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tVänster till höger\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Trái sang phải\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\\\tLeft to Right\"\n          }\n        }\n      }\n    },\n    \"bgn-CT-cEk.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Show Colors\\\"; ObjectID = \\\"bgn-CT-cEk\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"إظهار الألوان\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostra colors\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostra colors\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Farben einblenden\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar colores\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar colores\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Afficher les couleurs\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tampilkan Warna\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostra colori\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"カラーパネルを表示\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"색상 보기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rodyti spalvas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis farger\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Toon kleuren\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis fargar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pokaż kolory\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar Cores\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar Cores\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Показать цвета\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Visa färger\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hiện màu\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"显示颜色\"\n          }\n        }\n      }\n    },\n    \"bib-Uj-vzu.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"File\\\"; ObjectID = \\\"bib-Uj-vzu\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ملف\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fitxer\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fitxer\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Soubor\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Datei\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"File\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Archivo\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Archivo\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fichier\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Berkas\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"File\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ファイル\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"파일\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Failas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Arkiv\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bestand\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Arkiv\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Plik\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Arquivo\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ficheiro\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fișier\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Файл\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Súbor\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Arkiv\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"File\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Файл\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tệp\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"文件\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"檔案\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"檔案\"\n          }\n        }\n      }\n    },\n    \"BOF-NM-1cW.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Preferences…\\\"; ObjectID = \\\"BOF-NM-1cW\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"التفضيلات ...\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Preferències…\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Preferències…\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Předvolby…\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Einstellungen…\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Preferences…\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Preferencias…\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Preferencias…\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Préférences…\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Preferensi…\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Preferenze…\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"環境設定…\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"환경설정…\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nustatymai\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Innstillinger…\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Voorkeuren…\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Innstillingar…\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Preferencje…\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Preferências…\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Preferências…\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Preferințe…\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Настройки…\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Predvoľby…\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Inställningar…\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tercihler…\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Налаштування…\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cài đặt…\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"偏好设置…\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"偏好設定⋯\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"偏好設定⋯\"\n          }\n        }\n      }\n    },\n    \"Bottom Center Left Eighth\" : {\n\n    },\n    \"Bottom Center Right Eighth\" : {\n\n    },\n    \"Bottom eighths from corners; thirds\" : {\n\n    },\n    \"Bottom Left Eighth\" : {\n\n    },\n    \"Bottom Right Eighth\" : {\n\n    },\n    \"Bottom sixths from corners; thirds\" : {\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sixièmes bas à partir des coins ; tiers\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bottom sixths from corners; thirds\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bottom sixths from corners; thirds\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spodní šestiny z rohů; třetiny\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Untere Sechstel beim Ziehen aus den Ecken; Drittel\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sextos inferiores de las esquinas; tercios\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sextos inferiores de las esquinas; tercios\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sixièmes bas à partir des coins ; tiers\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bottom sixths from corners; thirds\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sesti inferiori dagli angoli; terzi\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \" 3分割（画面端にドラッグで下側6分割）\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"아래쪽 1/6, 모서리에서 3등분\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Apatinės šeštosios nuo kampų; trečdalys\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nederste sjettedel fra hjørne; tredjedeler\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bottom sixths from corners; thirds\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nedste sjettedel frå hjørne; tredjedelar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bottom sixths from corners; thirds\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bottom sixths from corners; thirds\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bottom sixths from corners; thirds\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bottom sixths from corners; thirds\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Нижние шестые от углов; трети\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spodné šestiny z rohov; tretiny\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bottom sixths from corners; thirds\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Üçte bir (köşelere yaklaşıldığında ise altıda bir)\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Нижні шості від кутів; третини\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1/6 phía dưới ngay góc; 1/3\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"自角落则底部⅙；⅓\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"自角落則底部⅙；⅓\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"自角落則底部⅙；⅓\"\n          }\n        }\n      }\n    },\n    \"Bottom Third\" : {\n\n    },\n    \"Bottom Two Thirds\" : {\n\n    },\n    \"bRX-dV-iAR.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Center Half\\\"; ObjectID = \\\"bRX-dV-iAR\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"نصف المركز\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Meitat central\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Meitat central\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vycentrovat polovinu\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mittlere Hälfte\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Center Half\"\n          }\n        },\n        \"en-GB\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Centre Half\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mitad central\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mitad central\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Moitié centrale\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Separuh Tengah\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Metà centrale\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"半分にして中央に表示\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"가운데 절반\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Centrinė pusė\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Midtre halvdel\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Middelste helft\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Midtre halvdel\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Połowa na środku\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Metade central\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Metade Central\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jumătatea Centrală\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Центральная половина\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vycentrovať polovicu\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mitthalvan\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Orta Yarım\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Центральна половина\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1/2 giữa\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"中间半屏\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"中半\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"中半\"\n          }\n        }\n      }\n    },\n    \"buJ-ug-pKt.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Use Selection for Find\\\"; ObjectID = \\\"buJ-ug-pKt\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"استخدم التحديد للبحث\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Utilitzeu la selecció per a la cerca\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Utilitzeu la selecció per a la cerca\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hledat výběr\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Auswahl für Suche übernehmen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Use Selection for Find\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usar la selección para buscar\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usar la selección para buscar\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Utiliser la sélection pour la recherche\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gunakan Pilihan untuk Temukan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usa selezione per trovare\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"選択部分を検索に使用\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"선택 부분으로 찾기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Naudoti pasirinktą paieškai\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk markert tekst for å finne\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gebruik selectie voor zoeken\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk markert tekst for å finna\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Użyj wyboru, aby znaleźć\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usar seleção para buscar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usar seleção para procurar\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Folosește Selecția pentru Căutare\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Использовать выбранное для поиска\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Použiť výber pri hľadaní\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Använd markerad för att söka\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Selection for Find\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Використовувати виділення для пошуку\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dùng lựa chọn để tìm kiếm\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"查找所选内容\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"使用所選範圍尋找\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"使用所選範圍尋找\"\n          }\n        }\n      }\n    },\n    \"Bw7-FT-i3A.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Save As…\\\"; ObjectID = \\\"Bw7-FT-i3A\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"حفظ باسم ...\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Anomena i desa…\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Anomena i desa…\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Speichern unter…\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Guardar como…\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Guardar como…\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Enregistrer sous…\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Simpan Sebagai…\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Salva con nome…\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"名前を付けて保存…\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"다른 이름으로 저장…\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Išsaugoti kaip…\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lagre som…\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Opslaan als…\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lagre som…\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zapisz jako…\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Salvar como…\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Guardar como…\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Сохранить как…\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spara som…\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lưu dưới dạng…\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"存储为…\"\n          }\n        }\n      }\n    },\n    \"c8a-y6-VQd.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Transformations\\\"; ObjectID = \\\"c8a-y6-VQd\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"التحولات\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformacions\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformacions\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformationen\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformaciones\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformaciones\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformations\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformasi\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Trasformazioni\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"変換\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"변형\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformacijos\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Endre bokstavtype\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformaties\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Endra bokstavtype\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Przekształcenia\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformações\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformações\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Преобразования\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformationer\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Chuyển đổi\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"转换\"\n          }\n        }\n      }\n    },\n    \"C9v-g0-DH8.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Restore\\\"; ObjectID = \\\"C9v-g0-DH8\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"يعيد\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Restaura\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Restaura\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Obnovit\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Wiederherstellen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Restore\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Restaurar\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Restaurar\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Restaurer\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pulihkan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ripristina\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"元に戻す\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"복원\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Atkurti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tilbakestill\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Herstel\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tilbakestill\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Przywróć\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Restaurar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Restaurar\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Restabilire\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Восстановить\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Obnoviť\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Återställ\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Önceki Boyuta Getir\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Відновити\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Khôi phục\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"恢复\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"復原\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"回復\"\n          }\n        }\n      }\n    },\n    \"Cancel\" : {\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Annuler\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cancel·la\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cancel·la\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Abbrechen\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cancelar\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cancelar\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Annuler\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Batal\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Annulla\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"キャンセル\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"취소\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Atšaukti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Avbryt\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cancel\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Avbryt\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cancel\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cancelar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cancel\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Отмена\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zrušiť\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Avbryt\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Скасувати\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Huỷ\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"取消\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"取消\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"取消\"\n          }\n        }\n      }\n    },\n    \"cBj-76-2E7.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Not Authorized to Control Your Computer\\\"; ObjectID = \\\"cBj-76-2E7\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"غير مصرح له بالتحكم في جهاز الكمبيوتر الخاص بك\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"No està autoritzat per controlar el vostre ordinador\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"No està autoritzat per controlar el vostre ordinador\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ovládání počítače neautorizováno\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nicht berechtigt, Deinen Computer zu steuern\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Not Authorized to Control Your Computer\"\n          }\n        },\n        \"en-GB\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Not Authorised to Control Your Computer\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"No está autorizado para controlar su computadora\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"No está autorizado para controlar su computadora\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Non autorisé à contrôler votre ordinateur\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tidak Berwenang untuk Mengontrol Komputer Anda\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Non autorizzato a controllare il tuo computer\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"コンピューターを制御する権限がありません\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"컴퓨터를 제어할 권한이 없습니다\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Neautorizuotas kompiuterio valdymui\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ikke løyve til å styre datamaskina di\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Niet bevoegd om uw computer te besturen\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ikkje løyve til å styra datamaskina di\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Brak autoryzacji do kontroli komputera\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Não autorizado para controlar seu computador\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Não autorizado a controlar o seu computador\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Neautorizat pentru a Controla Dispozitivul Tău\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Не авторизован для управления компьютером\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nemá oprávnenie ovládať tvoj počítač\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Inte behörig att styra din dator\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bilgisayarınızı kontrol etme yetkisi yok\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Не авторизовано для керування вашим комп’ютером\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Không đủ quyền để diều khiển máy tính của bạn\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"未获授权控制您的电脑\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"未被授權來控制您的電腦\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"未被授權來控制你的電腦\"\n          }\n        }\n      }\n    },\n    \"cDB-IK-hbR.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Use None\\\"; ObjectID = \\\"cDB-IK-hbR\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"استخدام لا شيء\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Utilitzar cap\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Utilitzar cap\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Keine verwenden\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usar ninguno\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usar ninguno\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ne rien utiliser\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tidak Gunakan Apapun\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Non usare\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"使用しない\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"사용하지 않음\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nenaudoti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk ingen\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gebruik geen\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk ingen\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nie używaj żadnego\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usar nenhum\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nenhum\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Не использовать\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Använd ingen\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Không sử dụng\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"都不使用\"\n          }\n        }\n      }\n    },\n    \"Conflict with macOS tiling\" : {\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Konflikt mit macOS Fenstermanagement\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"macOS のタイル表示機能との競合\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"macOS 타일 정리 기능과 충돌\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Konflikt s umiestnením dlaždíc v macOS\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Xung đột với ô xếp macOS\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"与 macOS 窗口平铺功能冲突\"\n          }\n        }\n      }\n    },\n    \"Conflict with system setting\" : {\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Conflit avec le paramètre système\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Conflict with system setting\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Conflict with system setting\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Conflict with system setting\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Konflikt mit Systemeinstellung\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Conflicto con los ajustes del sistema\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Conflicto con los ajustes del sistema\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Conflit avec le paramètre système\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Conflict with system setting\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Conflitto con Impostazioni di Sistema\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"システム設定との競合\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"시스템 설정과 충돌\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Konfliktas su sistemos nustatymu\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Konflikt med systeminnstillingene\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Conflict with system setting\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Konflikt med systeminnstillingane\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Conflict with system setting\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Conflito com as configurações do sistema\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Conflict with system setting\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Conflict with system setting\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Конфликт с системными настройками\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Konflikt so systémovým nastavením\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Conflict with system setting\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sistem ayarlarıyla çakışma\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Conflict with system setting\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Xung đội với cài đặt hệ thống\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"与系统设置冲突\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"與系統設定衝突\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Conflict with system setting\"\n          }\n        }\n      }\n    },\n    \"Corners\" : {\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Coins\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Racons\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Racons\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rohy\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ecken\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Esquinas\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Esquinas\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Coins\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sudur\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Angoli\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"画面端\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"모서리\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kampai\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hjørne\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Corners\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hjørne\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Narożniki\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cantos\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cantos\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Углы\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rohy\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hörn\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Köşeler\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Кути\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Các góc\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"角落\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"角落\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"角落\"\n          }\n        }\n      }\n    },\n    \"cqv-fj-IhA.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Selection\\\"; ObjectID = \\\"cqv-fj-IhA\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"اختيار\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Selecció\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Selecció\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Auswahl\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Selección\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Selección\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sélection\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pilihan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Selezione\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"選択\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"선택 부분\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pasirinkimas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Utvalg\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Selectie\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Utval\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Wybór\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Seleção\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Seleção\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Выбор\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Markerade\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lựa chọn\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"所选内容\"\n          }\n        }\n      }\n    },\n    \"cRm-wn-Yv6.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Last Third\\\"; ObjectID = \\\"cRm-wn-Yv6\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"الثلث الأخير\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Últim terç\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Últim terç\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Poslední třetina\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Letztes Drittel\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Last Third\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Último tercio\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Último tercio\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tiers du bas\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sepertiga Terakhir\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ultimo terzo\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1/3にして右寄せ\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"마지막 1/3\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paskutinis trečdalis\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Siste tredjedel\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Laatste derde\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Siste tredjedel\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jedna trzecia z prawej\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Último terço\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Último Terço\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ultima Treime\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Последняя треть\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Posledná tretina\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sista tredje\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Son üçte bir\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Остання третина\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1/3 cuối\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右首１／３\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右首１／３\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右１／３\"\n          }\n        }\n      }\n    },\n    \"CUR-SD-CEL.title\" : {\n      \"comment\" : \"Class = \\\"NSButtonCell\\\"; title = \\\"Use cursor position for screen detection\\\"; ObjectID = \\\"CUR-SD-CEL\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Use cursor position for screen detection\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sử dụng vị trí con trỏ để nhận diện màn hình\"\n          }\n        }\n      }\n    },\n    \"Currently using: \" : {\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Configuration actuelle : \"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"S'utilitza actualment: \"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"S'utilitza actualment: \"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Aktuell verwendet: \"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usando actualmente: \"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usando actualmente: \"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Configuration actuelle : \"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Currently using: \"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Attualmente in uso: \"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"現在の設定: \"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"현재 사용 중인 단축키: \"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dabar naudojama: \"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruker nå: \"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Currently using: \"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruker no: \"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Currently using: \"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usando atualmente:\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Currently using: \"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Сейчас используется: \"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Momentálne používané:\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Använder för närvarande: \"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Використовується: \"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hiện đang sử dụng:\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"当前使用中：\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"目前正在使用：\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"目前正在使用：\"\n          }\n        }\n      }\n    },\n    \"cwL-P1-jid.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Smart Links\\\"; ObjectID = \\\"cwL-P1-jid\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"روابط ذكية\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Enllaços intel·ligents\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Enllaços intel·ligents\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Intelligente Web- und E-Mail-Links\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Enlaces inteligentes\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Enlaces inteligentes\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Liens intelligents\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tautan Pintar\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Link intelligenti\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"スマートリンク\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"스마트 링크\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Intelektualios nuorodos\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smarte lenker\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Slimme links\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smarte lenkar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Inteligentne łącza\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Links Inteligentes\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Links Inteligentes\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Интеллектуальные ссылки\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smarta länkar\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Liên kết thông minh\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"智能链接\"\n          }\n        }\n      }\n    },\n    \"d7y-s8-7GE.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Top Half\\\"; ObjectID = \\\"d7y-s8-7GE\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"النصف العلوي\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Meitat superior\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Meitat superior\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Horní polovina\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Obere Hälfte\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Top Half\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mitad superior\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mitad superior\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Moitié du haut\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Setengah Atas\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Metà superiore\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"上半分\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"위쪽 절반\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Viršutinė pusė\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Øverste halvdel\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bovenste helft\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Øvste halvdel\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Górna połowa\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Metade superior\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Metade superior\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jumătatea de Sus\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Верхняя половина\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Horná polovica\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Övre halvan\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Üst Yarım\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Верхня половина\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nửa trên\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"上半屏\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"上半\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"上半\"\n          }\n        }\n      }\n    },\n    \"d9c-me-L2H.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Text\\\"; ObjectID = \\\"d9c-me-L2H\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"نص\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Texto\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Texto\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Texte\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Teks\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Testo\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"テキスト\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"텍스트\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tekstas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tekst\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tekst\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tekst\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tekst\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Texto\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Texto\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Текст\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Chữ\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"文本\"\n          }\n        }\n      }\n    },\n    \"d9M-CD-aMd.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Make Lower Case\\\"; ObjectID = \\\"d9M-CD-aMd\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"جعل الأحرف الصغيرة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Converteix a minúscules\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Converteix a minúscules\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kleinschreiben\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Convertir a minúsculas\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Convertir a minúsculas\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Passer en minuscules\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buat Huruf Kecil\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rendi minuscolo\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"小文字にする\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"소문자로 만들기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vesti į mažąjį registrą\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk små bokstaver\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maak kleine letters\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk små bokstavar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zmień na małe litery\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Converter em Minúsculas\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minúsculas\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Привести к нижнему регистру\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ändra till gemener\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Viết chữ thường\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"变为小写\"\n          }\n        }\n      }\n    },\n    \"D99-0O-MB6.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Ignore frontmost.app\\\"; ObjectID = \\\"D99-0O-MB6\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تجاهل frontmost.app\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ignora frontmost.app\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ignora frontmost.app\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ignorovat frontmost.app\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"frontmost.app ignorieren\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Ignore frontmost.app\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ignorar frontmost.app\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ignorar frontmost.app\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ignorer frontmost.app\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Abaikan frontmost.app\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ignora frontmost.app\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"frontmost.appを無視\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"frontmost.app 무시\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ignoruoti frontmost.app\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ignorer frontmost.app\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Negeer frontmost.app\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ignorer frontmost.app\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ignoruj frontmost.app\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ignorar frontmost.app\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ignorar frontmost.app\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ignoră frontmost.app\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Игнорировать frontmost.app\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ignorovať frontmost.app\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ignorera frontmost.app\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"frontmost.app uygulamasını yoksay\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ігнорувати frontmost.app\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bỏ qua frontmost.app\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"忽略 frontmost.app\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"忽略 frontmost.app\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"忽略frontmost.app\"\n          }\n        }\n      }\n    },\n    \"Default Shortcuts\" : {\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Raccourcis par défaut\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dreceres predeterminades\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dreceres predeterminades\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Standard-Tastaturkurzbefehle\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Atajos por defecto\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Atajos por defecto\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Raccourcis par défaut\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pintasan Bawaan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Abbreviazioni predefinite\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"デフォルトのショートカット\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"기본 단축키 선택\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Numatytieji karštieji klavišai\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Standardsnarvegar\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Default Shortcuts\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Standardsnarvegar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Default Shortcuts\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Atalhos padrões\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Default Shortcuts\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Горячие клавиши по-умолчанию\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Predvolené skratky\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Standardgenvägar\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Типові комбінації клавіш\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Shortcut mặc định\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"默认快捷键\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"預設快速鍵\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"預設快捷鍵\"\n          }\n        }\n      }\n    },\n    \"DG2-BN-GPE.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Right\\\"; ObjectID = \\\"DG2-BN-GPE\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"يمين\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Right\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Right\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Right\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rechts\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Right\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Derecha\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Derecha\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Droit\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Right\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Destra\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"오른쪽\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dešinė\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Høgre\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Right\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Høgre\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Right\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Direita\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Right\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Right\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Справа\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vpravo\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Right\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sağ\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Правий\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Phải\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右侧\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右側\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Right\"\n          }\n        }\n      }\n    },\n    \"DHt-cE-Bl0.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Toggle Todo\\\"; ObjectID = \\\"DHt-cE-Bl0\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تبديل Todo\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Toggle Todo\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Toggle Todo\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Toggle Todo\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"To-do-Modus aktivieren\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Toggle Todo\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Alternar modo 'Todo'\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Alternar modo 'Todo'\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Activer/Désactiver Todo\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Toggle Todo\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Attiva/disattiva In evidenza\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todoモードの切り替え\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todo 켜기/끄기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Perjungti Todo\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Slå av/på Gjøreliste\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Toggle Todo\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Slå av/på Gjereliste\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Toggle Todo\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Toggle Todo\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Toggle Todo\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Toggle Todo\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Включить режим Todo приложения\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Prepnúť Todo\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Toggle Todo\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todo'yu etkinleştir\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Перемкнути Завдання\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bật/tắt Todo\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"启用/禁用待办模式\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"切換待辦模式\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Toggle Todo\"\n          }\n        }\n      }\n    },\n    \"Disable in macOS\" : {\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"In Systemeinstellungen deaktivieren\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"macOS 側を無効化\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"macOS의 기능 끄기\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vypnúť v macOS\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vô hiệu hóa trong macOS\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"在 macOS 里禁用\"\n          }\n        }\n      }\n    },\n    \"Disable in Rectangle\" : {\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"In Rectangle deaktivieren\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle 側を無効化\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle의 기능 끄기\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vypnúť v Rectangle\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vô hiệu hóa trong Rectangle\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"在 Rectangle 里禁用\"\n          }\n        }\n      }\n    },\n    \"Dismiss\" : {\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Abbrechen\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"無視\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"무시\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zatvoriť\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Huỷ\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"忽略\"\n          }\n        }\n      }\n    },\n    \"Display\" : {\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Moniteur\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pantalla\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pantalla\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Displej\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bildschirm\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pantalla\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pantalla\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Moniteur\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tampilan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Schermo\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ディスプレイ\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"디스플레이\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ekranas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skjerm\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Display\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skjerm\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ekran\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tela\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ecrã\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Дисплей\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Displej\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skärm\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ekran\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Дисплей\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hiển thị\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"显示器\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"顯示器\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"顯示器\"\n          }\n        }\n      }\n    },\n    \"dMs-cI-mzQ.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"File\\\"; ObjectID = \\\"dMs-cI-mzQ\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ملف\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fitxer\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fitxer\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Soubor\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Datei\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"File\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Archivo\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Archivo\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fichier\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Berkas\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"File\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ファイル\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"파일\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Failas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Arkiv\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bestand\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Arkiv\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Plik\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Arquivo\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ficheiro\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fișier\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Файл\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Súbor\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Arkiv\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dosya\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Файл\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tệp\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"文件\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"檔案\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"檔案\"\n          }\n        }\n      }\n    },\n    \"Drag to screen edge tiling is enabled in both Rectangle and macOS.\" : {\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Das Ziehen zum Bildschirmrand für das Anordnen von Fenstern ist sowohl in Rectangle als auch in den macOS Systemeinstellungen aktiviert.\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\\"画面の端にドラッグしてタイル表示\\\"が、Ractangle と macOS の両方で有効になっています。\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"화면 가장자리로 드래그해 타일을 정렬하는 기능이 Rectangle과 macOS 설정에서 모두 켜져 있습니다.\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Potiahnutie na okraj obrazovky je zapnuté v Rectangle aj macOS.\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tính năng kéo để ghép cạnh màn hình được bật trong cả Rectangle và macOS.\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"在 Rectangle 和 macOS 中都启用了拖移窗口至屏幕边缘实现平铺\"\n          }\n        }\n      }\n    },\n    \"dRJ-4n-Yzg.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Undo\\\"; ObjectID = \\\"dRJ-4n-Yzg\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"الغاء التحميل\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Desfés\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Desfés\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zpět\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Widerrufen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Undo\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Deshacer\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Deshacer\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Annuler\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Balik\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Annulla\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"元に戻す\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"실행 취소\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Atšaukti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Angre\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ongedaan maken\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Angra\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cofnij\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Desfazer\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Desfazer\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Anulează Ultima Modificare\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Отменить\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Späť\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ångra\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Geri Al\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Відмінити\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hoàn tác\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"撤销\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"還原\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"還原\"\n          }\n        }\n      }\n    },\n    \"Dv1-io-Yv7.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Spelling and Grammar\\\"; ObjectID = \\\"Dv1-io-Yv7\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"التهجئة والقواعد اللغوية\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ortografia i gramàtica\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ortografia i gramàtica\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rechtschreibung und Grammatik\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ortografía y gramática\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ortografía y gramática\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Orthographe et grammaire\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ejaan dan Tata Bahasa\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ortografia e grammatica\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"スペルと文法\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"맞춤법 및 문법\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rašyba ir gramatika\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stavekontroll og grammatikk\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spelling en grammatica\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stavekontroll og grammatikk\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pisownia i gramatyka\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ortografia e gramática\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ortografia e Gramática\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Правописание и грамматика\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stavning och grammatik\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Chính tả và Ngữ pháp\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"拼写和语法\"\n          }\n        }\n      }\n    },\n    \"DVo-aG-piG.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Close\\\"; ObjectID = \\\"DVo-aG-piG\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"يغلق\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tanca\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tanca\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zavřít\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Schließen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Close\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cerrar\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cerrar\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fermer\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tutup\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Chiudi\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"閉じる\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"닫기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Uždaryti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lukk\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sluiten\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lat att\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zamknij\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fechar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fechar\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Închide\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Закрыть\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zavrieť\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stäng\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kapat\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Закрити\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Đóng\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"关闭\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"關閉\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"關閉\"\n          }\n        }\n      }\n    },\n    \"e9j-DR-MEH.title\" : {\n      \"comment\" : \"Class = \\\"NSButtonCell\\\"; title = \\\"Launch on login\\\"; ObjectID = \\\"e9j-DR-MEH\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ابدأ عند تسجيل الدخول\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Executa en l'inici de sessió\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Executa en l'inici de sessió\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spustit při přihlášení\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Beim Anmelden starten\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Launch on login\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Iniciar al iniciar sesión\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Iniciar al iniciar sesión\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Démarrer avec la session\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jalankan saat login\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Avvia al login\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ログイン時に起動\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"로그인 시 실행\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paleisti prisijungus prie sistemos\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Start ved pålogging\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Starten bij het inloggen\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Start ved pålogging\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Uruchamiaj po zalogowaniu się\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Iniciar no login\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Iniciar no login\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pornește la login\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Запуск при входе в систему\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spustiť pri prihlásení\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Starta vid inloggning\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Başlangıçta çalıştır\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Запускати при вході в систему\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Khởi động khi đăng nhập\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"登录时打开\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"在登入時打開\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"在登入時開啟\"\n          }\n        }\n      }\n    },\n    \"e57-QJ-6bL.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Almost Maximize\\\"; ObjectID = \\\"e57-QJ-6bL\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تكبير تقريبا\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quasi maximitzar\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quasi maximitzar\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skoro maximalizovat\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nahezu maximieren\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Almost Maximize\"\n          }\n        },\n        \"en-GB\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Almost Maximise\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Casi maximizar\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Casi maximizar\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quasi maximiser\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hampir Perbesar\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quasi massimizza\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ほぼ最大化\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"거의 최대화\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Beveik maksimizuoti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nesten maksimert\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bijna maximaliseren\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nesten maksimert\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Prawie zmaksymalizuj\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quase maximizar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quase Maximizar\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximizează parțial\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Почти максимизировать\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skoro maximalizovať\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nästan maximerad\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Neredeyse tamamını kapla\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Майже максимізувати\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Phóng to tương đối\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"接近最大化\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"近乎放到最大\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"幾乎放到最大\"\n          }\n        }\n      }\n    },\n    \"Eah-KL-kbn.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Make Larger\\\"; ObjectID = \\\"Eah-KL-kbn\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"اجعله أكبر\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fer més gran\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fer més gran\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zvětšit\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vergrößern\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Make Larger\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hacer más grande\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hacer más grande\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Agrandir la taille\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buat Lebih Luas\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ingrandisci\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"拡大\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"크게\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Padidinti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gjør større\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Groter maken\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gjer større\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Powiększ\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Aumentar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Aumentar o tamanho\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mărește\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Увеличить\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zväčšiť\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gör större\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Büyüt\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Збільшити\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tăng kích thước\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"放大\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"放大\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"放大\"\n          }\n        }\n      }\n    },\n    \"EBt-5H-0z6.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"-\\\"; ObjectID = \\\"EBt-5H-0z6\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"-\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        }\n      }\n    },\n    \"ec4-FB-fMa.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Bottom Half\\\"; ObjectID = \\\"ec4-FB-fMa\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"النصف الأسفل\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Meitat inferior\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Meitat inferior\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spodní polovina\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Untere Hälfte\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Bottom Half\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mitad inferior\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mitad inferior\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Moitié du bas\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Setengah Bawah\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Metà inferiore\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"下半分\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"아래쪽 절반\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Apatinė pusė\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nederste halvdel\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Onderste helft\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nedste halvdel\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dolna połowa\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Metade inferior\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Metade inferior\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jumătatea de Jos\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Нижняя половина\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spodná polovica\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nedre halvan\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Alt Yarım\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Нижня половина\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nửa dưới\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"下半屏\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"下半\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"下半\"\n          }\n        }\n      }\n    },\n    \"Eighths\" : {\n\n    },\n    \"Enable Todo Mode\" : {\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Activer le mode Todo\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Habilita mode Todo\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Habilita mode Todo\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"To-do-Modus aktivieren\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Habilitar el modo 'Todo'\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Habilitar el modo 'Todo'\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Activer le mode Todo\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Aktifkan Mode Todo\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Attiva modalità In evidenza\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ToDoモードを有効にする\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todo 모드 활성화\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Įjungti Todo programos režimą\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Aktiver Gjøreliste-modus\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Enable Todo Mode\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Aktiver Gjereliste-modus\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Enable Todo Mode\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Habilitar Todo Mode\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Enable Todo Mode\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Включить режим Todo приложения\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zapnúť Todo režim\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Aktivera Att göra-läge\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Увімкнути режим Завдань\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bật chế độ Todo\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"启用待办模式\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"啟用待辦模式\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"啟用待辦模式\"\n          }\n        }\n      }\n    },\n    \"Ext-Set-Cel.title\" : {\n      \"comment\" : \"Class = \\\"NSButtonCell\\\"; title = \\\"⋯\\\"; ObjectID = \\\"Ext-Set-Cel\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"⋯\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"⋯\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"⋯\"\n          }\n        }\n      }\n    },\n    \"Extra Shortcuts\" : {\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Extra Shortcuts\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Дополнительные горячие клавиши\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Phím tắt bổ sung\"\n          }\n        }\n      }\n    },\n    \"F2S-fz-NVQ.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Help\\\"; ObjectID = \\\"F2S-fz-NVQ\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"يساعد\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ajuda\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ajuda\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nápověda\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hilfe\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Help\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ayuda\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ayuda\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Aide\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bantuan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Aiuto\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ヘルプ\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"도움말\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pagalba\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hjelp\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hulp\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hjelp\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pomoc\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ajuda\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ajuda\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ajutor\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Помощь\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pomocník\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hjälp\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Yardım\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Довідка\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Trợ giúp\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"帮助\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"輔助說明\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"輔助說明\"\n          }\n        }\n      }\n    },\n    \"f3Q-q7-Pcy.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Top Right Sixth\\\"; ObjectID = \\\"f3Q-q7-Pcy\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"أعلى اليمين السادس\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sisè superior dreta\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sisè superior dreta\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Horní pravá šestina\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Oberes rechtes Sechstel\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Top Right Sixth\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sextante arriba a la derecha\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sextante arriba a la derecha\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sixième haut droit\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Seperenam Kanan Atas\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sesto superiore destro\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右上\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"위 오른쪽 1/6\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Viršutinė šeštoji dešinėje\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Øvre høgre sjettedel\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rechtsboven zesde\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Øvre høgre sjettedel\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jedna szósta po prawej u góry\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sexto superior à  direita\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sexto Direito Superior\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Șesimea din Dreapta Sus\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Верхняя шестая справа\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Horná pravá šestina\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Övre högra sjätte\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sağ Üst Altıda bir\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Верхнія права шоста частина\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1/6 góc trên bên phải\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右上１／６\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右上１／６\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右上１／６\"\n          }\n        }\n      }\n    },\n    \"F8S-GI-LiB.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Right Half\\\"; ObjectID = \\\"F8S-GI-LiB\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"النصف الأيمن\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Meitat dreta\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Meitat dreta\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pravá polovina\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rechte Hälfte\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Right Half\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mitad derecha\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mitad derecha\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Moitié droite\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Setengah Kanan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Metà destra\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右半分\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"오른쪽 절반\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dešinė pusė\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Høgre halvdel\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rechterhelft\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Høgre halvdel\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Prawa połowa\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Metade direita\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Metade direita\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jumătatea din Dreapta\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Правая половина\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pravá polovica\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Högra halvan\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sağ yarım\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Права половина\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1/2 cuối\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右半屏\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右半\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右半\"\n          }\n        }\n      }\n    },\n    \"F12-EV-Lfz.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"First Third\\\"; ObjectID = \\\"F12-EV-Lfz\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"الاول الثالث\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Primer terç\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Primer terç\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"První třetina\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Erstes Drittel\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"First Third\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Primer tercio\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Primer tercio\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tiers du haut\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sepertiga Pertama\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Primo terzo\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1/3にして左寄せ\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"처음 1/3\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pirmasis trečdalis\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Første tredjedel\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Eerste derde\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fyrste tredjedel\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jedna trzecia z lewej\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Primeiro terço\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Primeiro Terço\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Prima Treime\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Первая треть\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Prvá tretina\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Första tredje\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"İlk üçte bir\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Перша третина\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1/3 đầu\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左首１／３\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左側1／3\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左側１／３\"\n          }\n        }\n      }\n    },\n    \"Fal-I4-PZk.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Text\\\"; ObjectID = \\\"Fal-I4-PZk\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"نص\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Texto\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Texto\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Texte\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Teks\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Testo\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"テキスト\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"텍스트\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tekstas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tekst\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tekst\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tekst\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tekst\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Texto\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Texto\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Текст\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Chữ\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"文本\"\n          }\n        }\n      }\n    },\n    \"Fap-R2-Aj6.label\" : {\n      \"comment\" : \"Class = \\\"NSTabViewItem\\\"; label = \\\"Snap Areas\\\"; ObjectID = \\\"Fap-R2-Aj6\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Schnappbereiche\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Snap Areas\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Áreas Snap\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Áreas Snap\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Redimensionner areas\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Area jepret\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Aree a scatto\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"スナップ領域\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"스냅 영역\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Snap Areas\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Redimensionar areas\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Encaixar areas\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zóny prichytenia\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tutturma Bölgeleri\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Зони прив’язки\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Khu vực bố trí\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"吸附区域\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"貼齊區域\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"貼齊區域\"\n          }\n        }\n      }\n    },\n    \"FCh-1Q-Xms.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Keep a chosen application visible on the right of your primary screen at all times\\\"; ObjectID = \\\"FCh-1Q-Xms\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"احتفظ بالتطبيق المختار مرئيًا على يمين شاشتك الأساسية في جميع الأوقات\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Manté l'aplicació escollida visible a la dreta de la pantalla principal en tot moment\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Manté l'aplicació escollida visible a la dreta de la pantalla principal en tot moment\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zobrazí vybranou aplikaci vždy na pravé straně vaší hlavní obrazovky\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Halte eine ausgewählte Anwendung auf der rechten Seite des Hauptbildschirms im Vordergrund.\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Keep a chosen application visible on the right of your primary screen at all times\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mantener la aplicación elegida visible a la derecha de la pantalla primaria en todo momento\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mantener la aplicación elegida visible a la derecha de la pantalla primaria en todo momento\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Garder une application visible à tout moment sur la droite de votre écran principal\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Biarkan aplikasi yang dipilih terlihat di sebelah kanan layar utama Anda setiap saat\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tieni l'applicazione scelta sempre visibile sulla destra del tuo schermo principale\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"メインディスプレイの右部分に、指定されたアプリケーションを常に表示します\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"선택한 응용 프로그램을 메인 화면 오른쪽에 항상 표시합니다\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Laikyti pasirinktą programą nuolat matomą dešinėje pagrindinio ekrano pusėje\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gjør et valgt program synlig hele tida til høgre på hovedskjermen din\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Keep a chosen application visible on the right of your primary screen at all times\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gjer eit valt program synleg heile tida til høgre på hovudskjermen din\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Keep a chosen application visible on the right of your primary screen at all times\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Keep a chosen application visible on the right of your primary screen at all times\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Keep a chosen application visible on the right of your primary screen at all times\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Păstrează tot timpul o aplicație la alegere vizibilă în dreapta ecranului principal\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Держать выбранное приложение постоянно видимым в правой части основного экрана\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ponechá zvolenú aplikáciu vždy zobrazenú na pravej strane hlavnej obrazovky\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Behåll en vald applikation hela tiden synlig till höger på din primära skärm\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Seçtiğiniz bir uygulamayı ana ekranınızın sağında her zaman görüntümenizi sağlar\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Залишати обраний додаток завжди видимим справа на головному екрані\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Luôn giữ ứng dụng được chọn hiển thị bên phải của màn hình chính\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"使所选应用程序在主屏幕右侧始终保持可见\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"在主螢幕右側始終顯示所選擇的應用程式\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"在主螢幕右側始終顯示所選擇的應用程式\"\n          }\n        }\n      }\n    },\n    \"FeM-D8-WVr.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Substitutions\\\"; ObjectID = \\\"FeM-D8-WVr\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"البدائل\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substitucions\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substitucions\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ersetzungen\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sustituciones\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sustituciones\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Remplacements\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Penggantian\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sostituzioni\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"置換\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"대체\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pakeitimai\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Erstatninger\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vervangingen\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Erstatningar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zamienniki\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substituições\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substituições\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Замены\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substitutioner\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sự thay thế\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"显示替换\"\n          }\n        }\n      }\n    },\n    \"FKE-Sm-Kum.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Rectangle Help\\\"; ObjectID = \\\"FKE-Sm-Kum\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تعليمات المستطيل\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ajuda de Rectangle\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ajuda de Rectangle\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle nápověda\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle-Hilfe\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Rectangle Help\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ayuda de Rectangle\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ayuda de Rectangle\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Aide Rectangle\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bantuan Rectangle\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Aiuto su Rectangle\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangleヘルプ\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle 도움말\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle Pagalba\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle-hjelp\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle hulp\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle-hjelp\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pomoc Rectangle\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ajuda do Rectangle\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ajuda do Rectangle\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ajutor Rectangle\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle Справка\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pomocník pre Rectangle\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle-hjälp\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle Yardım\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Довідка по Rectangle\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Trợ giúp của Rectangle\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle 帮助\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle 輔助說明\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle輔助說明\"\n          }\n        }\n      }\n    },\n    \"Fko-xs-gN5.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Second Fourth\\\"; ObjectID = \\\"Fko-xs-gN5\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"الرابع الثاني\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Segon quart\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Segon quart\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Druhá čtvrtina\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zweites Viertel\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Second Fourth\"\n          }\n        },\n        \"en-GB\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Second Quarter\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Segundo cuarto\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Segundo cuarto\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Deuxième quart\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Seperempat Kedua\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Secondo quarto\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左から2番目\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"두번째 1/4\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Antra ketvirtis\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Andre fjerdedel\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tweede kwart\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Andre fjerdedel\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Druga ćwiartka\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Segundo quarto\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Segundo Quarto\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Al Doilea Sfert\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Вторая четверть\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Druhá štvrtina\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Andra fjärde\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"İkinci Çeyrek\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Друга чверть\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1/4 thứ hai\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左二１／４\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左二１／４\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左二１／４\"\n          }\n        }\n      }\n    },\n    \"fL5-gz-pOD.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"-\\\"; ObjectID = \\\"fL5-gz-pOD\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"-\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        }\n      }\n    },\n    \"FLh-CI-WNK.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"-\\\"; ObjectID = \\\"FLh-CI-WNK\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"-\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        }\n      }\n    },\n    \"Fourths\" : {\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quarts\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quartes\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quartes\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Čtvrtiny\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Viertel\"\n          }\n        },\n        \"en-GB\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quarters\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cuartos\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cuartos\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quarts\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Seperempat\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quarti\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"4分割\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"4등분\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ketvirtys\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fjerdedeler\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kwarten\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fjerdedelar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ćwiartki\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quartos\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quartos\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Четверти\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Štvrtiny\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fjärdedelar\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Çeyrek\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Четверини\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Phần tư\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"四等分\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"四等分\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"四等分\"\n          }\n        }\n      }\n    },\n    \"Fourths columns\" : {\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Colonnes de quarts\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fourths columns\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fourths columns\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Čtvrtiny - sloupce\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Viertel Spalten\"\n          }\n        },\n        \"en-GB\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quarter columns\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Columnas cuartas\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Columnas cuartas\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Colonnes de quarts\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fourths columns\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quarti in colonne\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"横向きに4分割\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1/4 열\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ketvirtadaliai-stulpeliai\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fjerdedelskolonner\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fourths columns\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fjerdedelskolonner\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fourths columns\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fourths columns\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fourths columns\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fourths columns\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Четверти-колонны\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Štvrtiny stĺpce\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fourths columns\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Çeyrek\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Четвертини стовпців\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Các cột phần tư\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"四等分栏\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"四等分直欄\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"四等分直欄\"\n          }\n        }\n      }\n    },\n    \"Fx0-sm-DrT.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Reflow Todo\\\"; ObjectID = \\\"Fx0-sm-DrT\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"إنحسر تودو\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Reflow Todo\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Reflow Todo\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Reflow Todo\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Reflow Todo\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Reflow Todo\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Reajustar 'Todo'\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Reajustar 'Todo'\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Repositionner Todo\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Reflow Todo\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Riorganizza In evidenza\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todoモードを再設定\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todo 재배치\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Perdėlioti Todo\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Flytt om på Gjøreliste\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Reflow Todo\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Flytt om på Gjereliste\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Reflow Todo\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Reflow Todo\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Reflow Todo\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Reflow Todo\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Обновить положение Todo окна\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Preusporiadať Todo\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Reflow Todo\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todo'yu Yeniden Ayarla\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Переформатувати вікна Завдань\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Làm mới Todo\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"重新排列待办\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"重新排列待辦\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Reflow Todo\"\n          }\n        }\n      }\n    },\n    \"GB9-OM-e27.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Bold\\\"; ObjectID = \\\"GB9-OM-e27\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"عريض\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Negreta\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Negreta\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fett\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Negrita\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Negrita\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gras\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cetak Tebal\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Grassetto\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ボールド\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"볼드체\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paryškintas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Halvfeit\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vet\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Halvfeit\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pogrubienie\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Negrito\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Negrito\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Полужирный\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fetstil\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"In đậm\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"粗体\"\n          }\n        }\n      }\n    },\n    \"gEd-S9-Cfp.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Please select your default shortcuts and behavior\\\"; ObjectID = \\\"gEd-S9-Cfp\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"الرجاء تحديد الاختصارات والسلوك الافتراضي الخاص بك\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Seleccioneu les dreceres i el vostre comportament per defecte\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Seleccioneu les dreceres i el vostre comportament per defecte\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Prosím vyberte vaše výchozí zkratky a chování\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bitte wähle die Standardeinstellungen für Kurzbefehe und deren Verhaltensweisen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Please select your default shortcuts and behavior\"\n          }\n        },\n        \"en-GB\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Please select your default shortcuts and behaviour\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Por favor seleccione el comportamiento y atajos predeterminados\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Por favor seleccione el comportamiento y atajos predeterminados\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Veuillez choisir vos raccourcis et comportements par défaut\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Silakan pilih pintasan dan perilaku default Anda\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Seleziona le tue abbreviazioni predefinite e il comportamento\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"デフォルトのショートカットと動作を選択してください\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"기본값의 단축키와 작업을 선택하십시오\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Prašome pasirinkti karštuosius klavišus ir numatytąjį elgesį\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Velg standardsnarveger og oppførsel\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Please select your default shortcuts and behavior\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vel standardsnarvegar og oppførsel\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Wybierz domyślne skróty oraz zachowanie\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Selecione seus atalhos e comportamento padrão\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Por favor, selecione so seus atalhos e comportamento padrão\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Selectează scurtăturile și modurile de funcționare predefinite\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Пожалуйста, выберите горячие клавиши и поведение по умолчанию\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Prosím, vyber svoje predvolené skratky a správanie\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Välj dina standardgenvägar och beteende\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lütfen varsayılan kısayol ve tercihlerinizi seçiniz\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Будь ласка, виберіть ваші типові комбінації клавіш та поведінку\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hãy chọn phím tắt và hành vi mặc định bạn mong muốn\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"请选择您的默认快捷键与行为\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"請選擇您的預設快速鍵與行為\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"請選擇你的預設快捷鍵與行為\"\n          }\n        }\n      }\n    },\n    \"GEO-Iw-cKr.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Format\\\"; ObjectID = \\\"GEO-Iw-cKr\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"شكل\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Formato\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Formato\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Formato\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"フォーマット\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"포맷\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Formatas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Formaat\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Formato\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Formato\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Формат\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Định dạng\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"格式\"\n          }\n        }\n      }\n    },\n    \"gFy-Zj-RGl.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"About\\\"; ObjectID = \\\"gFy-Zj-RGl\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"عن\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quant a\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quant a\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"O aplikaci\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Über\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"About\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Acerca de\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Acerca de\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"À propos\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tentang\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Informazioni\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangleについて\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"정보\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Apie programą\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Om\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Over\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Om\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"O Rectangle\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sobre\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sobre\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Despre\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"О программе\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"O aplikácii\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Om\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hakkında\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Про програму\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Giới thiệu\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"关于\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"關於\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"關於\"\n          }\n        }\n      }\n    },\n    \"gHH-BV-5kP.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"cycle sizes on half actions\\\"; ObjectID = \\\"gHH-BV-5kP\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"دورة ½ و ⅔ و على نصف الإجراءات\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"cicle ½, ⅔, i ⅓ a mitges accions\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"cicle ½, ⅔, i ⅓ a mitges accions\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"změnit šířku oken na ½, ⅔, a ⅓ u polovičních akcí\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Wechsle zwischen verschiedenen Größen bei Aktionen für halbe Bildschirme\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"cycle sizes on half actions\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"bucle de ½, ⅔, y ⅓ en acciones de mitad\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"\",\n            \"value\" : \"bucle de ½, ⅔, y ⅓ en acciones de mitad\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"alterner entre ½, ⅔ et ⅓ lors des actions de moitié d’écran\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"siklus ½, ⅔ dan ⅓ pada setengah tindakan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"scorri tra ½, ⅔, e ⅓ con le azioni di mezzi\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"サイズを半分にするのを繰り返す\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"절반 동작시 창 크기 순환\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"perjungti tarp ½, ⅔ ir ⅓ pusėms\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"bytt mellom størrelser for halv-handlinger\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"byt mellom storleikar for halv-handlingar\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"переключаться между ½, ⅔ и ⅓ для половин\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"meniť veľkosť pri použití skratiek polovice na:\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"växla mellan storlek på halva åtgärder\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"yarım seçenekleri yinelenirse ½, ⅔, ve ⅓ oranlarında geçiş yap\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"перемикати ½, ⅔, and ⅓ при діях з половиною\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"thay đổi tuần hoàn ½, ⅔, và ⅓ kích thước\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"半屏操作循环½、⅔、⅓\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"一半動作循環½、⅔和⅓\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"一半動作循環½、⅔和⅓\"\n          }\n        }\n      }\n    },\n    \"Gi5-1S-RQB.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Font\\\"; ObjectID = \\\"Gi5-1S-RQB\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"الخط\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tipus de lletra\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tipus de lletra\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Schrift\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tipo de letra\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tipo de letra\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Police\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jenis Huruf\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"フォント\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"서체\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Šriftas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skrift\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lettertype\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skrift\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Czcionka\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fonte\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tipo de letra\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Шрифт\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Typsnitt\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Phông chữ\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"字体\"\n          }\n        }\n      }\n    },\n    \"Go to System Settings → Privacy & Security → Accessibility\" : {\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Aller dans Réglages Système → Confidentialité et sécurité → Accessibilité\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Go to System Settings → Privacy & Security → Accessibility\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Go to System Settings → Privacy & Security → Accessibility\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Go to System Settings → Privacy & Security → Accessibility\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gehe zu Systemeinstellungen → Datenschutz & Sicherheit → Bedienungshilfen\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vaya a ajustes de sistema → Privacidad y Seguridad → Accesibilidad\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vaya a ajustes de sistema → Privacidad y Seguridad → Accesibilidad\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Aller dans Réglages Système → Confidentialité et sécurité → Accessibilité\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Go to System Settings → Privacy & Security → Accessibility\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vai a Impostazioni di Sistema → Privacy e sicurezza → Accessibilità\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"システム設定→プライバシーとセキュリティ→アクセシビリティを選択します\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"시스템 설정 → 개인정보 보호 및 보안 → 손쉬운 사용\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Eikite į Sistemos nuostatas → Privatumas ir saugumas → Privatumas → Universalus prieinamumas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gå til Systeminnstillinger → Personvern og sikkerhet → Tilgjengelighet\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Go to System Settings → Privacy & Security → Accessibility\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gå til Systeminnstillingar → Personvern og tryggleik → Tilgjengelegheit\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Go to System Settings → Privacy & Security → Accessibility\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vá em Preferências do Sistema → Segurança e Privacidade → Privacidade → Acessibilidade\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Go to System Settings → Privacy & Security → Accessibility\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Go to System Settings → Privacy & Security → Accessibility\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Перейдите в Системные настройки → Конфиденциальность и безопасность → Конфиденциальность → Универсальный доступ\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Prejdi do Systémové nastavenia → Súkromie a bezpečnosť → Prístupnosť\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Go to System Settings → Privacy & Security → Accessibility\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sistem Ayarları → Gizlilik ve Güvenlik → Erişikebilirlik menüsüne gidin\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Перейти до Налаштування системи → Конфіденційність та безпека → Доступність\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Đi đến Cài đặt hệ thống → Quyền riêng tư & Bảo mật → Trợ năng\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"前往 系统设置 → 安全性与隐私 → 辅助功能\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"前往 系統設定 → 隱私權與安全性 → 輔助使用\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"前往 系統設定 → 保安與私隱 → 輔助使用\"\n          }\n        }\n      }\n    },\n    \"gtf-PD-IHm.label\" : {\n      \"comment\" : \"Class = \\\"NSTabViewItem\\\"; label = \\\"General\\\"; ObjectID = \\\"gtf-PD-IHm\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Réglages\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Configuració\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Configuració\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Nastavení\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Einstellungen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"General\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Ajustes\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Ajustes\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Réglages\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Pengaturan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Impostazioni\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"設定\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"설정\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Nustatymai\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Innstillinger\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Settings\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Innstillingar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Ustawienia\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Configurações\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Definições\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Setări\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Настройки\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Nastavenia\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Inställningar\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Genel Ayarlar\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Налаштування\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tổng quan\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"设置\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"設定\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"設定\"\n          }\n        }\n      }\n    },\n    \"GUa-eO-cwY.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Use Default\\\"; ObjectID = \\\"GUa-eO-cwY\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"استخدم الافتراضي\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ús predeterminat\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ús predeterminat\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Standard verwenden\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Uso predeterminado\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Uso predeterminado\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Utiliser la valeur par défaut\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gunakan Bawaan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usa predefinito\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"デフォルトを使用\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"기본값 사용\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Naudoti pagal nutylėjimą\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk standard\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gebruik standaard\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk standard\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Użyj domyślnych\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usar Padrão\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usar Padrão\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Использовать по умолчанию\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Använd standard\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sử dụng mặc định\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"使用默认\"\n          }\n        }\n      }\n    },\n    \"gVA-U4-sdL.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Paste\\\"; ObjectID = \\\"gVA-U4-sdL\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"معجون\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Enganxa\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Enganxa\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vložit\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Einfügen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Paste\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pegar\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pegar\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Coller\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tempel\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Incolla\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ペースト\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"붙여넣기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Įterpimas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lim inn\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Plakken\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lim inn\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Wklej\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Colar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Colar\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lipește\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Вставка\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vložiť\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Klistra in\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Yapıştır\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Вставити\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dán\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"粘贴\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"貼上\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"貼上\"\n          }\n        }\n      }\n    },\n    \"gyg-xl-dPn.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Rectangle needs your permission to control your window positions.\\\"; ObjectID = \\\"gyg-xl-dPn\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"يحتاج المستطيل إلى إذنك للتحكم في مواضع النافذة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle necessita el vostre permís per controlar les posicions de les finestres.\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle necessita el vostre permís per controlar les posicions de les finestres.\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle potřebuje vaše povolení, aby mohl ovládat pozice oken.\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle benötigt deine Erlaubnis, um Fensterpositionen zu steuern.\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Rectangle needs your permission to control your window positions.\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle necesita su permiso para controlar la posición de las ventanas.\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle necesita su permiso para controlar la posición de las ventanas.\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle requiert votre permission pour contrôler la position de vos fenêtres.\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle memerlukan izin anda untuk mengatur posisi jendela.\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle ha bisogno del tuo permesso per controllare le posizioni delle tue finestre.\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangleがウインドウの位置を制御するには許可が必要です。\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle은 창 위치를 제어하기 위해 권한이 필요합니다.\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle reikia jūsų leidimo valdyti langų padėtį\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle trenger lov av deg for å kontrollere vindusposisjonene.\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle heeft uw toestemming nodig om uw vensterposities te kunnen aanpassen.\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle treng lov av deg for å kontrollera vindaugsposisjonane.\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle potrzebuje twojego pozwolenia, aby móc sterować pozycjami okna.\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"O Rectangle precisa de sua permissão para controlar a posição das janelas.\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"O Rectangle precisa da sua permissão para controlar as posições das janelas.\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle are nevoie de permisiunea ta pentru a controla poziția ferestrelor tale.\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle необходимо ваше разрешение для управления положением окон\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle potrebuje povolenie na ovládanie umiestnenia tvojich okien.\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle behöver ditt tillstånd för att kontrollera dina fönsterpositioner.\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle'ın pencere konumlarını değiştirebilmek için izninize ihtiyacı var.\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle потребує вашого дозволу для керування позиціями ваших вікон.\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle cần sự cho phép của bạn để điều khỉển vị trí cửa sổ.\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle 需要您的允许以控制窗口位置。\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle 需要您的許可來控制視窗位置。\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle需要你的允許以控制視窗位置。\"\n          }\n        }\n      }\n    },\n    \"H1b-Si-o9J.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Writing Direction\\\"; ObjectID = \\\"H1b-Si-o9J\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"اتجاه الكتابة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Direcció d'escriptura\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Direcció d'escriptura\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Schreibrichtung\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dirección de escritura\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dirección de escritura\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sens d'écriture\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Arah Penulisan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Direzione di scrittura\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"文字の向き\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"작성 방향\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rašymo kryptis\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skriveretning\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Schrijfrichting\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skriveretning\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kierunek pisania\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Direção de Escrita\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Direção de Escrita\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Направление письма\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skrivriktning\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hướng viết\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"书写方向\"\n          }\n        }\n      }\n    },\n    \"H8h-7b-M4v.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"View\\\"; ObjectID = \\\"H8h-7b-M4v\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"منظر\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Visualitza\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Visualitza\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zobrazit\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Darstellung\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"View\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ver\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ver\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Afficher\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tampilan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vista\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"表示\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"보기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Peržiūra\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bekijk\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Widok\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Visualizar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ver\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vizualizează\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Просмотр\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zobraziť\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Visa\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Görünüm\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Вигляд\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Xem\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"显示\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"顯示方式\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"顯示方式\"\n          }\n        }\n      }\n    },\n    \"Half Split Ratios\" : {\n\n    },\n    \"Halves\" : {\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Moitiés\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Meitats\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Meitats\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Poloviny\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hälften\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mitades\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mitades\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Moitiés\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bagian\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Metà\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"半分\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"2등분\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pusės\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Halvdeler\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Halves\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Halvdelar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Połowy\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Metades\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Metades\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Половинки\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Polovice\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hälfter\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Yarımlar\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Половини\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Một nửa\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"半屏\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"一半螢幕\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"一半螢幕\"\n          }\n        }\n      }\n    },\n    \"heT-W6-Fyf.title\" : {\n      \"comment\" : \"Class = \\\"NSButtonCell\\\"; title = \\\"Double-click window title bar to maximize/restore\\\"; ObjectID = \\\"heT-W6-Fyf\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"انقر نقرًا مزدوجًا فوق شريط عنوان النافذة لتكبير / استعادة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Double-click window title bar to maximize/restore\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Double-click window title bar to maximize/restore\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Double-click window title bar to maximize/restore\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Doppelklick auf die Titelleiste des Fensters zum Maximieren/Wiederherstellen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Double-click window title bar to maximize/restore\"\n          }\n        },\n        \"en-GB\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Double-click window title bar to maximise/restore\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Haz click dos veces en la barra de título de la ventana para maximizar/restaurar\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Haz click dos veces en la barra de título de la ventana para maximizar/restaurar\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Double-cliquer sur la barre de titre d'une fenêtre pour maximiser/restaurer\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Double-click window title bar to maximize/restore\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fai doppio clic sul titolo della finestra per massimizzare/ripristinare\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ウインドウのタイトルバーをダブルクリックすることで、最大化/最大化解除を行う\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"윈도우 제목 막대를 두 번 클릭해 확대/축소\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spustelėkite du kartus lango antraštės juostą, kad padidintumėte/atstatytumėte\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dobbeltklikk vindustittel for å maksimere eller tilbakestille\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Double-click window title bar to maximize/restore\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dobbeltklikk vindaugstittel for å maksimera eller tilbakestilla\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Double-click window title bar to maximize/restore\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Duplo clique no title bar da janela para maximizar/restaurar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Double-click window title bar to maximize/restore\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Double-click window title bar to maximize/restore\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Дважды щелкните по заголовку окна, чтобы увеличить/уменьшить его размер\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dvojitým kliknutím na lištu s názvom maximalizovať/obnoviť\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Double-click window title bar to maximize/restore\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Büyütmek/Yeniden yüklemek için üst pencere çubuğuna çift tıklayın.\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Double-click window title bar to maximize/restore\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nhấp đúp trên thanh tiêu đề để phóng to/khôi phục\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"连按窗口标题以缩放/恢复\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"連按兩下視窗標題列來最大化/復原\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Double-click window title bar to maximize/restore\"\n          }\n        }\n      }\n    },\n    \"HFo-cy-zxI.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Show Spelling and Grammar\\\"; ObjectID = \\\"HFo-cy-zxI\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"إظهار التدقيق الإملائي والنحوي\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar ortografia i gramàtica\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar ortografia i gramàtica\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rechtschreibung und Grammatik einblenden\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar ortografía y gramática\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar ortografía y gramática\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Afficher l'orthographe et la grammaire\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tampilkan Ejaan dan Tata Bahasa\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostra ortografia e grammatica\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"スペルと文法を表示\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"맞춤법 및 문법 보기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rodyti rašybą ir gramatiką\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis stavekontroll og grammatikk\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Toon spelling en grammatica\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis stavekontroll og grammatikk\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pokaż pisownię i gramatykę\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar ortografia e gramática\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar Ortografia e Gramática\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Показать правописание и грамматику\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Visa stavning och grammatik\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hiển thị Chính tả và Ngữ pháp\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"显示拼写和语法\"\n          }\n        }\n      }\n    },\n    \"HFQ-gK-NFA.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Text Replacement\\\"; ObjectID = \\\"HFQ-gK-NFA\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"استبدال النص\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substitució de text\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substitució de text\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text ersetzen\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Reemplazo de texto\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Reemplazo de texto\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Remplacement de texte\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Penggantian Teks\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sostituzione testo\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"テキストの置き換え\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"삽입\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Teksto pakeitimas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Teksterstatninger\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tekstvervanging\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Teksterstatningar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zamiana tekstu\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substituição de Texto\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substituição de Texto\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Замена текста\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Textbyte\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Thay thế văn bản\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"文本替换\"\n          }\n        }\n      }\n    },\n    \"HIK-3r-i7E.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Check for Updates…\\\"; ObjectID = \\\"HIK-3r-i7E\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تحقق من وجود تحديثات…\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cerca actualitzacions…\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cerca actualitzacions…\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zkontrolovat aktualizace…\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nach Updates suchen…\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Check for Updates…\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buscar actualizaciones…\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buscar actualizaciones…\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mettre à jour…\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Periksa Pembaruan…\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Controlla aggiornamenti…\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"アップデートを確認…\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"업데이트 확인…\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tikrinti atnaujinimus…\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Se etter oppdateringer…\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kijk of er updates zijn…\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sjå etter oppdateringar…\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sprawdź aktualizacje…\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Procurar por atualizações…\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Verifique se há atualizações…\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Verifică Actualizări…\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Проверить обновления…\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skontrolovať aktualizácie…\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sök efter uppdateringar…\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Güncellemeleri kontrol et…\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Перевірити оновлення…\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kiểm tra các bản cập nhật…\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"检查更新…\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"檢查更新⋯\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"檢查更新項目⋯\"\n          }\n        }\n      }\n    },\n    \"HOm-BV-2jc.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Move Up\\\"; ObjectID = \\\"HOm-BV-2jc\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تحرك\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mou amunt\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mou amunt\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Přesunout nahoru\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nach oben bewegen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Move Up\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mover hasta arriba\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mover hasta arriba\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Déplacer vers le haut\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Naikkan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sposta su\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"上に移動\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"위로 이동\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Aukštyn\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Flytt opp\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Naar boven\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Flytt opp\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Przesuń w górę\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mover para cima\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mover para cima\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mută Sus\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Вверх\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Presunúť hore\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Flytta upp\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Yukarı kenar\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Перемістити вгору\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Đi lên\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"向上移动\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"上移\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"上移\"\n          }\n        }\n      }\n    },\n    \"HOp-Kd-vhY.title\" : {\n      \"comment\" : \"Class = \\\"NSButtonCell\\\"; title = \\\"Recommended\\\"; ObjectID = \\\"HOp-Kd-vhY\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"مُستَحسَن\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Recomanat\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Recomanat\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Doporučené\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Empfohlen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Recommended\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Recomendado\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Recomendado\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Recommandé\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Direkomendasikan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Consigliate\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"推奨設定\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"권장 설정\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rekomenduojama\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Anbefalt\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Recommended\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tilrådd\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rekomendowane\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Recomendado\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Recomendado\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Recomandat\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Рекомендуемые\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Odporúčané\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rekommenderas\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Önerilen\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Рекомендовано\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gợi ý\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"推荐\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"建議\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"建議\"\n          }\n        }\n      }\n    },\n    \"Horizontal (L/R, %)\" : {\n\n    },\n    \"hQb-2v-fYv.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Smart Quotes\\\"; ObjectID = \\\"hQb-2v-fYv\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"اقتباسات ذكية\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cites intel·ligents\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cites intel·ligents\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Intelligente Anführungszeichen\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Citas inteligentes\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Citas inteligentes\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Citations intelligentes\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kutipan Pintar\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Virgolette intelligenti\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"スマート引用符\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"스마트 인용\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Intelektualios kabutės\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smarte hermetegn\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Slimme aanhalingstekens\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smarte hermeteikn\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Inteligentne cudzysłowy\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Citações Inteligentes\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Citações Inteligentes\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Интеллектуальные кавычки\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smarta citat\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Trích dẫn thông minh\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"智能引号\"\n          }\n        }\n      }\n    },\n    \"HtH-yF-lBR.title\" : {\n      \"comment\" : \"Class = \\\"NSWindow\\\"; title = \\\"Welcome!\\\"; ObjectID = \\\"HtH-yF-lBR\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"مرحباً\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Benvingut!\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Benvingut!\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vítejte!\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Willkommen!\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Welcome!\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"¡Bienvenido!\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"¡Bienvenido!\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bienvenue !\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Selamat Datang!\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ti diamo il benvenuto!\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ようこそ!\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"환영합니다!\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sveiki!\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Velkommen!\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Welcome!\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Velkomen!\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Witaj!\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bem vindo!\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bem-vindo!\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bine ai venit!\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Добро пожаловать!\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vitaj!\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Välkommen!\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hoşgeldiniz!\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ласкаво просимо!\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Xin chào!\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"欢迎！\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"歡迎！\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"歡迎！\"\n          }\n        }\n      }\n    },\n    \"HyV-fh-RgO.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"View\\\"; ObjectID = \\\"HyV-fh-RgO\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"منظر\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Visualitza\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Visualitza\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zobrazit\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Darstellung\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"View\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ver\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ver\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Afficher\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tampilan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vista\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"表示\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"보기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Peržiūra\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bekijk\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Widok\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Visualizar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ver\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vizualizează\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Просмотр\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zobraziť\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Visa\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Görünüm\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Вигляд\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Xem\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"显示\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"顯示方式\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"顯示方式\"\n          }\n        }\n      }\n    },\n    \"hz2-CU-CR7.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Check Document Now\\\"; ObjectID = \\\"hz2-CU-CR7\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تحقق من المستند الآن\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Comproveu ara el document\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Comproveu ara el document\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dokument jetzt prüfen\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Verificar documento ahora\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Verificar documento ahora\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vérifier le document maintenant\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Periksa Dokumen Sekarang\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Controlla documento ora\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"書類を今すぐチェック\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"지금 문서 검사\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Patikrinkite dokumentą dabar\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kontroller dokumentet nå\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Controleer nu het document\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kontroller dokumentet no\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sprawdź dokument teraz\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Verificar documento agora\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Verificar documento agora\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Проверьте документ сейчас\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kontrollera dokument nu\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kiểm tra tài liệu ngay\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"立即检查文稿\"\n          }\n        }\n      }\n    },\n    \"hz9-B4-Xy5.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Services\\\"; ObjectID = \\\"hz9-B4-Xy5\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"خدمات\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Serveis\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Serveis\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Služby\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dienste\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Servicios\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Servicios\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Layanan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Servizi\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"サービス\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"서비스\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paslaugos\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tjenester\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Diensten\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tenester\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usługi\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Serviços\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Serviços\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Servicii\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Службы\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Služby\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tjänster\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Servisler\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Сервіси\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dịch vụ\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"服务\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"服務\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"服務\"\n          }\n        }\n      }\n    },\n    \"I0S-gh-46l.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Subscript\\\"; ObjectID = \\\"I0S-gh-46l\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"مخطوطة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Subíndex\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Subíndex\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tiefgestellt\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Subíndice\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Subíndice\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Indice\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tulisan di Bawah Garis\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pedice\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"添字\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"아래 첨자\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Prenumeratorius\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Senka\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Subscript\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Senka\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Subskrybuj\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Subscrito\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Subscrito\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Подписчик\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Index\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Chỉ số dưới\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"下标\"\n          }\n        }\n      }\n    },\n    \"i1d-Er-qST.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Smaller\\\"; ObjectID = \\\"i1d-Er-qST\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"الأصغر\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Més petit\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Més petit\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kleiner\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Más pequeño\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Más pequeño\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Plus petit\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lebih Kecil\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Più piccolo\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"小さく\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"작게\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mažiau\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mindre\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kleiner\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mindre\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mniejszy\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Menor\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Menor\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Меньше\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mindre\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nhỏ hơn\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"较小\"\n          }\n        }\n      }\n    },\n    \"I97-ob-ue4.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"-\\\"; ObjectID = \\\"I97-ob-ue4\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"-\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        }\n      }\n    },\n    \"IAo-SY-fd9.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Open…\\\"; ObjectID = \\\"IAo-SY-fd9\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"يفتح…\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Obre…\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Obre…\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Otevřít…\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Öffnen…\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Open…\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Abrir…\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Abrir…\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ouvrir…\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buka…\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Apri…\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"開く…\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"열기…\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Atidaryti…\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Åpne…\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open…\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Opne…\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Otwórz…\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Abrir…\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Abrir…\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Deschide…\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Открыть…\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Otvoriť…\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Öppna…\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Aç…\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Відкрити…\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mở…\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"打开…\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"打開⋯\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"開啟⋯\"\n          }\n        }\n      }\n    },\n    \"ijk-EB-dga.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Baseline\\\"; ObjectID = \\\"ijk-EB-dga\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"حدود\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Línia de base\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Línia de base\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Schriftlinie\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Línea de base\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Línea de base\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligne de base\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Garis Dasar\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Linea base\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ベースライン\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"기준선\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pagrindinis rodiklis\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skriftlinje\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Basislijn\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skriftline\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Poziom bazowy\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Linha de base\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Base de referência\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Базовый показатель\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baslinje\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Đường cơ sở\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"基线\"\n          }\n        }\n      }\n    },\n    \"IO3-Hi-7gC.title\" : {\n      \"comment\" : \"Class = \\\"NSButtonCell\\\"; title = \\\"Export\\\"; ObjectID = \\\"IO3-Hi-7gC\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"يصدّر\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Exporta\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Exporta\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Exportovat\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Exportieren\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Export\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Exporter\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Expor\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Esporta\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"エクスポート\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"내보내기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Eksportuoti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Eksporter\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Eksporter\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Exportar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Exportar\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Exportă\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Экспорт\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Exportovať\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Exportera\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dışa Aktar\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Експортувати\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Xuất\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"导出\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"輸出\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"輸出\"\n          }\n        }\n      }\n    },\n    \"iOQ-1e-esP.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Bottom Center Sixth\\\"; ObjectID = \\\"iOQ-1e-esP\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"مركز القاع السادس\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sisè inferior centre\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sisè inferior centre\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spodní prostřední šestina\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Unteres mittleres Sechstel\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Bottom Center Sixth\"\n          }\n        },\n        \"en-GB\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bottom Centre Sixth\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sextante abajo centrado\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sextante abajo centrado\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sixième bas centre\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Seperenam Tengah Bawah\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sesto inferiore centrale\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"中央下\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"아래 가운데 1/6\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Apatinė šeštoji centre\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nedre midtre sjettedel\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Middenonder zesde\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nedre midtre sjettedel\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jedna szósta na środku u dołu\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sexto inferior central\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sexto Central Inferior\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Șesimea din Centru Jos\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Нижняя шестая по центру\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spodná prostredná šestina\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nedre mitten sjätte\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Alt Orta Altıda bir\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Нижня центральна шоста частина\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1/6 ở giữa bên dưới\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"中下１／６\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"中下１／６\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"中下１／６\"\n          }\n        }\n      }\n    },\n    \"iWV-c2-BJD.title\" : {\n      \"comment\" : \"Class = \\\"NSButtonCell\\\"; title = \\\"Open System Preferences\\\"; ObjectID = \\\"iWV-c2-BJD\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"افتح تفضيلات النظام\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Obrir preferències del sistema\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Obrir preferències del sistema\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Otevřít systémové předvolby\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Systemeinstellungen öffnen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Open System Preferences\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Abrir preferencias del sistema\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Abrir preferencias del sistema\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ouvrir les Préférences Système\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buka Preferensi Sistem\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Apri Preferenze di Sistema\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"システム環境設定を開く\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"시스템 환경설정 열기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Atidaryti sistemos nustatymus\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Åpne systeminnstllingene\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open Systeemvoorkeuren\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Opna systeminnstllingane\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Otwórz ustawienia systemowe\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Abrir Ajustes do Sistema\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Abrir Preferências de Sistema\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Deschide Preferințele de Sistem\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Открыть Cистемные настройки\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Otvoriť systémové nastavenia\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Öppna systeminställningar\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sistem Tercihlerini Aç\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Відкрити Налаштування системи\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mở cài đặt hệ thống\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"打开系统偏好设置\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"打開系統偏好設定\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"開啟系統偏好設定\"\n          }\n        }\n      }\n    },\n    \"iXo-XL-T6q.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Authorize Rectangle\\\"; ObjectID = \\\"iXo-XL-T6q\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تخويل المستطيل\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autoritza Rectangle\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autoritza Rectangle\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autorizovat Rectangle\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle autorisieren\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Authorize Rectangle\"\n          }\n        },\n        \"en-GB\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Authorise Rectangle\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autorizar Rectangle\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autorizar Rectangle\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autoriser Rectangle\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Izinkan Rectangle\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autorizza Rectangle\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangleを許可\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle 승인\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Suteikti Rectangle prieigą\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autoriser Rectangle\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle toestemming geven\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autoriser Rectangle\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autoryzacja Rectangle\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autorizar Rectangle\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autorizar Rectangle\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autorizare Rectangle\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Дать Rectangle доступ\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Povoliť Rectangle\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Auktorisera Rectangle\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle'ı Yetkilendir\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Авторизувати Rectangle\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cấp phép cho Rectangle\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"授权Rectangle\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"授權 Rectangle\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"授權Rectangle\"\n          }\n        }\n      }\n    },\n    \"J5U-5w-g23.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Justify\\\"; ObjectID = \\\"J5U-5w-g23\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"يبرر\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Justificar\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Justificar\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Blocksatz\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Justificar\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Justificar\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Justifier\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rata Kanan Kiri\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Giustifica\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"両端揃え\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"좌우 정렬\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lygiuoti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Juster\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Uitlijnen\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Juster\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Wyjustuj\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Justificar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Justificar\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Выровнять\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Justera\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Căn chỉnh\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"两端对齐\"\n          }\n        }\n      }\n    },\n    \"J6t-sg-Wwz.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Bottom Right\\\"; ObjectID = \\\"J6t-sg-Wwz\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"أسفل اليمين\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Inferior dreta\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Inferior dreta\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vpravo dole\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Unten rechts\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Bottom Right\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Abajo a la derecha\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Abajo a la derecha\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"En bas à droite\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kanan Bawah\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"In basso a destra\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右下\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"오른쪽 아래\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Apačioje dešinėje\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nedre høgre\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rechtsonder\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nedre høgre\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Prawy dolny róg\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Inferior direito\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Inferior Direita\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dreapta Jos\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Внизу справа\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vpravo dole\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nedre högra\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sağ Alt\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Нижній правий кут\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Góc dưới bên phải\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右下\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右下\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右下\"\n          }\n        }\n      }\n    },\n    \"J7y-lM-qPV.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Use None\\\"; ObjectID = \\\"J7y-lM-qPV\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"استخدام لا شيء\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Utilitzar cap\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Utilitzar cap\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nicht verwenden\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usar ninguno\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usar ninguno\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ne rien utiliser\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tidak Gunakan Apapun\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Non usare\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"使用しない\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"사용하지 않음\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nenaudoti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk ingen\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gebruik geen\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk ingen\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nie używaj\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usar nenhum\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nenhum\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Не использовать\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Använd ingen\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Không sử dụng\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"都不使用\"\n          }\n        }\n      }\n    },\n    \"jBQ-r6-VK2.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Kern\\\"; ObjectID = \\\"jBQ-r6-VK2\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"كيرن\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zeichenabstand\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"カーニング\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"자간\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kernas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kniping\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kniping\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Керн\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kerning\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Điều chỉnh khoảng cách giữa\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"字距调整\"\n          }\n        }\n      }\n    },\n    \"jFq-tB-4Kx.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"\\\\tRight to Left\\\"; ObjectID = \\\"jFq-tB-4Kx\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \" t من اليمين إلى اليسار\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDreta a esquerra\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDreta a esquerra\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tVon rechts nach links\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDerecha a izquierda\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDerecha a izquierda\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDe droite à gauche\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tKanan ke Kiri\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDa destra a sinistra\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\t右から左\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\t오른쪽에서 왼쪽\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tIš dešinės į kairę\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tHøgre til venstre\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tVan rechts naar links\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tHøgre til venstre\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tZ prawej strony do lewej\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDa direita para a esquerda\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDa direita para a esquerda\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tСправа налево\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tHöger till vänster\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\\\tPhải sang trái\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\\\tRight to Left\"\n          }\n        }\n      }\n    },\n    \"Jnd-Lc-nlh.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Next Display\\\"; ObjectID = \\\"Jnd-Lc-nlh\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"العرض التالي\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Següent pantalla\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Següent pantalla\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Následující displej\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nächster Bildschirm\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Next Display\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Siguiente Pantalla\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Siguiente Pantalla\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Moniteur suivant\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tampilan Berikutnya\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Schermo successivo\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"次のディスプレイ\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"다음 디스플레이\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kitas ekranas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Neste skjerm\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Volgende scherm\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Neste skjerm\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Następny ekran\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Próxima tela\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ecrã seguinte\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ecranul Următor\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Следующий экран\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nasledujúci displej\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nästa skärm\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sonraki Ekran\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Наступний екран\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Màn hình kế tiếp\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"下一个显示器\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"下一個顯示器\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"下一個顯示器\"\n          }\n        }\n      }\n    },\n    \"JSl-FY-MF0.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"-\\\"; ObjectID = \\\"JSl-FY-MF0\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"-\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        }\n      }\n    },\n    \"jww-Ju-S3d.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"do nothing\\\"; ObjectID = \\\"jww-Ju-S3d\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"لا تفعل شيئا\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"no fer res\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"no fer res\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"nic nedělat\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nichts tun\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"do nothing\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"no hacer nada\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"no hacer nada\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ne rien faire\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"tidak melakukan apapun\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"nessuna azione\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"何もしない\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"아무것도 하지 않음\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"nieko nedaryti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"gjør ingenting\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"do nothing\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"gjer ingenting\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"do nothing\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"do nothing\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"do nothing\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"nu face nimic\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ничего не делать\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"nič nerobiť\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"gör ingenting\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"hiçbir şey yapma\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"не робити нічого\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Không làm gì\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"不执行任何操作\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"不執行任何動作\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"不執行任何操作\"\n          }\n        }\n      }\n    },\n    \"jxe-nr-LDQ.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"About\\\"; ObjectID = \\\"jxe-nr-LDQ\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"عن\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quant a\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quant a\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"O aplikaci\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Über\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"About\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Acerca de\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Acerca de\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"À propos\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tentang\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Informazioni\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangleについて\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"정보\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Apie Rectangle\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Om\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Over\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Om\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"O Rectangle\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sobre\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sobre\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Despre\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"О Rectangle\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"O aplikácii\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Om\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hakkında\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Про програму\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Giới thiệu\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"关于\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"關於\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"關於\"\n          }\n        }\n      }\n    },\n    \"jxT-CU-nIS.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Format\\\"; ObjectID = \\\"jxT-CU-nIS\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"شكل\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Formato\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Formato\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Formato\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"フォーマット\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"포맷\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Formatas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Formaat\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Formato\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Formato\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Формат\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Định dạng\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"格式\"\n          }\n        }\n      }\n    },\n    \"KaW-ft-85H.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Revert to Saved\\\"; ObjectID = \\\"KaW-ft-85H\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"العودة إلى المحفوظات\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Torna al desat\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Torna al desat\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Änderungen zurücksetzen\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Volver a Guardado\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Volver a Guardado\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Revenir au dernier enregistrement\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kembali ke Simpanan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ritorna a stato salvato\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"保存済みに戻す\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"다음으로 복귀\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Grąžinti į išsaugotą\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gå tilbake til lagra\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Terug naar opgeslagen\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gå attende til lagra\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Przywróć do zapisanego\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Descartar alterações\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Reverter para Guardado\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Вернуть к сохранённому\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Återgå till sparad\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quay lại mục đã lưu\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"复原到已存储版本\"\n          }\n        }\n      }\n    },\n    \"Kd2-mp-pUS.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Show All\\\"; ObjectID = \\\"Kd2-mp-pUS\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"عرض الكل\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostra-ho tot\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostra-ho tot\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zobrazit vše\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Alle einblenden\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Show All\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar todo\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar todo\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tout afficher\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tampilan Semua\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostra tutti\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"すべて表示\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"모두 보기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rodyti viską\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis alle\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Toon alle\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis alle\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pokaż wszystko\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar todos\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar todos\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Arată Toate\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Показать всё\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zobraziť všetko\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Visa allt\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tümünü Göster\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Показати все\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hiển thị tất cả\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"显示所有\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"顯示所有\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"顯示所有\"\n          }\n        }\n      }\n    },\n    \"KfQ-dw-3jk.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"-\\\"; ObjectID = \\\"KfQ-dw-3jk\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"-\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        }\n      }\n    },\n    \"kIP-vf-haE.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Show Sidebar\\\"; ObjectID = \\\"kIP-vf-haE\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"إظهار الشريط الجانبي\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostra barra lateral\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostra barra lateral\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Seitenleiste einblenden\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar barra lateral\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar barra lateral\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Afficher la barre latérale\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tampilkan Bilah Samping\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostra barra laterale\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"サイドバーを表示\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"사이드바 보기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rodyti šoninį skydelį\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis sidefeltet\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Toon zijbalk\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis sidefeltet\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pokaż pasek boczny\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar barra lateral\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar Barra lateral\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Показать боковую панель\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Visa sidofältet\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hiển thị thanh bên\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"显示边栏\"\n          }\n        }\n      }\n    },\n    \"kx2-tZ-lk8.title\" : {\n      \"comment\" : \"Class = \\\"NSButtonCell\\\"; title = \\\"Animate footprint\\\"; ObjectID = \\\"kx2-tZ-lk8\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تحريك البصمة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Animate footprint\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Animate footprint\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Animate footprint\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fußabdruck animieren\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Animate footprint\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Animar la huella de ventana\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Animar la huella de ventana\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Animer l'empreinte\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Animate footprint\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Animazione ridimensionamento\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"軌跡のアニメーション\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"부드러운 스냅 예시 애니메이션\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Animuoti seką\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Animer fotavtrykk\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Animate footprint\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Animer fotavtrykk\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Animate footprint\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Animate footprint\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Animate footprint\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Animate footprint\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Анимировать след\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Animovať stopu\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Animate footprint\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Animate footprint\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Анімувати відбиток\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hiển thị vết bố trí\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"吸附动画\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"動畫\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Animate footprint\"\n          }\n        }\n      }\n    },\n    \"kXi-dT-zSF.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Spectacle shortcuts are more likely to conflict with other shortcuts\\\"; ObjectID = \\\"kXi-dT-zSF\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"من المرجح أن تتعارض اختصارات النظارات مع الاختصارات الأخرى\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"És probable que les dreceres de Spectable entren en conflicte amb altres dreceres\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"És probable que les dreceres de Spectable entren en conflicte amb altres dreceres\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"U Spectacle zkratek je větší pravděpodobnost konfliktu s jinými zkratkami\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spectacle-Tastaturkurzbefehle stehen eher mit anderen Tastaturkurzbefehlen in Konflikt\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Spectacle shortcuts are more likely to conflict with other shortcuts\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Los atajos de Spectacle tienen más probabilidades de entrar en conflicto con otros atajos\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Los atajos de Spectacle tienen más probabilidades de entrar en conflicto con otros atajos\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Les raccourcis de Spectacle ont plus de chance d'être en conflit avec d'autres raccourcis\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pintasan Spectacle lebih cenderung bertentangan dengan pintasan lainnya\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Le abbreviazioni Spectacle hanno maggiori probabilità di conflitto con altre abbreviazioni\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spectacleを使用すると、ショートカットがほかのショートカットと競合する可能性が高まります\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spectacle 단축키는 다른 키 조합과 충돌할 가능성이 있습니다\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spectacle karštieji klavišai tikriausiai sukels konfliktų su kitais karštaisiais klavišais\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spectacle-snarveger kommer mer sannsynleg i konflikt med andre snarveger\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spectacle shortcuts are more likely to conflict with other shortcuts\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spectacle-snarvegar kjem meir sannsynleg i konflikt med andre snarvegar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skróty Spectacle są bardziej podatne na konflikt z innymi skrótami\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Atalhos Spectacle tem mais chance de causar conflitos com outros atalhos\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Os atalhos de Spectacle têm maior probabilidade de entrar em conflito com outros atalhos\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Scurtăturile Spectacle sunt mai predispuse să se suprapună cu alte scurtături\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Горячие клавиши Spectacle с большой вероятностью будут конфликтовать с другими горячими клавишами\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spectacle skratky majú vyššiu pravdepodobnosť konfliktu s inými skratkami\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spectacle-genvägar är mer benägna att komma i konflikt med andra genvägar\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spectacle kısayollarının diğer kısayollarla çakışması daha muhtemeldir\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Комбінації клавіш Spectacle більш ймовірно конфліктують з іншими комбінаціями клавіш\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Phím tắt của Spectacle có nhiều khả năng xung đột với những phím tắt khác\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spectacle 快捷键更有可能与其他快捷键冲突\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spectacle 快速鍵更可能與其他快速鍵相衝突\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spectacle快捷鍵更可能與其他快捷鍵衝突\"\n          }\n        }\n      }\n    },\n    \"kYm-Ye-gOR.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Welcome to Rectangle!\\\"; ObjectID = \\\"kYm-Ye-gOR\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"مرحبًا بك في المستطيل\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Benvingut a Rectangle!\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Benvingut a Rectangle!\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vítejte do Rectangle!\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Willkommen bei Rectangle!\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Welcome to Rectangle!\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"¡Bienvenido a Rectangle!\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"¡Bienvenido a Rectangle!\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bienvenue dans Rectangle !\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Selamat Datang di Rectangle!\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle ti dà il benvenuto!\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangleへようこそ!\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle에 오신 것을 환영합니다!\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sveiki atvykę į Rectangle!\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Velkommen til Rectangle!\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Welcome to Rectangle!\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Velkomen til Rectangle!\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Witaj w Rectangle!\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bem vindo ao Rectangle!\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bem-vindo ao Rectangle!\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bine ai venit în Rectangle!\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Добро пожаловать в Rectangle!\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Víta Ťa Rectangle!\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Välkommen till Rectangle!\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle'a Hoşgeldiniz!\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ласкаво просимо до Rectangle!\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Chào mừng đến với Rectangle!\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"欢迎使用 Rectangle！\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"歡迎使用 Rectangle！\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"歡迎使用Rectangle！\"\n          }\n        }\n      }\n    },\n    \"Larger Width\" : {\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Larger Width\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Увеличить ширину\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Chiều rộng lớn hơn\"\n          }\n        }\n      }\n    },\n    \"Lbh-J2-qVU.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"\\\\tLeft to Right\\\"; ObjectID = \\\"Lbh-J2-qVU\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \" t من اليسار إلى اليمين\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tEsquerra a dreta\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tEsquerra a dreta\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tVon links nach rechts\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tIzquierda a derecha\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tIzquierda a derecha\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDe gauche à droite\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tKiri ke Kanan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDa sinistra a destra\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\t左から右\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\t왼쪽에서 오른쪽\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tIš kairės į dešinę\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tVenstre til høgre\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tVan links naar rechts\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tVenstre til høgre\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tOd lewej do prawej\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDa esquerda para a direita\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDa Esquerda para a Direita\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tСлева направо\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tVänster till höger\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\\\tTrái sáng phải\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\\\tLeft to Right\"\n          }\n        }\n      }\n    },\n    \"LE2-aR-0XJ.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Bring All to Front\\\"; ObjectID = \\\"LE2-aR-0XJ\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"إحضار الكل إلى المقدمة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Porta tot al davant\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Porta tot al davant\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Alle nach vorne bringen\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Traer a todos al frente\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Traer a todos al frente\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tout ramener au premier plan\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bawa Semua ke Depan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Porta tutti in primo piano\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"すべてを手前に移動\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"모두 앞으로 가져오기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Iškelti viską į priekį\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Legg alle øverst\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Breng alles naar voren\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Legg alle øvst\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Umieść wszystko na wierzchu\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Trazer tudo para a frente\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Trazer tudo para a frente\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Вынести всё вперёд\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ta fram allt\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Đưa tất cả ra phía trước\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"前置全部窗口\"\n          }\n        }\n      }\n    },\n    \"Left half, top/bottom half near corners\" : {\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Moitié gauche, moitié du haut/bas près des coins\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Left half, top/bottom half near corners\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Left half, top/bottom half near corners\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Levá polovina, horní/spodní polovina blízko rohů\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Linke Hälfte, Obere/Untere Hälfte in der Nähe der Ecken\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mitad izquierda, mitad superior/inferior cerca de las esquinas\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mitad izquierda, mitad superior/inferior cerca de las esquinas\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Moitié gauche, moitié du haut/bas près des coins\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Left half, top/bottom half near corners\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Metà sinistra, metà superiore/inferiore vicino gli angoli\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左半分、画面端付近の上半分・下半分\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"왼쪽 반, 위/아래 반에 근접한 모서리\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kairė pusė, viršutinė/apačioje pusė šalia kampų\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Venstre halvdel, øverste/nederste halvdel nære hjørne\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Left half, top/bottom half near corners\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Venstre halvdel, øvste/nedste halvdel nære hjørne\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Left half, top/bottom half near corners\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Metade esquerda, metade de cima/baixo próximo das bordas\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Left half, top/bottom half near corners\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Left half, top/bottom half near corners\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Левая половина, верхняя/нижняя половина возле углов\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ľavá polovica, horná/spodná polovica blízko rohov\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Left half, top/bottom half near corners\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sol yarım (köşelere yaklaşıldığında ise üst/alt yarım)\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ліва половина, верхня/нижня половина близько кутів\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nửa trái, nửa trên/dưới nếu ngay góc\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左半屏，靠近角落则上／下半屏\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左半，靠近角落則上半／下半\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左半，靠近角落則上半／下半\"\n          }\n        }\n      }\n    },\n    \"Left or right half\" : {\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Moitié gauche ou droite\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Left or right half\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Left or right half\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Levá nebo pravá polovina\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Linke oder Rechte Hälfte\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mitad izquierda o derecha\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mitad izquierda o derecha\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Moitié gauche ou droite\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Left or right half\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Metà destra o sinistra\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左半分または右半分\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"왼쪽 또는 오른쪽 반\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kairė arba dešinė pusė\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Venstre eller høgre halvdel\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Left or right half\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Venstre eller høgre halvdel\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Left or right half\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Metade esquerda ou direita\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Left or right half\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Left or right half\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Левая или правая половина\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ľavá alebo pravá polovica\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Left or right half\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sol veya sağ yarım\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ліва або права половина\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nửa trái hoặc phải\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左半屏或右半屏\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左半或右半\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左半或右半\"\n          }\n        }\n      }\n    },\n    \"lgE-cR-cQ5.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Go to System Preferences → Security & Privacy → Privacy → Accessibility\\\"; ObjectID = \\\"lgE-cR-cQ5\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"انتقل إلى تفضيلات النظام ← الأمان والخصوصية ← الخصوصية ← إمكانية الوصول\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Anar a Preferències del sistema → Seguretat i privacitat → Privacitat → Accesibilitat\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Anar a Preferències del sistema → Seguretat i privacitat → Privacitat → Accesibilitat\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jděte do Předvolby systému -> Zabezpečení a soukromí -> Soukromí -> Zpřístupnění\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gehe zu Systemeinstellungen → Sicherheit & Datenschutz → Datenschutz → Bedienungshilfen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Go to System Preferences → Security & Privacy → Privacy → Accessibility\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vaya a Preferencias del sistema → Seguridad y privacidad → Privacidad → Accesibilidad\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vaya a Preferencias del sistema → Seguridad y privacidad → Privacidad → Accesibilidad\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Allez dans Préférences Système → Sécurité et confidentialité → Confidentialité → Accessibilité\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buka Preferensi Sistem → Keamanan & Privasi → Privasi → Aksesibilitas\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vai a Preferenze di Sistema → Sicurezza e privacy → Privacy → Accessibilità\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"システム環境設定→セキュリティとプライバシー→プライバシー→アクセシビリティに移動してください\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"시스템 환경설정 → 보안 및 개인 정보 보호 → 개인 정보 보호 → 손쉬운 사용으로 이동하십시오\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Eikite į Sistemos nustatymus → Apsauga ir saugumas → Privatumas → Universalusis prieinamumas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gå til Systeminnstillinger → Personvern og sikkerhet → Personvern → Tilgjengelighet\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ga naar Systeemvoorkeuren → Beveiliging en privacy → Privacy → Toegankelijkheid\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gå til Systeminnstillingar → Personvern og tryggleik → Personvern → Tilgjengelegheit\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Przejdź do Preferencji systemowych → Ochrona i prywatność → Prywatność → Dostępność\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vá em Preferências do Sistema → Segurança e Privacidade → Privacidade → Acessibilidade\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Aceda a Preferências do Sistema → Segurança e Privacidade → Privacidade → Privacidade → Acessibilidade\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Deschide System Preferences → Security & Privacy → Privacy → Accesibilitate\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Перейдите в Системные настройки → Защита и безопасность → Конфиденциальность → Универсальный доступ\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Prejdi do Systémové nastavenia -> Súkromie a bezpečnosť -> Súkromie -> Prístupnosť\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gå till Systeminställningar → Säkerhet och sekretess → Sekretess → Tillgänglighet\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sistem Tercihleri -> Güvenlik & Gizlilik > Güvenlik > Erişilebilirlik menüsüne gidin.\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Перейдіть до Налаштування системи → Безпека та конфіденційність → Конфіденційність → Доступність\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Đi đến Cài đặt hệ thống → Quyền riêng tư & Bảo mật → Trợ năng\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"前往 系统偏好设置 → 安全性与隐私 → 隐私 → 辅助功能\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"前往 系統偏好設定 → 安全性與隱私權 → 隱私權 → 輔助使用\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"前往 系統設定 → 保安與私隱 → 私隱 → 輔助使用\"\n          }\n        }\n      }\n    },\n    \"LqQ-pM-jRN.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Bottom Left Sixth\\\"; ObjectID = \\\"LqQ-pM-jRN\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"أسفل اليسار السادس\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sisè inferior esquerre\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sisè inferior esquerre\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spodní levá šestina\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Unteres linkes Sechstel\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Bottom Left Sixth\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sextante abajo a la izquierda\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sextante abajo a la izquierda\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sixième bas gauche\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Seperenam Kiri Bawah\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sesto inferiore sinistro\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左下\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"아래 왼쪽 1/6\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Apatinė šeštoji kairėje\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nedre venstre sjettedel\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Linksonder zesde\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nedre venstre sjettedel\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jedna szósta po lewej u dołu\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sexto inferior à esquerda\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sexto Esquerdo Inferior\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Șesimea din Stânga Jos\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Нижняя шестая слева\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spodná ľavá šestina\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nedre vänstra sjätte\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sol Alt Altıda bir\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Нижня ліва шоста частина\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1/6 góc dưới bên trái\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左下１／６\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左下１／６\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左下１／６\"\n          }\n        }\n      }\n    },\n    \"ltc-mf-BHr.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"When the menu bar icon is hidden, relaunch Rectangle from Finder to open\\\"; ObjectID = \\\"ltc-mf-BHr\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"عندما تكون أيقونة شريط القائمة مخفية ، أعد تشغيل المستطيل من Finder لفتح القائمة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quan la icona de la barra de menús estigui amagada, torneu a iniciar Rectangle des del Finder per obrir el menú.\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quan la icona de la barra de menús estigui amagada, torneu a iniciar Rectangle des del Finder per obrir el menú.\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pokud je ikona skrytá v řádku nabídek, tak znovu spusťte Rectangle přes Finder\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Wenn das Menüleistensymbol ausgeblendet ist, starte Rectangle im Finder neu, um die Rectangle-Einstellungen zu öffnen.\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"When the menu bar icon is hidden, relaunch Rectangle from Finder to open\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cuando el icono de la barra de menús esté oculto, vuelva a iniciar Rectangle desde el Finder para abrir el menú.\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cuando el icono de la barra de menús esté oculto, vuelva a iniciar Rectangle desde el Finder para abrir el menú.\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lorsque l'icône de la barre des menus est masquée, relancez Rectangle depuis le Finder pour ouvrir le menu.\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Saat ikon bilah menu disembunyikan, luncurkan kembali Rectangle dari Finder untuk membuka menu.\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quando l'icona dalla barra dei menu è nascosta, rilancia Rectangle dal Finder per aprire il menu.\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"メニューバーのアイコンが非表示の場合にメニューを開くには、FinderからRectangleを再起動してください。\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"메뉴 막대 아이콘이 숨겨져 있을 경우, Finder에서 Rectangle를 다시 시작하여 메뉴를 여십시오.\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jei meniu juostos piktograma yra paslėpta, paleiskite Rectangle programą iš Finder, kad atidarytumėte meniu.\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Når menyradikonet er skjult kan du starte Rectangle fra Finder for å åpne menyen.\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Als het menubalk-pictogram verborgen is, start u Rectangle opnieuw vanuit Finder om het menu te openen.\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Når menyradikonet er gøymd kan du starta Rectangle frå Finder for å opna menyen.\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gdy ikona paska menu jest ukryta, ponownie uruchom Rectangle z Findera, aby otworzyć menu.\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quando o ícone da barra de menus estiver oculto, reinicie o Rectangle pelo Finder para abrir o menu.\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quando o ícone da barra de menus estiver oculto, reinicie o Rectangle do Finder para abrir o menu.\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dacă iconița din bara de meniu este ascunsă, repornește Rectangle din Finder\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Если значок строки меню скрыт, перезапустите программу Rectangle из Finder, чтобы открыть меню.\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ak je ikona v lište skrytá, znovu spusti Rectangle z Findera\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"När menyradens ikon är dold, starta då Rectangle från Finder för att öppna menyn.\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Menü simgesi gizlendiğinde, menüyü açmak için Rectangle'ı Finder ile yeniden açın.\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Коли піктограма у рядку меню прихована, перезапустіть Rectangle з Finder для відкриття\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Khi biểu tượng trên thanh menu bị ẩn, khởi chạy Rectangle từ Finder để mở lại\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"当菜单栏图标被隐藏时，从访达重新开启Rectangle以打开。\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"選單列圖示被隱藏時，從 Finder 重新啟動 Rectangle 來打開。\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"選單列圖像被隱藏時，從Finder重新啟動Rectangle以開啟。\"\n          }\n        }\n      }\n    },\n    \"lUu-Hs-vuk.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"400\\\"; ObjectID = \\\"lUu-Hs-vuk\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"400\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"400\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"400\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"400\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"400\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"400\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"400\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"400\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"400\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"400\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"400\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"400\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"400\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"400\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"400\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"400\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"400\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"400\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"400\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"400\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"400\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"400\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"400\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"400\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"400\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"400\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"400\"\n          }\n        }\n      }\n    },\n    \"LVM-kO-fVI.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Paste Ruler\\\"; ObjectID = \\\"LVM-kO-fVI\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"لصق المسطرة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Enganxa regle\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Enganxa regle\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lineal einfügen\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pegar Regla\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pegar Regla\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Règle pour coller\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tempel Penggaris\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Incolla righello\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ルーラーをペースト\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"눈금자 붙여넣기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Įterpti liniuotę\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lim inn linjal\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lineaal plakken\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lim inn linjal\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Wklej linijkę\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Colar régua\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Régua de Colar\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Вставить линейку\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Klistra in linjal\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dán thước\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"粘贴标尺\"\n          }\n        }\n      }\n    },\n    \"m2F-eA-g7w.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Bottom Right Sixth\\\"; ObjectID = \\\"m2F-eA-g7w\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"السادس الأيمن السفلي\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sisè inferior dreta\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sisè inferior dreta\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spodní pravá šestina\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Unteres rechtes Sechstel\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Bottom Right Sixth\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sextante abajo a la derecha\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sextante abajo a la derecha\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sixième bas droit\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Seperenam Kanan Bawah\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sesto inferiore destro\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右下\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"아래 오른쪽 1/6\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Apatinė šeštoji dešinėje\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nedre høgre sjettedel\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rechtsonder zesde\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nedre høgre sjettedel\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jedna szósta po prawej u dołu\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sexto inferior à direita\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sexto Direito Inferior\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Șesimea din Dreapta Jos\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Нижняя шестая справа\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spodná pravá šestina\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nedre högra sjätte\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sağ Alt Altıda bir\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Нижня права шоста частина\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1/6 góc dưới bên phải\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右下１／６\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右下１／６\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右下１／６\"\n          }\n        }\n      }\n    },\n    \"Maximize\" : {\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximiser\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximitzar\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximitzar\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximalizovat\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximieren\"\n          }\n        },\n        \"en-GB\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximise\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximizar\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximizar\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximiser\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maksimalkan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Massimizza\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"最大化\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"최대화\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maksimizuoti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maksimer\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximize\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maksimer\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maksymalizuj\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximizar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximizar\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximizează\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Максимизировать\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximalizovať\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maximera\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tamamını kapla\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Максимізувати\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tối đa\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"最大化\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"放到最大\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"放到最大\"\n          }\n        }\n      }\n    },\n    \"MDd-Sm-sUx.title\" : {\n      \"comment\" : \"Class = \\\"NSWindow\\\"; title = \\\"About Todo Mode\\\"; ObjectID = \\\"MDd-Sm-sUx\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"حول تودو مود\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quant al mode Todo\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quant al mode Todo\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"O Todo módu\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Über den To-do-Modus\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"About Todo Mode\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Acerca del modo 'Todo'\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Acerca del modo 'Todo'\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"À propos du mode Todo\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tentang Mode Todo\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Informazioni sulla modalità In evidenza\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ToDoモードについて\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todo 모드 정보\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Apie Todo režimą\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Om Gjøreliste-modus\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"About Todo Mode\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Om Gjereliste-modus\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"About Todo Mode\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sobre o Todo Mode\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"About Todo Mode\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Despre Modul Todo\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"О Todo режиме\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"O Todo režime\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Om Att göra-läge\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todo Modu Hakkında\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Про режим Завдань\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Giới thiệu chế độ Todo\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"关于待办模式\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"關於待辦模式\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"關於待辦模式\"\n          }\n        }\n      }\n    },\n    \"mFt-Kg-UYG.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Top Left Sixth\\\"; ObjectID = \\\"mFt-Kg-UYG\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"أعلى اليسار السادس\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sisè superior esquerre\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sisè superior esquerre\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Horní levá šestina\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Oberes linkes Sechstel\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Top Left Sixth\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sextante arriba a la izquierda\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sextante arriba a la izquierda\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sixième haut gauche\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Seperenam Kiri Atas\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sesto superiore sinistro\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左上\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"위 왼쪽 1/6\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Viršutinė šeštoji kairėje\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Øvre venstre sjettedel\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Linksboven zesde\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Øvre venstre sjettedel\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jedna szósta po lewej u góry\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sexto superior à esquerda\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sexto Esquerdo Superior\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Șesimea din Stânga Sus\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Верхняя шестая слева\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Horná ľavá šestina\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Övre vänstra sjätte\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sol Üst Altıda bir\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Верхня ліва шоста частина\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1/6 góc trên bên trái\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左上１／６\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左上１／６\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左上１／６\"\n          }\n        }\n      }\n    },\n    \"Middle Third\" : {\n\n    },\n    \"mK6-2p-4JG.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Check Grammar With Spelling\\\"; ObjectID = \\\"mK6-2p-4JG\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تحقق من القواعد مع التدقيق الإملائي\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Revisa la gramàtica amb l'ortografia\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Revisa la gramàtica amb l'ortografia\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rechtschreib- und Grammatikprüfung\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Revisar la gramática con la ortografía\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Revisar la gramática con la ortografía\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vérifier la grammaire avec l'orthographe\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Periksa Tata Bahasa Dengan Ejaan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Controlla grammatica insieme all'ortografia\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"スペルと一緒に文法をチェック\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"맞춤법 및 문법 검사\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Patikrinti gramatiką naudojant rašybos tikrinimą\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kontroller grammatikk og stavemåte\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Grammatica en spelling controleren\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kontroller grammatikk og stavemåte\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sprawdź gramatykę\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Verificar gramática com ortografia\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Verificar gramática com ortografia\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Проверить грамматику с помощью правописания\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kontrollera grammatik med stavning\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kiểm tra ngữ pháp với chính tả\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"检查拼写和语法\"\n          }\n        }\n      }\n    },\n    \"MkV-Pr-PK5.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Copy Ruler\\\"; ObjectID = \\\"MkV-Pr-PK5\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"نسخ المسطرة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Regla de còpia\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Regla de còpia\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lineal kopieren\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copiar regla\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copiar regla\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Règle pour copier\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Salin Penggaris\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copia righello\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ルーラーをコピー\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"눈금자 복사하기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nukopijuoti liniuotę\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kopier linjal\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lineaal kopiëren\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kopier linjal\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kopiuj linijkę\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copiar régua\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Régua de Cópia\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Скопировать линейку\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kopiera linjal\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sao chép Thước kẻ\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"拷贝标尺\"\n          }\n        }\n      }\n    },\n    \"MKW-qf-Q2C.title\" : {\n      \"comment\" : \"Class = \\\"NSButtonCell\\\"; title = \\\"▶︎ ⋯\\\"; ObjectID = \\\"MKW-qf-Q2C\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"▶︎ ⋯\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"▶︎ ⋯\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"▶︎ ⋯\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"▶︎ ⋯\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"▶︎ ⋯\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"▶︎ ⋯\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"▶︎ ⋯\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"▶︎ ⋯\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"▶︎ ⋯\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"▶︎ ⋯\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"▶︎ ⋯\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"▶︎ ⋯\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"▶︎ ⋯\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"▶︎ ⋯\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"▶︎ ⋯\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"▶︎ ⋯\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"▶︎ ⋯\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"▶︎ ⋯\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"▶︎ ⋯\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"▶︎ ⋯\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"▶︎ ⋯\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"▶︎ ⋯\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"▶︎ ⋯\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"▶︎ ⋯\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"▶︎ ⋯\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"▶︎ ⋯\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"▶︎ ⋯\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"▶︎ ⋯\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"▶︎ ⋯\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"▶︎ ⋯\"\n          }\n        }\n      }\n    },\n    \"Move to Edge\" : {\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Déplacer vers le bord\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mou a la vora\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mou a la vora\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Přesunout ke kraji\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"An den Rand bewegen\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Desplazar al borde\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Desplazar al borde\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Déplacer vers le bord\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Geser ke Tepi\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Muovi verso i bordi\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"画面端に移動\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"모서리로 이동\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Perkelti į kraštą\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Flytt til kanten\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Verplaats naar de rand\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Flytt til kanten\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Przesuń do krawędzi\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mover para a borda\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mover para Lado\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Переместить к краю\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Presunúť na okraj\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Flytta till kanten\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kenarlar\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Перемістити до краю\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Đi đến cạnh\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"移动到边缘\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"移至邊緣\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"移到邊緣\"\n          }\n        }\n      }\n    },\n    \"mpl-sd-2Wc.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Left\\\"; ObjectID = \\\"mpl-sd-2Wc\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"غادر\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Left\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Left\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Left\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Links\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Left\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Izquierda\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Izquierda\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gauche\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Left\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sinistra\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"왼쪽\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kairė\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Venstre\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Left\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Venstre\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Left\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Esquerda\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Left\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Left\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Слева\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vľavo\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Left\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sol\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ліворуч\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Trái\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左侧\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左側\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Left\"\n          }\n        }\n      }\n    },\n    \"MzN-CJ-ASD.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Make Smaller\\\"; ObjectID = \\\"MzN-CJ-ASD\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"اجعله اصغر\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fer més petit\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fer més petit\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zmenšit\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Verkleinern\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Make Smaller\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hacer más pequeño\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hacer más pequeño\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Réduire la taille\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buat Lebih Kecil\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rimpicciolisci\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"縮小\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"작게\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sumažinti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gjør mindre\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maak kleiner\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gjer mindre\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zmniejsz\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Diminuir\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tornar mais pequeno\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Micșorează\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Уменьшить\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zmenšiť\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gör mindre\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Küçült\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Зменшити\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Giảm kích thước\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"缩小\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"縮小\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"縮小\"\n          }\n        }\n      }\n    },\n    \"N2U-pY-CLq.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Keep a chosen application visible on the right side of your primary screen at all times\\\"; ObjectID = \\\"N2U-pY-CLq\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"احتفظ بالتطبيق المختار مرئيًا على الجانب الأيمن من شاشتك الأساسية في جميع الأوقات\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Manté l'aplicació escollida visible al costat dret de la pantalla principal en tot moment\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Manté l'aplicació escollida visible al costat dret de la pantalla principal en tot moment\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zobrazí vybranou aplikaci vždy na pravé straně vaší hlavní obrazovky\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Halte eine ausgewählte Anwendung auf der rechten Seite des Hauptbildschirms im Vordergrund.\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Keep a chosen application visible on the right side of your primary screen at all times\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mantener la aplicación elegida visible en la parte derecha de la pantalla primaria en todo momento\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mantener la aplicación elegida visible en la parte derecha de la pantalla primaria en todo momento\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Garder une application visible à tout moment sur le côté droit de votre écran principal\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Biarkan aplikasi yang dipilih terlihat di sisi kanan layar utama Anda setiap saat\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tieni l'applicazione scelta sempre visibile sulla destra del tuo schermo principale\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"メインディスプレイの右側に、指定されたアプリケーションを常に表示します\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"선택한 응용 프로그램을 메인 화면 오른쪽에 항상 표시합니다\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Laikyti pasirinktą programą nuolat matomą dešinėje pagrindinio ekrano pusėje\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gjør et valgt program synlig hele tida til høgre på hovedskjermen din\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Keep a chosen application visible on the right side of your primary screen at all times\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gjer eit valt program synleg heile tida til høgre på hovudskjermen din\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Keep a chosen application visible on the right side of your primary screen at all times\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Keep a chosen application visible on the right side of your primary screen at all times\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Keep a chosen application visible on the right side of your primary screen at all times\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Păstrază tot timpul o aplicație la alegere în dreapta ecranului principal\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Держать выбранное приложение постоянно видимым в правой части основного экрана\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ponechá zvolenú aplikáciu vždy zobrazenú na pravej strane hlavnej obrazovky\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Behåll en vald applikation hela tiden synlig på höger sida på din primära skärm\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Seçtiğiniz bir uygulamayı ana ekranınızın sağında her zaman görüntüleyin\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Залишати обраний застосунок завжди видимим на правому боці головного екрану\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Luôn giữ ứng dụng được chọn hiển thị bên phải của màn hình chính\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"使所选应用程序在主屏幕右侧始终保持可见\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"在主螢幕右側始終顯示所選擇的應用程式\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"在主螢幕右側始終顯示所選擇的應用程式\"\n          }\n        }\n      }\n    },\n    \"n4U-FC-L9s.title\" : {\n      \"comment\" : \"Class = \\\"NSButtonCell\\\"; title = \\\"Remove keyboard shortcut restrictions\\\"; ObjectID = \\\"n4U-FC-L9s\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"السماح لأي اختصار لوحة المفاتيح\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Permet qualsevol drecera de teclat\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Permet qualsevol drecera de teclat\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Odstranit omezení klávesových zkratek\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jeden Tastaturkurzbefehl erlauben\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Remove keyboard shortcut restrictions\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Permitir cualquier atajo de teclado\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Permitir cualquier atajo de teclado\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autoriser tout raccourci clavier\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Izinkan semua pintasan papan ketik\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Consenti qualsiasi abbreviazione da tastiera\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"すべてのキーボードショートカットを許可\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"모든 키보드 단축키 허용\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Leisti bet kokį klavišų derinį\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tillat alle tastatursnarveger\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Elke sneltoets toestaan\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tillat alle tastatursnarvegar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pozwól na użycie dowolnego skrótu klawiaturowego\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Permitir qualquer atalho de teclado\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Permitir qualquer atalho de teclado\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Șterge restricțiile scurtăturilor\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Разрешить любое сочетание клавиш\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Odstrániť obmedzenia klávesových skratiek\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tillåt alla tangentbordsgenvägar\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tüm klavye kısayollarına izin ver\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Видалити обмеження комбінацій клавіш\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Xóa bỏ hạn chế của phím tắt\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"移除键盘快捷键限制\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"移除鍵盤快速鍵限制\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"移除鍵盤快捷鍵限制\"\n          }\n        }\n      }\n    },\n    \"NMo-om-nkz.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Services\\\"; ObjectID = \\\"NMo-om-nkz\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"خدمات\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Serveis\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Serveis\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Služby\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dienste\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Servicios\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Servicios\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Layanan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Servizi\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"サービス\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"서비스\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paslaugos\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tjenester\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Diensten\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tenester\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usługi\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Serviços\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Serviços\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Servicii\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Службы\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Služby\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tjänster\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Servisler\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Сервіси\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dịch vụ\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"服务\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"服務\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"服務\"\n          }\n        }\n      }\n    },\n    \"NMu-W8-Awa.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"-\\\"; ObjectID = \\\"NMu-W8-Awa\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"-\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        }\n      }\n    },\n    \"Nop-cj-93Q.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"\\\\tDefault\\\"; ObjectID = \\\"Nop-cj-93Q\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \" t الافتراضي\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tPer defecte\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tPer defecte\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tStandard\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tPredeterminado\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tPredeterminado\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tPar défaut\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tBawaan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tPredefinito\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tデフォルト\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\t기본\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tPagal nutylėjimą\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tStandard\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tStandaard\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tStandard\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDomyślnie\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tPadrão\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tPadrão\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tПо умолчанию\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tStandard\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\\\tMặc định\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\\\tDefault\"\n          }\n        }\n      }\n    },\n    \"nwX-h6-fwm.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Last Three Fourths\\\"; ObjectID = \\\"nwX-h6-fwm\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"الأرباع الثلاثة الأخيرة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Darrers tres quarts\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Darrers tres quarts\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Poslední tři čtvrtiny\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Letzte drei Viertel\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Last Three Fourths\"\n          }\n        },\n        \"en-GB\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Last Three Quarters\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ultimos tres cuartos\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Últimos tres cuartos\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Trois quarts de droite\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tiga Perempat Terakhir\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ultimi tre quarti\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"3/4にして右寄せ\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"마지막 3/4\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paskutinės trys ketvirtys\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Siste tre fjerdedeler\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Siste tre fjerdedelar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ostatnie trzy czwarte\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Último três quartos\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Últimos Três Quartos\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ultimele Trei Sferturi\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Последние три четверти\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Posledné tri štvrtiny\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sista tre fjärdedelar\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Son Üç Çeyrek\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Останні три чверті\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"3/4 cuối\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右侧３／４\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右側３／４\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右側３／４\"\n          }\n        }\n      }\n    },\n    \"o6e-r0-MWq.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Ligatures\\\"; ObjectID = \\\"o6e-r0-MWq\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"الأربطة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lligadures\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lligadures\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligaturen\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligaduras\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligaduras\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatures\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatur\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Legature\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"リガチャ\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"합자\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatūros\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligaturer\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligaturen\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligaturar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatury\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligaduras\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligaduras\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Лигатуры\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligaturer\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Chữ ghép\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"连字\"\n          }\n        }\n      }\n    },\n    \"O8K-y6-bva.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"View Logging…\\\"; ObjectID = \\\"O8K-y6-bva\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"عرض التسجيل ...\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Veure registre de missatges…\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Veure registre de missatges…\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zobrazit logování…\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Protokolle anzeigen…\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"View Logging…\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ver registro de mensajes…\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ver registro de mensajes…\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Voir le journal…\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lihat Pencatatan…\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vedi resoconto…\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ログを表示…\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"로그 보기…\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Peržiūrėti žurnalą…\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis loggen…\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"View Logging…\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis loggen…\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pokaż logowanie…\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Visualizar logs…\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ver Registos…\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vizualizează Log-uri…\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Просмотр журнала…\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zobraziť záznamy…\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Visa loggen…\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"View Logging…\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Переглянути журнал подій…\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Xem nhật ký…\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"查看日志…\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"檢視記錄⋯\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"檢視記錄⋯\"\n          }\n        }\n      }\n    },\n    \"O9a-3Q-HB1.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Todo side\\\"; ObjectID = \\\"O9a-3Q-HB1\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"جانب تودو\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todo side\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todo side\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todo side\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"To-do-Seite\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Todo side\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lado del 'todo'\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lado del 'todo'\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Côté de Todo\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todo side\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lato In evidenza\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todoアプリケーションの位置\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todo 위치\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todo pusė\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gjøreliste-side\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todo side\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gjereliste-side\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todo side\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todo side\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todo side\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todo side\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Расположение Todo приложения\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todo strana\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todo side\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todo side\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Бічна панель Завдань\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Phía của Todo\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"待办位置\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"待辦方向\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todo side\"\n          }\n        }\n      }\n    },\n    \"OaQ-X3-Vso.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Baseline\\\"; ObjectID = \\\"OaQ-X3-Vso\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"حدود\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Línia base\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Línia base\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Schriftlinie\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Línea de base\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Línea de base\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligne de base\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Garis Dasar\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Linea base\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ベースライン\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"기준선\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pagrindinis rodiklis\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Grunnlinje\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Basislijn\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Grunnline\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Poziom bazowy\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Linha de base\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Base de referência\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Базовый показатель\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baslinje\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Đường cơ sở\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"基线\"\n          }\n        }\n      }\n    },\n    \"oas-Oc-fiZ.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Open Recent\\\"; ObjectID = \\\"oas-Oc-fiZ\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"فتح الأحدث\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Obre recents\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Obre recents\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zuletzt geöffnet\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Abrir reciente\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Abrir reciente\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ouvrir l'élément récent\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buka Baru-baru Ini\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Apri recente\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"最近使った項目を開く\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"최근 사용 열기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Atidaryti paskutinius\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Åpne sist brukte\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open recent\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Opne sist brukte\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Niedawno otwarte\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Abrir recente\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Abrir Recente\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Открыть недавнее\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Öppna senaste\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mở gần nhất…\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"打开最近使用\"\n          }\n        }\n      }\n    },\n    \"oEQ-RN-TTJ.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"-\\\"; ObjectID = \\\"oEQ-RN-TTJ\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"-\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        }\n      }\n    },\n    \"ogc-rX-tC1.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Loosen\\\"; ObjectID = \\\"ogc-rX-tC1\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"فك\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Deixar anar\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Deixar anar\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Weiter\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Aflojar\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Aflojar\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Desserrer\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Longgarkan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Allenta\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ゆるく\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"넓게\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Atlaisvinti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Løsere\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Losmaken\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lausare\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zluzuj\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Afrouxar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Afrouxar\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Расслабьтесь\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lossa\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nới lỏng\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"松排\"\n          }\n        }\n      }\n    },\n    \"Olw-nP-bQN.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Hide Rectangle\\\"; ObjectID = \\\"Olw-nP-bQN\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"إخفاء المستطيل\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Amaga Rectangle\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Amaga Rectangle\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skrýt Rectangle\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle ausblenden\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Hide Rectangle\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ocultar Rectangle\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ocultar Rectangle\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Masquer Rectangle\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sembunyikan Rectangle\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nascondi Rectangle\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangleを非表示\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle 가리기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Slėpti Rectangle\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skjul Rectangle\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Verberg Rectangle\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gøym Rectangle\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ukryj Rectangle\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ocultar Rectangle\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ocultar Rectangle\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ascunde Rectangle\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Скрыть Rectangle\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skryť Rectangle\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dölj Rectangle\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle'ı Gizle\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Сховати Rectangle\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ẩn Rectangle\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"隐藏 Rectangle\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"隱藏 Rectangle\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"隱藏Rectangle\"\n          }\n        }\n      }\n    },\n    \"Open System Settings\" : {\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ouvrir les Réglages Système\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open System Settings\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open System Settings\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open System Settings\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Systemeinstellungen öffnen\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Abra los ajustes del sistema\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Abra los ajustes del sistema\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ouvrir les Réglages Système\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open System Settings\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Apri Impostazioni di Sistema\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"システム設定を開く\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"시스템 설정 열기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Atidaryti sistemos nuostatas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Åpne Systeminnstillingene\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open System Settings\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Opne Systeminnstillingane\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open System Settings\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Abrir Ajustes do Sistema\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open System Settings\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open System Settings\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Открыть Системные настройки\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Otvoriť Systémové nastavenia\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open System Settings\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open System Settings\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Відкрити Налаштування системи\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mở Cài đặt hệ thống \"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"打开系统设置\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"開啟系統設定\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"開啟系統設定\"\n          }\n        }\n      }\n    },\n    \"oSu-n4-8Yu.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Center Two Thirds\\\"; ObjectID = \\\"oSu-n4-8Yu\\\";\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"الثلثان في الوسط\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Dos terços centrals\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Prostřední dvě třetiny\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zentrierte zwei Drittel\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Center Two Thirds\"\n          }\n        },\n        \"en-GB\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Centre Two Thirds\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Dos tercios centrales\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Dos tercios al centro\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Deux tiers centraux\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Dua Pertiga Tengah\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Due terzi al centro\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"中央の3分の2\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"가운데 2/3\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Midtre to tredeler\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Middelste twee derde\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Środkowe dwie trzecie\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Dois Terços Centrais\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Două treimi pe centru\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Центральные две трети\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Stredné dve tretiny\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Mellersta två tredjedelar\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Ortadaki Üçte İki\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Центральні дві третини\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hai phần ba ở giữa\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"中间２／３\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"中間２／３\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"中間２／３\"\n          }\n        }\n      }\n    },\n    \"Other\" : {\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Other\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Altres\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Altres\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ostatní\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mehr\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Otros\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Otros\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Other\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lainnya\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Altro\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"そのほか\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"기타\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kita\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Annet\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Other\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Anna\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Inne\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Outro\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Outro\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Другое\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ostatné\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Annat\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Diğer\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Інше\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Khác\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"其他\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"其他\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"其他\"\n          }\n        }\n      }\n    },\n    \"OwM-mh-QMV.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Find Previous\\\"; ObjectID = \\\"OwM-mh-QMV\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"البحث عن السابق\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cerca anterior\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cerca anterior\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hledat předchozí\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Weitersuchen (rückwärts)\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Find Previous\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buscar anterior\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buscar anterior\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rechercher le précédent\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Temukan Sebelumnya\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Trova precedente\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"前を検索\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"이전 찾기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rasti ankstesnį\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Finn forrige\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoek vorige\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Finn førre\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Znajdź poprzedni\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buscar anterior\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Encontrar Anterior\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Caută în Spate\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Найти предыдущий\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nájsť predchádzajúce\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sök föregående\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Öncekini Bul\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Знайти попередній\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tìm kiếm trước đó\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"查找上一个\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"尋找上一個\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"尋找上一個\"\n          }\n        }\n      }\n    },\n    \"OY7-WF-poV.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Minimize\\\"; ObjectID = \\\"OY7-WF-poV\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تصغير\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimitzar\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimitzar\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimalizovat\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Im Dock ablegen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Minimize\"\n          }\n        },\n        \"en-GB\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimise\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimizar\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimizar\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Placer dans le Dock\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kecilkan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Contrai\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"しまう\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"최소화\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sumažinti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimer\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimaliseren\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimer\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zminimalizuj\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimizar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimizar\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimizează\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Минимизировать\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimalizovať\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimera\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Küçült\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Згорнути\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Thu nhỏ\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"最小化\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"縮到最小\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"縮到最細\"\n          }\n        }\n      }\n    },\n    \"Oyz-dy-DGm.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Stop Speaking\\\"; ObjectID = \\\"Oyz-dy-DGm\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"توقف عن الكلام\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Deixar de parlar\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Deixar de parlar\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sprachausgabe stoppen\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Deja de hablar\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Deja de hablar\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Arrêter Dictée\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Berhenti Bicara\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Interrompi lettura\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"読み上げを停止\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"말하기 중단\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Užtenka plepėti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stopp opplesing\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stop met praten\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stopp opplesing\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Przestań mówić\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pare de falar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Parar de falar\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Хватит болтать\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sluta prata\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dừng đọ\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"停止朗读\"\n          }\n        }\n      }\n    },\n    \"pa3-QI-u2k.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Delete\\\"; ObjectID = \\\"pa3-QI-u2k\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"يمسح\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Suprimeix\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Suprimeix\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smazat\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Löschen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Delete\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Borrar\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Borrar\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Supprimer\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hapus\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Elimina\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"削除\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"삭제\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ištrinti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Slett\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Verwijderen\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Slett\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usuń\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Excluir\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Eliminar\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Șterge\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Удалить\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Odstrániť\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ta bort\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sil\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Видалити\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Xóa\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"删除\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"刪除\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"刪除\"\n          }\n        }\n      }\n    },\n    \"Pbz-DF-hgG.title\" : {\n      \"comment\" : \"Class = \\\"NSButtonCell\\\"; title = \\\"Move cursor along with window across displays\\\"; ObjectID = \\\"Pbz-DF-hgG\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"حرك المؤشر مع النافذة عبر شاشات العرض\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mou el cursor juntament amb la finestra per les pantalles\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mou el cursor juntament amb la finestra per les pantalles\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pohybujte oknem pomocí kurzoru po displejích\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mauszeiger zusammen mit dem Fenster über Bildschirme bewegen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Move cursor along with window across displays\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mover cursor junto con la ventana a través de las pantallas\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mover cursor junto con la ventana a través de las pantallas\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Déplacer le curseur entre les moniteurs avec la fenêtre\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pindahkan kursor bersama dengan jendela di seluruh tampilan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sposta il cursore insieme alle finestre tra schermi\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"別ディスプレイへのウインドウ移動時にカーソルも一緒に移動させる\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"창이 디스플레이 사이에 이동 시 커서도 함께 이동\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Perkelti žymeklį kartu su langais tarp ekranų\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Flytt musepila sammen med vinduet over skjermer\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Move cursor along with window across displays\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Flytt musepila i lag med vindauget over skjermar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Przenoś kursor razem z oknem pomiędzy ekranami\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Move cursor along with window across displays\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Deslocar cursor com janela entre ecrãs\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mută cursorul deodată cu fereastra între ecrane\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Перемещать курсор вместе с окном между экранами\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Presúvať kurzor spolu s oknom medzi displejmi\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Flytta markören tillsammans med fönstret över skärmar\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fare imlecini pencere ile beraber hareket ettir\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Переміщати курсор разом з вікном між екранами\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Di chuyển con trỏ cùng với cửa sổ qua nhiều màn hình\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"光标和窗口一起跨显示器移动\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"游標與視窗一起跨顯示器移動\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"游標連同視窗一起跨顯示器移動\"\n          }\n        }\n      }\n    },\n    \"Ptp-SP-VEL.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Bigger\\\"; ObjectID = \\\"Ptp-SP-VEL\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"أكبر\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Més gran\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Més gran\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Größer\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Más grande\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Más grande\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Plus grand\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lebih Besar\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Più grande\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"大きく\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"크게\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Padidinti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Større\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Groter\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Større\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Większy\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maior\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maior\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Больше\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Större\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lớn hơn\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"较大\"\n          }\n        }\n      }\n    },\n    \"pxx-59-PXV.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Save…\\\"; ObjectID = \\\"pxx-59-PXV\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"يحفظ…\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Desa…\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Desa…\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Uložit…\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sichern…\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Save…\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Guardar…\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Guardar…\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sauvegarder…\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Simpan…\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Salva…\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"保存…\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"저장…\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Išsaugoti…\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lagre…\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Opslaan…\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lagre…\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zapisz…\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Salvar…\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Guardar…\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Salvează…\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Сохранить…\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Uložiť…\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Save…\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kaydet…\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Зберегти…\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lưu…\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"存储…\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"儲存⋯\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"儲存⋯\"\n          }\n        }\n      }\n    },\n    \"Q2j-YZ-1jU.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"-\\\"; ObjectID = \\\"Q2j-YZ-1jU\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"-\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        }\n      }\n    },\n    \"Q5e-8K-NDq.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Show Fonts\\\"; ObjectID = \\\"Q5e-8K-NDq\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"إظهار الخطوط\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostra tipus de lletra\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostra tipus de lletra\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Schriften einblenden\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar tipos de letra\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar tipos de letra\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Afficher les polices\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tampilkan Jenis Huruf\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostra caratteri\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"フォントパネルを表示\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"서체 보기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rodyti šriftus\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis fonter\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Toon lettertypen\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis fontar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pokaż Czcionki\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar Fontes\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar Fontes\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Показать шрифты\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Visa typsnitt\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hiển thị phông\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"显示字体\"\n          }\n        }\n      }\n    },\n    \"Q6Q-6J-okH.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"First Fourth\\\"; ObjectID = \\\"Q6Q-6J-okH\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"الرابع الأول\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Primer quart\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Primer quart\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"První čtvrtina\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Erstes Viertel\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"First Fourth\"\n          }\n        },\n        \"en-GB\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"First Quarter\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Primer cuarto\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Primer cuarto\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Premier quart\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Seperempat Pertama\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Primo quarto\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左から1番目\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"첫번째 1/4\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pirma ketvirtis\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Første fjerdedel\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Eerste kwart\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fyrste fjerdedel\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pierwsza ćwiartka\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Primeiro quarto\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Primeiro Quarto\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Primul Sfert\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Первая четверть\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Prvá štvrtina\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Första fjärde\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"İlk Çeyrek\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Перша чверть\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1/4 đầu\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左首１／４\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左首１／４\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左首１／４\"\n          }\n        }\n      }\n    },\n    \"q09-fT-Sye.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Find Next\\\"; ObjectID = \\\"q09-fT-Sye\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"بحث عن التالي\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cerca següent\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cerca següent\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hledat další\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Weitersuchen (vorwärts)\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Find Next\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buscar siguiente\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buscar siguiente\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rechercher le suivant\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Temukan Berikutnya\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Trova successivo\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"次を検索\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"다음 찾기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ieškoti toliau\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Finn neste\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Volgende zoeken\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Finn neste\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Znajdź następny\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buscar próximo\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Encontrar Próximo\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Caută în Față\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Найти дальше\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nájsť ďalšie\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sök nästa\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sonrakini Bul\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Знайти наступне\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tìm kiếm kế tiếp\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"查找下一个\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"尋找下一個\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"尋找下一個\"\n          }\n        }\n      }\n    },\n    \"q9C-qZ-xw5.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"While in Todo Mode, you can refresh the Todo Mode layout by selecting \\\\\\\"Reflow Todo\\\\\\\" in the Rectangle menu or executing the associated keyboard shortcut.\\\"; ObjectID = \\\"q9C-qZ-xw5\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"أثناء وجودك في Todo Mode ، يمكنك تحديث تخطيط Todo Mode عن طريق تحديد  'Reflow Todo ' في قائمة Rectangle أو تنفيذ اختصار لوحة المفاتيح المرتبط\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mentre esteu al mode Todo, podeu actualitzar el disseny del mode TodoO seleccionant \\\"Redistribuir Todo\\\" al menú Rectangle o executant la drecera de teclat associada.\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mentre esteu al mode Todo, podeu actualitzar el disseny del mode TodoO seleccionant \\\"Redistribuir Todo\\\" al menú Rectangle o executant la drecera de teclat associada.\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rozložení Todo módu můžete obnovit vybráním \\\"Zobrazit Todo\\\" v Rectangle menu nebo exekucí nastavené zkratky.\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Du kannst im To-do-Modus die To-do-Anwendung neu ausrichten indem du \\\"To-do neu ausrichten\\\" im Rectangle-Menü auswählst oder die zugewiesene Tastenkombination ausführst.\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"While in Todo Mode, you can refresh the Todo Mode layout by selecting \\\"Reflow Todo\\\" in the Rectangle menu or executing the associated keyboard shortcut.\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mientras esté en modo 'Todo', puede refrescar la disposición del modo 'Todo' seleccionando \\\"Reflujo en 'Todo'\\\" en el menú de Rectangle o usando el atajo de teclado asociado.\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mientras esté en modo 'Todo', puede refrescar la disposición del modo 'Todo' seleccionando \\\"Reflujo en 'Todo'\\\" en el menú de Rectangle o usando el atajo de teclado asociado.\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lorsque vous êtes en mode Todo, vous pouvez rafraîchir la vue en sélectionnant « Rafraîchir Todo » dans le menu de Rectangle ou en utilisant le raccourci clavier associé.\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Saat dalam Mode Todo, Anda dapat menyegarkan tata letak Mode Todo dengan memilih \\\"Alur Ulang Todo » di menu Rectangle menu atau menjalankan pintasan keyboard terkait.\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Durante la modalità In evidenza, puoi reimpostarla selezionando \\\"Reimposta In Evidenza\\\" nel menu di Rectangle o con l'abbreviazione da tastiera impostata.\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ToDoモードのウインドウ配置を復元するには、ToDoモードのときに、Rectangleのメニューにある\\\"ToDoモードを再設定\\\"を選択するか、指定されたキーボードショートカットを押します。\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todo 모드를 사용하는 동안, Rectangle 메뉴에서 \\\"Todo 재배치\\\"를 클릭하거나 키보드 단축키를 사용해 Todo 모드 레이아웃을 새로고칠 수 있습니다.\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kai įjungtas Todo režimas, galite atnaujinti Todo režimo išdėstymą pasirinkdami „Atnaujinti Todo“ Rectangle meniu arba įvykdę susietą klaviatūros trumpinį.\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Når du er i Gjøreliste-modus kan du oppdatere Gjøreliste-oppsettet ved å velge \\\"Flytt om på Gjøreliste\\\" i Rectangle-menyen eller ved å benytte definerte tastatursnarveger.\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"While in Todo Mode, you can refresh the Todo Mode layout by selecting \\\"Reflow Todo\\\" in the Rectangle menu or executing the associated keyboard shortcut.\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Når du er i Gjereliste-modus kan du oppdatera Gjereliste-oppsettet ved å velja \\\"Flytt om på Gjereliste\\\" i Rectangle-menyen eller ved å nytta definerte tastatursnarvegar.\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"While in Todo Mode, you can refresh the Todo Mode layout by selecting \\\"Reflow Todo\\\" in the Rectangle menu or executing the associated keyboard shortcut.\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"While in Todo Mode, you can refresh the Todo Mode layout by selecting \\\"Reflow Todo\\\" in the Rectangle menu or executing the associated keyboard shortcut.\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"While in Todo Mode, you can refresh the Todo Mode layout by selecting \\\"Reflow Todo\\\" in the Rectangle menu or executing the associated keyboard shortcut.\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Din Modul Todo, poți reactualiza aspectul Modului Todo selectând \\\"Reflow Todo\\\" în meniul Rectangle sau folosind scurtătura asociată acestuia.\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"При включенном Todo режиме вы можете обновить положение окна Todo приложения выбрав \\\"Обновить положение Todo окна\\\" в меню Rectangle или при помощи соответствующей горячей клавиши.\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"V Todo režime môžeš obnoviť rozloženie Todo režimu vyberom \\\"Preusporiadať Todo\\\" v Rectangle menu alebo pomocou príslušnej skratky.\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"När du är i Att göra-läget kan du uppdatera Att göra-layouten genom att välja \\\"Ordna om Att göra\\\" i Rectangle-menyn eller genom att använda tilldelat tangentbordsgenväg.\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todo Modu aktifken Rectangle menüsündeki  \\\"Todo'yu Yeniden Ayarla\\\" seçeneği ile veya tanımladığınız klavye kısayolu ile ekran düzenini tazeleyebilirsiniz.\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Під час роботи в режимі Завдань ви можете оновити макет режиму Завдань, вибравши «Переформатувати вікна Завдань» у меню Rectangle або виконавши пов’язану комбінацію клавіш.\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Khi ở chế độ Todo, bạn có thể làm mới bố cục của chế độ Todo bằng cách chọn \\\"Làm mới Todo\\\" trong menu của Rectangle hoặc ấn phím tắt tương ứng.\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"在“待办模式”下，若要刷新待办模式布局，您可以从 Rectangle 菜单中选择“重新排列待办”，或使用对应的键盘快捷键。\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"在待辦模式下，若要重新整理待辦模式佈局，您可以從 Rectangle 選單中選擇「重新排列待辦」，或使用相應的鍵盤快速鍵\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"在待辦模式下，若要重新整理待辦模式佈局，你可以從Rectangle選單中選擇「重新排列待辦」，或使用相應的鍵盤快捷鍵\"\n          }\n        }\n      }\n    },\n    \"qBm-QP-s63.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"-\\\"; ObjectID = \\\"qBm-QP-s63\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"-\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        }\n      }\n    },\n    \"qIS-W8-SiK.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Page Setup…\\\"; ObjectID = \\\"qIS-W8-SiK\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"اعداد الصفحة…\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Configura pàgina…\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Configura pàgina…\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Papierformat…\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Configurar página…\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Configurar página…\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mise en page…\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pengaturan Halaman…\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Impostazione pagina…\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ページ設定…\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"페이지 설정…\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Puslapio nustatymai…\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sideinnstillinger…\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pagina instellingen…\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sideinnstillingar…\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ustawienia strony…\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Configuração da Página…\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Configuração da página…\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Настройки страницы…\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sidinställningar…\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Thiết lập trang…\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"页面设置...\"\n          }\n        }\n      }\n    },\n    \"qlg-kC-FMr.title\" : {\n      \"comment\" : \"Class = \\\"NSButtonCell\\\"; title = \\\"Hide menu bar icon\\\"; ObjectID = \\\"qlg-kC-FMr\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"إخفاء رمز شريط القائمة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Amaga la icona de la barra de menús\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Amaga la icona de la barra de menús\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skrýt ikonu z řádku nabídek\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Symbol in der Menüleiste ausblenden\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Hide menu bar icon\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ocultar el icono de la barra de menús\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ocultar el icono de la barra de menús\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Masquer l'icône dans la barre des menus\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sembunyikan ikon bilah menu\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nascondi l'icona dalla barra dei menu\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"メニューバーにアイコンを表示しない\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"메뉴 막대 아이콘 숨김\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Slėpti piktogramą iš meniu juostos\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skjul menyradikonet\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Verberg het menubalk-pictogram\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gøym menyradikonet\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ukryj ikonę paska menu\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ocultar ícone da barra de menu\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ocultar ícone da barra de menu\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ascunde iconița din bara de meniu\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Скрыть значок из строки меню\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skryť ikonu v lište\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dölj menyradens ikon\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Menü simgesini gizle\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Приховати піктограму у рядку меню\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ẩn biểu tượng trên thanh menu\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"隐藏菜单栏图标\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"隱藏選單列圖示\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"隱藏選單列圖像\"\n          }\n        }\n      }\n    },\n    \"QwF-QN-YH7.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Previous Display\\\"; ObjectID = \\\"QwF-QN-YH7\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"العرض السابق\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pantalla anterior\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pantalla anterior\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Předchozí displej\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vorheriger Bildschirm\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Previous Display\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pantalla anterior\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pantalla anterior\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Moniteur précédent\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tampilan Sebelumnya\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Schermo precedente\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"前のディスプレイ\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"이전 디스플레이\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ankstesnis ekranas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Forrige skjerm\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vorige scherm\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Førre skjerm\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Poprzedni ekran\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tela anterior\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ecrã anterior\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ecran Anterior\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Предыдущий экран\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Predchádzajúci displej\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Föregående skärm\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Önceki Ekran\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Попередній екран\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Màn hìn trước đó\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"上一个显示器\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"上一個顯示器\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"上一個顯示器\"\n          }\n        }\n      }\n    },\n    \"qze-7p-m1X.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"1. Bring your chosen todo application frontmost\\\"; ObjectID = \\\"qze-7p-m1X\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1. اجلب تطبيق المهام الذي اخترته في المقدمة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1. Porta l'aplicació Todo que has triat al davant\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1. Porta l'aplicació Todo que has triat al davant\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1. Přiveďte vaší vybranou todo aplikaci do popředí\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1. Bringe die gewünschte To-do-Anwendung in den Vordergrund.\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"1. Bring your chosen todo application frontmost\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1. Traer la aplicación 'Todo' elegida encima de todo\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1. Traer la aplicación 'Todo' elegida encima de todo\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1. Mettre votre application todo au premier plan\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1. Bawa aplikasi todo pilihan Anda paling depan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1. Seleziona la finestra dell'applicazione scelta\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1. ToDoアプリに指定したいアプリを最前面に表示します\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1. Todo 응용 프로그램을 맨 앞에 둡니다\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1. Pirmame plane padėkite pasirinktą Todo programą\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1. Legg det valgte Gjøreliste-programmet lengst fram\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1. Bring your chosen todo application frontmost\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1. Legg det valde Gjereliste-programmet lengst fram\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1. Bring your chosen todo application frontmost\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1. Trazer seu aplicativo todo escolhido para frente\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1. Bring your chosen todo application frontmost\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1. Aduceți aplicația aleasă cel mai în față\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1. Разместите выбранное в качестве Todo приложение на переднем плане\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1. Presuň zvolenú Todo aplikáciu do popredia\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1. Placera din valda Att göra-applikation längst fram\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1. Seçtiğiniz Todo uygulamasını en öne alın\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1. Перемістіть обране завдання у передній план\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1. Hiển thị ứng dụng todo được chọn lên trên cùng\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"⒈前置您选择的待办应用\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"⒈ 將您選擇的待辦應用程式移至最前\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"⒈將你選擇的待辦應用移到最前\"\n          }\n        }\n      }\n    },\n    \"r2Y-cY-tgn.title\" : {\n      \"comment\" : \"Class = \\\"NSButtonCell\\\"; title = \\\"Haptic feedback\\\"; ObjectID = \\\"r2Y-cY-tgn\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Haptisches Feedback\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Haptic feedback\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"触覚フィードバック\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"햅틱 피드백\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Тактильный отклик\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Haptická odozva\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Phản hồi xúc giác\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"触感反馈\"\n          }\n        }\n      }\n    },\n    \"R4o-n2-Eq4.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Zoom\\\"; ObjectID = \\\"R4o-n2-Eq4\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تكبير\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoom\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoom\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoomen\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoom\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoom\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Réduire/agrandir\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Perbesar\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoom\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ズーム\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"확대/축소\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Priartinti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoom\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoom\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoom\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoom\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoom\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoom\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Увеличить\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoom\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Phóng\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"缩放\"\n          }\n        }\n      }\n    },\n    \"r4Q-q9-FLt.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"-\\\"; ObjectID = \\\"r4Q-q9-FLt\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"-\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        }\n      }\n    },\n    \"RB4-Sm-HuC.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"\\\\tRight to Left\\\"; ObjectID = \\\"RB4-Sm-HuC\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \" t من اليمين إلى اليسار\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDreta a esquerra\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDreta a esquerra\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tVon rechts nach links\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDerecha a izquierda\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDerecha a izquierda\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDe droite à gauche\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tKanan ke Kiri\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDa destra a sinistra\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\t右から左\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\t오른쪽에서 왼쪽\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tIš dešinės į kairę\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tHøgre til venstre\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tVan rechts naar links\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tHøgre til venstre\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tOd prawej do lewej\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDa direita para a esquerda\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDa direita para a esquerda\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tСправа налево\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tHöger till vänster\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\\\tPhải sang trái\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\\\tRight to Left\"\n          }\n        }\n      }\n    },\n    \"rbD-Rh-wIN.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Check Spelling While Typing\\\"; ObjectID = \\\"rbD-Rh-wIN\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تدقيق إملائي أثناء الكتابة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Comproveu l'ortografia mentre escriviu\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Comproveu l'ortografia mentre escriviu\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Während der Texteingabe prüfen\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Revisar la ortografía mientras escribe\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Revisar la ortografía mientras escribe\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vérifier l'orthographe pendant la frappe\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Periksa Ejaan saat Mengetik\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Controlla ortografia durante la digitazione\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"入力中にスペルチェック\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"입력하는 동안 맞춤법 검사\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rašybos tikrinimas rašant tekstą\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kontroller stavemåte mens du skriver\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Controleer de spelling tijdens het typen\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kontroller stavemåte mens du skriv\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sprawdź pisownię podczas pisania\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Verificar ortografia durante a digitação\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Verificar ortografia enquanto escreve\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Проверка орфографии при наборе текста\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kontrollera stavningen medan du skriver\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kiểm tra chính tả khi gõ\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"键入时检查拼写\"\n          }\n        }\n      }\n    },\n    \"Reflow Todo\" : {\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Repositionner Todo\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Redistribueix Todo\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Redistribueix Todo\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"To-do neu ausrichten\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Reflujo en 'Todo'\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Reflujo en 'Todo'\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Repositionner Todo\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Alur Ulang Todo\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Reimposta In evidenza\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ToDoモードを再設定\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todo 재배치\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Atnaujinti Todo lango padėtį\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Flytt om på Gjøreliste\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Reflow Todo\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Flytt om på Gjereliste\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Reflow Todo\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Reflow Todo\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Reflow Todo\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Обновить положение Todo окна\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Preusporiadať Todo\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ordna om Att göra\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Переформатувати вікна Завдань\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Làm mới Todo\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"重新排列待办\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"重新排列待辦\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"重新排列待辦\"\n          }\n        }\n      }\n    },\n    \"rgM-f4-ycn.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Smart Dashes\\\"; ObjectID = \\\"rgM-f4-ycn\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"شرطات ذكية\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Guions intel·ligents\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Guions intel·ligents\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Intelligente Bindestriche\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Raya inteligente\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Raya inteligente\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tirets intelligents\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tanda Hubung Pintar\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Trattini intelligenti\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"スマートダッシュ記号\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"스마트 대시\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Protingi brūkšniai\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smarte bindestreker\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Slimme streepjes\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smarte bindestrekar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Inteligentne myślniki\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Traços Inteligentes\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Traços Inteligentes\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Умные тире\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smarta bindestreck\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dấu gạch ngang thông minh\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"智能破折号\"\n          }\n        }\n      }\n    },\n    \"RgZ-Jw-XQZ.title\" : {\n      \"comment\" : \"Class = \\\"NSButtonCell\\\"; title = \\\"Import\\\"; ObjectID = \\\"RgZ-Jw-XQZ\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"يستورد\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Importa\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Importa\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Importovat\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Importieren\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Import\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Importer\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Impor\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Importa\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"インポート\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"가져오기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Importuoti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Importer\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Importer\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Importar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Importar\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Importă\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Импорт\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Importovať\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Importera\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"İçe Aktar\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Імпортувати\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nhập\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"导入\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"輸入\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"輸入\"\n          }\n        }\n      }\n    },\n    \"Right half, top/bottom half near corners\" : {\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Moitié droite, moitié du haut/bas près des coins\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Right half, top/bottom half near corners\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Right half, top/bottom half near corners\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pravá polovina, horní/spodní polovina blízko rohů\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rechte Hälfte, Obere/Untere Hälfte in der Nähe der Ecken\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mitad derecha, mitad superior/inferior cerca de las esquinas\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mitad derecha, mitad superior/inferior cerca de las esquinas\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Moitié droite, moitié du haut/bas près des coins\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Right half, top/bottom half near corners\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Metà destra, metà superiore/inferiore vicino gli angoli\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右半分、画面端付近の上半分・下半分\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"반, 위/아래 반에 근접한 모서리\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dešinė pusė, viršutinė/apačioje pusė šalia kampų\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Høgre halvdel, øverste/nederste halvdel nære hjørne\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Right half, top/bottom half near corners\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Høgre halvdel, øvste/nedste halvdel nære hjørne\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Right half, top/bottom half near corners\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Metade direita, metade cima/baixo próximo das bordas\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Right half, top/bottom half near corners\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Right half, top/bottom half near corners\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Правая половина, верхняя/нижняя половина возле углов\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pravá polovica, horná/spodná polovica blízko rohov\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Right half, top/bottom half near corners\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sağ yarım (köşelere yaklaşıldığında ise üst/alt yarım)\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Права половина, верхня/нижня половина близько кутів\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nửa phải, nửa trên/dưới nếu ngay góc\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右半屏，靠近角落则上／下半屏\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右半，靠近角落則上半／下半\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右半，靠近角落則上半／下半\"\n          }\n        }\n      }\n    },\n    \"rmV-YD-Hzj.title\" : {\n      \"comment\" : \"Class = \\\"NSButtonCell\\\"; title = \\\"Check for updates automatically\\\"; ObjectID = \\\"rmV-YD-Hzj\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تحقق من وجود تحديثات تلقائيا\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Comproveu si hi ha actualitzacions automàticament\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Comproveu si hi ha actualitzacions automàticament\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Automaticky kontrolovat aktualizace\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Automatisch nach Updates suchen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Check for updates automatically\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buscar actualizaciones automáticamente\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buscar actualizaciones automáticamente\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rechercher automatiquement les mises à jour\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Periksa untuk Pembaruan Otomatis\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Controlla automaticamente gli aggiornamenti\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"アップデートを自動的に確認\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"자동으로 업데이트 확인\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Automatiškai tikrinti atnaujinimus\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Se etter oppdateringer automatisk\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Automatisch controleren op updates\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sjå etter oppdateringar automatisk\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sprawdzaj aktualizacje automatycznie\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Procurar atualizações automaticamente\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Verifique se há atualizações automaticamente\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Verifică actualizările automat\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Проверять обновления автоматически\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Automaticky kontrolovať aktualizácie\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sök efter uppdateringar automatiskt\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Güncellemeleri otomatik kontrol et\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Перевіряти оновлення автоматично\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tự động kiểm tra các bản cập nhật\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"自动检查更新\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"自動檢查更新項目\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"自動檢查更新項目\"\n          }\n        }\n      }\n    },\n    \"Rqc-34-cIF.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Superscript\\\"; ObjectID = \\\"Rqc-34-cIF\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"مرتفع\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Superíndex\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Superíndex\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hochgestellt\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Superíndice\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Superíndice\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Exposant\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Superskrip\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Apice\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"上付き\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"위 첨자\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Superscenario\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Heva skrift\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Superscript\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Heva skrift\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Superscript\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Superscript\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Superescrito\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Суперсценарий\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Upphöjd\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Chữ số trên\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"上标\"\n          }\n        }\n      }\n    },\n    \"Ruw-6m-B2m.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Select All\\\"; ObjectID = \\\"Ruw-6m-B2m\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"اختر الكل\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Selecciona-ho tot\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Selecciona-ho tot\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vybrat vše\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Alles auswählen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Select All\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Seleccionar todo\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Seleccionar todo\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tout sélectionner\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pilih Semua\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Seleziona tutto\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"すべて選択\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"모두 선택\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pasirinkite viską\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Marker alt\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Selecteer alles\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Marker alt\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Wybierz wszystko\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Selecionar tudo\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Selecionar Todos\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Selectează Tot\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Выберите всё\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vybrať všetko\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Markera allt\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Select All\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Виділити все\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Chọn tất cả\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"全选\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"全選\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"全選\"\n          }\n        }\n      }\n    },\n    \"rzr-Qq-702.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Move Right\\\"; ObjectID = \\\"rzr-Qq-702\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تحرك يمينا\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Moure a la dreta\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Moure a la dreta\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Přesunout vpravo\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nach rechts bewegen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Move Right\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mover a la derecha\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mover a la derecha\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Déplacer à droite\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Geser ke Kanan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sposta a destra\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右に移動\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"오른쪽으로 이동\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Į dešinę\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Flytt til høgre\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Naar rechts\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Flytt til høgre\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Przesuń w prawo\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mover para a direita\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mover para a direita\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mută în Dreapta\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Направо\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Presunúť vpravo\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Flytta höger\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sağ Kenar\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Перемістити праворуч\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Qua phải\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"向右移动\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右移\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右移\"\n          }\n        }\n      }\n    },\n    \"S0p-oC-mLd.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Jump to Selection\\\"; ObjectID = \\\"S0p-oC-mLd\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"انتقل إلى التحديد\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Salta a la selecció\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Salta a la selecció\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zobrazit výběr\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zur Auswahl springen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Jump to Selection\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ir a la selección\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ir a la selección\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Aller à la sélection\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lompat ke Terpilih\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vai alla selezione\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"選択部分へジャンプ\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"선택 부분으로 이동\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pereiti prie pasirinkto\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gå til markering\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ga naar selectie\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gå til markering\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Przejdź do wyboru\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ir para a seleção\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ir para a seleção\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sari la Selecție\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Перейти к выбранному\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Prejsť na výber\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hoppa till markerad\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jump to Selection\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Перейти до вибору\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nhảy đến lựa chọn\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"跳到所选内容\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"跳至所選範圍\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"跳去所選範圍\"\n          }\n        }\n      }\n    },\n    \"Show Eighths in menu\" : {\n\n    },\n    \"Sixths\" : {\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sixièmes\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sisenes\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sisenes\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Šestiny\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sechstel\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sextos\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sextos\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sixièmes\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Seperenam\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Terzi\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"6分割\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"6등분\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Šeštosios\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sjettedeler\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zesden\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sjettedelar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jedne szóste\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sextos\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sextos\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Шестые\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Šestiny\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sjättedelar\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Altıda bir\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Шості\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Phần sáu\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"六等分\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"六等分\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"六等分\"\n          }\n        }\n      }\n    },\n    \"Size\" : {\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Taille\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mida\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mida\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Velikost\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Größe\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tamaño\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tamaño\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Taille\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ukuran\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dimensione\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"サイズ\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"크기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dydis\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Størrelse\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Size\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Storleik\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rozmiar\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tamanho\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tamanho\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Размер\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Veľkosť\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Storlek\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Boyut\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Розмір\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kích cỡ\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"大小\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"大小\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"大小\"\n          }\n        }\n      }\n    },\n    \"Smaller Width\" : {\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Smaller Width\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Уменьшить ширину\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Chiều rộng nhỏ hơn\"\n          }\n        }\n      }\n    },\n    \"snW-S8-Cw5.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Show Toolbar\\\"; ObjectID = \\\"snW-S8-Cw5\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"إظهار شريط الأدوات\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostra la barra d'eines\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostra la barra d'eines\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Symbolleiste einblenden\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar barra de herramientas\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar barra de herramientas\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Afficher la barre d'outils\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tampilkan Bilah Alat\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostra la barra strumenti\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ツールバーを表示\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"도구 막대 보기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rodyti įrankių juostą\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis verktøyrada\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Werkbalk weergeven\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis verktøyrada\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pokaż pasek narzędzi\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar barra de ferramentas\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar barra de ferramentas\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Показать панель инструментов\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Visa verktygsfältet\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hiển thị thanh công cụ\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"显示工具栏\"\n          }\n        }\n      }\n    },\n    \"STb-JK-oB1.title\" : {\n      \"comment\" : \"Class = \\\"NSWindow\\\"; title = \\\"Rectangle Settings\\\"; ObjectID = \\\"STb-JK-oB1\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"تفضيلات المستطيل\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Preferències de Rectangle\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Preferències de Rectangle\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Rectangle předvolby\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Rectangle-Einstellungen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Rectangle Settings\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Preferencias de Rectangle\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Preferencias de Rectangle\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Préférences Rectangle\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Preferensi Rectangle\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Preferenze Rectangle\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Rectangle環境設定\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Rectangle 환경설정\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Rectangle nustatymai\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Rectangle-innstillinger\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Voorkeuren Rectangle\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Rectangle-innstillingar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Preferencje Rectangle\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Preferências do Rectangle\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Preferências do Rectangle\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Preferințe Rectangle\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Настройки Rectangle\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Rectangle predvoľby\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Rectangle-inställningar\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Rectangle Tercihleri\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Налаштування Rectangle\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cài đặt của Rectangle\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Rectangle 偏好设置\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Rectangle 偏好設定\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Rectangle偏好設定\"\n          }\n        }\n      }\n    },\n    \"SXx-HZ-GkB.title\" : {\n      \"comment\" : \"Class = \\\"NSButtonCell\\\"; title = \\\"Cycle across displays on repeated left or right commands\\\"; ObjectID = \\\"SXx-HZ-GkB\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"التنقل عبر شاشات العرض بأوامر متكررة يسارًا أو يمينًا\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Passeu per les pantalles amb ordres repetides a l'esquerra o a la dreta\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Passeu per les pantalles amb ordres repetides a l'esquerra o a la dreta\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Monitorwechsel bei wiederholten Links/Rechts-Befehlen\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bucle a través de pantallas en ejecuciones repetidas de comandos de movimiento a la izquierda o a la derecha\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bucle a través de pantallas en ejecuciones repetidas de comandos de movimiento a la izquierda o a la derecha\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Déplacer sur les moniteurs lors de commandes gauche ou droite répétées\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Berputar melintasi tampilan pada perintah kiri atau kanan yang berulang\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spostati tra gli schermi con comandi ripetuti a sinistra o destra\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左半分/左半分にサイズ変更するコマンドを繰り返したら、ウインドウを表示するディスプレイを変更\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"왼쪽 및 오른쪽 명령을 반복하여 디스플레이 순환\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Perkelti langus tarp ekranų, kai lygiuojama iš eilės į kairę arba į dešinę\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gå gjennom skjermene ved å gjenta venstre- eller høgrekommandoer\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ga schermen langs bij opeenvolgende uitvoeringen van links of rechts\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gå gjennom skjermane ved å gjenta venstre- eller høgrekommandoar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Przechodź między ekranami przy powtarzających się komendach lewo/prawo\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Navegue entre telas repetindo os comandos para a direita ou esquerda\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Alternar entre ecrãs ao repetir comandos para a esquerda ou para a direita\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Перемещать окна между экранами при последовательном выравнивании влево или вправо\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bläddra mellan skärmarna med upprepade vänster- eller högerkommandon\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Chuyển đổi qua lại giữa các màn hình hiển thị theo lệnh lặp lại bên trái hoặc bên phải\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"通过重复向左或向右命令在显示器循环显示\"\n          }\n        }\n      }\n    },\n    \"t7n-mU-75I.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Enable Rectangle.app\\\"; ObjectID = \\\"t7n-mU-75I\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تحقق من Rectangle.app\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Comprova Rectangle.app\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Comprova Rectangle.app\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zkontrolovat Rectangle.app\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle.app prüfen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Enable Rectangle.app\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Compruebe Rectangle.app\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Compruebe Rectangle.app\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vérifier Rectangle.app\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Periksa Rectangle.app\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Controlla Rectangle.app\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle.appを確認してください\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle.app 확인하기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Patikrinkite failą Rectangle.app.\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sjekk Rectangle.app\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Controleer Rectangle.app\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sjekk Rectangle.app\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sprawdź Rectangle.app.\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Verificar Rectangle.app\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Verificar Rectangle.app\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Verifică Rectangle.app\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Проверьте файл Rectangle.app.\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skontrolovať Rectangle.app\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kontrollera Rectangle.app\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle.app'ı işaretleyerek izin verin\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Увімкнути Rectangle.app\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bật Rectangle.app\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"启用 Rectangle.app\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"啟用 Rectangle.app\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"啟用Rectangle.app\"\n          }\n        }\n      }\n    },\n    \"T9Z-QF-gwc.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"First Three Fourths\\\"; ObjectID = \\\"T9Z-QF-gwc\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"أول ثلاثة أرباع\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Primers tres quarts\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Primers tres quarts\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"První tři čtvrtiny\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Erste drei Viertel\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"First Three Fourths\"\n          }\n        },\n        \"en-GB\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"First Three Quarters\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Primeros tres cuartos\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Primeros tres cuartos\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Trois quarts de gauche\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tiga Perempat Pertama\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Primi tre quarti\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"3/4にして左寄せ\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"처음 3/4\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pirmosios trys ketvirtys\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Første tre fjerdedeler\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fyrste tre fjerdedelar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pierwsze trzy czwarte\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Primeiro três quartos\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Primeiros Três Quartos\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Primele Trei Sferturi\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Первые три четверти\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Prvé tri štvrtiny\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Första tre fjärdedelar\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"İlk Üç Çeyrek\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Перші три чверті\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"3/4 đầu\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左侧３／４\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左側３／４\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左側３／４\"\n          }\n        }\n      }\n    },\n    \"Td7-aD-5lo.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Window\\\"; ObjectID = \\\"Td7-aD-5lo\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"نافذة او شباك\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Finestra\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Finestra\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Okno\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fenster\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Window\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ventana\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ventana\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fenêtre\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jendela\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Finestra\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ウインドウ\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"창\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Langas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vindu\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Venster\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vindauge\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Okno\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Janela\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Janela\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fereastră\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Окно\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Okno\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fönster\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pencere\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Вікно\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cửa sổ\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"窗口\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"視窗\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"視窗\"\n          }\n        }\n      }\n    },\n    \"Thirds\" : {\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tiers\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Terços\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Terços\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Třetiny\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Drittel\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tercios\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tercios\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tiers\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sepertiga\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Terzi\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"3分割\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"3등분\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Trečdaliai\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tredjedeler\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Thirds\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tredjedelar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jedne trzecie\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Terços\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Terços\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Трети\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tretiny\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tredjedelar\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Üçte bir\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Третини\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1/3\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"三等分\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"三等分\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"三等分\"\n          }\n        }\n      }\n    },\n    \"Thirds, drag toward center for two thirds\" : {\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tiers, glisser vers le centre pour deux tiers\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Thirds, drag toward center for two thirds\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Thirds, drag toward center for two thirds\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Třetiny, táhnout směrem ke středu pro dvě třetiny\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Drittel, zur Mitte ziehen für zwei Drittel\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tercios, arrastrar hacia el centro para dos tercios\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tercios, arrastrar hacia el centro para dos tercios\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tiers, glisser vers le centre pour deux tiers\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Thirds, drag toward center for two thirds\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Terzi, trascina verso il centro per i due terzi\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"3分割、中心にドラッグで2/3\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1/3, 가운데로 드래그하면 2/3\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Trečdalys, perkelkite į centrą du trečdalius\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tredjedeler, dra mot midten for to tredjedeler\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Thirds, drag toward center for two thirds\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tredjedelar, dra mot midten for to tredjedelar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Thirds, drag toward center for two thirds\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Thirds, drag toward center for two thirds\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Thirds, drag toward center for two thirds\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Thirds, drag toward center for two thirds\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Трети, перетащите к центру на две трети\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tretiny, ťahaj smerom do stredu pre dve tretiny\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Thirds, drag toward center for two thirds\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Üçte bir (üçte iki için ortaya doğru sürükleyin)\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Третини, перетягніть у центр для двох третин\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1/3, kéo đến giữa thành 2/3\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"⅓，向中间拖移则⅔\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"⅓，向中央拖移則⅔\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"⅓，向中央拖移則⅔\"\n          }\n        }\n      }\n    },\n    \"Thirds, top/bottom half near corners\" : {\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tiers, moitié du haut/bas près des coins\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Thirds, top/bottom half near corners\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Thirds, top/bottom half near corners\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Třetiny, horní/spodní polovina blízko rohů\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Drittel, Obere/Untere Hälfte in der Nähe der Ecken\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tercios, mitad superior/inferior cerca de las esquinas\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tercios, mitad superior/inferior cerca de las esquinas\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tiers, moitié du haut/bas près des coins\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Thirds, top/bottom half near corners\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Terzi, metà superiore/inferiore vicino gli angoli\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"3分割、画面端付近の上半分・下半分\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1/3, 위/아래 반에 근접한 모서리\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Trečdalys, viršutinė/apačioje pusė šalia kampų\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tredjedeler, øverste/nederste halvdel nære hjørne\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Thirds, top/bottom half near corners\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tredjedelar, øvste/nedste halvdel nære hjørne\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Thirds, top/bottom half near corners\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Thirds, top/bottom half near corners\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Thirds, top/bottom half near corners\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Thirds, top/bottom half near corners\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Трети, верхняя/нижняя половина возле углов\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tretiny, horná/spodná polovica blízko rohov\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Thirds, top/bottom half near corners\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Üçte bir (köşelere yaklaşıldığında ise üst/alt)\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Третини, верхня/нижня половина близько кутів\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1/3, nửa trên/dưới nếu ngay góc\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"⅓，靠近角落则上／下半屏\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"⅓，靠近角落則上半／下半\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"⅓；靠近角落則上半／下半\"\n          }\n        }\n      }\n    },\n    \"Tiling in macOS has been disabled\" : {\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Das Ziehen von Fenstern an den Bildschirmrand zum Anordnen wurde in den macOS Systemeinstellungen deaktiviert\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"macOS のタイル表示機能が無効になりました\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"macOS의 타일 정리 기능이 비활성화됨\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Umiestnenie dlaždíc v macOS bolo vypnuté\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tính năng xếp gạch trong macOS đã bị vô hiệu hóa\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"macOS 中的窗口平铺功能已被禁用\"\n          }\n        }\n      }\n    },\n    \"Tiling in Rectangle has been disabled\" : {\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle의 타일 정리 기능이 비활성화됨\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Việc xếp gạch trong hình chữ nhật đã bị vô hiệu hóa\"\n          }\n        }\n      }\n    },\n    \"tlD-Oa-oAM.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Kern\\\"; ObjectID = \\\"tlD-Oa-oAM\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"كيرن\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zeichenabstand\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"カーニング\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"자간\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kernas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Knip\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Knip\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Керн\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kerning\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Điều chỉnh khoảng cách giữa\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"字句调整\"\n          }\n        }\n      }\n    },\n    \"To adjust macOS tiling, go to System Settings → Desktop & Dock → Windows\" : {\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"macOS 타일 정리 기능을 조정하려면, 시스템 설정 → 데스크탑 및 Dock → 윈도우로 이동하세요\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Để điều chỉnh ô xếp macOS, hãy vào Cài đặt hệ thống → Màn hình nền & Dock → Windows\"\n          }\n        }\n      }\n    },\n    \"To let Rectangle manage the title bar double click functionality, you need to disable the corresponding macOS setting.\" : {\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pour permettre à Rectangle de gérer la fonctionnalité de double-clic sur la barre de titre d'une fenêtre, vous devez désactiver le paramètre macOS correspondant.\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"To let Rectangle manage the title bar double click functionality, you need to disable the corresponding macOS setting.\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"To let Rectangle manage the title bar double click functionality, you need to disable the corresponding macOS setting.\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"To let Rectangle manage the title bar double click functionality, you need to disable the corresponding macOS setting.\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Damit Rectangle die Doppelklickfunktion der Titelleiste verwalten kann, muss die entsprechende macOS Systemeinstellung deaktiviert werden.\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Para permitir que Rectangle administre la funcionalidad de doble click en la barra de título, debes deshabilitar los ajustes correspondientes de macOS.\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Para permitir que Rectangle administre la funcionalidad de doble click en la barra de título, debes deshabilitar los ajustes correspondientes de macOS.\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pour permettre à Rectangle de gérer la fonctionnalité de double-clic sur la barre de titre d'une fenêtre, vous devez désactiver le paramètre macOS correspondant.\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"To let Rectangle manage the title bar double click functionality, you need to disable the corresponding macOS setting.\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Per permettere a Rectangle di gestire la funzione di doppio clic sulla barra del titolo, devi disabilitare l'impostazione di macOS corrispondente.\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangleがタイトルバーのダブルクリック機能を管理するには、該当するmacOSの設定を無効にする必要があります。\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle이 제목 막대 두 번 클릭 기능을 제어하려면, 해당하는 macOS 설정을 꺼야 합니다.\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Norėdami leisti „Rectangle“ valdyti antraštės juostos dvigubą spustelėjimą, turite išjungti atitinkamą „macOS“ nustatymą.\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"For å la Rectangle styre dobbeltklikking i vindustittelen må du slå av den tilsvarende innstillinga i macOS.\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"To let Rectangle manage the title bar double click functionality, you need to disable the corresponding macOS setting.\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"For å la Rectangle styra dobbeltklikking i vindaugstittelen må du slå av den tilsvarande innstillinga i macOS.\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"To let Rectangle manage the title bar double click functionality, you need to disable the corresponding macOS setting.\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"To let Rectangle manage the title bar double click functionality, you need to disable the corresponding macOS setting.\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"To let Rectangle manage the title bar double click functionality, you need to disable the corresponding macOS setting.\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"To let Rectangle manage the title bar double click functionality, you need to disable the corresponding macOS setting.\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Чтобы позволить Rectangle управлять функцией двойного щелчка в заголовке, необходимо отключить соответствующую настройку macOS.\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Aby Rectangle mohol spravovať funkciu dvojitého kliknutia v lište s názvom, musíš vypnúť príslušné nastavenie v macOS.\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"To let Rectangle manage the title bar double click functionality, you need to disable the corresponding macOS setting.\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"To let Rectangle manage the title bar double click functionality, you need to disable the corresponding macOS setting.\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"To let Rectangle manage the title bar double click functionality, you need to disable the corresponding macOS setting.\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Để cho phép Rectangle quản lý chức năng nhấp đúp vào thanh tiêu đề, bạn cần phải tắt cài đặt macOS tương ứng.\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"你需要禁用 macOS 中对应的设置以使用 Rectangle 管理连按窗口标题功能。\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"若要讓 Rectangle 管理標題列連點功能，您需要停用對應的 macOS 設定。\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"To let Rectangle manage the title bar double click functionality, you need to disable the corresponding macOS setting.\"\n          }\n        }\n      }\n    },\n    \"To re-enable it, go to System Settings → Desktop & Dock → Windows\" : {\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Um dies wieder zu aktivieren, gehe zu Systemeinstellungen → Schreibtisch & Dock → Fenster\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"再度有効化するには、システム設定 → デスクトップと Dock → ウインドウに移動します\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"다시 켜려면, 시스템 설정 → 데스크탑 및 Dock → 윈도우로 이동합니다\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pre opätovné povolenie, prejdi do Systémové nastavenia → Plocha a Dock → Okná\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Để bật lại, hãy vào Cài đặt hệ thống → Màn hình nền & Dock → Windows\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"要重新启用它，请转到系统设置→ 桌面与程序坞 → 窗口\"\n          }\n        }\n      }\n    },\n    \"Top Center Left Eighth\" : {\n\n    },\n    \"Top Center Right Eighth\" : {\n\n    },\n    \"Top eighths from corners; maximize\" : {\n\n    },\n    \"Top Left Eighth\" : {\n\n    },\n    \"Top Right Eighth\" : {\n\n    },\n    \"Top screen edge tiling in macOS is now disabled\" : {\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"macOS의 화면 상단 가장자리 타일 정렬이 꺼졌습니다\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tính năng ghép cạnh màn hình trên cùng trong macOS hiện đã bị vô hiệu hóa\"\n          }\n        }\n      }\n    },\n    \"Top sixths from corners; maximize\" : {\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sixièmes haut à partir les coins ; maximiser\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Top sixths from corners; maximize\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Top sixths from corners; maximize\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Horní šestiny z rohů; maximalizovat\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Obere Sechstel beim Ziehen aus den Ecken; maximieren\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sextos superiores de las esquinas; maximizar\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sextos superiores de las esquinas; maximizar\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sixièmes haut à partir les coins ; maximiser\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Top sixths from corners; maximize\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sesti superiori dagli angoli; massimizza\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \" 最大化（画面端にドラッグで上側6分割）\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"위쪽 1/6, 모서리에서 최대화\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Viršutinės šeštosios nuo kampų; maksimizuoti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Øverste sjettedel fra hjørne; maksimer\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Top sixths from corners; maximize\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Øvste sjettedel frå hjørne; maksimer\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Top sixths from corners; maximize\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Top sixths from corners; maximize\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Top sixths from corners; maximize\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Top sixths from corners; maximize\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Верхние шестые от углов; максимизировать\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Horné šestiny z rohov; maximalizovať\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Top sixths from corners; maximize\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tamamını kapla (köşelere yaklaşıldığında ise altıda birini kapla)\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Верхні шості від кутів; максимізувати\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1/6 phía trên ngay góc; phóng to tối đa\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"自角落则顶部⅙；最大化\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"自角落則頂部⅙；放到最大\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"自角落則頂部⅙；放到最大\"\n          }\n        }\n      }\n    },\n    \"Top Third\" : {\n\n    },\n    \"Top Two Thirds\" : {\n\n    },\n    \"Top/bottom halves\" : {\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Górna/Dolna połowa\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nửa trên/dưới\"\n          }\n        }\n      }\n    },\n    \"tRr-pd-1PS.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Data Detectors\\\"; ObjectID = \\\"tRr-pd-1PS\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"كاشفات البيانات\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Detectors de dades\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Detectors de dades\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Datenerkennung\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Detectores de datos\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Detectores de datos\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Détecteurs de données\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pendeteksi Data\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rilevatori di dati\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"データ検出\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"데이터 탐지기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Duomenų detektoriai\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Datadetektorer\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gegevensdetectoren\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Datadetektorar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Detektory danych\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Detectores de dados\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Detectores de dados\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Детекторы данных\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Datadetektorer\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nhận diện dữ liệu\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"数据检测器\"\n          }\n        }\n      }\n    },\n    \"Tt8-3X-UpT.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"-\\\"; ObjectID = \\\"Tt8-3X-UpT\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"-\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        }\n      }\n    },\n    \"TTx-7X-Wie.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Top Center Sixth\\\"; ObjectID = \\\"TTx-7X-Wie\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"المركز السادس الأعلى\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sisè superior centre\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sisè superior centre\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Horní prostřední šestina\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Oberes mittleres Sechstel\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Top Center Sixth\"\n          }\n        },\n        \"en-GB\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Top Centre Sixth\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sextante arriba centrado\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sextante arriba centrado\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sixième haut centre\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Seperenam Tengah Atas\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sesto superiore centrale\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"中央上\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"위 가운데 1/6\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Viršutinė šeštoji centre\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Øvre midtre sjettedel\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Midden boven zesde\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Øvre midtre sjettedel\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jedna szósta na środku u góry\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sexto superior central\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sexto Central Superior\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Șesimea din Centru Sus\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Верхняя шестая по центру\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Horná prostredná šestina\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Övre mitten sjätte\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Üst Orta Altıda bir\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Верхня центральна шоста частина\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1/6 ở giữa bên trên\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"中上１／６\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"中上１／６\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"中上１／６\"\n          }\n        }\n      }\n    },\n    \"tXI-mr-wws.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Open Recent\\\"; ObjectID = \\\"tXI-mr-wws\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"فتح الأحدث\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Obrir recent\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Obrir recent\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Benutzte Dokumente\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Abrir reciente\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Abrir reciente\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ouvrir l'élément récent\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buka Baru-baru Ini\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Apri recente\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"最近使った項目を開く\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"최근 사용 열기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Atidaryti paskutinius\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Åpne sist brukte\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open recent\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Opne sist brukte\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Niedawno otwarte\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Abrir recente\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Abrir Recente\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Открыть недавнее\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Öppna senaste\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mở gần nhất\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"打开最近使用\"\n          }\n        }\n      }\n    },\n    \"UEZ-Bs-lqG.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Capitalize\\\"; ObjectID = \\\"UEZ-Bs-lqG\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تكبير\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Primera lletra en majúscula\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Primera lletra en majúscula\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Großschreiben\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Capitalizar\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Capitalizar\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Capitaliser\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gunakan Huruf Besar\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maiuscolo\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"語頭を大文字にする\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"대문자로 만들기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Didžiosiomis raidėmis\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stor førstebokstav\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hoofdletters\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stor fyrstebokstav\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kapitalizuj\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Capitalizar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maiúsculas\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"В верхнем регистре\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kapitalisera\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"In hoa\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"首字母大写\"\n          }\n        }\n      }\n    },\n    \"uLF-Uf-tBt.title\" : {\n      \"comment\" : \"Class = \\\"NSButtonCell\\\"; title = \\\"Restore Default Shortcuts & Snap Areas\\\"; ObjectID = \\\"uLF-Uf-tBt\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"استعادة الاختصارات الافتراضية ومناطق الانطباق\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Restaura les dreceres predeterminades\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Restaura les dreceres predeterminades\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Obnovit výchozí zkratky\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Standard-Tastaturkurzbefehle wiederherstellen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Restore Default Shortcuts & Snap Areas\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Restaurar accesos directos predeterminados y ajustes de areas\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Restaurar accesos directos predeterminados\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Restaurer les raccourcis par défaut\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pulihkan Pintasan Bawaah\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ripristina abbreviazioni predefinite\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ショートカットを初期化\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"기본 단축키 복원\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Atkurti numatytuosius karštuosius klavišus\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tilbakestill snarveger og festeområder\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Standaard sneltoetsen herstellen\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tilbakestill snarvegar og festeområde\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Przywróć domyślne skróty\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Restaurar atalhos padrão\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Restaurar Atalhos Padrão\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Restabilește Scurtăturile Predefinite\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Восстановить горячие клавиши по умолчанию\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Obnoviť predvolené skratky a zóny prichytenia\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Återställ genvägar\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Varsayılan kısayolları geri yükle\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Відновити типові комбінації клавіш\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Khôi phục phím tắt mặc định\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"恢复默认快捷键和吸附区域\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"復原預設快速鍵\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"回復預設快捷鍵\"\n          }\n        }\n      }\n    },\n    \"Update Available…\" : {\n      \"extractionState\" : \"manual\"\n    },\n    \"uQy-DD-JDr.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Rectangle\\\"; ObjectID = \\\"uQy-DD-JDr\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"مستطيل\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle\"\n          }\n        }\n      }\n    },\n    \"uRl-iY-unG.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Cut\\\"; ObjectID = \\\"uRl-iY-unG\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"يقطع\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Retalla\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Retalla\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vyjmout\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ausschneiden\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Cut\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cortar\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cortar\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Couper\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Potong\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Taglia\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"カット\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"오려두기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Iškirpti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Klipp ut\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Knippen\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Klypp ut\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Wytnij\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Recortar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cortar\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tăiere\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Вырезать\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vystrihnúť\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Klipp ut\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cut\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Вирізати\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cắt\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"剪切\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"剪下\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"剪下\"\n          }\n        }\n      }\n    },\n    \"Use as Todo Window\" : {\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Utiliser comme fenêtre Todo\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use as Todo Window\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use as Todo Window\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use as Todo Window\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Als To-do-Fenster verwenden\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usar como ventana 'Todo'\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usar como ventana 'Todo'\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Utiliser comme fenêtre Todo\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use as Todo Window\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usa come finestra in evidenza\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todoウインドウとして使用\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todo 윈도우로 사용\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Naudoti kaip Todo langą\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk som Gjøreliste-vindu\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use as Todo Window\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk som Gjereliste-vindauge\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use as Todo Window\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use as Todo Window\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use as Todo Window\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use as Todo Window\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use as Todo Window\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Použiť ako Todo okno\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use as Todo Window\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use as Todo Window\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Використовувати як вікно Завдань\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sử dụng như cửa sổ Todo\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"作为待办窗口\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"做為待辦視窗\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use as Todo Window\"\n          }\n        }\n      }\n    },\n    \"Use frontmost.app as Todo App\" : {\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Utiliser frontmost.app comme application Todo\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Utilitza frontmost.app com a app Todo\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Utilitza frontmost.app com a app Todo\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Verwende frontmost.app als To-do-Anwendung\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use frontmost.app as Todo App\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use frontmost.app as Todo App\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Utiliser frontmost.app comme application Todo\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gunakan frontmost.app sebagai Aplikasi Todo\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usa frontmost.app come applicazione in evidenza\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"frontmost.appをToDoアプリとして使う\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"frontmost.app을 Todo 앱으로 사용\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Naudoti pirmame plane esantį langą kaip Todo programą\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk frontmost.app som Gjøreliste-program\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use frontmost.app as Todo App\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk frontmost.app som Gjereliste-program\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use frontmost.app as Todo App\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use frontmost.app as Todo App\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use frontmost.app as Todo App\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Использовать окно на переднем плане в качестве Todo приложения\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Použiť frontmost.app ako Todo aplikáciu\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Använd frontmost.app som Att göra-app\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Використовувати frontmost.app як застосунок Завдань\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dùng frontmost.app làm ứng dụng Todo\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"使用 frontmost.app 作为待办应用\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"使用 frontmost.app 作為待辦應用程式\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"使用frontmost.app作為待辦應用\"\n          }\n        }\n      }\n    },\n    \"uw2-9W-2jq.label\" : {\n      \"comment\" : \"Class = \\\"NSTabViewItem\\\"; label = \\\"Shortcuts\\\"; ObjectID = \\\"uw2-9W-2jq\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Raccourcis clavier\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Dreceres de teclat\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Dreceres de teclat\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Klávesové zkratky\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Tastaturkurzbefehle\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Shortcuts\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Atajos de teclado\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Atajos de teclado\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Raccourcis clavier\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Pintasan Papan Ketik\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Abbreviazioni da tastiera\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"キーボードショートカット\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"키보드 단축키\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Karštieji klavišai\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Tastatursnarveger\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Keyboard Shortcuts\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Tastatursnarvegar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Skróty klawiaturowe\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Atalhos de teclado\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Atalhos de Teclado\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Scurtături\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Горячие клавиши\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Klávesové skratky\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Tangentbordsgenvägar\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Klavye Kısayolları\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Комбінації клавіш\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Phím tắt\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"键盘快捷键\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"鍵盤快速鍵\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"鍵盤快捷鍵\"\n          }\n        }\n      }\n    },\n    \"UZP-5q-D5Y.title\" : {\n      \"comment\" : \"Class = \\\"NSButtonCell\\\"; title = \\\"Restore window size when unsnapped\\\"; ObjectID = \\\"UZP-5q-D5Y\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"استعادة حجم النافذة عند الإغلاق\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Restaura la mida de la finestra quan no s'ajusti\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Restaura la mida de la finestra quan no s'ajusti\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Obnovit velikost okna při uvolnění\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fenster beim Bewegen auf Originalgröße zurücksetzen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Restore window size when unsnapped\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Resetear el tamaño de la ventana al despegarla\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Resetear el tamaño de la ventana al despegarla\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Restaurer la taille de fenêtre en annulant le glissement\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kembalikan ukuran jendela saat tidak dijepret\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ripristina le dimensioni della finestra se spostata\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"スナップが解除されたらウインドウサイズを元に戻す\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"스냅 해제 시 창 크기 복원\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Atkurti lango dydį po to, kai pašalinamas pririšimas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gjenskap størrelsen på vinduet når det blir revet løs\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Restore window size when unsnapped\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gjenskap storleiken på vindauget når det blir rive laus\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Przywróć rozmiar okna po odczepieniu\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Restaurar tamanho da janela quando desencaixado\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Restaurar tamanho de janela quando desencaixada\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Restabilește dimensiunea ferestrei când este închisă\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Восстановить размер окна после снятия привязки\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Obnoviť veľkosť okna po uvoľnení\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Återställ fönsterstorleken när den lossas\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tutturulduğu yerden ayrılan pencereleri eski boyutuna çevir\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Відновлювати розмір вікна при відміні зміни розміру\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Khôi phục cửa sổ khi không bố trí\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"结束吸附时恢复窗口大小\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"結束貼齊時復原視窗大小\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"結束貼齊時回復視窗大小\"\n          }\n        }\n      }\n    },\n    \"v2f-bX-xiM.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Move Left\\\"; ObjectID = \\\"v2f-bX-xiM\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تحرك يسارا\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Moure a l'esquerra\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Moure a l'esquerra\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Přesunout vlevo\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nach links bewegen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Move Left\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mover a la izquierda\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mover a la izquierda\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Déplacer à gauche\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Geser ke Kiri\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sposta a sinistra\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左に移動\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"왼쪽으로 이동\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Į kairę\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Flytt til venstre\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Naar links\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Flytt til venstre\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Przesuń w lewo\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mover para a esquerda\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mover para a esquerda\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mută în Stânga\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Налево\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Presunúť vľavo\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Flytta vänster\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sol Kenar\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Перемістити ліворуч\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Qua trái\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"向左移动\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左移\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左移\"\n          }\n        }\n      }\n    },\n    \"Vdr-fp-XzO.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Hide Others\\\"; ObjectID = \\\"Vdr-fp-XzO\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"إخفاء الآخرين\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Amaga els altres\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Amaga els altres\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skrýt ostatní\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Andere ausblenden\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Hide Others\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ocultar otros\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ocultar otros\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Masquer les autres\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sembunyikan Lainnya\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nascondi altre\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ほかを隠す\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"나머지 가리기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Slėpti kitą\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skjul andre\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Verberg andere\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gøym andre\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ukryj Inne\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Esconder Outros\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Esconder Outros\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ascunde restul\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Скрыть другое\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skryť ostatné\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dölj andra\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hide Others\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Сховати інші\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ẩn những thứ khác\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"隐藏其他\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"隱藏其他\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"隱藏其他\"\n          }\n        }\n      }\n    },\n    \"Vertical (T/B, %)\" : {\n\n    },\n    \"Vfd-fe-hCe.title\" : {\n      \"comment\" : \"Class = \\\"NSButtonCell\\\"; title = \\\"ⓘ\\\"; ObjectID = \\\"Vfd-fe-hCe\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ⓘ\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ⓘ\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"ⓘ\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ⓘ\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ⓘ\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ⓘ\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ⓘ\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ⓘ\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ⓘ\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ⓘ\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ⓘ\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ⓘ\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ⓘ\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ⓘ\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ⓘ\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ⓘ\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ⓘ\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ⓘ\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ⓘ\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ⓘ\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ⓘ\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ⓘ\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ⓘ\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ⓘ\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ⓘ\"\n          }\n        }\n      }\n    },\n    \"VIf-4h-MJW.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Authorize…\\\"; ObjectID = \\\"VIf-4h-MJW\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تفويض ...\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autoritza…\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autoritza…\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autorizovat…\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autorisieren…\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Authorize…\"\n          }\n        },\n        \"en-GB\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Authorise...\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autorizar…\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autorizar…\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autoriser…\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Otorisasi…\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autorizza…\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"許可…\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"승인…\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autorizuoti…\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autoriser…\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Toestemming geven…\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autoriser…\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autoryzuj…\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autorizar…\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autorizar…\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Autorizare…\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Авторизовать…\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Povoliť…\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Auktorisera…\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Yetkilendir...\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Авторизувати…\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cấp phép…\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"授权…\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"授權⋯\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"授權⋯\"\n          }\n        }\n      }\n    },\n    \"VIY-Ag-zcb.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Center\\\"; ObjectID = \\\"VIY-Ag-zcb\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"مركز\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Centre\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Centre\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zentrieren\"\n          }\n        },\n        \"en-GB\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Centre\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Centrar\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Centrar\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Centrer\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tengah\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Centro\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"中央に表示\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"중앙\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Centras\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Midten\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Centreer\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Midten\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Centrum\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Centralizar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Centro\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Центр\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mitten\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Căn giữa\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"居中\"\n          }\n        }\n      }\n    },\n    \"Vjx-xi-njq.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Italic\\\"; ObjectID = \\\"Vjx-xi-njq\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"مائل\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cursiva\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cursiva\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kursiv\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cursiva\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cursiva\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Italique\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cetak Miring\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Corsivo\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"イタリック\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"이탤릭체\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kursyvas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kursiv\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cursief\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kursiv\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kursywa\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Itálico\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Itálico\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Курсив\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kursiv\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"In nghiên\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"斜体\"\n          }\n        }\n      }\n    },\n    \"vKC-jM-MkH.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Paste Style\\\"; ObjectID = \\\"vKC-jM-MkH\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"نمط اللصق\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Enganxa estil\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Enganxa estil\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stil einfügen\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pegar estilo\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pegar estilo\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Style de collage\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tempel Gaya\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Incolla lo stile\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"スタイルをペースト\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"스타일 붙여넣기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Įterpimo stilius\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lim inn stil\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stijl plakken\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lim inn stil\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Wklej Styl\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Colar Estilo\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Colar Estilo\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Стиль вставки\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Klistra in stil\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dán kiểu chữ\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"粘贴样式\"\n          }\n        }\n      }\n    },\n    \"vLm-3I-IUL.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Show Ruler\\\"; ObjectID = \\\"vLm-3I-IUL\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"عرض المسطرة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostra regle\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostra regle\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lineale einblenden\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar regla\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar regla\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Afficher la règle\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tampilkan Penggaris\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostra righello\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ルーラーを表示\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"눈금자 보기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rodyti liniuotę\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis linjal\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Toon lineaal\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis linjal\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pokaż Linijkę\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar Régua\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar Régua\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Показать линейку\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Visa linjal\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hiện thước\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"显示标尺\"\n          }\n        }\n      }\n    },\n    \"vmV-6d-7jI.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Make Upper Case\\\"; ObjectID = \\\"vmV-6d-7jI\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"جعل الأحرف الكبيرة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Converteix a majúscules\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Converteix a majúscules\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Großbuchstaben\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Convertir a mayúsculas\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Convertir a mayúsculas\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Passer en majuscules\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buat Huruf Besar\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rendi maiuscolo\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"大文字にする\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"대문자로 만들기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Viską padaryti didžiosiomis raidėmis\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk store bokstaver\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maak hoofdletters\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk store bokstavar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zmień na duże litery\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Converter em Maiúsculas\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maiúsculas\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Сделать всё в верхнем регистре\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ändra till versaler\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Viết hoa\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"变为大写\"\n          }\n        }\n      }\n    },\n    \"vNY-rz-j42.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Clear Menu\\\"; ObjectID = \\\"vNY-rz-j42\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"مسح القائمة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Neteja menú\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Neteja menú\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Einträge löschen\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Borrar menú\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Borrar menú\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Effacer le menu\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bersihkan Menu\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pulisci menu\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"メニューを消去\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"메뉴 지우기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Išvalyti meniu\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tøm menyen\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Menu leegmaken\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tøm menyen\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Wyczyść menu\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Limpar Menu\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Limpar Menu\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Очистить меню\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rensa menyn\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Làm sạch menu\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"清除菜单\"\n          }\n        }\n      }\n    },\n    \"Vph-Z0-euH.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Center Three Fourths\\\"; ObjectID = \\\"Vph-Z0-euH\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"وسط ثلاثة أرباع\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tres quarts centrals\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tres quarts centrals\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Střední tři čtvrtiny\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mittlere drei Viertel\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Center Three Fourths\"\n          }\n        },\n        \"en-GB\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Centre Three Quarters\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tres cuartos centrales\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tres cuartos centrales\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Trois quarts centraux\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tiga Perempat Tengah\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tre quarti centrali\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"3/4にして中央揃え\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"중앙 3/4\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vidurinės trys ketvirtys\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Midterste tre fjerdedeler\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Middelste drie kwart\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Midtre tre fjerdedelar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Środkowe trzy czwarte\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Três quartos centrais\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Três Quartos Centrais\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Trei Sferturi Centrale\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Центральные три четверти\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stredné tri štvrtiny\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mittersta tre fjärdedelar\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Orta Üç Çeyrek\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Центральні три чверті\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"3/4 ở giữa\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"中间３／４\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"中間３／４\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"中間３／４\"\n          }\n        }\n      }\n    },\n    \"w0m-vy-SC9.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Ligatures\\\"; ObjectID = \\\"w0m-vy-SC9\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"الأربطة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lligadures\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lligadures\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligaturen\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligaduras\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligaduras\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatures\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatur\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Legature\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"合字\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"합자\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatūros\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligaturer\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligaturen\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligaturar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatury\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligaduras\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligaduras\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Лигатуры\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligaturer\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Chữ ghép\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"连字\"\n          }\n        }\n      }\n    },\n    \"W48-6f-4Dl.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Edit\\\"; ObjectID = \\\"W48-6f-4Dl\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"يحرر\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edita\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edita\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Upravit\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bearbeiten\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Edit\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Editar\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Editar\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Modifier\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sunting\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Modifica\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"編集\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"편집\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Redaguoti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rediger\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bewerken\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rediger\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edycja\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Editar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Editar\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Editare\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Редактировать\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Upraviť\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Redigera\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edit\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Редагувати\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Chỉnh sửa\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"编辑\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"編輯\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"編輯\"\n          }\n        }\n      }\n    },\n    \"Was-JA-tGl.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"New\\\"; ObjectID = \\\"Was-JA-tGl\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"جديد\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nou\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nou\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nový\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Neu\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"New\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nuevo\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nuevo\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nouveau\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baru\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nuovo\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"新規作成\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"신규\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sukurti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nytt\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nieuw\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nytt\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nowy\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Novo\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Novo\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nou\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Создать\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nový\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ny\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"New\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Новий\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mới\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"新建\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"新增\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"新增\"\n          }\n        }\n      }\n    },\n    \"wb2-vD-lq4.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Align Right\\\"; ObjectID = \\\"wb2-vD-lq4\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"محاذاة اليمين\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Alinea a la dreta\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Alinea a la dreta\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rechtsbündig\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Alinear a la derecha\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Alinear a la derecha\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Aligner à droite\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rata Kanan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Allinea a destra\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右揃え\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"오른쪽 정렬\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lygiavimas į dešinę\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Høgrejustert\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rechts uitlijnen\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Høgrejustert\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Wyrównaj w prawo\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Alinhar à Direita\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Alinhar à Direita\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Выравнивание вправо\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Anpassa höger\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Căn phải\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右对齐\"\n          }\n        }\n      }\n    },\n    \"WeT-3V-zwk.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Paste and Match Style\\\"; ObjectID = \\\"WeT-3V-zwk\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"لصق ومطابقة النمط\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Enganxa i coincideix amb l'estil\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Enganxa i coincideix amb l'estil\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vložit a sladit styl\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Einfügen und Stil anpassen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Paste and Match Style\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pegar y emparejar estilo\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pegar y emparejar estilo\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Coller et adapter le style\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tempel dan Cocokkan Gaya\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Incolla e mantieni stile\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ペーストしてスタイルを合わせる\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"붙여넣고 스타일 일치시킴\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Įterpti ir suderinti stilius\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lim inn og tilpass stil\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Plak en neem stijl over\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lim inn og tilpass stil\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Wklej i dopasuj styl\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Colar e manter estilo\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Colar e Combinar Estilo\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lipește și Aplică Stilizarea\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Вставить и соотнести стили\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vložiť a prispôsobiť štýl\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Klistra in och matcha stil\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste and Match Style\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Вставити зі збереженням стилю\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dán và khớp kiểu\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"粘贴并匹配样式\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"貼上並符合樣式\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"貼上並符合樣式\"\n          }\n        }\n      }\n    },\n    \"Width Step (px)\" : {\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Width Step (px)\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Шаг ширины (px)\"\n          }\n        }\n      }\n    },\n    \"wpr-3q-Mcd.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Help\\\"; ObjectID = \\\"wpr-3q-Mcd\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"يساعد\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ajuda\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ajuda\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nápověda\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hilfe\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Help\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ayuda\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ayuda\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Aide\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bantuan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Aiuto\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ヘルプ\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"도움말\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pagalba\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hjelp\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hulp\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hjelp\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pomoc\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ajuda\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ajuda\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ajutor\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Помощь\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pomocník\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hjälp\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Yardım\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Довідка\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Trợ giúp\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"帮助\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"輔助說明\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"輔助說明\"\n          }\n        }\n      }\n    },\n    \"WRG-CD-K1S.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Underline\\\"; ObjectID = \\\"WRG-CD-K1S\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تسطير\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Subratllat\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Subratllat\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Unterstrichen\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Subrayar\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Subrayar\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Souligner\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Garis Bawah\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sottolinea\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"アンダーライン\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"밑줄체\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pabrauktas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Understreka\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Onderstrepen\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Understreka\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Podkreśl\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sublinhar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sublinhado\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Подчеркнутый\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Understrykning\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gạch dưới\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"下划线\"\n          }\n        }\n      }\n    },\n    \"x3v-GG-iWU.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Copy\\\"; ObjectID = \\\"x3v-GG-iWU\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ينسخ\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copia\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copia\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kopírovat\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kopieren\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Copy\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copiar\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copiar\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copier\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Salin\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copia\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"コピー\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"복사하기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kopijuoti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kopier\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kopiëren\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kopier\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kopia\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copiar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copiar\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copiere\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Копировать\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kopírovať\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kopiera\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Копіювати\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sao chép\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"拷贝\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"拷貝\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"複製\"\n          }\n        }\n      }\n    },\n    \"xBU-le-7cX.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"-\\\"; ObjectID = \\\"xBU-le-7cX\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"-\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        }\n      }\n    },\n    \"Xc8-Sm-pig.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Left Half\\\"; ObjectID = \\\"Xc8-Sm-pig\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"النصف الأيسر\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Meitat esquerra\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Meitat esquerra\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Levá polovina\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Linke Hälfte\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Left Half\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mitad izquierda\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mitad izquierda\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Moitié gauche\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Setengah Kiri\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Metà sinistra\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左半分\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"왼쪽 절반\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kairė pusė\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Venstre halvdel\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Linkerhelft\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Venstre halvdel\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lewa połowa\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Metade esquerda\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Metade esquerda\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Prima Jumătate\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Левая половина\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ľavá polovica\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vänstra halvan\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sol Yarım\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ліва половина\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1/2 đầu\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左半屏\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左半\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左半\"\n          }\n        }\n      }\n    },\n    \"xcE-uL-2J0.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Choosing Spectacle will also cycle 1/2, 2/3, and 1/3 window widths on repeated shortcuts\\\"; ObjectID = \\\"xcE-uL-2J0\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"سيؤدي اختيار Spectacle أيضًا إلى تدوير عرض النافذة 1/2 و 2/3 و 1/3 على الاختصارات المتكررة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Si escolliu Spectacle, també es farà un cicle de 1/2, 2/3 i 1/3 d'amplada de finestra a les dreceres repetides\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Si escolliu Spectacle, també es farà un cicle de 1/2, 2/3 i 1/3 d'amplada de finestra a les dreceres repetides\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vybráním Spectacle se také bude měnit šířka oken na 1/2, 2/3, a 1/3 při opakovaných příkazech\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Wenn Spectacle ausgewählt wird, werden bei wiederholten Tastaturkurzbefehlen zwischen 1/2, 2/3, und 1/3-Fensterbreiten durchgewechselt\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Choosing Spectacle will also cycle 1/2, 2/3, and 1/3 window widths on repeated shortcuts\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Elegir Spectacle también creará un bucle para las anchuras de 1/2, 2/3 y 1/3 del tamaño de la ventana en atajos accionados repetidas veces\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Elegir Spectacle también creará un bucle para las anchuras de 1/2, 2/3 y 1/3 del tamaño de la ventana en atajos accionados repetidas veces\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Choisir Spectacle altérera aussi les largeurs de fenêtre 1/2, 2/3, et 1/3 pour les raccourcis répétés\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Memilih Spectacle juga akan menggilir 1/2, 2/3, dan 1/3 lebar jendela pada pintasan berulang\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Scegliere Spectacle alternerà 1/2, 2/3, e 1/3 in larghezza con abbreviazioni ripetute\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spectacleを選択すると、同じショートカットを繰り返した際にウインドウの幅を1/2、2/3、1/3に順次変更します\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spectacle을 선택하여도 단축키를 반복하면 1/2, 2/3, 1/3 창 넓이를 순환합니다\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pasirinkus Spectacle karštuosius klavišus, taip pat bus cikliškai keičiamas lango plotis 1/2, 2/3 ir 1/3 naudojant kartojančius karštuosius klavišus\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Å velge Spectacle fører også til at man veksler mellom 1/2-, 2/3-, og 1/3-vindusbredder når du bruker samme snarveg flere ganger\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Choosing Spectacle will also cycle 1/2, 2/3, and 1/3 window widths on repeated shortcuts\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Å velja Spectacle fører òg til at ein vekslar mellom 1/2-, 2/3-, og 1/3-vindaugsbreidder når du bruker same snarveg fleire gonger\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Wybranie Spectacle będzie także zmieniało szerokość okna 1/2, 2/3 i 1/3 przy powtarzających się skrótach.\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spectacle também fará com que comandos repetidos alternem o tamanho da janela entre 1/2, 2/3 e 1/3 de largura\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Escolher Spectacle também vai alternar ente larguras de janelas de 1/2, 2/3 e 1/3 ao repetir atalhos\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dacă alegeți Spectacle se vor parcurge 1/2, 2/3, și 1/3 din lățimile ferestrei la repetarea scurtăturilor\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Выбор горячих клавиш Spectacle также зациклит 1/2, 2/3 и 1/3 ширины окна при повторяющихся горячих клавиш\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zvolením Spectacle sa tiež bude meniť šírka okien na 1/2, 2/3 a 1/3 pri opakovaní skratiek\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Att välja Spectacle kommer också att växla mellan 1/2-, 2/3-, och 1/3-fönsterbredder med upprepade kortkommandon\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spectacle seçilirse, yinelenen kısayollar ekranın 1/2, 2/3 ve 1/3 genişlikleri arasında geçiş sağlar.\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Вибір Spectacle також циклічно переключає 1/2, 2/3 і 1/3 ширини вікна при повторному використанні комбінації клавіш\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Chọn Spectacle cũng sẽ thiết lập tuần hoàn 1/2, 2/3, và 1/3 kích thước cửa sổ khi các phím tắt được lặp lại\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"若选择 Spectacle，重复快捷键也会循环½、⅔、⅓窗口宽度\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"如果選擇 Spectacle，重複快速鍵也會循環½、⅔、⅓視窗寬度\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"若選擇Spectacle，重複快捷鍵也會循環½、⅔、⅓視窗寬度\"\n          }\n        }\n      }\n    },\n    \"xE6-jw-EPt.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"If the area is too small, recent apps will be hidden\\\"; ObjectID = \\\"xE6-jw-EPt\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"إذا كانت المنطقة صغيرة جدًا ، فسيتم إخفاء التطبيقات الحديثة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Si l'àrea és massa petita, les aplicacions recents s'amagaran\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Si l'àrea és massa petita, les aplicacions recents s'amagaran\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pokud je oblast příliš malá, nedávné aplikace budou skryté\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Wenn der Bereich zu klein ist, werden die zuletzt verwendeten Programme ausgeblendet.\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"If the area is too small, recent apps will be hidden\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Si el área es demasiado pequeña, las aplicaciones recientes serán ocultadas\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Si el área es demasiado pequeña, las aplicaciones recientes serán ocultadas\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Si la zone est trop petite, les applications récentes seront masquées\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"If the area is too small, recent apps will be hidden\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Se l'area è troppo piccola, le app recenti saranno nascoste\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"エリアが小さい場合、最近使ったアプリケーションは非表示になります\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"영역이 너무 작으면 최근 앱들이 숨겨집니다\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jei sritis per maža, paskutinės programos bus paslėptos\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Om området er for lite vil siste brukte apper ikke være synlige\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"If the area is too small, recent apps will be hidden\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Om området er for lite vil siste brukte appar ikkje vera synlege\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"If the area is too small, recent apps will be hidden\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Se a área é muito pequeno, aplicativos recentes serão ocultados\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"If the area is too small, recent apps will be hidden\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"If the area is too small, recent apps will be hidden\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Если область слишком мала, последние приложения будут скрыты\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ak je oblasť príliš malá, nedávne aplikácie sa skryjú\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"If the area is too small, recent apps will be hidden\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Eğer alan çok darsa, son uygulamalar gizlenecektir\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Якщо область занадто мала, останні застосунки будуть приховані\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nếu vùng hiển thị quá nhỏ, các ứng dụng hiện tại sẽ bị ẩn\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"若该区域过小，最近使用的应用程序将被隐藏\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"如果該區域過小，將會隱藏最近使用過的應用程式\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"如果該區域過小，最近使用過的應用程式將被隱藏\"\n          }\n        }\n      }\n    },\n    \"xK0-Bn-yqf.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"-\\\"; ObjectID = \\\"xK0-Bn-yqf\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"-\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"-\"\n          }\n        }\n      }\n    },\n    \"XlM-ch-cLG.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"cycle through displays\\\"; ObjectID = \\\"XlM-ch-cLG\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"دورة من خلال شاشات العرض\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"cicle per les pantalles\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"cicle per les pantalles\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"přesouvat po displejích\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Durch Bildschirme wechseln\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"cycle through displays\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"bucle a través de las pantallas\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"bucle a través de las pantallas\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"parcourir les moniteurs\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"siklus melalui tampilan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"scorri tra schermi\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ウインドウを表示するディスプレイを変更\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"디스플레이 순환\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"perjungineti tarp ekranų\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"gå gjennom skjermene\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"cycle through displays\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"gå gjennom skjermane\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"cycle through displays\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"cycle through displays\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"cycle through displays\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"navigare ciclică între ecrane\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"переключаться между дисплеями\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"prepínať medzi displejmi\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"bläddra mellan skärmarna\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ekranlar arasında dolaş\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"циклічно перебирати екрани\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Di chuyển tuần hoàn qua các màn hình\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"循环显示器\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"循環顯示器\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"循環顯示器\"\n          }\n        }\n      }\n    },\n    \"xNi-9K-fnJ.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"2. In the Rectangle menu, select\\\\n\\\\\\\"Use [Application] as Todo App\\\\\\\"\\\"; ObjectID = \\\"xNi-9K-fnJ\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"2. في قائمة المستطيل ، حدد  n  استخدام [Application] كتطبيق Todo\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"2. Al menú Rectangle, selecciona\\n\\\"Utilitza [Application] com a app Todo\\\"\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"2. Al menú Rectangle, selecciona\\n\\\"Utilitza [Application] com a app Todo\\\"\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"2. V Rectangle menu, zvolte\\n\\\"Vybrat [Application] jako Todo aplikaci\\\"\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"2. Wähle \\n\\\"Verwende [Application] als To-do-Anwendung\\\" im Rectangle-Menü.\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"2. In the Rectangle menu, select\\n\\\"Use [Application] as Todo App\\\"\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"2. En el menú de Rectangle, selecciona\\n\\\"Usar [Aplicación] como aplicación 'Todo'\\\"\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"2. En el menú de Rectangle, selecciona\\n\\\"Usar [Aplicación] como aplicación 'Todo'\\\"\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"2. Dans le menu de Rectangle, sélectionner\\n« Utiliser [Application] comme App Todo »\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"2. Di Menu Rectangle, pilih\\n\\\"Gunakan [Application] sebagai Aplikasi Todo\\\"\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"2. Nel menu di Rectangle, seleziona \\n\\\"Usa [Applicazione] come applicazione in evidenza\\\"\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"2. Rectangleのメニューにある\\n\\\"[アプリケーション名]をToDoアプリとして使う\\\"を選択します\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"2. Rectangle 메뉴에서, \\n\\\"[Application]을 Todo 앱으로 사용\\\" 메뉴를 클릭합니다\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"„Rectangle“ meniu pasirinkite „Naudoti [Programą] kaip Todo programą“\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"2. I Rectangle-menyen: velg\\n\\\"Bruk [Program] som Gjøreliste-program\\\"\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"2. In the Rectangle menu, select\\n\\\"Use [Application] as Todo App\\\"\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"2. I Rectangle-menyen: vel\\n\\\"Bruk [Program] som Gjereliste-program\\\"\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"2. In the Rectangle menu, select\\n\\\"Use [Application] as Todo App\\\"\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"2. No menu do Rectangle, selecione\\n\\\"Use [Aplicativo] como Todo App\\\"\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"2. In the Rectangle menu, select\\n\\\"Use [Application] as Todo App\\\"\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"2. În meniul Rectangle, selectează\\n\\\"Folosește [Application] ca și Todo App\\\"\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"2. В меню Rectangle выберите \\\"Использовать [Приложение] в качестве приложения Todo\\\"\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"2. V Rectangle menu, zvoľ\\n\\\"Použiť [Aplikácia] ako Todo aplikáciu\\\"\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"2. I Rectangle-menyn, välj\\n\\\"Använd [Applikation] som Att göra-app\\\"\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"2. Rectangle menüsünde \\n\\\"[Uygulama Adı]nı Todo App olarak kullan\\\" seçeneğini seçin\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"2. У меню Rectangle виберіть\\n\\\"Використовувати [Застосунок] як застосунок Завдань\\\"\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"2. Trên menu của Rectangle, chọn\\n\\\"Sử dụng [Ứng dụng] làm ứng dụng Todo\\\"\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"⒉在 Rectangle 菜单中，选择\\n“使用［应用程序］作为待办应用”\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"⒉ 在 Rectangle 選單中，選擇\\n「使用［應用程式］作為待辦應用程式」\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"⒉在Rectangle選單中，選擇\\n「使用［應用程式］作為待辦應用」\"\n          }\n        }\n      }\n    },\n    \"xQD-1f-W4t.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Use All\\\"; ObjectID = \\\"xQD-1f-W4t\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"استخدام كل\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Utilitzar-ho tot\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Utilitzar-ho tot\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Alle verwenden\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usar todo\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usar todo\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tout utiliser\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gunakan Semua\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usa tutti\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"すべて使用\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"모두 사용\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Naudoti viską\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk alle\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gebruik alle\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk alle\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Użyj wszystkich\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usar todos\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usar Todos\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Использовать всё\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Använd alla\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"xQD-1f-W4t.title\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"全部使用\"\n          }\n        }\n      }\n    },\n    \"xrE-MZ-jX0.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Speech\\\"; ObjectID = \\\"xrE-MZ-jX0\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Veu\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Veu\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sprachausgabe\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Voz\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Voz\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Discours\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pidato\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Voce\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"スピーチ\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"말하기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kalba\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tale\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spraak\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tale\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Przemówienie\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Voz\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fala\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Речь\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tal\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Giọng nói\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"语音\"\n          }\n        }\n      }\n    },\n    \"Xz5-n4-O0W.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Find…\\\"; ObjectID = \\\"Xz5-n4-O0W\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"يجد…\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cerca…\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cerca…\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hledat…\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Suchen…\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Find…\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buscar…\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buscar…\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rechercher…\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Temukan…\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Trova…\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"検索…\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"찾기…\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rasti…\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Finn…\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoek…\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Finn…\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Znajdź…\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buscar…\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Encontrar…\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Căutare…\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Найти…\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Násjť…\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sök…\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find…\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Знайти…\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tìm kiếm …\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"查找…\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"尋找⋯\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"尋找⋯\"\n          }\n        }\n      }\n    },\n    \"YEy-JH-Tfz.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Find and Replace…\\\"; ObjectID = \\\"YEy-JH-Tfz\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"بحث واستبدال ...\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cerca i reemplaça…\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cerca i reemplaça…\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hledat a nahradit…\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Suchen und Ersetzen…\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Find and Replace…\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buscar y reemplazar…\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buscar y reemplazar…\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rechercher et remplacer…\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Temukan dan Ganti…\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Trova e sostituisci…\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"検索と置換…\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"찾기 및 대치…\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rasti ir pakeisti…\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Finn og erstatt…\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoek en vervang…\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Finn og byt ut…\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Znajdź i zastąp…\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buscar e substituir…\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Encontrar e Substituir…\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Căutare și Înlocuire…\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Найти и заменить…\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nájsť a nahradiť…\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sök och ersätt…\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find and Replace…\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Знайти і замінити…\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"T\\u0018ìm kiếm và thay thế...\\n\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"查找和替换…\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"尋找與取代⋯\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"尋找與取代⋯\"\n          }\n        }\n      }\n    },\n    \"YGs-j5-SAR.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"\\\\tDefault\\\"; ObjectID = \\\"YGs-j5-SAR\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \" t الافتراضي\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tPer defecte\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tPer defecte\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tStandard\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tPredeterminado\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tPredeterminado\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tPar défaut\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tBawaan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tPredefinito\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tデフォルト\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\t기본\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tPagal nutylėjimą\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tStandard\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tStandaard\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tStandard\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDomyślnie\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tPadrão\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tPadrão\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tПо умолчанию\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tStandard\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\\\Mặc định\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\\\tDefault\"\n          }\n        }\n      }\n    },\n    \"Ynk-f8-cLZ.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Start Speaking\\\"; ObjectID = \\\"Ynk-f8-cLZ\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ابدأ التحدث\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Comença a parlar\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Comença a parlar\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sprachausgabe starten\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Empieza a hablar\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Empieza a hablar\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Démarrer Dictée\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mulai Bicara\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Avvia la lettura ad alta voce\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"読み上げを開始\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"말하기 시작\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tarpti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Start tale\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Begin met spreken\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Start tale\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zacznij mówić\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Comece a falar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Começar a falar\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Проговорить\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Börja tala\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bắt đầu\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"开始朗读\"\n          }\n        }\n      }\n    },\n    \"YRC-4a-xGg.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Settings…\\\"; ObjectID = \\\"YRC-4a-xGg\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"التفضيلات ...\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Preferències…\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Preferències…\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Předvolby…\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Einstellungen…\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Settings…\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Preferencias…\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Preferencias…\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Préférences…\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Preferensi…\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Preferenze…\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"設定…\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"설정…\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Nustatymai…\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Innstillinger…\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Voorkeuren…\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Innstillingar…\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Preferencje…\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Preferências…\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Preferências…\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Preferințe…\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Настройки…\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nastavenia…\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Inställningar…\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Tercihler…\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"Налаштування…\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cài đặt…\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"偏好设置…\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"偏好設定⋯\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"needs_review\",\n            \"value\" : \"偏好設定⋯\"\n          }\n        }\n      }\n    },\n    \"yvN-PE-bxn.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Quit Rectangle\\\"; ObjectID = \\\"yvN-PE-bxn\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sortir de Rectangle\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sortir de Rectangle\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ukončit Rectangle\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle beenden\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Quit Rectangle\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Salir de Rectangle\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Salir de Rectangle\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quitter Rectangle\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Keluar Rectangle\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Esci da Rectangle\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangleを終了\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle 종료\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Išeiti iš Rectangle\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Avslutt Rectangle\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle stoppen\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Avslutt Rectangle\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Wyjdź z Rectangle.\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fechar Rectangle\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sair do Rectangle\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Închide Rectangle\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Выход из Rectangle\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ukončiť Rectangle\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Avsluta Rectangle\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rectangle'dan Çık\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Вийти з Rectangle\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Thoát Rectangle\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"退出 Rectangle\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"結束 Rectangle\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"結束Rectangle\"\n          }\n        }\n      }\n    },\n    \"z6F-FW-3nz.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Show Substitutions\\\"; ObjectID = \\\"z6F-FW-3nz\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostra substitucions\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostra substitucions\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ersetzungen einblenden\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar sustituciones\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar sustituciones\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Montrer les substitutions\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tampilkan substitusi \"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostra sostituzioni\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"自動置換を表示\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"대체 보기\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rodyti pakeitimus\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis erstatninger\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Toon vervangingen\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis erstatningar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pokaż zamiany\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar Substituições\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Exibir substituições\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Показать замены\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Visa substitutioner\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hiển thị\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"显示替换\"\n          }\n        }\n      }\n    },\n    \"Z9d-Rl-RVq.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"move to adjacent display on left or right\\\"; ObjectID = \\\"Z9d-Rl-RVq\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"انتقل إلى الشاشة المجاورة على اليسار أو اليمين\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"mou a la pantalla adjacent a l'esquerra o a la dreta\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"mou a la pantalla adjacent a l'esquerra o a la dreta\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"přesunout na sousedící displej vlevo nebo vpravo\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zum benachbarten Bildschirm auf der linken oder rechten Seite bewegen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"move to adjacent display on left or right\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"mover a la pantalla adyacente a la izquierda o a la derecha\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"mover a la pantalla adyacente a la izquierda o a la derecha\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"déplacer vers le moniteur à gauche ou à droite\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"pindah ke tampilan yang berdekatan di kiri atau kanan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"sposta nello schermo adiacente a sinistra o a destra\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ウインドウを左右のディスプレイに順次移動\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"인접한 왼쪽 또는 오른쪽 디스플레이로 이동\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"pereiti prie gretimo ekrano kairėje arba dešinėje\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"flytt til nærmeste skjerm til venstre eller høgre\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"move to adjacent display on left or right\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"flytt til nærmaste skjerm til venstre eller høgre\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"move to adjacent display on left or right\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"move to adjacent display on left or right\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"move to adjacent display on left or right\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"mută în ecranul adiacent din stânga sau din dreapta\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"перейти к соседнему дисплею слева или справа\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"presunúť na susediaci displej vľavo alebo vpravo\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"flytta till intilliggande skärm till vänster eller höger\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"pencereyi sağdaki veya soldaki bitişik ekrana taşı\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"перемістити на сусідній екран зліва або справа\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Di chuyển đến cạnh trái hoặc phải\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"移动到左侧或右侧的相邻显示器\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"移至左側或右側的相鄰顯示器\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"移到左側或右側的相鄰顯示器\"\n          }\n        }\n      }\n    },\n    \"ZM1-6Q-yy1.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Align Left\\\"; ObjectID = \\\"ZM1-6Q-yy1\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"محاذاة لليسار\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Alinea a l'esquerra\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Alinea a l'esquerra\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Linksbündig\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Alinear a la izquierda\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Alinear a la izquierda\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Aligner à gauche\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rata Kiri\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Allinea a sinistra\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左揃え\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"왼쪽 정렬\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lygiuoti kairėje\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Venstrejuster\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Links uitlijnen\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Venstrejuster\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Wyrównaj w lewo\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Alinhar à esquerda\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Alinhar à Esquerda\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Выровнять влево\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Justera vänster\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Căn trái\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左对齐\"\n          }\n        }\n      }\n    },\n    \"ZTK-rS-b17.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"Third Fourth\\\"; ObjectID = \\\"ZTK-rS-b17\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ثالث رابع\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tercer quart\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tercer quart\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Třetí čtvrtina\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Drittes Viertel\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Third Fourth\"\n          }\n        },\n        \"en-GB\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Third Quarter\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tercer cuarto\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tercer cuarto\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Troisième quart\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tiga Perempat\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Terzo quarto\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左から3番目\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"세번째 1/4\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Trečia ketvirtis\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tredje fjerdedel\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Derde kwart\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tredje fjerdedel\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Trzecia ćwiartka\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Terceiro quarto\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Terceiro Quarto\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Al Treilea Sfert\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Третья четверть\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tretia štvrtina\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tredje fjärde\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Üçüncü Çeyrek\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Третя чверть\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"1/4 thứ ba\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右二１／４\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右二１／４\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右二１／４\"\n          }\n        }\n      }\n    },\n    \"ZVi-DR-1zj.title\" : {\n      \"comment\" : \"Class = \\\"NSTextFieldCell\\\"; title = \\\"About Todo Mode\\\"; ObjectID = \\\"ZVi-DR-1zj\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"حول تودو مود\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quant al mode Todo\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quant al mode Todo\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"O Todo módu\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Über den To-do-Modus\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"About Todo Mode\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Acerca del modo 'Todo'\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Acerca del modo 'Todo'\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"À propos du mode Todo\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tentang Todo Mode\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Informazioni sulla modalità In evidenza\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ToDoモードについて\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todo 모드 정보\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Apie Todo režimą\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Om Gjøreliste-modus\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"About Todo Mode\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Om Gjereliste-modus\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"About Todo Mode\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sobre o Todo Mode\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"About Todo Mode\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Despre Modul Todo\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"О Todo режиме\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"O Todo režime\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Om Att göra-läge\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Todo Modu Hakkında\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Про режим Завдань\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Giới thiệu chế độ Todo\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"关于待办模式\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"關於待辦模式\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"關於待辦模式\"\n          }\n        }\n      }\n    },\n    \"ZvO-Gk-QUH.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Paragraph\\\"; ObjectID = \\\"ZvO-Gk-QUH\\\";\",\n      \"extractionState\" : \"manual\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"فقرة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paràgraf\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paràgraf\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Absatz\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Párrafo\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Párrafo\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paragraphe\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paragraf\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paragrafo\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"段落\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"단락\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paragrafas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Avsnitt\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paragraaf\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Avsnitt\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paragraf\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Parágrafo\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Parágrafo\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Параграф\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paragraf\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Đoạn văn\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"段落\"\n          }\n        }\n      }\n    }\n  },\n  \"version\" : \"1.0\"\n}"
  },
  {
    "path": "Rectangle.xcodeproj/project.pbxproj",
    "content": "// !$*UTF8*$!\n{\n\tarchiveVersion = 1;\n\tclasses = {\n\t};\n\tobjectVersion = 60;\n\tobjects = {\n\n/* Begin PBXBuildFile section */\n\t\t12D896200936C0DE9FF41FB4 /* (null) in Frameworks */ = {isa = PBXBuildFile; };\n\t\t30166BD024F27D6A00A38608 /* SpecifiedCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30166BCF24F27D6A00A38608 /* SpecifiedCalculation.swift */; };\n\t\t482E9E422EB1528D00D7928A /* AppIcon.icon in Resources */ = {isa = PBXBuildFile; fileRef = 482E9E412EB1528D00D7928A /* AppIcon.icon */; };\n\t\t6490B39127BF907A0056C220 /* BottomLeftEighthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6490B39027BF907A0056C220 /* BottomLeftEighthCalculation.swift */; };\n\t\t6490B39327BF90F90056C220 /* EighthsRepeated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6490B39227BF90F90056C220 /* EighthsRepeated.swift */; };\n\t\t6490B39527BF96880056C220 /* TopLeftEighthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6490B39427BF96880056C220 /* TopLeftEighthCalculation.swift */; };\n\t\t6490B39727BF96EA0056C220 /* TopCenterLeftEighthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6490B39627BF96EA0056C220 /* TopCenterLeftEighthCalculation.swift */; };\n\t\t6490B39927BF97BB0056C220 /* TopCenterRightEighthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6490B39827BF97BB0056C220 /* TopCenterRightEighthCalculation.swift */; };\n\t\t6490B39B27BF980F0056C220 /* TopRightEighthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6490B39A27BF980F0056C220 /* TopRightEighthCalculation.swift */; };\n\t\t6490B39D27BF984D0056C220 /* BottomCenterLeftEighthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6490B39C27BF984D0056C220 /* BottomCenterLeftEighthCalculation.swift */; };\n\t\t6490B39F27BF98840056C220 /* BottomCenterRightEighthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6490B39E27BF98840056C220 /* BottomCenterRightEighthCalculation.swift */; };\n\t\t6490B3A127BF98C70056C220 /* BottomRightEighthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6490B3A027BF98C70056C220 /* BottomRightEighthCalculation.swift */; };\n\t\t7EC9E3BAD5BC57E49A7BCEE5 /* TwelfthsRepeated.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3592F8E85CE82B8FA662A31 /* TwelfthsRepeated.swift */; };\n\t\tBAB3F495AD1F3454FAA31AFB /* TopLeftTwelfthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9FDCA1333C1BF6930A8D7F3 /* TopLeftTwelfthCalculation.swift */; };\n\t\t924919761FC491952752A147 /* TopCenterLeftTwelfthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9698D1D9EE0180D7C4468304 /* TopCenterLeftTwelfthCalculation.swift */; };\n\t\t14DBE979E4453E13A3BF5C17 /* TopCenterRightTwelfthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4D034DBD7EFAC4CF5F8D67B /* TopCenterRightTwelfthCalculation.swift */; };\n\t\tF4EED30B47FB6C55EA937254 /* TopRightTwelfthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E8357E928530D10A806F3CD /* TopRightTwelfthCalculation.swift */; };\n\t\t05DBEA44B55E6F8C5FC3D6E0 /* MiddleLeftTwelfthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEABF10E66D648DDB37DABBA /* MiddleLeftTwelfthCalculation.swift */; };\n\t\t9FDA3D672AE475B83CA1A34A /* MiddleCenterLeftTwelfthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5070DE9100E45D374053F0C2 /* MiddleCenterLeftTwelfthCalculation.swift */; };\n\t\tDCD3CF2993E9AFAF30820117 /* MiddleCenterRightTwelfthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = BCF2AC59501448BD3BAA16EC /* MiddleCenterRightTwelfthCalculation.swift */; };\n\t\t8B1D14E3A55936EBCCC1E807 /* MiddleRightTwelfthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA84AB4DB9E7EEFCE50AA6D8 /* MiddleRightTwelfthCalculation.swift */; };\n\t\tBF9871B3BCF0E652444E0C56 /* BottomLeftTwelfthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 246168B345ECE6C375ACEEB7 /* BottomLeftTwelfthCalculation.swift */; };\n\t\t52953B57D48A4F110779E9BD /* BottomCenterLeftTwelfthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 71FE3EBE50F91F9EE2989279 /* BottomCenterLeftTwelfthCalculation.swift */; };\n\t\t666598377754D51045353CD0 /* BottomCenterRightTwelfthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1A362206B9F76C269D8F469 /* BottomCenterRightTwelfthCalculation.swift */; };\n\t\t15E8CA7F6AC3EA2C4FB1424C /* BottomRightTwelfthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7D038C68560DC11F14496F6 /* BottomRightTwelfthCalculation.swift */; };\n\t\tB6366EE24FA928086846969B /* SixteenthsRepeated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 16B4044DB4809116039F96EB /* SixteenthsRepeated.swift */; };\n\t\t3FA1D2E6C9B4623227F680CF /* TopLeftSixteenthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6294D2CB6E3D8ED982F418AE /* TopLeftSixteenthCalculation.swift */; };\n\t\tA0844B53B14365D0278BC124 /* TopCenterLeftSixteenthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5BE9E5E2C8BA2590DD0B6F59 /* TopCenterLeftSixteenthCalculation.swift */; };\n\t\tA32D3739AA16C537F6427C4F /* TopCenterRightSixteenthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 918F847FF15D524B6DB2E6DA /* TopCenterRightSixteenthCalculation.swift */; };\n\t\tF51A7467767F8EAF97321A00 /* TopRightSixteenthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD222258713B13274FB651B0 /* TopRightSixteenthCalculation.swift */; };\n\t\tD8644560FF112B0748CE1975 /* UpperMiddleLeftSixteenthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84E2DBE0733F31BC159BC99C /* UpperMiddleLeftSixteenthCalculation.swift */; };\n\t\tE791B00A88D90C24A4C3D2D1 /* UpperMiddleCenterLeftSixteenthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B8CA6901E6FE134E930135B /* UpperMiddleCenterLeftSixteenthCalculation.swift */; };\n\t\t895C73559E1ACEFBBE8DC32D /* UpperMiddleCenterRightSixteenthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = BEBF3EA35F0C110A170EAD33 /* UpperMiddleCenterRightSixteenthCalculation.swift */; };\n\t\t0F29956694B5BB31EBDAE445 /* UpperMiddleRightSixteenthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3B5B09465C38F8B766B3C3C /* UpperMiddleRightSixteenthCalculation.swift */; };\n\t\t562018A56BC897E769500F1F /* LowerMiddleLeftSixteenthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = C796BCAA3DA5F85B55A7EE83 /* LowerMiddleLeftSixteenthCalculation.swift */; };\n\t\t88763FEFFA3AECF8502604D6 /* LowerMiddleCenterLeftSixteenthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 378C96D832D4CC6BCCF9D604 /* LowerMiddleCenterLeftSixteenthCalculation.swift */; };\n\t\tA73749B5FB00D2CC2DB08744 /* LowerMiddleCenterRightSixteenthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8AE08B666CCCD1805CAB08BD /* LowerMiddleCenterRightSixteenthCalculation.swift */; };\n\t\t4266090403BAF4B8A654A28B /* LowerMiddleRightSixteenthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87EC57F37CFD790695177AC8 /* LowerMiddleRightSixteenthCalculation.swift */; };\n\t\tF7B6C43BB57F8064F49DDBB6 /* BottomLeftSixteenthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = FEE147786B2CD7350FAFB700 /* BottomLeftSixteenthCalculation.swift */; };\n\t\t9988C2A18B6AF03E09204981 /* BottomCenterLeftSixteenthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 88454ABE5C62BD610AEA3EB5 /* BottomCenterLeftSixteenthCalculation.swift */; };\n\t\t630644571003EB468CB643D8 /* BottomCenterRightSixteenthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = D24EBF1F9A6209449A988E15 /* BottomCenterRightSixteenthCalculation.swift */; };\n\t\t2D240EE416CC03AC921E3A4F /* BottomRightSixteenthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 482EA970820F37C6917FCD98 /* BottomRightSixteenthCalculation.swift */; };\n\t\t729E0A982AFF76B1006E2F48 /* CenterProminentlyCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 729E0A972AFF76B1006E2F48 /* CenterProminentlyCalculation.swift */; };\n\t\t74804F0B2E25521C009F1F7D /* CenterTwoThirdsCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74804F0A2E25521C009F1F7D /* CenterTwoThirdsCalculation.swift */; };\n\t\t7BE578EF2C5BF4EE0083DAE3 /* CycleSize.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BE578EE2C5BF4ED0083DAE3 /* CycleSize.swift */; };\n\t\t866661F2257D248A00A9CD2D /* RepeatedExecutionsInThirdsCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 866661F1257D248A00A9CD2D /* RepeatedExecutionsInThirdsCalculation.swift */; };\n\t\t944F25CD2CE5A144004B2FD2 /* PrefsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 944F25CC2CE5A144004B2FD2 /* PrefsViewController.swift */; };\n\t\t94E9B08E2C3B8D97004C7F41 /* MacTilingDefaults.swift in Sources */ = {isa = PBXBuildFile; fileRef = 94E9B08D2C3B8D97004C7F41 /* MacTilingDefaults.swift */; };\n\t\t94E9B0902C3E4578004C7F41 /* StringExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 94E9B08F2C3E4578004C7F41 /* StringExtension.swift */; };\n\t\t9818E00D28B59205004AA524 /* CompoundSnapArea.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9818E00C28B59205004AA524 /* CompoundSnapArea.swift */; };\n\t\t9818E01028B59396004AA524 /* HalvesCompoundCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9818E00F28B59396004AA524 /* HalvesCompoundCalculation.swift */; };\n\t\t9818E01228B59B64004AA524 /* ThirdsCompoundCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9818E01128B59B64004AA524 /* ThirdsCompoundCalculation.swift */; };\n\t\t9818E01428B5A4FD004AA524 /* SixthsCompoundCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9818E01328B5A4FD004AA524 /* SixthsCompoundCalculation.swift */; };\n\t\t9818E01828B63C48004AA524 /* FourthsCompoundCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9818E01728B63C48004AA524 /* FourthsCompoundCalculation.swift */; };\n\t\t9818E01A28B63C49004AA524 /* EighthsCompoundCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9818E01928B63C49004AA524 /* EighthsCompoundCalculation.swift */; };\n\t\t98192DDA270F606C00015E66 /* Debounce.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98192DD9270F606C00015E66 /* Debounce.swift */; };\n\t\t98192DDE2717201100015E66 /* ReverseAllManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98192DDD2717201000015E66 /* ReverseAllManager.swift */; };\n\t\t981F27D12340E3E1006CD263 /* InternetAccessPolicy.plist in Resources */ = {isa = PBXBuildFile; fileRef = 981F27D02340E3E1006CD263 /* InternetAccessPolicy.plist */; };\n\t\t9821402122B3884600ABFB3F /* BottomHalfCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9821402022B3884600ABFB3F /* BottomHalfCalculation.swift */; };\n\t\t9821402322B3886100ABFB3F /* CenterCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9821402222B3886100ABFB3F /* CenterCalculation.swift */; };\n\t\t9821402522B3887200ABFB3F /* MaximizeCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9821402422B3887200ABFB3F /* MaximizeCalculation.swift */; };\n\t\t9821402722B3888100ABFB3F /* ChangeSizeCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9821402622B3888100ABFB3F /* ChangeSizeCalculation.swift */; };\n\t\t9821402922B3889100ABFB3F /* LowerLeftCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9821402822B3889100ABFB3F /* LowerLeftCalculation.swift */; };\n\t\t9821402B22B388A000ABFB3F /* LowerRightCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9821402A22B388A000ABFB3F /* LowerRightCalculation.swift */; };\n\t\t9821403122B38A0500ABFB3F /* TopHalfCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9821403022B38A0500ABFB3F /* TopHalfCalculation.swift */; };\n\t\t9821403322B38A1B00ABFB3F /* UpperLeftCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9821403222B38A1B00ABFB3F /* UpperLeftCalculation.swift */; };\n\t\t9821403522B38A2B00ABFB3F /* UpperRightCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9821403422B38A2B00ABFB3F /* UpperRightCalculation.swift */; };\n\t\t9821403722B3D16700ABFB3F /* MaximizeHeightCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9821403622B3D16700ABFB3F /* MaximizeHeightCalculation.swift */; };\n\t\t9821403F22B3EBD900ABFB3F /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9821403E22B3EBD900ABFB3F /* AppDelegate.swift */; };\n\t\t9821404322B3EBDA00ABFB3F /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 9821404222B3EBDA00ABFB3F /* Assets.xcassets */; };\n\t\t9821404622B3EBDA00ABFB3F /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 9821404422B3EBDA00ABFB3F /* Main.storyboard */; };\n\t\t9821405B22B3ECCA00ABFB3F /* RectangleLauncher.app in CopyFiles */ = {isa = PBXBuildFile; fileRef = 9821403C22B3EBD900ABFB3F /* RectangleLauncher.app */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };\n\t\t9821405E22B3ED3600ABFB3F /* ServiceManagement.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9821405D22B3ED3600ABFB3F /* ServiceManagement.framework */; };\n\t\t9821406022B3EFB200ABFB3F /* Defaults.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9821405F22B3EFB200ABFB3F /* Defaults.swift */; };\n\t\t9824700D22AF9B7D0037B409 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9824700C22AF9B7D0037B409 /* AppDelegate.swift */; };\n\t\t9824701122AF9B7E0037B409 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 9824701022AF9B7E0037B409 /* Assets.xcassets */; };\n\t\t9824701422AF9B7E0037B409 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 9824701222AF9B7E0037B409 /* Main.storyboard */; };\n\t\t9824702022AF9B7E0037B409 /* RectangleTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9824701F22AF9B7E0037B409 /* RectangleTests.swift */; };\n\t\t9824702C22AFA22E0037B409 /* AccessibilityWindowController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9824702A22AFA22E0037B409 /* AccessibilityWindowController.swift */; };\n\t\t9824702F22AFA2E50037B409 /* AccessibilityAuthorization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9824702E22AFA2E50037B409 /* AccessibilityAuthorization.swift */; };\n\t\t9824703122AFA8470037B409 /* RectangleStatusItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9824703022AFA8470037B409 /* RectangleStatusItem.swift */; };\n\t\t9824703722B0F3200037B409 /* WindowAction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9824703622B0F3200037B409 /* WindowAction.swift */; };\n\t\t9824703922B0F37C0037B409 /* ShortcutManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9824703822B0F37C0037B409 /* ShortcutManager.swift */; };\n\t\t9824703B22B139780037B409 /* CUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9824703A22B139780037B409 /* CUtil.swift */; };\n\t\t9824703D22B13C7E0037B409 /* AccessibilityElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9824703C22B13C7E0037B409 /* AccessibilityElement.swift */; };\n\t\t9824703F22B13FBC0037B409 /* ScreenDetection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9824703E22B13FBC0037B409 /* ScreenDetection.swift */; };\n\t\t9824704122B186D00037B409 /* WindowManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9824704022B186D00037B409 /* WindowManager.swift */; };\n\t\t9824704B22B189250037B409 /* StandardWindowMover.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9824704622B189240037B409 /* StandardWindowMover.swift */; };\n\t\t9824704C22B189250037B409 /* WindowMover.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9824704722B189240037B409 /* WindowMover.swift */; };\n\t\t9824704D22B189250037B409 /* WindowCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9824704822B189250037B409 /* WindowCalculation.swift */; };\n\t\t9824704E22B189250037B409 /* QuantizedWindowMover.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9824704922B189250037B409 /* QuantizedWindowMover.swift */; };\n\t\t9824704F22B189250037B409 /* BestEffortWindowMover.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9824704A22B189250037B409 /* BestEffortWindowMover.swift */; };\n\t\t9824705122B28D7A0037B409 /* LeftRightHalfCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9824705022B28D7A0037B409 /* LeftRightHalfCalculation.swift */; };\n\t\t983BBD6F253B609D000D223E /* FootprintWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 983BBD6E253B609D000D223E /* FootprintWindow.swift */; };\n\t\t983DD04028A844BE00BF1EEE /* SnapAreaViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 983DD03F28A844BE00BF1EEE /* SnapAreaViewController.swift */; };\n\t\t983DD04428B0639E00BF1EEE /* SnapAreaModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 983DD04328B0639E00BF1EEE /* SnapAreaModel.swift */; };\n\t\t984EDB0F29A42ED200D119D2 /* LaunchOnLogin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 984EDB0E29A42ED200D119D2 /* LaunchOnLogin.swift */; };\n\t\t9851A5C3251BEBA300ECF78C /* OrientationAware.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9851A5C2251BEBA300ECF78C /* OrientationAware.swift */; };\n\t\t985B9BF522B93EEC00A2E8F0 /* ApplicationToggle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 985B9BF422B93EEC00A2E8F0 /* ApplicationToggle.swift */; };\n\t\t985B9BF822BB6F5100A2E8F0 /* MessageView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 985B9BF622BB6F5000A2E8F0 /* MessageView.xib */; };\n\t\t985B9BF922BB6F5100A2E8F0 /* MessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 985B9BF722BB6F5000A2E8F0 /* MessageView.swift */; };\n\t\t9877B63A29C8AC0E00F02D74 /* MASShortcut in Frameworks */ = {isa = PBXBuildFile; productRef = 9877B63929C8AC0E00F02D74 /* MASShortcut */; };\n\t\t9877B63D29C8AC3600F02D74 /* Sparkle in Frameworks */ = {isa = PBXBuildFile; productRef = 9877B63C29C8AC3600F02D74 /* Sparkle */; };\n\t\t988D066122EB4C7C004EABD7 /* FirstThirdCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 988D066022EB4C7C004EABD7 /* FirstThirdCalculation.swift */; };\n\t\t988D066322EB4CA5004EABD7 /* FirstTwoThirdsCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 988D066222EB4CA5004EABD7 /* FirstTwoThirdsCalculation.swift */; };\n\t\t988D066522EB4CB6004EABD7 /* CenterThirdCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 988D066422EB4CB5004EABD7 /* CenterThirdCalculation.swift */; };\n\t\t988D066722EB4CC0004EABD7 /* LastTwoThirdsCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 988D066622EB4CC0004EABD7 /* LastTwoThirdsCalculation.swift */; };\n\t\t988D066922EB4CCB004EABD7 /* LastThirdCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 988D066822EB4CCB004EABD7 /* LastThirdCalculation.swift */; };\n\t\t988D067D22EB4E17004EABD7 /* AlmostMaximizeCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 988D067C22EB4E17004EABD7 /* AlmostMaximizeCalculation.swift */; };\n\t\t988D067F22EB4EDE004EABD7 /* MoveLeftRightCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 988D067E22EB4EDE004EABD7 /* MoveLeftRightCalculation.swift */; };\n\t\t988D068322EB4EF3004EABD7 /* MoveUpDownCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 988D068222EB4EF3004EABD7 /* MoveUpDownCalculation.swift */; };\n\t\t98910B3E231130AF0066EC23 /* SettingsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98910B3D231130AF0066EC23 /* SettingsViewController.swift */; };\n\t\t98987AA42391890400BE72C4 /* LogViewer.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 98987AA22391890300BE72C4 /* LogViewer.storyboard */; };\n\t\t98987AA52391890400BE72C4 /* LogViewer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98987AA32391890400BE72C4 /* LogViewer.swift */; };\n\t\t989DA30E243FC0DF008C7AA4 /* WelcomeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 989DA30D243FC0DF008C7AA4 /* WelcomeViewController.swift */; };\n\t\t98A009AB2512491300CFBF0C /* CenterHalfCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98A009AA2512491300CFBF0C /* CenterHalfCalculation.swift */; };\n\t\t98A009AD2512498000CFBF0C /* FirstFourthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98A009AC2512498000CFBF0C /* FirstFourthCalculation.swift */; };\n\t\t98A009AF2512517900CFBF0C /* SecondFourthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98A009AE2512517900CFBF0C /* SecondFourthCalculation.swift */; };\n\t\t98A009B1251252C900CFBF0C /* ThirdFourthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98A009B0251252C900CFBF0C /* ThirdFourthCalculation.swift */; };\n\t\t98A009B32512536900CFBF0C /* LastFourthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98A009B22512536800CFBF0C /* LastFourthCalculation.swift */; };\n\t\t98A009B52512537800CFBF0C /* TopLeftSixthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98A009B42512537800CFBF0C /* TopLeftSixthCalculation.swift */; };\n\t\t98A009B72512538200CFBF0C /* TopCenterSixthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98A009B62512538200CFBF0C /* TopCenterSixthCalculation.swift */; };\n\t\t98A009B92512538D00CFBF0C /* TopRightSixthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98A009B82512538D00CFBF0C /* TopRightSixthCalculation.swift */; };\n\t\t98A009BB2512539900CFBF0C /* BottomLeftSixthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98A009BA2512539900CFBF0C /* BottomLeftSixthCalculation.swift */; };\n\t\t98A009BD251253A000CFBF0C /* BottomCenterSixthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98A009BC251253A000CFBF0C /* BottomCenterSixthCalculation.swift */; };\n\t\t98A009BF251253AB00CFBF0C /* BottomRightSixthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98A009BE251253AB00CFBF0C /* BottomRightSixthCalculation.swift */; };\n\t\t98A6EDDD251F3F4A00F74B10 /* SixthsRepeated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98A6EDDC251F3F4A00F74B10 /* SixthsRepeated.swift */; };\n\t\tBB0000000000000000000001 /* QuartersRepeated.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB0000000000000000000002 /* QuartersRepeated.swift */; };\n\t\t98A6EDEC2528FFC100F74B10 /* WindowActionCategory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98A6EDEB2528FFC100F74B10 /* WindowActionCategory.swift */; };\n\t\t98B3559823CE025700E410E0 /* CenteringFixedSizedWindowMover.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98B3559723CE025700E410E0 /* CenteringFixedSizedWindowMover.swift */; };\n\t\t98BEFA482620DEDD00D9D54F /* NSImageExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98BEFA472620DEDC00D9D54F /* NSImageExtension.swift */; };\n\t\t98C1008C2305F1FA006E5344 /* SubsequentExecutionMode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98C1008B2305F1FA006E5344 /* SubsequentExecutionMode.swift */; };\n\t\t98C1008E230B9EF6006E5344 /* NextPrevDisplayCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98C1008D230B9EF6006E5344 /* NextPrevDisplayCalculation.swift */; };\n\t\t98C2755E231FF6A9009B9292 /* EventMonitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98C2755D231FF6A9009B9292 /* EventMonitor.swift */; };\n\t\t98C27561231FFA5F009B9292 /* SnappingManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98C27560231FFA5F009B9292 /* SnappingManager.swift */; };\n\t\t98C275672322E2DA009B9292 /* WindowHistory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98C275662322E2DA009B9292 /* WindowHistory.swift */; };\n\t\t98C6DEF023CE191700CC0C1E /* GapCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98C6DEEF23CE191700CC0C1E /* GapCalculation.swift */; };\n\t\t98C97FFD25893B040061F01F /* Config.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98C97FFC25893B040061F01F /* Config.swift */; };\n\t\t98D1441324560B1E0090C603 /* AlertUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98D1441224560B1E0090C603 /* AlertUtil.swift */; };\n\t\t98D16A442592AD55005228CB /* MASShortcutMigration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98D16A432592AD55005228CB /* MASShortcutMigration.swift */; };\n\t\t98D16A492592B460005228CB /* NotificationExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98D16A482592B460005228CB /* NotificationExtension.swift */; };\n\t\t98D4B6C525B6256C009C7BF6 /* TodoManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98D4B6C425B6256C009C7BF6 /* TodoManager.swift */; };\n\t\t98FA9497235A2D7600F95C4F /* RepeatedExecutionsCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98FA9496235A2D7600F95C4F /* RepeatedExecutionsCalculation.swift */; };\n\t\t98FD7C5F2687BC14009E9DAF /* FirstThreeFourthsCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98FD7C5E2687BC14009E9DAF /* FirstThreeFourthsCalculation.swift */; };\n\t\t98FD7C612687BCB6009E9DAF /* LastThreeFourthsCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98FD7C602687BCB6009E9DAF /* LastThreeFourthsCalculation.swift */; };\n\t\t9FF740232E34DE9000D22955 /* CenterThreeFourthsCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9FF740222E34DE9000D22955 /* CenterThreeFourthsCalculation.swift */; };\n\t\tAA040C67290B2640003181D5 /* RunLoopThread.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA040C66290B2640003181D5 /* RunLoopThread.swift */; };\n\t\tAA0AC000291C1B5E00D125D2 /* CGExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA0ABFFF291C1B5E00D125D2 /* CGExtension.swift */; };\n\t\tAA0AC002291C1B9100D125D2 /* AXExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA0AC001291C1B9100D125D2 /* AXExtension.swift */; };\n\t\tAA0AC004291C48DE00D125D2 /* SequenceExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA0AC003291C48DE00D125D2 /* SequenceExtension.swift */; };\n\t\tAA0ACC2F2864A86D0025E376 /* StageUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA0ACC2E2864A86D0025E376 /* StageUtil.swift */; };\n\t\tAA3A9E8B29230A82004EB8E5 /* CFExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA3A9E8A29230A82004EB8E5 /* CFExtension.swift */; };\n\t\tAA49DD1129B8C1B100690E13 /* TitleBarManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA49DD1029B8C1B100690E13 /* TitleBarManager.swift */; };\n\t\tAA4DA2FB28FDC94A00355CEB /* DispatchTimeExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA4DA2FA28FDC94A00355CEB /* DispatchTimeExtension.swift */; };\n\t\tAA536C2729005DD000579AC6 /* TimeoutCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA536C2629005DD000579AC6 /* TimeoutCache.swift */; };\n\t\tAA69F83C29909A95001A81AF /* RightTodoCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA69F83B29909A95001A81AF /* RightTodoCalculation.swift */; };\n\t\tAA69F8402992DCB1001A81AF /* LeftTodoCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA69F83F2992DCB1001A81AF /* LeftTodoCalculation.swift */; };\n\t\tAAADE1AF28CBAB0000036331 /* WindowUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = AAADE1AE28CBAB0000036331 /* WindowUtil.swift */; };\n\t\tB4521F932BD7CEFB00FD43CC /* ChangeWindowDimensionCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4521F922BD7CEFB00FD43CC /* ChangeWindowDimensionCalculation.swift */; };\n\t\tB4780A322BD4C75900732B9E /* HalfOrDoubleDimensionCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4780A312BD4C75900732B9E /* HalfOrDoubleDimensionCalculation.swift */; };\n\t\tBB0B80492EFB0AF900A9B165 /* TopVerticalTwoThirdsCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB0B80482EFB0AF900A9B165 /* TopVerticalTwoThirdsCalculation.swift */; };\n\t\tBB0B804A2EFB0AF900A9B165 /* MiddleVerticalThirdCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB0B80462EFB0AF900A9B165 /* MiddleVerticalThirdCalculation.swift */; };\n\t\tBB0B804B2EFB0AF900A9B165 /* BottomVerticalTwoThirdsCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB0B80452EFB0AF900A9B165 /* BottomVerticalTwoThirdsCalculation.swift */; };\n\t\tBB0B804C2EFB0AF900A9B165 /* BottomVerticalThirdCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB0B80442EFB0AF900A9B165 /* BottomVerticalThirdCalculation.swift */; };\n\t\tBB0B804D2EFB0AF900A9B165 /* TopVerticalThirdCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB0B80472EFB0AF900A9B165 /* TopVerticalThirdCalculation.swift */; };\n\t\tD0423D8327A8D31D008A4894 /* HorizontalThirdsRepeated.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0423D8227A8D31D008A4894 /* HorizontalThirdsRepeated.swift */; };\n\t\tD04CE3002781794E00BD47B3 /* TopLeftNinthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = D04CE2FF2781794E00BD47B3 /* TopLeftNinthCalculation.swift */; };\n\t\tD04CE30227817A6100BD47B3 /* TopCenterNinthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = D04CE30127817A6100BD47B3 /* TopCenterNinthCalculation.swift */; };\n\t\tD04CE30427817A6F00BD47B3 /* TopRightNinthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = D04CE30327817A6F00BD47B3 /* TopRightNinthCalculation.swift */; };\n\t\tD04CE30627817A8400BD47B3 /* MiddleLeftNinthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = D04CE30527817A8400BD47B3 /* MiddleLeftNinthCalculation.swift */; };\n\t\tD04CE30827817A9200BD47B3 /* MiddleCenterNinthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = D04CE30727817A9200BD47B3 /* MiddleCenterNinthCalculation.swift */; };\n\t\tD04CE30A27817A9F00BD47B3 /* MiddleRightNinthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = D04CE30927817A9F00BD47B3 /* MiddleRightNinthCalculation.swift */; };\n\t\tD04CE30C27817AA900BD47B3 /* BottomLeftNinthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = D04CE30B27817AA900BD47B3 /* BottomLeftNinthCalculation.swift */; };\n\t\tD04CE30E27817AB500BD47B3 /* BottomCenterNinthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = D04CE30D27817AB500BD47B3 /* BottomCenterNinthCalculation.swift */; };\n\t\tD04CE31027817ABE00BD47B3 /* BottomRightNinthCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = D04CE30F27817ABE00BD47B3 /* BottomRightNinthCalculation.swift */; };\n\t\tD04CE31227817C9B00BD47B3 /* NinthsRepeated.swift in Sources */ = {isa = PBXBuildFile; fileRef = D04CE31127817C9B00BD47B3 /* NinthsRepeated.swift */; };\n\t\tD0CFE33127A8CAED004DA47B /* TopLeftThirdCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0CFE33027A8CAED004DA47B /* TopLeftThirdCalculation.swift */; };\n\t\tD0CFE33327A8CCB1004DA47B /* TopRightThirdCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0CFE33227A8CCB1004DA47B /* TopRightThirdCalculation.swift */; };\n\t\tD0CFE33527A8CD16004DA47B /* BottomLeftThirdCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0CFE33427A8CD16004DA47B /* BottomLeftThirdCalculation.swift */; };\n\t\tD0CFE33727A8CD51004DA47B /* BottomRightThirdCalculation.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0CFE33627A8CD51004DA47B /* BottomRightThirdCalculation.swift */; };\n\t\tFDE8FCE027C2950400EACCAA /* MultiWindowManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDE8FCDF27C2950400EACCAA /* MultiWindowManager.swift */; };\n/* End PBXBuildFile section */\n\n/* Begin PBXContainerItemProxy section */\n\t\t9824701C22AF9B7E0037B409 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = 9824700122AF9B7D0037B409 /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = 9824700822AF9B7D0037B409;\n\t\t\tremoteInfo = Rectangle;\n\t\t};\n/* End PBXContainerItemProxy section */\n\n/* Begin PBXCopyFilesBuildPhase section */\n\t\t9821405A22B3EC9900ABFB3F /* CopyFiles */ = {\n\t\t\tisa = PBXCopyFilesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tdstPath = Contents/Library/LoginItems;\n\t\t\tdstSubfolderSpec = 1;\n\t\t\tfiles = (\n\t\t\t\t9821405B22B3ECCA00ABFB3F /* RectangleLauncher.app in CopyFiles */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXCopyFilesBuildPhase section */\n\n/* Begin PBXFileReference section */\n\t\t30166BCF24F27D6A00A38608 /* SpecifiedCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SpecifiedCalculation.swift; sourceTree = \"<group>\"; };\n\t\t423DC1992AE681F900C98564 /* mul */ = {isa = PBXFileReference; lastKnownFileType = text.json.xcstrings; name = mul; path = mul.lproj/Main.xcstrings; sourceTree = \"<group>\"; };\n\t\t42627A972ADA03D200D047C6 /* mul */ = {isa = PBXFileReference; lastKnownFileType = text.json.xcstrings; name = mul; path = mul.lproj/Main.xcstrings; sourceTree = \"<group>\"; };\n\t\t482E9E412EB1528D00D7928A /* AppIcon.icon */ = {isa = PBXFileReference; lastKnownFileType = folder.iconcomposer.icon; path = AppIcon.icon; sourceTree = \"<group>\"; };\n\t\t6490B39027BF907A0056C220 /* BottomLeftEighthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BottomLeftEighthCalculation.swift; sourceTree = \"<group>\"; };\n\t\t6490B39227BF90F90056C220 /* EighthsRepeated.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EighthsRepeated.swift; sourceTree = \"<group>\"; };\n\t\t6490B39427BF96880056C220 /* TopLeftEighthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TopLeftEighthCalculation.swift; sourceTree = \"<group>\"; };\n\t\t6490B39627BF96EA0056C220 /* TopCenterLeftEighthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TopCenterLeftEighthCalculation.swift; sourceTree = \"<group>\"; };\n\t\t6490B39827BF97BB0056C220 /* TopCenterRightEighthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TopCenterRightEighthCalculation.swift; sourceTree = \"<group>\"; };\n\t\t6490B39A27BF980F0056C220 /* TopRightEighthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TopRightEighthCalculation.swift; sourceTree = \"<group>\"; };\n\t\t6490B39C27BF984D0056C220 /* BottomCenterLeftEighthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BottomCenterLeftEighthCalculation.swift; sourceTree = \"<group>\"; };\n\t\t6490B39E27BF98840056C220 /* BottomCenterRightEighthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BottomCenterRightEighthCalculation.swift; sourceTree = \"<group>\"; };\n\t\t6490B3A027BF98C70056C220 /* BottomRightEighthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BottomRightEighthCalculation.swift; sourceTree = \"<group>\"; };\n\t\tF3592F8E85CE82B8FA662A31 /* TwelfthsRepeated.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TwelfthsRepeated.swift; sourceTree = \"<group>\"; };\n\t\tD9FDCA1333C1BF6930A8D7F3 /* TopLeftTwelfthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TopLeftTwelfthCalculation.swift; sourceTree = \"<group>\"; };\n\t\t9698D1D9EE0180D7C4468304 /* TopCenterLeftTwelfthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TopCenterLeftTwelfthCalculation.swift; sourceTree = \"<group>\"; };\n\t\tA4D034DBD7EFAC4CF5F8D67B /* TopCenterRightTwelfthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TopCenterRightTwelfthCalculation.swift; sourceTree = \"<group>\"; };\n\t\t7E8357E928530D10A806F3CD /* TopRightTwelfthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TopRightTwelfthCalculation.swift; sourceTree = \"<group>\"; };\n\t\tEEABF10E66D648DDB37DABBA /* MiddleLeftTwelfthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MiddleLeftTwelfthCalculation.swift; sourceTree = \"<group>\"; };\n\t\t5070DE9100E45D374053F0C2 /* MiddleCenterLeftTwelfthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MiddleCenterLeftTwelfthCalculation.swift; sourceTree = \"<group>\"; };\n\t\tBCF2AC59501448BD3BAA16EC /* MiddleCenterRightTwelfthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MiddleCenterRightTwelfthCalculation.swift; sourceTree = \"<group>\"; };\n\t\tAA84AB4DB9E7EEFCE50AA6D8 /* MiddleRightTwelfthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MiddleRightTwelfthCalculation.swift; sourceTree = \"<group>\"; };\n\t\t246168B345ECE6C375ACEEB7 /* BottomLeftTwelfthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BottomLeftTwelfthCalculation.swift; sourceTree = \"<group>\"; };\n\t\t71FE3EBE50F91F9EE2989279 /* BottomCenterLeftTwelfthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BottomCenterLeftTwelfthCalculation.swift; sourceTree = \"<group>\"; };\n\t\tC1A362206B9F76C269D8F469 /* BottomCenterRightTwelfthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BottomCenterRightTwelfthCalculation.swift; sourceTree = \"<group>\"; };\n\t\tD7D038C68560DC11F14496F6 /* BottomRightTwelfthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BottomRightTwelfthCalculation.swift; sourceTree = \"<group>\"; };\n\t\t16B4044DB4809116039F96EB /* SixteenthsRepeated.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SixteenthsRepeated.swift; sourceTree = \"<group>\"; };\n\t\t6294D2CB6E3D8ED982F418AE /* TopLeftSixteenthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TopLeftSixteenthCalculation.swift; sourceTree = \"<group>\"; };\n\t\t5BE9E5E2C8BA2590DD0B6F59 /* TopCenterLeftSixteenthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TopCenterLeftSixteenthCalculation.swift; sourceTree = \"<group>\"; };\n\t\t918F847FF15D524B6DB2E6DA /* TopCenterRightSixteenthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TopCenterRightSixteenthCalculation.swift; sourceTree = \"<group>\"; };\n\t\tFD222258713B13274FB651B0 /* TopRightSixteenthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TopRightSixteenthCalculation.swift; sourceTree = \"<group>\"; };\n\t\t84E2DBE0733F31BC159BC99C /* UpperMiddleLeftSixteenthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UpperMiddleLeftSixteenthCalculation.swift; sourceTree = \"<group>\"; };\n\t\t8B8CA6901E6FE134E930135B /* UpperMiddleCenterLeftSixteenthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UpperMiddleCenterLeftSixteenthCalculation.swift; sourceTree = \"<group>\"; };\n\t\tBEBF3EA35F0C110A170EAD33 /* UpperMiddleCenterRightSixteenthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UpperMiddleCenterRightSixteenthCalculation.swift; sourceTree = \"<group>\"; };\n\t\tA3B5B09465C38F8B766B3C3C /* UpperMiddleRightSixteenthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UpperMiddleRightSixteenthCalculation.swift; sourceTree = \"<group>\"; };\n\t\tC796BCAA3DA5F85B55A7EE83 /* LowerMiddleLeftSixteenthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LowerMiddleLeftSixteenthCalculation.swift; sourceTree = \"<group>\"; };\n\t\t378C96D832D4CC6BCCF9D604 /* LowerMiddleCenterLeftSixteenthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LowerMiddleCenterLeftSixteenthCalculation.swift; sourceTree = \"<group>\"; };\n\t\t8AE08B666CCCD1805CAB08BD /* LowerMiddleCenterRightSixteenthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LowerMiddleCenterRightSixteenthCalculation.swift; sourceTree = \"<group>\"; };\n\t\t87EC57F37CFD790695177AC8 /* LowerMiddleRightSixteenthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LowerMiddleRightSixteenthCalculation.swift; sourceTree = \"<group>\"; };\n\t\tFEE147786B2CD7350FAFB700 /* BottomLeftSixteenthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BottomLeftSixteenthCalculation.swift; sourceTree = \"<group>\"; };\n\t\t88454ABE5C62BD610AEA3EB5 /* BottomCenterLeftSixteenthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BottomCenterLeftSixteenthCalculation.swift; sourceTree = \"<group>\"; };\n\t\tD24EBF1F9A6209449A988E15 /* BottomCenterRightSixteenthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BottomCenterRightSixteenthCalculation.swift; sourceTree = \"<group>\"; };\n\t\t482EA970820F37C6917FCD98 /* BottomRightSixteenthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BottomRightSixteenthCalculation.swift; sourceTree = \"<group>\"; };\n\t\t729E0A972AFF76B1006E2F48 /* CenterProminentlyCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CenterProminentlyCalculation.swift; sourceTree = \"<group>\"; };\n\t\t74804F0A2E25521C009F1F7D /* CenterTwoThirdsCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CenterTwoThirdsCalculation.swift; sourceTree = \"<group>\"; };\n\t\t7BE578EE2C5BF4ED0083DAE3 /* CycleSize.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CycleSize.swift; sourceTree = \"<group>\"; };\n\t\t866661F1257D248A00A9CD2D /* RepeatedExecutionsInThirdsCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RepeatedExecutionsInThirdsCalculation.swift; sourceTree = \"<group>\"; };\n\t\t944F25CC2CE5A144004B2FD2 /* PrefsViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PrefsViewController.swift; sourceTree = \"<group>\"; };\n\t\t94E9B08D2C3B8D97004C7F41 /* MacTilingDefaults.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MacTilingDefaults.swift; sourceTree = \"<group>\"; };\n\t\t94E9B08F2C3E4578004C7F41 /* StringExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StringExtension.swift; sourceTree = \"<group>\"; };\n\t\t9808018523D05C0B0077774A /* RectangleRelease.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = RectangleRelease.entitlements; sourceTree = \"<group>\"; };\n\t\t9808018623D05C1F0077774A /* RectangleLauncherRelease.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = RectangleLauncherRelease.entitlements; sourceTree = \"<group>\"; };\n\t\t9818E00C28B59205004AA524 /* CompoundSnapArea.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CompoundSnapArea.swift; sourceTree = \"<group>\"; };\n\t\t9818E00F28B59396004AA524 /* HalvesCompoundCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HalvesCompoundCalculation.swift; sourceTree = \"<group>\"; };\n\t\t9818E01128B59B64004AA524 /* ThirdsCompoundCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ThirdsCompoundCalculation.swift; sourceTree = \"<group>\"; };\n\t\t9818E01328B5A4FD004AA524 /* SixthsCompoundCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SixthsCompoundCalculation.swift; sourceTree = \"<group>\"; };\n\t\t9818E01728B63C48004AA524 /* FourthsCompoundCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FourthsCompoundCalculation.swift; sourceTree = \"<group>\"; };\n\t\t9818E01928B63C49004AA524 /* EighthsCompoundCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EighthsCompoundCalculation.swift; sourceTree = \"<group>\"; };\n\t\t98192DD9270F606C00015E66 /* Debounce.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Debounce.swift; sourceTree = \"<group>\"; };\n\t\t98192DDD2717201000015E66 /* ReverseAllManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReverseAllManager.swift; sourceTree = \"<group>\"; };\n\t\t981F27D02340E3E1006CD263 /* InternetAccessPolicy.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = InternetAccessPolicy.plist; sourceTree = \"<group>\"; };\n\t\t9821402022B3884600ABFB3F /* BottomHalfCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BottomHalfCalculation.swift; sourceTree = \"<group>\"; };\n\t\t9821402222B3886100ABFB3F /* CenterCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CenterCalculation.swift; sourceTree = \"<group>\"; };\n\t\t9821402422B3887200ABFB3F /* MaximizeCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MaximizeCalculation.swift; sourceTree = \"<group>\"; };\n\t\t9821402622B3888100ABFB3F /* ChangeSizeCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChangeSizeCalculation.swift; sourceTree = \"<group>\"; };\n\t\t9821402822B3889100ABFB3F /* LowerLeftCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LowerLeftCalculation.swift; sourceTree = \"<group>\"; };\n\t\t9821402A22B388A000ABFB3F /* LowerRightCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LowerRightCalculation.swift; sourceTree = \"<group>\"; };\n\t\t9821403022B38A0500ABFB3F /* TopHalfCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TopHalfCalculation.swift; sourceTree = \"<group>\"; };\n\t\t9821403222B38A1B00ABFB3F /* UpperLeftCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UpperLeftCalculation.swift; sourceTree = \"<group>\"; };\n\t\t9821403422B38A2B00ABFB3F /* UpperRightCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UpperRightCalculation.swift; sourceTree = \"<group>\"; };\n\t\t9821403622B3D16700ABFB3F /* MaximizeHeightCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MaximizeHeightCalculation.swift; sourceTree = \"<group>\"; };\n\t\t9821403C22B3EBD900ABFB3F /* RectangleLauncher.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = RectangleLauncher.app; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t9821403E22B3EBD900ABFB3F /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = \"<group>\"; };\n\t\t9821404222B3EBDA00ABFB3F /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = \"<group>\"; };\n\t\t9821404522B3EBDA00ABFB3F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = \"<group>\"; };\n\t\t9821404722B3EBDA00ABFB3F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\t9821404822B3EBDA00ABFB3F /* RectangleLauncher.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = RectangleLauncher.entitlements; sourceTree = \"<group>\"; };\n\t\t9821405D22B3ED3600ABFB3F /* ServiceManagement.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ServiceManagement.framework; path = System/Library/Frameworks/ServiceManagement.framework; sourceTree = SDKROOT; };\n\t\t9821405F22B3EFB200ABFB3F /* Defaults.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Defaults.swift; sourceTree = \"<group>\"; };\n\t\t9821552627BFFB13002523EC /* Rectangle-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = \"Rectangle-Bridging-Header.h\"; sourceTree = \"<group>\"; };\n\t\t9824700922AF9B7D0037B409 /* Rectangle.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Rectangle.app; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t9824700C22AF9B7D0037B409 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = \"<group>\"; };\n\t\t9824701022AF9B7E0037B409 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = \"<group>\"; };\n\t\t9824701322AF9B7E0037B409 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = \"<group>\"; };\n\t\t9824701522AF9B7E0037B409 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\t9824701622AF9B7E0037B409 /* Rectangle.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Rectangle.entitlements; sourceTree = \"<group>\"; };\n\t\t9824701B22AF9B7E0037B409 /* RectangleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RectangleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t9824701F22AF9B7E0037B409 /* RectangleTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RectangleTests.swift; sourceTree = \"<group>\"; };\n\t\t9824702122AF9B7E0037B409 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\t9824702A22AFA22E0037B409 /* AccessibilityWindowController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AccessibilityWindowController.swift; sourceTree = \"<group>\"; };\n\t\t9824702E22AFA2E50037B409 /* AccessibilityAuthorization.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AccessibilityAuthorization.swift; sourceTree = \"<group>\"; };\n\t\t9824703022AFA8470037B409 /* RectangleStatusItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RectangleStatusItem.swift; sourceTree = \"<group>\"; };\n\t\t9824703622B0F3200037B409 /* WindowAction.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WindowAction.swift; sourceTree = \"<group>\"; };\n\t\t9824703822B0F37C0037B409 /* ShortcutManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShortcutManager.swift; sourceTree = \"<group>\"; };\n\t\t9824703A22B139780037B409 /* CUtil.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CUtil.swift; sourceTree = \"<group>\"; };\n\t\t9824703C22B13C7E0037B409 /* AccessibilityElement.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AccessibilityElement.swift; sourceTree = \"<group>\"; };\n\t\t9824703E22B13FBC0037B409 /* ScreenDetection.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ScreenDetection.swift; sourceTree = \"<group>\"; };\n\t\t9824704022B186D00037B409 /* WindowManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WindowManager.swift; sourceTree = \"<group>\"; };\n\t\t9824704622B189240037B409 /* StandardWindowMover.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StandardWindowMover.swift; sourceTree = \"<group>\"; };\n\t\t9824704722B189240037B409 /* WindowMover.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WindowMover.swift; sourceTree = \"<group>\"; };\n\t\t9824704822B189250037B409 /* WindowCalculation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WindowCalculation.swift; sourceTree = \"<group>\"; };\n\t\t9824704922B189250037B409 /* QuantizedWindowMover.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = QuantizedWindowMover.swift; sourceTree = \"<group>\"; };\n\t\t9824704A22B189250037B409 /* BestEffortWindowMover.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BestEffortWindowMover.swift; sourceTree = \"<group>\"; };\n\t\t9824705022B28D7A0037B409 /* LeftRightHalfCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LeftRightHalfCalculation.swift; sourceTree = \"<group>\"; };\n\t\t983BBD6E253B609D000D223E /* FootprintWindow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FootprintWindow.swift; sourceTree = \"<group>\"; };\n\t\t983DD03F28A844BE00BF1EEE /* SnapAreaViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SnapAreaViewController.swift; sourceTree = \"<group>\"; };\n\t\t983DD04328B0639E00BF1EEE /* SnapAreaModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SnapAreaModel.swift; sourceTree = \"<group>\"; };\n\t\t984EDB0E29A42ED200D119D2 /* LaunchOnLogin.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LaunchOnLogin.swift; sourceTree = \"<group>\"; };\n\t\t9851A5C2251BEBA300ECF78C /* OrientationAware.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrientationAware.swift; sourceTree = \"<group>\"; };\n\t\t985B9BF422B93EEC00A2E8F0 /* ApplicationToggle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ApplicationToggle.swift; sourceTree = \"<group>\"; };\n\t\t985B9BF622BB6F5000A2E8F0 /* MessageView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MessageView.xib; sourceTree = \"<group>\"; };\n\t\t985B9BF722BB6F5000A2E8F0 /* MessageView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MessageView.swift; sourceTree = \"<group>\"; };\n\t\t988D066022EB4C7C004EABD7 /* FirstThirdCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FirstThirdCalculation.swift; sourceTree = \"<group>\"; };\n\t\t988D066222EB4CA5004EABD7 /* FirstTwoThirdsCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FirstTwoThirdsCalculation.swift; sourceTree = \"<group>\"; };\n\t\t988D066422EB4CB5004EABD7 /* CenterThirdCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CenterThirdCalculation.swift; sourceTree = \"<group>\"; };\n\t\t988D066622EB4CC0004EABD7 /* LastTwoThirdsCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LastTwoThirdsCalculation.swift; sourceTree = \"<group>\"; };\n\t\t988D066822EB4CCB004EABD7 /* LastThirdCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LastThirdCalculation.swift; sourceTree = \"<group>\"; };\n\t\t988D067C22EB4E17004EABD7 /* AlmostMaximizeCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlmostMaximizeCalculation.swift; sourceTree = \"<group>\"; };\n\t\t988D067E22EB4EDE004EABD7 /* MoveLeftRightCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MoveLeftRightCalculation.swift; sourceTree = \"<group>\"; };\n\t\t988D068222EB4EF3004EABD7 /* MoveUpDownCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MoveUpDownCalculation.swift; sourceTree = \"<group>\"; };\n\t\t98910B3D231130AF0066EC23 /* SettingsViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsViewController.swift; sourceTree = \"<group>\"; };\n\t\t98987AA22391890300BE72C4 /* LogViewer.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = LogViewer.storyboard; sourceTree = \"<group>\"; };\n\t\t98987AA32391890400BE72C4 /* LogViewer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LogViewer.swift; sourceTree = \"<group>\"; };\n\t\t989DA30D243FC0DF008C7AA4 /* WelcomeViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WelcomeViewController.swift; sourceTree = \"<group>\"; };\n\t\t98A009AA2512491300CFBF0C /* CenterHalfCalculation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CenterHalfCalculation.swift; sourceTree = \"<group>\"; };\n\t\t98A009AC2512498000CFBF0C /* FirstFourthCalculation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FirstFourthCalculation.swift; sourceTree = \"<group>\"; };\n\t\t98A009AE2512517900CFBF0C /* SecondFourthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SecondFourthCalculation.swift; sourceTree = \"<group>\"; };\n\t\t98A009B0251252C900CFBF0C /* ThirdFourthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ThirdFourthCalculation.swift; sourceTree = \"<group>\"; };\n\t\t98A009B22512536800CFBF0C /* LastFourthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LastFourthCalculation.swift; sourceTree = \"<group>\"; };\n\t\t98A009B42512537800CFBF0C /* TopLeftSixthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TopLeftSixthCalculation.swift; sourceTree = \"<group>\"; };\n\t\t98A009B62512538200CFBF0C /* TopCenterSixthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TopCenterSixthCalculation.swift; sourceTree = \"<group>\"; };\n\t\t98A009B82512538D00CFBF0C /* TopRightSixthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TopRightSixthCalculation.swift; sourceTree = \"<group>\"; };\n\t\t98A009BA2512539900CFBF0C /* BottomLeftSixthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BottomLeftSixthCalculation.swift; sourceTree = \"<group>\"; };\n\t\t98A009BC251253A000CFBF0C /* BottomCenterSixthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BottomCenterSixthCalculation.swift; sourceTree = \"<group>\"; };\n\t\t98A009BE251253AB00CFBF0C /* BottomRightSixthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BottomRightSixthCalculation.swift; sourceTree = \"<group>\"; };\n\t\t98A6EDDC251F3F4A00F74B10 /* SixthsRepeated.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SixthsRepeated.swift; sourceTree = \"<group>\"; };\n\t\tBB0000000000000000000002 /* QuartersRepeated.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = QuartersRepeated.swift; sourceTree = \"<group>\"; };\n\t\t98A6EDEB2528FFC100F74B10 /* WindowActionCategory.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WindowActionCategory.swift; sourceTree = \"<group>\"; };\n\t\t98B3559723CE025700E410E0 /* CenteringFixedSizedWindowMover.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CenteringFixedSizedWindowMover.swift; sourceTree = \"<group>\"; };\n\t\t98BEFA472620DEDC00D9D54F /* NSImageExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NSImageExtension.swift; sourceTree = \"<group>\"; };\n\t\t98C1008B2305F1FA006E5344 /* SubsequentExecutionMode.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SubsequentExecutionMode.swift; sourceTree = \"<group>\"; };\n\t\t98C1008D230B9EF6006E5344 /* NextPrevDisplayCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NextPrevDisplayCalculation.swift; sourceTree = \"<group>\"; };\n\t\t98C2755D231FF6A9009B9292 /* EventMonitor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EventMonitor.swift; sourceTree = \"<group>\"; };\n\t\t98C27560231FFA5F009B9292 /* SnappingManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SnappingManager.swift; sourceTree = \"<group>\"; };\n\t\t98C275662322E2DA009B9292 /* WindowHistory.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WindowHistory.swift; sourceTree = \"<group>\"; };\n\t\t98C6DEEF23CE191700CC0C1E /* GapCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GapCalculation.swift; sourceTree = \"<group>\"; };\n\t\t98C97FFC25893B040061F01F /* Config.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Config.swift; sourceTree = \"<group>\"; };\n\t\t98D1441224560B1E0090C603 /* AlertUtil.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlertUtil.swift; sourceTree = \"<group>\"; };\n\t\t98D16A432592AD55005228CB /* MASShortcutMigration.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MASShortcutMigration.swift; sourceTree = \"<group>\"; };\n\t\t98D16A482592B460005228CB /* NotificationExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NotificationExtension.swift; sourceTree = \"<group>\"; };\n\t\t98D4B6C425B6256C009C7BF6 /* TodoManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TodoManager.swift; sourceTree = \"<group>\"; };\n\t\t98FA9496235A2D7600F95C4F /* RepeatedExecutionsCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RepeatedExecutionsCalculation.swift; sourceTree = \"<group>\"; };\n\t\t98FD7C5E2687BC14009E9DAF /* FirstThreeFourthsCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FirstThreeFourthsCalculation.swift; sourceTree = \"<group>\"; };\n\t\t98FD7C602687BCB6009E9DAF /* LastThreeFourthsCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LastThreeFourthsCalculation.swift; sourceTree = \"<group>\"; };\n\t\t9FF740222E34DE9000D22955 /* CenterThreeFourthsCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CenterThreeFourthsCalculation.swift; sourceTree = \"<group>\"; };\n\t\tAA040C66290B2640003181D5 /* RunLoopThread.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunLoopThread.swift; sourceTree = \"<group>\"; };\n\t\tAA0ABFFF291C1B5E00D125D2 /* CGExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CGExtension.swift; sourceTree = \"<group>\"; };\n\t\tAA0AC001291C1B9100D125D2 /* AXExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AXExtension.swift; sourceTree = \"<group>\"; };\n\t\tAA0AC003291C48DE00D125D2 /* SequenceExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SequenceExtension.swift; sourceTree = \"<group>\"; };\n\t\tAA0ACC2E2864A86D0025E376 /* StageUtil.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StageUtil.swift; sourceTree = \"<group>\"; };\n\t\tAA3A9E8A29230A82004EB8E5 /* CFExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CFExtension.swift; sourceTree = \"<group>\"; };\n\t\tAA49DD1029B8C1B100690E13 /* TitleBarManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TitleBarManager.swift; sourceTree = \"<group>\"; };\n\t\tAA4DA2FA28FDC94A00355CEB /* DispatchTimeExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DispatchTimeExtension.swift; sourceTree = \"<group>\"; };\n\t\tAA536C2629005DD000579AC6 /* TimeoutCache.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TimeoutCache.swift; sourceTree = \"<group>\"; };\n\t\tAA69F83B29909A95001A81AF /* RightTodoCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RightTodoCalculation.swift; sourceTree = \"<group>\"; };\n\t\tAA69F83F2992DCB1001A81AF /* LeftTodoCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LeftTodoCalculation.swift; sourceTree = \"<group>\"; };\n\t\tAAADE1AE28CBAB0000036331 /* WindowUtil.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WindowUtil.swift; sourceTree = \"<group>\"; };\n\t\tB4521F922BD7CEFB00FD43CC /* ChangeWindowDimensionCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChangeWindowDimensionCalculation.swift; sourceTree = \"<group>\"; };\n\t\tB4780A312BD4C75900732B9E /* HalfOrDoubleDimensionCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HalfOrDoubleDimensionCalculation.swift; sourceTree = \"<group>\"; };\n\t\tBB0B80442EFB0AF900A9B165 /* BottomVerticalThirdCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BottomVerticalThirdCalculation.swift; sourceTree = \"<group>\"; };\n\t\tBB0B80452EFB0AF900A9B165 /* BottomVerticalTwoThirdsCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BottomVerticalTwoThirdsCalculation.swift; sourceTree = \"<group>\"; };\n\t\tBB0B80462EFB0AF900A9B165 /* MiddleVerticalThirdCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MiddleVerticalThirdCalculation.swift; sourceTree = \"<group>\"; };\n\t\tBB0B80472EFB0AF900A9B165 /* TopVerticalThirdCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TopVerticalThirdCalculation.swift; sourceTree = \"<group>\"; };\n\t\tBB0B80482EFB0AF900A9B165 /* TopVerticalTwoThirdsCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TopVerticalTwoThirdsCalculation.swift; sourceTree = \"<group>\"; };\n\t\tD0423D8227A8D31D008A4894 /* HorizontalThirdsRepeated.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HorizontalThirdsRepeated.swift; sourceTree = \"<group>\"; };\n\t\tD04CE2FF2781794E00BD47B3 /* TopLeftNinthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TopLeftNinthCalculation.swift; sourceTree = \"<group>\"; };\n\t\tD04CE30127817A6100BD47B3 /* TopCenterNinthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TopCenterNinthCalculation.swift; sourceTree = \"<group>\"; };\n\t\tD04CE30327817A6F00BD47B3 /* TopRightNinthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TopRightNinthCalculation.swift; sourceTree = \"<group>\"; };\n\t\tD04CE30527817A8400BD47B3 /* MiddleLeftNinthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MiddleLeftNinthCalculation.swift; sourceTree = \"<group>\"; };\n\t\tD04CE30727817A9200BD47B3 /* MiddleCenterNinthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MiddleCenterNinthCalculation.swift; sourceTree = \"<group>\"; };\n\t\tD04CE30927817A9F00BD47B3 /* MiddleRightNinthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MiddleRightNinthCalculation.swift; sourceTree = \"<group>\"; };\n\t\tD04CE30B27817AA900BD47B3 /* BottomLeftNinthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BottomLeftNinthCalculation.swift; sourceTree = \"<group>\"; };\n\t\tD04CE30D27817AB500BD47B3 /* BottomCenterNinthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BottomCenterNinthCalculation.swift; sourceTree = \"<group>\"; };\n\t\tD04CE30F27817ABE00BD47B3 /* BottomRightNinthCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BottomRightNinthCalculation.swift; sourceTree = \"<group>\"; };\n\t\tD04CE31127817C9B00BD47B3 /* NinthsRepeated.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NinthsRepeated.swift; sourceTree = \"<group>\"; };\n\t\tD0CFE33027A8CAED004DA47B /* TopLeftThirdCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TopLeftThirdCalculation.swift; sourceTree = \"<group>\"; };\n\t\tD0CFE33227A8CCB1004DA47B /* TopRightThirdCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TopRightThirdCalculation.swift; sourceTree = \"<group>\"; };\n\t\tD0CFE33427A8CD16004DA47B /* BottomLeftThirdCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BottomLeftThirdCalculation.swift; sourceTree = \"<group>\"; };\n\t\tD0CFE33627A8CD51004DA47B /* BottomRightThirdCalculation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BottomRightThirdCalculation.swift; sourceTree = \"<group>\"; };\n\t\tFDE8FCDF27C2950400EACCAA /* MultiWindowManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MultiWindowManager.swift; sourceTree = \"<group>\"; };\n/* End PBXFileReference section */\n\n/* Begin PBXFrameworksBuildPhase section */\n\t\t9821403922B3EBD900ABFB3F /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t9824700622AF9B7D0037B409 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t9877B63A29C8AC0E00F02D74 /* MASShortcut in Frameworks */,\n\t\t\t\t9877B63D29C8AC3600F02D74 /* Sparkle in Frameworks */,\n\t\t\t\t9821405E22B3ED3600ABFB3F /* ServiceManagement.framework in Frameworks */,\n\t\t\t\t12D896200936C0DE9FF41FB4 /* (null) in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t9824701822AF9B7E0037B409 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXFrameworksBuildPhase section */\n\n/* Begin PBXGroup section */\n\t\t9818E00E28B5922A004AA524 /* CompoundSnapArea */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t9818E00C28B59205004AA524 /* CompoundSnapArea.swift */,\n\t\t\t\t9818E00F28B59396004AA524 /* HalvesCompoundCalculation.swift */,\n\t\t\t\t9818E01128B59B64004AA524 /* ThirdsCompoundCalculation.swift */,\n\t\t\t\t9818E01728B63C48004AA524 /* FourthsCompoundCalculation.swift */,\n\t\t\t\t9818E01928B63C49004AA524 /* EighthsCompoundCalculation.swift */,\n\t\t\t\t9818E01328B5A4FD004AA524 /* SixthsCompoundCalculation.swift */,\n\t\t\t);\n\t\t\tpath = CompoundSnapArea;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t98192DDF2717201E00015E66 /* MultiWindow */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t98192DDD2717201000015E66 /* ReverseAllManager.swift */,\n\t\t\t\tFDE8FCDF27C2950400EACCAA /* MultiWindowManager.swift */,\n\t\t\t);\n\t\t\tpath = MultiWindow;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t9821403D22B3EBD900ABFB3F /* RectangleLauncher */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t9808018623D05C1F0077774A /* RectangleLauncherRelease.entitlements */,\n\t\t\t\t9821403E22B3EBD900ABFB3F /* AppDelegate.swift */,\n\t\t\t\t9821404222B3EBDA00ABFB3F /* Assets.xcassets */,\n\t\t\t\t9821404422B3EBDA00ABFB3F /* Main.storyboard */,\n\t\t\t\t9821404722B3EBDA00ABFB3F /* Info.plist */,\n\t\t\t\t9821404822B3EBDA00ABFB3F /* RectangleLauncher.entitlements */,\n\t\t\t);\n\t\t\tpath = RectangleLauncher;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t9821405C22B3ED3600ABFB3F /* Frameworks */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t9821405D22B3ED3600ABFB3F /* ServiceManagement.framework */,\n\t\t\t);\n\t\t\tname = Frameworks;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t982140E922B7DA3100ABFB3F /* WindowCalculation */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tBB0B80442EFB0AF900A9B165 /* BottomVerticalThirdCalculation.swift */,\n\t\t\t\tBB0B80452EFB0AF900A9B165 /* BottomVerticalTwoThirdsCalculation.swift */,\n\t\t\t\tBB0B80462EFB0AF900A9B165 /* MiddleVerticalThirdCalculation.swift */,\n\t\t\t\tBB0B80472EFB0AF900A9B165 /* TopVerticalThirdCalculation.swift */,\n\t\t\t\tBB0B80482EFB0AF900A9B165 /* TopVerticalTwoThirdsCalculation.swift */,\n\t\t\t\t9FF740222E34DE9000D22955 /* CenterThreeFourthsCalculation.swift */,\n\t\t\t\t74804F0A2E25521C009F1F7D /* CenterTwoThirdsCalculation.swift */,\n\t\t\t\t98A009AA2512491300CFBF0C /* CenterHalfCalculation.swift */,\n\t\t\t\t98A009AC2512498000CFBF0C /* FirstFourthCalculation.swift */,\n\t\t\t\t98FD7C5E2687BC14009E9DAF /* FirstThreeFourthsCalculation.swift */,\n\t\t\t\t98FD7C602687BCB6009E9DAF /* LastThreeFourthsCalculation.swift */,\n\t\t\t\t98A009AE2512517900CFBF0C /* SecondFourthCalculation.swift */,\n\t\t\t\t98A009B0251252C900CFBF0C /* ThirdFourthCalculation.swift */,\n\t\t\t\t98A009B22512536800CFBF0C /* LastFourthCalculation.swift */,\n\t\t\t\t98A009B42512537800CFBF0C /* TopLeftSixthCalculation.swift */,\n\t\t\t\t98A009B62512538200CFBF0C /* TopCenterSixthCalculation.swift */,\n\t\t\t\t98A009B82512538D00CFBF0C /* TopRightSixthCalculation.swift */,\n\t\t\t\t98A009BA2512539900CFBF0C /* BottomLeftSixthCalculation.swift */,\n\t\t\t\t98A009BC251253A000CFBF0C /* BottomCenterSixthCalculation.swift */,\n\t\t\t\t98A009BE251253AB00CFBF0C /* BottomRightSixthCalculation.swift */,\n\t\t\t\t9824704822B189250037B409 /* WindowCalculation.swift */,\n\t\t\t\t9824705022B28D7A0037B409 /* LeftRightHalfCalculation.swift */,\n\t\t\t\t9821402022B3884600ABFB3F /* BottomHalfCalculation.swift */,\n\t\t\t\t9821403022B38A0500ABFB3F /* TopHalfCalculation.swift */,\n\t\t\t\t9821402222B3886100ABFB3F /* CenterCalculation.swift */,\n\t\t\t\t729E0A972AFF76B1006E2F48 /* CenterProminentlyCalculation.swift */,\n\t\t\t\t9821402422B3887200ABFB3F /* MaximizeCalculation.swift */,\n\t\t\t\t9821402622B3888100ABFB3F /* ChangeSizeCalculation.swift */,\n\t\t\t\tB4780A312BD4C75900732B9E /* HalfOrDoubleDimensionCalculation.swift */,\n\t\t\t\t9821402822B3889100ABFB3F /* LowerLeftCalculation.swift */,\n\t\t\t\t9821402A22B388A000ABFB3F /* LowerRightCalculation.swift */,\n\t\t\t\t9821403222B38A1B00ABFB3F /* UpperLeftCalculation.swift */,\n\t\t\t\t9821403422B38A2B00ABFB3F /* UpperRightCalculation.swift */,\n\t\t\t\t9821403622B3D16700ABFB3F /* MaximizeHeightCalculation.swift */,\n\t\t\t\t988D066022EB4C7C004EABD7 /* FirstThirdCalculation.swift */,\n\t\t\t\t988D066222EB4CA5004EABD7 /* FirstTwoThirdsCalculation.swift */,\n\t\t\t\t988D066422EB4CB5004EABD7 /* CenterThirdCalculation.swift */,\n\t\t\t\t988D066622EB4CC0004EABD7 /* LastTwoThirdsCalculation.swift */,\n\t\t\t\t988D066822EB4CCB004EABD7 /* LastThirdCalculation.swift */,\n\t\t\t\t988D067E22EB4EDE004EABD7 /* MoveLeftRightCalculation.swift */,\n\t\t\t\t988D068222EB4EF3004EABD7 /* MoveUpDownCalculation.swift */,\n\t\t\t\t988D067C22EB4E17004EABD7 /* AlmostMaximizeCalculation.swift */,\n\t\t\t\t98C1008D230B9EF6006E5344 /* NextPrevDisplayCalculation.swift */,\n\t\t\t\t98FA9496235A2D7600F95C4F /* RepeatedExecutionsCalculation.swift */,\n\t\t\t\t98C6DEEF23CE191700CC0C1E /* GapCalculation.swift */,\n\t\t\t\t9851A5C2251BEBA300ECF78C /* OrientationAware.swift */,\n\t\t\t\t98A6EDDC251F3F4A00F74B10 /* SixthsRepeated.swift */,\n\t\t\t\tBB0000000000000000000002 /* QuartersRepeated.swift */,\n\t\t\t\t866661F1257D248A00A9CD2D /* RepeatedExecutionsInThirdsCalculation.swift */,\n\t\t\t\t30166BCF24F27D6A00A38608 /* SpecifiedCalculation.swift */,\n\t\t\t\tD04CE31127817C9B00BD47B3 /* NinthsRepeated.swift */,\n\t\t\t\tD04CE2FF2781794E00BD47B3 /* TopLeftNinthCalculation.swift */,\n\t\t\t\tD04CE30127817A6100BD47B3 /* TopCenterNinthCalculation.swift */,\n\t\t\t\tD04CE30327817A6F00BD47B3 /* TopRightNinthCalculation.swift */,\n\t\t\t\tD04CE30527817A8400BD47B3 /* MiddleLeftNinthCalculation.swift */,\n\t\t\t\tD04CE30727817A9200BD47B3 /* MiddleCenterNinthCalculation.swift */,\n\t\t\t\tD04CE30927817A9F00BD47B3 /* MiddleRightNinthCalculation.swift */,\n\t\t\t\tD04CE30B27817AA900BD47B3 /* BottomLeftNinthCalculation.swift */,\n\t\t\t\tD04CE30D27817AB500BD47B3 /* BottomCenterNinthCalculation.swift */,\n\t\t\t\tD04CE30F27817ABE00BD47B3 /* BottomRightNinthCalculation.swift */,\n\t\t\t\tD0CFE33027A8CAED004DA47B /* TopLeftThirdCalculation.swift */,\n\t\t\t\tD0CFE33227A8CCB1004DA47B /* TopRightThirdCalculation.swift */,\n\t\t\t\tD0CFE33427A8CD16004DA47B /* BottomLeftThirdCalculation.swift */,\n\t\t\t\tD0CFE33627A8CD51004DA47B /* BottomRightThirdCalculation.swift */,\n\t\t\t\tD0423D8227A8D31D008A4894 /* HorizontalThirdsRepeated.swift */,\n\t\t\t\t6490B39227BF90F90056C220 /* EighthsRepeated.swift */,\n\t\t\t\t6490B39427BF96880056C220 /* TopLeftEighthCalculation.swift */,\n\t\t\t\t6490B39627BF96EA0056C220 /* TopCenterLeftEighthCalculation.swift */,\n\t\t\t\t6490B39827BF97BB0056C220 /* TopCenterRightEighthCalculation.swift */,\n\t\t\t\t6490B39A27BF980F0056C220 /* TopRightEighthCalculation.swift */,\n\t\t\t\t6490B39027BF907A0056C220 /* BottomLeftEighthCalculation.swift */,\n\t\t\t\t6490B39C27BF984D0056C220 /* BottomCenterLeftEighthCalculation.swift */,\n\t\t\t\t6490B39E27BF98840056C220 /* BottomCenterRightEighthCalculation.swift */,\n\t\t\t\t6490B3A027BF98C70056C220 /* BottomRightEighthCalculation.swift */,\n\t\t\t\tF3592F8E85CE82B8FA662A31 /* TwelfthsRepeated.swift */,\n\t\t\t\tD9FDCA1333C1BF6930A8D7F3 /* TopLeftTwelfthCalculation.swift */,\n\t\t\t\t9698D1D9EE0180D7C4468304 /* TopCenterLeftTwelfthCalculation.swift */,\n\t\t\t\tA4D034DBD7EFAC4CF5F8D67B /* TopCenterRightTwelfthCalculation.swift */,\n\t\t\t\t7E8357E928530D10A806F3CD /* TopRightTwelfthCalculation.swift */,\n\t\t\t\t246168B345ECE6C375ACEEB7 /* BottomLeftTwelfthCalculation.swift */,\n\t\t\t\t71FE3EBE50F91F9EE2989279 /* BottomCenterLeftTwelfthCalculation.swift */,\n\t\t\t\tC1A362206B9F76C269D8F469 /* BottomCenterRightTwelfthCalculation.swift */,\n\t\t\t\tD7D038C68560DC11F14496F6 /* BottomRightTwelfthCalculation.swift */,\n\t\t\t\tEEABF10E66D648DDB37DABBA /* MiddleLeftTwelfthCalculation.swift */,\n\t\t\t\t5070DE9100E45D374053F0C2 /* MiddleCenterLeftTwelfthCalculation.swift */,\n\t\t\t\tBCF2AC59501448BD3BAA16EC /* MiddleCenterRightTwelfthCalculation.swift */,\n\t\t\t\tAA84AB4DB9E7EEFCE50AA6D8 /* MiddleRightTwelfthCalculation.swift */,\n\t\t\t\t16B4044DB4809116039F96EB /* SixteenthsRepeated.swift */,\n\t\t\t\t6294D2CB6E3D8ED982F418AE /* TopLeftSixteenthCalculation.swift */,\n\t\t\t\t5BE9E5E2C8BA2590DD0B6F59 /* TopCenterLeftSixteenthCalculation.swift */,\n\t\t\t\t918F847FF15D524B6DB2E6DA /* TopCenterRightSixteenthCalculation.swift */,\n\t\t\t\tFD222258713B13274FB651B0 /* TopRightSixteenthCalculation.swift */,\n\t\t\t\t84E2DBE0733F31BC159BC99C /* UpperMiddleLeftSixteenthCalculation.swift */,\n\t\t\t\t8B8CA6901E6FE134E930135B /* UpperMiddleCenterLeftSixteenthCalculation.swift */,\n\t\t\t\tBEBF3EA35F0C110A170EAD33 /* UpperMiddleCenterRightSixteenthCalculation.swift */,\n\t\t\t\tA3B5B09465C38F8B766B3C3C /* UpperMiddleRightSixteenthCalculation.swift */,\n\t\t\t\tC796BCAA3DA5F85B55A7EE83 /* LowerMiddleLeftSixteenthCalculation.swift */,\n\t\t\t\t378C96D832D4CC6BCCF9D604 /* LowerMiddleCenterLeftSixteenthCalculation.swift */,\n\t\t\t\t8AE08B666CCCD1805CAB08BD /* LowerMiddleCenterRightSixteenthCalculation.swift */,\n\t\t\t\t87EC57F37CFD790695177AC8 /* LowerMiddleRightSixteenthCalculation.swift */,\n\t\t\t\tFEE147786B2CD7350FAFB700 /* BottomLeftSixteenthCalculation.swift */,\n\t\t\t\t88454ABE5C62BD610AEA3EB5 /* BottomCenterLeftSixteenthCalculation.swift */,\n\t\t\t\tD24EBF1F9A6209449A988E15 /* BottomCenterRightSixteenthCalculation.swift */,\n\t\t\t\t482EA970820F37C6917FCD98 /* BottomRightSixteenthCalculation.swift */,\n\t\t\t\tAA69F83B29909A95001A81AF /* RightTodoCalculation.swift */,\n\t\t\t\tAA69F83F2992DCB1001A81AF /* LeftTodoCalculation.swift */,\n\t\t\t\tB4521F922BD7CEFB00FD43CC /* ChangeWindowDimensionCalculation.swift */,\n\t\t\t);\n\t\t\tpath = WindowCalculation;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t982140EA22B7DB0400ABFB3F /* WindowMover */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t9824704A22B189250037B409 /* BestEffortWindowMover.swift */,\n\t\t\t\t9824704922B189250037B409 /* QuantizedWindowMover.swift */,\n\t\t\t\t9824704622B189240037B409 /* StandardWindowMover.swift */,\n\t\t\t\t9824704722B189240037B409 /* WindowMover.swift */,\n\t\t\t\t98B3559723CE025700E410E0 /* CenteringFixedSizedWindowMover.swift */,\n\t\t\t);\n\t\t\tpath = WindowMover;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t982140EB22B7DB1A00ABFB3F /* AccessibilityAuthorization */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t9824702E22AFA2E50037B409 /* AccessibilityAuthorization.swift */,\n\t\t\t\t9824702A22AFA22E0037B409 /* AccessibilityWindowController.swift */,\n\t\t\t);\n\t\t\tpath = AccessibilityAuthorization;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t982140EC22B7DB5700ABFB3F /* Utilities */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t9824703A22B139780037B409 /* CUtil.swift */,\n\t\t\t\t98D1441224560B1E0090C603 /* AlertUtil.swift */,\n\t\t\t\t98D16A432592AD55005228CB /* MASShortcutMigration.swift */,\n\t\t\t\t98D16A482592B460005228CB /* NotificationExtension.swift */,\n\t\t\t\t98BEFA472620DEDC00D9D54F /* NSImageExtension.swift */,\n\t\t\t\t98192DD9270F606C00015E66 /* Debounce.swift */,\n\t\t\t\tAA0ACC2E2864A86D0025E376 /* StageUtil.swift */,\n\t\t\t\t94E9B08D2C3B8D97004C7F41 /* MacTilingDefaults.swift */,\n\t\t\t\t94E9B08F2C3E4578004C7F41 /* StringExtension.swift */,\n\t\t\t\tAAADE1AE28CBAB0000036331 /* WindowUtil.swift */,\n\t\t\t\tAA4DA2FA28FDC94A00355CEB /* DispatchTimeExtension.swift */,\n\t\t\t\tAA536C2629005DD000579AC6 /* TimeoutCache.swift */,\n\t\t\t\tAA040C66290B2640003181D5 /* RunLoopThread.swift */,\n\t\t\t\tAA0AC001291C1B9100D125D2 /* AXExtension.swift */,\n\t\t\t\tAA0ABFFF291C1B5E00D125D2 /* CGExtension.swift */,\n\t\t\t\tAA0AC003291C48DE00D125D2 /* SequenceExtension.swift */,\n\t\t\t\tAA3A9E8A29230A82004EB8E5 /* CFExtension.swift */,\n\t\t\t\t98C2755D231FF6A9009B9292 /* EventMonitor.swift */,\n\t\t\t);\n\t\t\tpath = Utilities;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t9824700022AF9B7D0037B409 = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t9824700B22AF9B7D0037B409 /* Rectangle */,\n\t\t\t\t9824701E22AF9B7E0037B409 /* RectangleTests */,\n\t\t\t\t9821403D22B3EBD900ABFB3F /* RectangleLauncher */,\n\t\t\t\t9824700A22AF9B7D0037B409 /* Products */,\n\t\t\t\t9821405C22B3ED3600ABFB3F /* Frameworks */,\n\t\t\t);\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t9824700A22AF9B7D0037B409 /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t9824700922AF9B7D0037B409 /* Rectangle.app */,\n\t\t\t\t9824701B22AF9B7E0037B409 /* RectangleTests.xctest */,\n\t\t\t\t9821403C22B3EBD900ABFB3F /* RectangleLauncher.app */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t9824700B22AF9B7D0037B409 /* Rectangle */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t9824700C22AF9B7D0037B409 /* AppDelegate.swift */,\n\t\t\t\t9824701022AF9B7E0037B409 /* Assets.xcassets */,\n\t\t\t\t482E9E412EB1528D00D7928A /* AppIcon.icon */,\n\t\t\t\t9824701222AF9B7E0037B409 /* Main.storyboard */,\n\t\t\t\t9824701522AF9B7E0037B409 /* Info.plist */,\n\t\t\t\t981F27D02340E3E1006CD263 /* InternetAccessPolicy.plist */,\n\t\t\t\t9821552627BFFB13002523EC /* Rectangle-Bridging-Header.h */,\n\t\t\t\t9808018523D05C0B0077774A /* RectangleRelease.entitlements */,\n\t\t\t\t9824701622AF9B7E0037B409 /* Rectangle.entitlements */,\n\t\t\t\t9821405F22B3EFB200ABFB3F /* Defaults.swift */,\n\t\t\t\t984EDB0E29A42ED200D119D2 /* LaunchOnLogin.swift */,\n\t\t\t\t98C1008B2305F1FA006E5344 /* SubsequentExecutionMode.swift */,\n\t\t\t\t7BE578EE2C5BF4ED0083DAE3 /* CycleSize.swift */,\n\t\t\t\t985B9BF422B93EEC00A2E8F0 /* ApplicationToggle.swift */,\n\t\t\t\t9824703022AFA8470037B409 /* RectangleStatusItem.swift */,\n\t\t\t\t9824703622B0F3200037B409 /* WindowAction.swift */,\n\t\t\t\t98A6EDEB2528FFC100F74B10 /* WindowActionCategory.swift */,\n\t\t\t\t9824703822B0F37C0037B409 /* ShortcutManager.swift */,\n\t\t\t\t9824703C22B13C7E0037B409 /* AccessibilityElement.swift */,\n\t\t\t\t9824703E22B13FBC0037B409 /* ScreenDetection.swift */,\n\t\t\t\t98C275662322E2DA009B9292 /* WindowHistory.swift */,\n\t\t\t\t9824704022B186D00037B409 /* WindowManager.swift */,\n\t\t\t\tAA49DD1029B8C1B100690E13 /* TitleBarManager.swift */,\n\t\t\t\t98987AA62391890C00BE72C4 /* Logging */,\n\t\t\t\t98910B3C2311304D0066EC23 /* PrefsWindow */,\n\t\t\t\t989DA30C243FC0C3008C7AA4 /* WelcomeWindow */,\n\t\t\t\t98C2755F231FF6AE009B9292 /* Snapping */,\n\t\t\t\t98D4B6C925B625B6009C7BF6 /* TodoMode */,\n\t\t\t\t985B9BFA22BE218C00A2E8F0 /* Popover */,\n\t\t\t\t982140EA22B7DB0400ABFB3F /* WindowMover */,\n\t\t\t\t982140E922B7DA3100ABFB3F /* WindowCalculation */,\n\t\t\t\t98192DDF2717201E00015E66 /* MultiWindow */,\n\t\t\t\t982140EB22B7DB1A00ABFB3F /* AccessibilityAuthorization */,\n\t\t\t\t982140EC22B7DB5700ABFB3F /* Utilities */,\n\t\t\t);\n\t\t\tpath = Rectangle;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t9824701E22AF9B7E0037B409 /* RectangleTests */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t9824701F22AF9B7E0037B409 /* RectangleTests.swift */,\n\t\t\t\t9824702122AF9B7E0037B409 /* Info.plist */,\n\t\t\t);\n\t\t\tpath = RectangleTests;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t985B9BFA22BE218C00A2E8F0 /* Popover */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t985B9BF722BB6F5000A2E8F0 /* MessageView.swift */,\n\t\t\t\t985B9BF622BB6F5000A2E8F0 /* MessageView.xib */,\n\t\t\t);\n\t\t\tpath = Popover;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t98910B3C2311304D0066EC23 /* PrefsWindow */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t944F25CC2CE5A144004B2FD2 /* PrefsViewController.swift */,\n\t\t\t\t98910B3D231130AF0066EC23 /* SettingsViewController.swift */,\n\t\t\t\t983DD03F28A844BE00BF1EEE /* SnapAreaViewController.swift */,\n\t\t\t\t98C97FFC25893B040061F01F /* Config.swift */,\n\t\t\t);\n\t\t\tpath = PrefsWindow;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t98987AA62391890C00BE72C4 /* Logging */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t98987AA22391890300BE72C4 /* LogViewer.storyboard */,\n\t\t\t\t98987AA32391890400BE72C4 /* LogViewer.swift */,\n\t\t\t);\n\t\t\tpath = Logging;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t989DA30C243FC0C3008C7AA4 /* WelcomeWindow */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t989DA30D243FC0DF008C7AA4 /* WelcomeViewController.swift */,\n\t\t\t);\n\t\t\tpath = WelcomeWindow;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t98C2755F231FF6AE009B9292 /* Snapping */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t98C27560231FFA5F009B9292 /* SnappingManager.swift */,\n\t\t\t\t983BBD6E253B609D000D223E /* FootprintWindow.swift */,\n\t\t\t\t983DD04328B0639E00BF1EEE /* SnapAreaModel.swift */,\n\t\t\t\t9818E00E28B5922A004AA524 /* CompoundSnapArea */,\n\t\t\t);\n\t\t\tpath = Snapping;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t98D4B6C925B625B6009C7BF6 /* TodoMode */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t98D4B6C425B6256C009C7BF6 /* TodoManager.swift */,\n\t\t\t);\n\t\t\tpath = TodoMode;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXGroup section */\n\n/* Begin PBXNativeTarget section */\n\t\t9821403B22B3EBD900ABFB3F /* RectangleLauncher */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 9821405422B3EBDA00ABFB3F /* Build configuration list for PBXNativeTarget \"RectangleLauncher\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t9821403822B3EBD900ABFB3F /* Sources */,\n\t\t\t\t9821403922B3EBD900ABFB3F /* Frameworks */,\n\t\t\t\t9821403A22B3EBD900ABFB3F /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t);\n\t\t\tname = RectangleLauncher;\n\t\t\tproductName = RectangleLauncher;\n\t\t\tproductReference = 9821403C22B3EBD900ABFB3F /* RectangleLauncher.app */;\n\t\t\tproductType = \"com.apple.product-type.application\";\n\t\t};\n\t\t9824700822AF9B7D0037B409 /* Rectangle */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 9824702422AF9B7E0037B409 /* Build configuration list for PBXNativeTarget \"Rectangle\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t9824700522AF9B7D0037B409 /* Sources */,\n\t\t\t\t9824700622AF9B7D0037B409 /* Frameworks */,\n\t\t\t\t9824700722AF9B7D0037B409 /* Resources */,\n\t\t\t\t9821405A22B3EC9900ABFB3F /* CopyFiles */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t);\n\t\t\tname = Rectangle;\n\t\t\tpackageProductDependencies = (\n\t\t\t\t9877B63929C8AC0E00F02D74 /* MASShortcut */,\n\t\t\t\t9877B63C29C8AC3600F02D74 /* Sparkle */,\n\t\t\t);\n\t\t\tproductName = Rectangle;\n\t\t\tproductReference = 9824700922AF9B7D0037B409 /* Rectangle.app */;\n\t\t\tproductType = \"com.apple.product-type.application\";\n\t\t};\n\t\t9824701A22AF9B7E0037B409 /* RectangleTests */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 9824702722AF9B7E0037B409 /* Build configuration list for PBXNativeTarget \"RectangleTests\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t9824701722AF9B7E0037B409 /* Sources */,\n\t\t\t\t9824701822AF9B7E0037B409 /* Frameworks */,\n\t\t\t\t9824701922AF9B7E0037B409 /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\t9824701D22AF9B7E0037B409 /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = RectangleTests;\n\t\t\tproductName = RectangleTests;\n\t\t\tproductReference = 9824701B22AF9B7E0037B409 /* RectangleTests.xctest */;\n\t\t\tproductType = \"com.apple.product-type.bundle.unit-test\";\n\t\t};\n/* End PBXNativeTarget section */\n\n/* Begin PBXProject section */\n\t\t9824700122AF9B7D0037B409 /* Project object */ = {\n\t\t\tisa = PBXProject;\n\t\t\tattributes = {\n\t\t\t\tBuildIndependentTargetsInParallel = YES;\n\t\t\t\tLastSwiftUpdateCheck = 1020;\n\t\t\t\tLastUpgradeCheck = 1500;\n\t\t\t\tORGANIZATIONNAME = \"Ryan Hanson\";\n\t\t\t\tTargetAttributes = {\n\t\t\t\t\t9821403B22B3EBD900ABFB3F = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 10.2.1;\n\t\t\t\t\t\tSystemCapabilities = {\n\t\t\t\t\t\t\tcom.apple.HardenedRuntime = {\n\t\t\t\t\t\t\t\tenabled = 0;\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\tcom.apple.Sandbox = {\n\t\t\t\t\t\t\t\tenabled = 1;\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t};\n\t\t\t\t\t};\n\t\t\t\t\t9824700822AF9B7D0037B409 = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 10.2.1;\n\t\t\t\t\t\tLastSwiftMigration = 1320;\n\t\t\t\t\t\tSystemCapabilities = {\n\t\t\t\t\t\t\tcom.apple.HardenedRuntime = {\n\t\t\t\t\t\t\t\tenabled = 0;\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\tcom.apple.Sandbox = {\n\t\t\t\t\t\t\t\tenabled = 0;\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t};\n\t\t\t\t\t};\n\t\t\t\t\t9824701A22AF9B7E0037B409 = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 10.2.1;\n\t\t\t\t\t\tTestTargetID = 9824700822AF9B7D0037B409;\n\t\t\t\t\t};\n\t\t\t\t};\n\t\t\t};\n\t\t\tbuildConfigurationList = 9824700422AF9B7D0037B409 /* Build configuration list for PBXProject \"Rectangle\" */;\n\t\t\tcompatibilityVersion = \"Xcode 9.3\";\n\t\t\tdevelopmentRegion = en;\n\t\t\thasScannedForEncodings = 0;\n\t\t\tknownRegions = (\n\t\t\t\ten,\n\t\t\t\tBase,\n\t\t\t\tes,\n\t\t\t\tfr,\n\t\t\t\tde,\n\t\t\t\tru,\n\t\t\t\t\"pt-BR\",\n\t\t\t\t\"pt-PT\",\n\t\t\t\tit,\n\t\t\t\tpl,\n\t\t\t\tnl,\n\t\t\t\t\"es-419\",\n\t\t\t\tja,\n\t\t\t\t\"zh-Hans\",\n\t\t\t\t\"zh-Hant\",\n\t\t\t\tko,\n\t\t\t\t\"zh-Hant-HK\",\n\t\t\t\t\"sv-SE\",\n\t\t\t\tro,\n\t\t\t\tid,\n\t\t\t\tcs,\n\t\t\t\tsk,\n\t\t\t\tca,\n\t\t\t\ttr,\n\t\t\t\t\"ca-ES\",\n\t\t\t\tuk,\n\t\t\t\tvi,\n\t\t\t\tlt,\n\t\t\t\tar,\n\t\t\t\tnb,\n\t\t\t\tnn,\n\t\t\t\t\"en-GB\",\n\t\t\t);\n\t\t\tmainGroup = 9824700022AF9B7D0037B409;\n\t\t\tpackageReferences = (\n\t\t\t\t9877B63829C8AC0E00F02D74 /* XCRemoteSwiftPackageReference \"MASShortcut\" */,\n\t\t\t\t9877B63B29C8AC3600F02D74 /* XCRemoteSwiftPackageReference \"Sparkle\" */,\n\t\t\t);\n\t\t\tproductRefGroup = 9824700A22AF9B7D0037B409 /* Products */;\n\t\t\tprojectDirPath = \"\";\n\t\t\tprojectRoot = \"\";\n\t\t\ttargets = (\n\t\t\t\t9824700822AF9B7D0037B409 /* Rectangle */,\n\t\t\t\t9824701A22AF9B7E0037B409 /* RectangleTests */,\n\t\t\t\t9821403B22B3EBD900ABFB3F /* RectangleLauncher */,\n\t\t\t);\n\t\t};\n/* End PBXProject section */\n\n/* Begin PBXResourcesBuildPhase section */\n\t\t9821403A22B3EBD900ABFB3F /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t9821404322B3EBDA00ABFB3F /* Assets.xcassets in Resources */,\n\t\t\t\t9821404622B3EBDA00ABFB3F /* Main.storyboard in Resources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t9824700722AF9B7D0037B409 /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t985B9BF822BB6F5100A2E8F0 /* MessageView.xib in Resources */,\n\t\t\t\t9824701122AF9B7E0037B409 /* Assets.xcassets in Resources */,\n\t\t\t\t9824701422AF9B7E0037B409 /* Main.storyboard in Resources */,\n\t\t\t\t981F27D12340E3E1006CD263 /* InternetAccessPolicy.plist in Resources */,\n\t\t\t\t98987AA42391890400BE72C4 /* LogViewer.storyboard in Resources */,\n\t\t\t\t482E9E422EB1528D00D7928A /* AppIcon.icon in Resources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t9824701922AF9B7E0037B409 /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXResourcesBuildPhase section */\n\n/* Begin PBXSourcesBuildPhase section */\n\t\t9821403822B3EBD900ABFB3F /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t9821403F22B3EBD900ABFB3F /* AppDelegate.swift in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t9824700522AF9B7D0037B409 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t98A009B32512536900CFBF0C /* LastFourthCalculation.swift in Sources */,\n\t\t\t\t98A009BB2512539900CFBF0C /* BottomLeftSixthCalculation.swift in Sources */,\n\t\t\t\t9821402322B3886100ABFB3F /* CenterCalculation.swift in Sources */,\n\t\t\t\t98A009AB2512491300CFBF0C /* CenterHalfCalculation.swift in Sources */,\n\t\t\t\t9818E01828B63C48004AA524 /* FourthsCompoundCalculation.swift in Sources */,\n\t\t\t\t9818E01A28B63C49004AA524 /* EighthsCompoundCalculation.swift in Sources */,\n\t\t\t\tD0CFE33327A8CCB1004DA47B /* TopRightThirdCalculation.swift in Sources */,\n\t\t\t\t94E9B08E2C3B8D97004C7F41 /* MacTilingDefaults.swift in Sources */,\n\t\t\t\t9821403522B38A2B00ABFB3F /* UpperRightCalculation.swift in Sources */,\n\t\t\t\t984EDB0F29A42ED200D119D2 /* LaunchOnLogin.swift in Sources */,\n\t\t\t\t9824702F22AFA2E50037B409 /* AccessibilityAuthorization.swift in Sources */,\n\t\t\t\t988D066322EB4CA5004EABD7 /* FirstTwoThirdsCalculation.swift in Sources */,\n\t\t\t\tD04CE30A27817A9F00BD47B3 /* MiddleRightNinthCalculation.swift in Sources */,\n\t\t\t\t98BEFA482620DEDD00D9D54F /* NSImageExtension.swift in Sources */,\n\t\t\t\t98FA9497235A2D7600F95C4F /* RepeatedExecutionsCalculation.swift in Sources */,\n\t\t\t\tD0CFE33727A8CD51004DA47B /* BottomRightThirdCalculation.swift in Sources */,\n\t\t\t\t9824705122B28D7A0037B409 /* LeftRightHalfCalculation.swift in Sources */,\n\t\t\t\t9824703D22B13C7E0037B409 /* AccessibilityElement.swift in Sources */,\n\t\t\t\t98D1441324560B1E0090C603 /* AlertUtil.swift in Sources */,\n\t\t\t\tAA0AC004291C48DE00D125D2 /* SequenceExtension.swift in Sources */,\n\t\t\t\t985B9BF522B93EEC00A2E8F0 /* ApplicationToggle.swift in Sources */,\n\t\t\t\tAA0AC002291C1B9100D125D2 /* AXExtension.swift in Sources */,\n\t\t\t\t98D16A442592AD55005228CB /* MASShortcutMigration.swift in Sources */,\n\t\t\t\t74804F0B2E25521C009F1F7D /* CenterTwoThirdsCalculation.swift in Sources */,\n\t\t\t\t988D066522EB4CB6004EABD7 /* CenterThirdCalculation.swift in Sources */,\n\t\t\t\tD04CE30827817A9200BD47B3 /* MiddleCenterNinthCalculation.swift in Sources */,\n\t\t\t\t98A009BD251253A000CFBF0C /* BottomCenterSixthCalculation.swift in Sources */,\n\t\t\t\t6490B39F27BF98840056C220 /* BottomCenterRightEighthCalculation.swift in Sources */,\n\t\t\t\t98C2755E231FF6A9009B9292 /* EventMonitor.swift in Sources */,\n\t\t\t\t98A009AF2512517900CFBF0C /* SecondFourthCalculation.swift in Sources */,\n\t\t\t\t6490B39127BF907A0056C220 /* BottomLeftEighthCalculation.swift in Sources */,\n\t\t\t\tD04CE30C27817AA900BD47B3 /* BottomLeftNinthCalculation.swift in Sources */,\n\t\t\t\t6490B39327BF90F90056C220 /* EighthsRepeated.swift in Sources */,\n\t\t\t\t9821406022B3EFB200ABFB3F /* Defaults.swift in Sources */,\n\t\t\t\tD0CFE33527A8CD16004DA47B /* BottomLeftThirdCalculation.swift in Sources */,\n\t\t\t\tD0CFE33127A8CAED004DA47B /* TopLeftThirdCalculation.swift in Sources */,\n\t\t\t\tFDE8FCE027C2950400EACCAA /* MultiWindowManager.swift in Sources */,\n\t\t\t\t98192DDA270F606C00015E66 /* Debounce.swift in Sources */,\n\t\t\t\tD04CE3002781794E00BD47B3 /* TopLeftNinthCalculation.swift in Sources */,\n\t\t\t\t9821403122B38A0500ABFB3F /* TopHalfCalculation.swift in Sources */,\n\t\t\t\t9818E01428B5A4FD004AA524 /* SixthsCompoundCalculation.swift in Sources */,\n\t\t\t\t9824704B22B189250037B409 /* StandardWindowMover.swift in Sources */,\n\t\t\t\t9821402722B3888100ABFB3F /* ChangeSizeCalculation.swift in Sources */,\n\t\t\t\t6490B39927BF97BB0056C220 /* TopCenterRightEighthCalculation.swift in Sources */,\n\t\t\t\t98B3559823CE025700E410E0 /* CenteringFixedSizedWindowMover.swift in Sources */,\n\t\t\t\t9FF740232E34DE9000D22955 /* CenterThreeFourthsCalculation.swift in Sources */,\n\t\t\t\t729E0A982AFF76B1006E2F48 /* CenterProminentlyCalculation.swift in Sources */,\n\t\t\t\t9824704E22B189250037B409 /* QuantizedWindowMover.swift in Sources */,\n\t\t\t\tAA536C2729005DD000579AC6 /* TimeoutCache.swift in Sources */,\n\t\t\t\tD04CE30627817A8400BD47B3 /* MiddleLeftNinthCalculation.swift in Sources */,\n\t\t\t\t9824703B22B139780037B409 /* CUtil.swift in Sources */,\n\t\t\t\t988D067D22EB4E17004EABD7 /* AlmostMaximizeCalculation.swift in Sources */,\n\t\t\t\t98C1008C2305F1FA006E5344 /* SubsequentExecutionMode.swift in Sources */,\n\t\t\t\t94E9B0902C3E4578004C7F41 /* StringExtension.swift in Sources */,\n\t\t\t\t6490B3A127BF98C70056C220 /* BottomRightEighthCalculation.swift in Sources */,\n\t\t\t\t985B9BF922BB6F5100A2E8F0 /* MessageView.swift in Sources */,\n\t\t\t\t988D066722EB4CC0004EABD7 /* LastTwoThirdsCalculation.swift in Sources */,\n\t\t\t\t98192DDE2717201100015E66 /* ReverseAllManager.swift in Sources */,\n\t\t\t\tAA0ACC2F2864A86D0025E376 /* StageUtil.swift in Sources */,\n\t\t\t\t98A009B1251252C900CFBF0C /* ThirdFourthCalculation.swift in Sources */,\n\t\t\t\tD04CE31227817C9B00BD47B3 /* NinthsRepeated.swift in Sources */,\n\t\t\t\t9824703F22B13FBC0037B409 /* ScreenDetection.swift in Sources */,\n\t\t\t\t983DD04428B0639E00BF1EEE /* SnapAreaModel.swift in Sources */,\n\t\t\t\tAA040C67290B2640003181D5 /* RunLoopThread.swift in Sources */,\n\t\t\t\t9821402B22B388A000ABFB3F /* LowerRightCalculation.swift in Sources */,\n\t\t\t\tD04CE30427817A6F00BD47B3 /* TopRightNinthCalculation.swift in Sources */,\n\t\t\t\t98FD7C612687BCB6009E9DAF /* LastThreeFourthsCalculation.swift in Sources */,\n\t\t\t\t9821402522B3887200ABFB3F /* MaximizeCalculation.swift in Sources */,\n\t\t\t\t866661F2257D248A00A9CD2D /* RepeatedExecutionsInThirdsCalculation.swift in Sources */,\n\t\t\t\t9824704D22B189250037B409 /* WindowCalculation.swift in Sources */,\n\t\t\t\t98C1008E230B9EF6006E5344 /* NextPrevDisplayCalculation.swift in Sources */,\n\t\t\t\t9824703122AFA8470037B409 /* RectangleStatusItem.swift in Sources */,\n\t\t\t\tD04CE31027817ABE00BD47B3 /* BottomRightNinthCalculation.swift in Sources */,\n\t\t\t\t98A009B92512538D00CFBF0C /* TopRightSixthCalculation.swift in Sources */,\n\t\t\t\t98C275672322E2DA009B9292 /* WindowHistory.swift in Sources */,\n\t\t\t\t9821403722B3D16700ABFB3F /* MaximizeHeightCalculation.swift in Sources */,\n\t\t\t\t9824704122B186D00037B409 /* WindowManager.swift in Sources */,\n\t\t\t\tD0423D8327A8D31D008A4894 /* HorizontalThirdsRepeated.swift in Sources */,\n\t\t\t\t98C97FFD25893B040061F01F /* Config.swift in Sources */,\n\t\t\t\t989DA30E243FC0DF008C7AA4 /* WelcomeViewController.swift in Sources */,\n\t\t\t\t9818E01228B59B64004AA524 /* ThirdsCompoundCalculation.swift in Sources */,\n\t\t\t\t98C27561231FFA5F009B9292 /* SnappingManager.swift in Sources */,\n\t\t\t\t9824703722B0F3200037B409 /* WindowAction.swift in Sources */,\n\t\t\t\tB4521F932BD7CEFB00FD43CC /* ChangeWindowDimensionCalculation.swift in Sources */,\n\t\t\t\t9821402922B3889100ABFB3F /* LowerLeftCalculation.swift in Sources */,\n\t\t\t\t7BE578EF2C5BF4EE0083DAE3 /* CycleSize.swift in Sources */,\n\t\t\t\t9821402122B3884600ABFB3F /* BottomHalfCalculation.swift in Sources */,\n\t\t\t\t9851A5C3251BEBA300ECF78C /* OrientationAware.swift in Sources */,\n\t\t\t\t98FD7C5F2687BC14009E9DAF /* FirstThreeFourthsCalculation.swift in Sources */,\n\t\t\t\t983DD04028A844BE00BF1EEE /* SnapAreaViewController.swift in Sources */,\n\t\t\t\t9824702C22AFA22E0037B409 /* AccessibilityWindowController.swift in Sources */,\n\t\t\t\t988D066122EB4C7C004EABD7 /* FirstThirdCalculation.swift in Sources */,\n\t\t\t\t983BBD6F253B609D000D223E /* FootprintWindow.swift in Sources */,\n\t\t\t\t988D067F22EB4EDE004EABD7 /* MoveLeftRightCalculation.swift in Sources */,\n\t\t\t\tAA3A9E8B29230A82004EB8E5 /* CFExtension.swift in Sources */,\n\t\t\t\t98C6DEF023CE191700CC0C1E /* GapCalculation.swift in Sources */,\n\t\t\t\t98910B3E231130AF0066EC23 /* SettingsViewController.swift in Sources */,\n\t\t\t\t98A009AD2512498000CFBF0C /* FirstFourthCalculation.swift in Sources */,\n\t\t\t\tAA4DA2FB28FDC94A00355CEB /* DispatchTimeExtension.swift in Sources */,\n\t\t\t\t98D4B6C525B6256C009C7BF6 /* TodoManager.swift in Sources */,\n\t\t\t\tB4780A322BD4C75900732B9E /* HalfOrDoubleDimensionCalculation.swift in Sources */,\n\t\t\t\tAA69F83C29909A95001A81AF /* RightTodoCalculation.swift in Sources */,\n\t\t\t\tAA49DD1129B8C1B100690E13 /* TitleBarManager.swift in Sources */,\n\t\t\t\t9824700D22AF9B7D0037B409 /* AppDelegate.swift in Sources */,\n\t\t\t\t98A009BF251253AB00CFBF0C /* BottomRightSixthCalculation.swift in Sources */,\n\t\t\t\t6490B39527BF96880056C220 /* TopLeftEighthCalculation.swift in Sources */,\n\t\t\t\tD04CE30227817A6100BD47B3 /* TopCenterNinthCalculation.swift in Sources */,\n\t\t\t\t98A009B52512537800CFBF0C /* TopLeftSixthCalculation.swift in Sources */,\n\t\t\t\t9824704F22B189250037B409 /* BestEffortWindowMover.swift in Sources */,\n\t\t\t\t30166BD024F27D6A00A38608 /* SpecifiedCalculation.swift in Sources */,\n\t\t\t\t9824703922B0F37C0037B409 /* ShortcutManager.swift in Sources */,\n\t\t\t\t98D16A492592B460005228CB /* NotificationExtension.swift in Sources */,\n\t\t\t\tAA0AC000291C1B5E00D125D2 /* CGExtension.swift in Sources */,\n\t\t\t\tBB0B80492EFB0AF900A9B165 /* TopVerticalTwoThirdsCalculation.swift in Sources */,\n\t\t\t\tBB0B804A2EFB0AF900A9B165 /* MiddleVerticalThirdCalculation.swift in Sources */,\n\t\t\t\tBB0B804B2EFB0AF900A9B165 /* BottomVerticalTwoThirdsCalculation.swift in Sources */,\n\t\t\t\tBB0B804C2EFB0AF900A9B165 /* BottomVerticalThirdCalculation.swift in Sources */,\n\t\t\t\tBB0B804D2EFB0AF900A9B165 /* TopVerticalThirdCalculation.swift in Sources */,\n\t\t\t\t6490B39D27BF984D0056C220 /* BottomCenterLeftEighthCalculation.swift in Sources */,\n\t\t\t\t98A6EDDD251F3F4A00F74B10 /* SixthsRepeated.swift in Sources */,\n\t\t\t\tBB0000000000000000000001 /* QuartersRepeated.swift in Sources */,\n\t\t\t\tAAADE1AF28CBAB0000036331 /* WindowUtil.swift in Sources */,\n\t\t\t\t98A009B72512538200CFBF0C /* TopCenterSixthCalculation.swift in Sources */,\n\t\t\t\tAA69F8402992DCB1001A81AF /* LeftTodoCalculation.swift in Sources */,\n\t\t\t\t9821403322B38A1B00ABFB3F /* UpperLeftCalculation.swift in Sources */,\n\t\t\t\t98987AA52391890400BE72C4 /* LogViewer.swift in Sources */,\n\t\t\t\t9824704C22B189250037B409 /* WindowMover.swift in Sources */,\n\t\t\t\t6490B39B27BF980F0056C220 /* TopRightEighthCalculation.swift in Sources */,\n\t\t\t\t944F25CD2CE5A144004B2FD2 /* PrefsViewController.swift in Sources */,\n\t\t\t\t9818E01028B59396004AA524 /* HalvesCompoundCalculation.swift in Sources */,\n\t\t\t\t988D066922EB4CCB004EABD7 /* LastThirdCalculation.swift in Sources */,\n\t\t\t\t98A6EDEC2528FFC100F74B10 /* WindowActionCategory.swift in Sources */,\n\t\t\t\t988D068322EB4EF3004EABD7 /* MoveUpDownCalculation.swift in Sources */,\n\t\t\t\tD04CE30E27817AB500BD47B3 /* BottomCenterNinthCalculation.swift in Sources */,\n\t\t\t\t6490B39727BF96EA0056C220 /* TopCenterLeftEighthCalculation.swift in Sources */,\n\t\t\t\t9818E00D28B59205004AA524 /* CompoundSnapArea.swift in Sources */,\n\t\t\t\t7EC9E3BAD5BC57E49A7BCEE5 /* TwelfthsRepeated.swift in Sources */,\n\t\t\t\tBAB3F495AD1F3454FAA31AFB /* TopLeftTwelfthCalculation.swift in Sources */,\n\t\t\t\t924919761FC491952752A147 /* TopCenterLeftTwelfthCalculation.swift in Sources */,\n\t\t\t\t14DBE979E4453E13A3BF5C17 /* TopCenterRightTwelfthCalculation.swift in Sources */,\n\t\t\t\tF4EED30B47FB6C55EA937254 /* TopRightTwelfthCalculation.swift in Sources */,\n\t\t\t\tBF9871B3BCF0E652444E0C56 /* BottomLeftTwelfthCalculation.swift in Sources */,\n\t\t\t\t52953B57D48A4F110779E9BD /* BottomCenterLeftTwelfthCalculation.swift in Sources */,\n\t\t\t\t666598377754D51045353CD0 /* BottomCenterRightTwelfthCalculation.swift in Sources */,\n\t\t\t\t15E8CA7F6AC3EA2C4FB1424C /* BottomRightTwelfthCalculation.swift in Sources */,\n\t\t\t\t05DBEA44B55E6F8C5FC3D6E0 /* MiddleLeftTwelfthCalculation.swift in Sources */,\n\t\t\t\t9FDA3D672AE475B83CA1A34A /* MiddleCenterLeftTwelfthCalculation.swift in Sources */,\n\t\t\t\tDCD3CF2993E9AFAF30820117 /* MiddleCenterRightTwelfthCalculation.swift in Sources */,\n\t\t\t\t8B1D14E3A55936EBCCC1E807 /* MiddleRightTwelfthCalculation.swift in Sources */,\n\t\t\t\tB6366EE24FA928086846969B /* SixteenthsRepeated.swift in Sources */,\n\t\t\t\t3FA1D2E6C9B4623227F680CF /* TopLeftSixteenthCalculation.swift in Sources */,\n\t\t\t\tA0844B53B14365D0278BC124 /* TopCenterLeftSixteenthCalculation.swift in Sources */,\n\t\t\t\tA32D3739AA16C537F6427C4F /* TopCenterRightSixteenthCalculation.swift in Sources */,\n\t\t\t\tF51A7467767F8EAF97321A00 /* TopRightSixteenthCalculation.swift in Sources */,\n\t\t\t\tD8644560FF112B0748CE1975 /* UpperMiddleLeftSixteenthCalculation.swift in Sources */,\n\t\t\t\tE791B00A88D90C24A4C3D2D1 /* UpperMiddleCenterLeftSixteenthCalculation.swift in Sources */,\n\t\t\t\t895C73559E1ACEFBBE8DC32D /* UpperMiddleCenterRightSixteenthCalculation.swift in Sources */,\n\t\t\t\t0F29956694B5BB31EBDAE445 /* UpperMiddleRightSixteenthCalculation.swift in Sources */,\n\t\t\t\t562018A56BC897E769500F1F /* LowerMiddleLeftSixteenthCalculation.swift in Sources */,\n\t\t\t\t88763FEFFA3AECF8502604D6 /* LowerMiddleCenterLeftSixteenthCalculation.swift in Sources */,\n\t\t\t\tA73749B5FB00D2CC2DB08744 /* LowerMiddleCenterRightSixteenthCalculation.swift in Sources */,\n\t\t\t\t4266090403BAF4B8A654A28B /* LowerMiddleRightSixteenthCalculation.swift in Sources */,\n\t\t\t\tF7B6C43BB57F8064F49DDBB6 /* BottomLeftSixteenthCalculation.swift in Sources */,\n\t\t\t\t9988C2A18B6AF03E09204981 /* BottomCenterLeftSixteenthCalculation.swift in Sources */,\n\t\t\t\t630644571003EB468CB643D8 /* BottomCenterRightSixteenthCalculation.swift in Sources */,\n\t\t\t\t2D240EE416CC03AC921E3A4F /* BottomRightSixteenthCalculation.swift in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t9824701722AF9B7E0037B409 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t9824702022AF9B7E0037B409 /* RectangleTests.swift in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXSourcesBuildPhase section */\n\n/* Begin PBXTargetDependency section */\n\t\t9824701D22AF9B7E0037B409 /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\ttarget = 9824700822AF9B7D0037B409 /* Rectangle */;\n\t\t\ttargetProxy = 9824701C22AF9B7E0037B409 /* PBXContainerItemProxy */;\n\t\t};\n/* End PBXTargetDependency section */\n\n/* Begin PBXVariantGroup section */\n\t\t9821404422B3EBDA00ABFB3F /* Main.storyboard */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\t9821404522B3EBDA00ABFB3F /* Base */,\n\t\t\t\t42627A972ADA03D200D047C6 /* mul */,\n\t\t\t);\n\t\t\tname = Main.storyboard;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t9824701222AF9B7E0037B409 /* Main.storyboard */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\t9824701322AF9B7E0037B409 /* Base */,\n\t\t\t\t423DC1992AE681F900C98564 /* mul */,\n\t\t\t);\n\t\t\tname = Main.storyboard;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXVariantGroup section */\n\n/* Begin XCBuildConfiguration section */\n\t\t9821405522B3EBDA00ABFB3F /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tCODE_SIGN_ENTITLEMENTS = RectangleLauncher/RectangleLauncher.entitlements;\n\t\t\t\tCODE_SIGN_IDENTITY = \"-\";\n\t\t\t\tCODE_SIGN_STYLE = Automatic;\n\t\t\t\tCOMBINE_HIDPI_IMAGES = YES;\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEAD_CODE_STRIPPING = YES;\n\t\t\t\tDEVELOPMENT_TEAM = \"\";\n\t\t\t\tENABLE_HARDENED_RUNTIME = NO;\n\t\t\t\tINFOPLIST_FILE = RectangleLauncher/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/../Frameworks\",\n\t\t\t\t);\n\t\t\t\tMACOSX_DEPLOYMENT_TARGET = 10.15;\n\t\t\t\tMARKETING_VERSION = 1.0;\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.knollsoft.RectangleLauncher;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tPROVISIONING_PROFILE_SPECIFIER = \"\";\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_EMIT_LOC_STRINGS = YES;\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t9821405622B3EBDA00ABFB3F /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tCODE_SIGN_ENTITLEMENTS = RectangleLauncher/RectangleLauncherRelease.entitlements;\n\t\t\t\tCODE_SIGN_IDENTITY = \"Apple Development\";\n\t\t\t\tCODE_SIGN_STYLE = Automatic;\n\t\t\t\tCOMBINE_HIDPI_IMAGES = YES;\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEAD_CODE_STRIPPING = YES;\n\t\t\t\tDEVELOPMENT_TEAM = XSYZ3E4B7D;\n\t\t\t\tENABLE_HARDENED_RUNTIME = YES;\n\t\t\t\tINFOPLIST_FILE = RectangleLauncher/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/../Frameworks\",\n\t\t\t\t);\n\t\t\t\tMACOSX_DEPLOYMENT_TARGET = 10.15;\n\t\t\t\tMARKETING_VERSION = 1.0;\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.knollsoft.RectangleLauncher;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tPROVISIONING_PROFILE_SPECIFIER = \"\";\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_EMIT_LOC_STRINGS = YES;\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t9824702222AF9B7E0037B409 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;\n\t\t\t\tCLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++14\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_WEAK = YES;\n\t\t\t\tCLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_COMMA = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_DOCUMENTATION_COMMENTS = YES;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INFINITE_RECURSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;\n\t\t\t\tCLANG_WARN_OBJC_LITERAL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;\n\t\t\t\tCLANG_WARN_RANGE_LOOP_ANALYSIS = YES;\n\t\t\t\tCLANG_WARN_STRICT_PROTOTYPES = YES;\n\t\t\t\tCLANG_WARN_SUSPICIOUS_MOVE = YES;\n\t\t\t\tCLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\tCODE_SIGN_IDENTITY = \"Mac Developer\";\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tDEAD_CODE_STRIPPING = YES;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = dwarf;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tENABLE_TESTABILITY = YES;\n\t\t\t\tENABLE_USER_SCRIPT_SANDBOXING = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu11;\n\t\t\t\tGCC_DYNAMIC_NO_PIC = NO;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_OPTIMIZATION_LEVEL = 0;\n\t\t\t\tGCC_PREPROCESSOR_DEFINITIONS = (\n\t\t\t\t\t\"DEBUG=1\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tLOCALIZATION_PREFERS_STRING_CATALOGS = YES;\n\t\t\t\tMACOSX_DEPLOYMENT_TARGET = 10.15;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;\n\t\t\t\tMTL_FAST_MATH = YES;\n\t\t\t\tONLY_ACTIVE_ARCH = YES;\n\t\t\t\tSDKROOT = macosx;\n\t\t\t\tSWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-Onone\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t9824702322AF9B7E0037B409 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;\n\t\t\t\tCLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++14\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_WEAK = YES;\n\t\t\t\tCLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_COMMA = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_DOCUMENTATION_COMMENTS = YES;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INFINITE_RECURSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;\n\t\t\t\tCLANG_WARN_OBJC_LITERAL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;\n\t\t\t\tCLANG_WARN_RANGE_LOOP_ANALYSIS = YES;\n\t\t\t\tCLANG_WARN_STRICT_PROTOTYPES = YES;\n\t\t\t\tCLANG_WARN_SUSPICIOUS_MOVE = YES;\n\t\t\t\tCLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\tCODE_SIGN_IDENTITY = \"Mac Developer\";\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tDEAD_CODE_STRIPPING = YES;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tENABLE_NS_ASSERTIONS = NO;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tENABLE_USER_SCRIPT_SANDBOXING = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu11;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tLOCALIZATION_PREFERS_STRING_CATALOGS = YES;\n\t\t\t\tMACOSX_DEPLOYMENT_TARGET = 10.15;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tMTL_FAST_MATH = YES;\n\t\t\t\tSDKROOT = macosx;\n\t\t\t\tSWIFT_COMPILATION_MODE = wholemodule;\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-O\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t9824702522AF9B7E0037B409 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;\n\t\t\t\tASSETCATALOG_OTHER_FLAGS = \"--enable-icon-stack-fallback-generation=disabled\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCODE_SIGN_ENTITLEMENTS = Rectangle/Rectangle.entitlements;\n\t\t\t\tCODE_SIGN_IDENTITY = \"-\";\n\t\t\t\tCODE_SIGN_STYLE = Automatic;\n\t\t\t\tCOMBINE_HIDPI_IMAGES = YES;\n\t\t\t\tCURRENT_PROJECT_VERSION = 100;\n\t\t\t\tDEAD_CODE_STRIPPING = YES;\n\t\t\t\tDEVELOPMENT_TEAM = \"\";\n\t\t\t\tENABLE_HARDENED_RUNTIME = NO;\n\t\t\t\tINFOPLIST_FILE = Rectangle/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/../Frameworks\",\n\t\t\t\t);\n\t\t\t\tMACOSX_DEPLOYMENT_TARGET = 10.15;\n\t\t\t\tMARKETING_VERSION = 0.94;\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.knollsoft.Rectangle;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tPROVISIONING_PROFILE_SPECIFIER = \"\";\n\t\t\t\tSWIFT_EMIT_LOC_STRINGS = YES;\n\t\t\t\tSWIFT_OBJC_BRIDGING_HEADER = \"Rectangle/Rectangle-Bridging-Header.h\";\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-Onone\";\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t9824702622AF9B7E0037B409 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;\n\t\t\t\tASSETCATALOG_OTHER_FLAGS = \"--enable-icon-stack-fallback-generation=disabled\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCODE_SIGN_ENTITLEMENTS = Rectangle/RectangleRelease.entitlements;\n\t\t\t\tCODE_SIGN_IDENTITY = \"Apple Development\";\n\t\t\t\tCODE_SIGN_STYLE = Automatic;\n\t\t\t\tCOMBINE_HIDPI_IMAGES = YES;\n\t\t\t\tCURRENT_PROJECT_VERSION = 100;\n\t\t\t\tDEAD_CODE_STRIPPING = YES;\n\t\t\t\tDEVELOPMENT_TEAM = XSYZ3E4B7D;\n\t\t\t\tENABLE_HARDENED_RUNTIME = YES;\n\t\t\t\tINFOPLIST_FILE = Rectangle/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/../Frameworks\",\n\t\t\t\t);\n\t\t\t\tMACOSX_DEPLOYMENT_TARGET = 10.15;\n\t\t\t\tMARKETING_VERSION = 0.94;\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.knollsoft.Rectangle;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tPROVISIONING_PROFILE_SPECIFIER = \"\";\n\t\t\t\tSWIFT_EMIT_LOC_STRINGS = YES;\n\t\t\t\tSWIFT_OBJC_BRIDGING_HEADER = \"Rectangle/Rectangle-Bridging-Header.h\";\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t9824702822AF9B7E0037B409 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;\n\t\t\t\tBUNDLE_LOADER = \"$(TEST_HOST)\";\n\t\t\t\tCODE_SIGN_IDENTITY = \"-\";\n\t\t\t\tCODE_SIGN_STYLE = Automatic;\n\t\t\t\tCOMBINE_HIDPI_IMAGES = YES;\n\t\t\t\tDEAD_CODE_STRIPPING = YES;\n\t\t\t\tDEVELOPMENT_TEAM = \"\";\n\t\t\t\tINFOPLIST_FILE = RectangleTests/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/../Frameworks\",\n\t\t\t\t\t\"@loader_path/../Frameworks\",\n\t\t\t\t);\n\t\t\t\tMACOSX_DEPLOYMENT_TARGET = 10.15;\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = dev.ryanhanson.RectangleTests;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tPROVISIONING_PROFILE_SPECIFIER = \"\";\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t\tTEST_HOST = \"$(BUILT_PRODUCTS_DIR)/Rectangle.app/Contents/MacOS/Rectangle\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t9824702922AF9B7E0037B409 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;\n\t\t\t\tBUNDLE_LOADER = \"$(TEST_HOST)\";\n\t\t\t\tCODE_SIGN_IDENTITY = \"Apple Development\";\n\t\t\t\tCODE_SIGN_STYLE = Automatic;\n\t\t\t\tCOMBINE_HIDPI_IMAGES = YES;\n\t\t\t\tDEAD_CODE_STRIPPING = YES;\n\t\t\t\tDEVELOPMENT_TEAM = XSYZ3E4B7D;\n\t\t\t\tINFOPLIST_FILE = RectangleTests/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/../Frameworks\",\n\t\t\t\t\t\"@loader_path/../Frameworks\",\n\t\t\t\t);\n\t\t\t\tMACOSX_DEPLOYMENT_TARGET = 10.15;\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = dev.ryanhanson.RectangleTests;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tPROVISIONING_PROFILE_SPECIFIER = \"\";\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t\tTEST_HOST = \"$(BUILT_PRODUCTS_DIR)/Rectangle.app/Contents/MacOS/Rectangle\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n/* End XCBuildConfiguration section */\n\n/* Begin XCConfigurationList section */\n\t\t9821405422B3EBDA00ABFB3F /* Build configuration list for PBXNativeTarget \"RectangleLauncher\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t9821405522B3EBDA00ABFB3F /* Debug */,\n\t\t\t\t9821405622B3EBDA00ABFB3F /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t9824700422AF9B7D0037B409 /* Build configuration list for PBXProject \"Rectangle\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t9824702222AF9B7E0037B409 /* Debug */,\n\t\t\t\t9824702322AF9B7E0037B409 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t9824702422AF9B7E0037B409 /* Build configuration list for PBXNativeTarget \"Rectangle\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t9824702522AF9B7E0037B409 /* Debug */,\n\t\t\t\t9824702622AF9B7E0037B409 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t9824702722AF9B7E0037B409 /* Build configuration list for PBXNativeTarget \"RectangleTests\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t9824702822AF9B7E0037B409 /* Debug */,\n\t\t\t\t9824702922AF9B7E0037B409 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n/* End XCConfigurationList section */\n\n/* Begin XCRemoteSwiftPackageReference section */\n\t\t9877B63829C8AC0E00F02D74 /* XCRemoteSwiftPackageReference \"MASShortcut\" */ = {\n\t\t\tisa = XCRemoteSwiftPackageReference;\n\t\t\trepositoryURL = \"https://github.com/rxhanson/MASShortcut\";\n\t\t\trequirement = {\n\t\t\t\tbranch = master;\n\t\t\t\tkind = branch;\n\t\t\t};\n\t\t};\n\t\t9877B63B29C8AC3600F02D74 /* XCRemoteSwiftPackageReference \"Sparkle\" */ = {\n\t\t\tisa = XCRemoteSwiftPackageReference;\n\t\t\trepositoryURL = \"https://github.com/sparkle-project/Sparkle\";\n\t\t\trequirement = {\n\t\t\t\tkind = upToNextMajorVersion;\n\t\t\t\tminimumVersion = 2.0.0;\n\t\t\t};\n\t\t};\n/* End XCRemoteSwiftPackageReference section */\n\n/* Begin XCSwiftPackageProductDependency section */\n\t\t9877B63929C8AC0E00F02D74 /* MASShortcut */ = {\n\t\t\tisa = XCSwiftPackageProductDependency;\n\t\t\tpackage = 9877B63829C8AC0E00F02D74 /* XCRemoteSwiftPackageReference \"MASShortcut\" */;\n\t\t\tproductName = MASShortcut;\n\t\t};\n\t\t9877B63C29C8AC3600F02D74 /* Sparkle */ = {\n\t\t\tisa = XCSwiftPackageProductDependency;\n\t\t\tpackage = 9877B63B29C8AC3600F02D74 /* XCRemoteSwiftPackageReference \"Sparkle\" */;\n\t\t\tproductName = Sparkle;\n\t\t};\n/* End XCSwiftPackageProductDependency section */\n\t};\n\trootObject = 9824700122AF9B7D0037B409 /* Project object */;\n}\n"
  },
  {
    "path": "RectangleLauncher/AppDelegate.swift",
    "content": "//\n//  AppDelegate.swift\n//  RectangleLauncher\n//\n//  Created by Ryan Hanson on 6/14/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport Cocoa\n\n@NSApplicationMain\nclass AppDelegate: NSObject, NSApplicationDelegate {\n\n    func applicationDidFinishLaunching(_ aNotification: Notification) {\n        if #available(macOS 13, *) {\n            terminate()\n            return\n        }\n        let mainAppIdentifier = \"com.knollsoft.Rectangle\"\n        let running = NSWorkspace.shared.runningApplications\n        let isRunning = !running.filter({$0.bundleIdentifier == mainAppIdentifier}).isEmpty\n        \n        if isRunning {\n            self.terminate()\n        } else {\n            let killNotification = Notification.Name(\"killLauncher\")\n            DistributedNotificationCenter.default().addObserver(self,\n                                                                selector: #selector(self.terminate),\n                                                                name: killNotification,\n                                                                object: mainAppIdentifier)\n            let path = Bundle.main.bundlePath as NSString\n            var components = path.pathComponents\n            components.removeLast()\n            components.removeLast()\n            components.removeLast()\n            components.append(\"MacOS\")\n            components.append(\"Rectangle\")\n            let newPath = NSString.path(withComponents: components)\n            NSWorkspace.shared.launchApplication(newPath)\n        }\n    }\n    \n    @objc func terminate() {\n        NSApp.terminate(nil)\n    }\n\n}\n\n"
  },
  {
    "path": "RectangleLauncher/Assets.xcassets/AppIcon.appiconset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"mac\",\n      \"size\" : \"16x16\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"mac\",\n      \"size\" : \"16x16\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"mac\",\n      \"size\" : \"32x32\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"mac\",\n      \"size\" : \"32x32\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"mac\",\n      \"size\" : \"128x128\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"mac\",\n      \"size\" : \"128x128\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"mac\",\n      \"size\" : \"256x256\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"mac\",\n      \"size\" : \"256x256\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"mac\",\n      \"size\" : \"512x512\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"mac\",\n      \"size\" : \"512x512\",\n      \"scale\" : \"2x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "RectangleLauncher/Assets.xcassets/Contents.json",
    "content": "{\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "RectangleLauncher/Base.lproj/Main.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.Cocoa.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"22505\" targetRuntime=\"MacOSX.Cocoa\" propertyAccessControl=\"none\" useAutolayout=\"YES\">\n    <dependencies>\n        <deployment identifier=\"macosx\"/>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.CocoaPlugin\" version=\"22505\"/>\n    </dependencies>\n    <scenes>\n        <!--Application-->\n        <scene sceneID=\"JPo-4y-FX3\">\n            <objects>\n                <application id=\"hnw-xV-0zn\" sceneMemberID=\"viewController\">\n                    <menu key=\"mainMenu\" title=\"Main Menu\" systemMenu=\"main\" id=\"AYu-sK-qS6\">\n                        <items>\n                            <menuItem title=\"RectangleLauncher\" id=\"1Xt-HY-uBw\">\n                                <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                <menu key=\"submenu\" title=\"RectangleLauncher\" systemMenu=\"apple\" id=\"uQy-DD-JDr\">\n                                    <items>\n                                        <menuItem title=\"About RectangleLauncher\" id=\"5kV-Vb-QxS\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <connections>\n                                                <action selector=\"orderFrontStandardAboutPanel:\" target=\"Ady-hI-5gd\" id=\"Exp-CZ-Vem\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem isSeparatorItem=\"YES\" id=\"VOq-y0-SEH\"/>\n                                        <menuItem title=\"Preferences…\" keyEquivalent=\",\" id=\"BOF-NM-1cW\"/>\n                                        <menuItem isSeparatorItem=\"YES\" id=\"wFC-TO-SCJ\"/>\n                                        <menuItem title=\"Services\" id=\"NMo-om-nkz\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <menu key=\"submenu\" title=\"Services\" systemMenu=\"services\" id=\"hz9-B4-Xy5\"/>\n                                        </menuItem>\n                                        <menuItem isSeparatorItem=\"YES\" id=\"4je-JR-u6R\"/>\n                                        <menuItem title=\"Hide RectangleLauncher\" keyEquivalent=\"h\" id=\"Olw-nP-bQN\">\n                                            <connections>\n                                                <action selector=\"hide:\" target=\"Ady-hI-5gd\" id=\"PnN-Uc-m68\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Hide Others\" keyEquivalent=\"h\" id=\"Vdr-fp-XzO\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\" option=\"YES\" command=\"YES\"/>\n                                            <connections>\n                                                <action selector=\"hideOtherApplications:\" target=\"Ady-hI-5gd\" id=\"VT4-aY-XCT\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Show All\" id=\"Kd2-mp-pUS\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <connections>\n                                                <action selector=\"unhideAllApplications:\" target=\"Ady-hI-5gd\" id=\"Dhg-Le-xox\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem isSeparatorItem=\"YES\" id=\"kCx-OE-vgT\"/>\n                                        <menuItem title=\"Quit RectangleLauncher\" keyEquivalent=\"q\" id=\"4sb-4s-VLi\">\n                                            <connections>\n                                                <action selector=\"terminate:\" target=\"Ady-hI-5gd\" id=\"Te7-pn-YzF\"/>\n                                            </connections>\n                                        </menuItem>\n                                    </items>\n                                </menu>\n                            </menuItem>\n                            <menuItem title=\"File\" id=\"dMs-cI-mzQ\">\n                                <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                <menu key=\"submenu\" title=\"File\" id=\"bib-Uj-vzu\">\n                                    <items>\n                                        <menuItem title=\"New\" keyEquivalent=\"n\" id=\"Was-JA-tGl\">\n                                            <connections>\n                                                <action selector=\"newDocument:\" target=\"Ady-hI-5gd\" id=\"4Si-XN-c54\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Open…\" keyEquivalent=\"o\" id=\"IAo-SY-fd9\">\n                                            <connections>\n                                                <action selector=\"openDocument:\" target=\"Ady-hI-5gd\" id=\"bVn-NM-KNZ\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Open Recent\" id=\"tXI-mr-wws\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <menu key=\"submenu\" title=\"Open Recent\" systemMenu=\"recentDocuments\" id=\"oas-Oc-fiZ\">\n                                                <items>\n                                                    <menuItem title=\"Clear Menu\" id=\"vNY-rz-j42\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <connections>\n                                                            <action selector=\"clearRecentDocuments:\" target=\"Ady-hI-5gd\" id=\"Daa-9d-B3U\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                </items>\n                                            </menu>\n                                        </menuItem>\n                                        <menuItem isSeparatorItem=\"YES\" id=\"m54-Is-iLE\"/>\n                                        <menuItem title=\"Close\" keyEquivalent=\"w\" id=\"DVo-aG-piG\">\n                                            <connections>\n                                                <action selector=\"performClose:\" target=\"Ady-hI-5gd\" id=\"HmO-Ls-i7Q\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Save…\" keyEquivalent=\"s\" id=\"pxx-59-PXV\">\n                                            <connections>\n                                                <action selector=\"saveDocument:\" target=\"Ady-hI-5gd\" id=\"teZ-XB-qJY\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Save As…\" keyEquivalent=\"S\" id=\"Bw7-FT-i3A\">\n                                            <connections>\n                                                <action selector=\"saveDocumentAs:\" target=\"Ady-hI-5gd\" id=\"mDf-zr-I0C\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Revert to Saved\" keyEquivalent=\"r\" id=\"KaW-ft-85H\">\n                                            <connections>\n                                                <action selector=\"revertDocumentToSaved:\" target=\"Ady-hI-5gd\" id=\"iJ3-Pv-kwq\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem isSeparatorItem=\"YES\" id=\"aJh-i4-bef\"/>\n                                        <menuItem title=\"Page Setup…\" keyEquivalent=\"P\" id=\"qIS-W8-SiK\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\" shift=\"YES\" command=\"YES\"/>\n                                            <connections>\n                                                <action selector=\"runPageLayout:\" target=\"Ady-hI-5gd\" id=\"Din-rz-gC5\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Print…\" keyEquivalent=\"p\" id=\"aTl-1u-JFS\">\n                                            <connections>\n                                                <action selector=\"print:\" target=\"Ady-hI-5gd\" id=\"qaZ-4w-aoO\"/>\n                                            </connections>\n                                        </menuItem>\n                                    </items>\n                                </menu>\n                            </menuItem>\n                            <menuItem title=\"Edit\" id=\"5QF-Oa-p0T\">\n                                <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                <menu key=\"submenu\" title=\"Edit\" id=\"W48-6f-4Dl\">\n                                    <items>\n                                        <menuItem title=\"Undo\" keyEquivalent=\"z\" id=\"dRJ-4n-Yzg\">\n                                            <connections>\n                                                <action selector=\"undo:\" target=\"Ady-hI-5gd\" id=\"M6e-cu-g7V\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Redo\" keyEquivalent=\"Z\" id=\"6dh-zS-Vam\">\n                                            <connections>\n                                                <action selector=\"redo:\" target=\"Ady-hI-5gd\" id=\"oIA-Rs-6OD\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem isSeparatorItem=\"YES\" id=\"WRV-NI-Exz\"/>\n                                        <menuItem title=\"Cut\" keyEquivalent=\"x\" id=\"uRl-iY-unG\">\n                                            <connections>\n                                                <action selector=\"cut:\" target=\"Ady-hI-5gd\" id=\"YJe-68-I9s\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Copy\" keyEquivalent=\"c\" id=\"x3v-GG-iWU\">\n                                            <connections>\n                                                <action selector=\"copy:\" target=\"Ady-hI-5gd\" id=\"G1f-GL-Joy\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Paste\" keyEquivalent=\"v\" id=\"gVA-U4-sdL\">\n                                            <connections>\n                                                <action selector=\"paste:\" target=\"Ady-hI-5gd\" id=\"UvS-8e-Qdg\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Paste and Match Style\" keyEquivalent=\"V\" id=\"WeT-3V-zwk\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\" option=\"YES\" command=\"YES\"/>\n                                            <connections>\n                                                <action selector=\"pasteAsPlainText:\" target=\"Ady-hI-5gd\" id=\"cEh-KX-wJQ\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Delete\" id=\"pa3-QI-u2k\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <connections>\n                                                <action selector=\"delete:\" target=\"Ady-hI-5gd\" id=\"0Mk-Ml-PaM\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Select All\" keyEquivalent=\"a\" id=\"Ruw-6m-B2m\">\n                                            <connections>\n                                                <action selector=\"selectAll:\" target=\"Ady-hI-5gd\" id=\"VNm-Mi-diN\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem isSeparatorItem=\"YES\" id=\"uyl-h8-XO2\"/>\n                                        <menuItem title=\"Find\" id=\"4EN-yA-p0u\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <menu key=\"submenu\" title=\"Find\" id=\"1b7-l0-nxx\">\n                                                <items>\n                                                    <menuItem title=\"Find…\" tag=\"1\" keyEquivalent=\"f\" id=\"Xz5-n4-O0W\">\n                                                        <connections>\n                                                            <action selector=\"performFindPanelAction:\" target=\"Ady-hI-5gd\" id=\"cD7-Qs-BN4\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Find and Replace…\" tag=\"12\" keyEquivalent=\"f\" id=\"YEy-JH-Tfz\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\" option=\"YES\" command=\"YES\"/>\n                                                        <connections>\n                                                            <action selector=\"performFindPanelAction:\" target=\"Ady-hI-5gd\" id=\"WD3-Gg-5AJ\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Find Next\" tag=\"2\" keyEquivalent=\"g\" id=\"q09-fT-Sye\">\n                                                        <connections>\n                                                            <action selector=\"performFindPanelAction:\" target=\"Ady-hI-5gd\" id=\"NDo-RZ-v9R\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Find Previous\" tag=\"3\" keyEquivalent=\"G\" id=\"OwM-mh-QMV\">\n                                                        <connections>\n                                                            <action selector=\"performFindPanelAction:\" target=\"Ady-hI-5gd\" id=\"HOh-sY-3ay\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Use Selection for Find\" tag=\"7\" keyEquivalent=\"e\" id=\"buJ-ug-pKt\">\n                                                        <connections>\n                                                            <action selector=\"performFindPanelAction:\" target=\"Ady-hI-5gd\" id=\"U76-nv-p5D\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Jump to Selection\" keyEquivalent=\"j\" id=\"S0p-oC-mLd\">\n                                                        <connections>\n                                                            <action selector=\"centerSelectionInVisibleArea:\" target=\"Ady-hI-5gd\" id=\"IOG-6D-g5B\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                </items>\n                                            </menu>\n                                        </menuItem>\n                                        <menuItem title=\"Spelling and Grammar\" id=\"Dv1-io-Yv7\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <menu key=\"submenu\" title=\"Spelling\" id=\"3IN-sU-3Bg\">\n                                                <items>\n                                                    <menuItem title=\"Show Spelling and Grammar\" keyEquivalent=\":\" id=\"HFo-cy-zxI\">\n                                                        <connections>\n                                                            <action selector=\"showGuessPanel:\" target=\"Ady-hI-5gd\" id=\"vFj-Ks-hy3\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Check Document Now\" keyEquivalent=\";\" id=\"hz2-CU-CR7\">\n                                                        <connections>\n                                                            <action selector=\"checkSpelling:\" target=\"Ady-hI-5gd\" id=\"fz7-VC-reM\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem isSeparatorItem=\"YES\" id=\"bNw-od-mp5\"/>\n                                                    <menuItem title=\"Check Spelling While Typing\" id=\"rbD-Rh-wIN\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <connections>\n                                                            <action selector=\"toggleContinuousSpellChecking:\" target=\"Ady-hI-5gd\" id=\"7w6-Qz-0kB\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Check Grammar With Spelling\" id=\"mK6-2p-4JG\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <connections>\n                                                            <action selector=\"toggleGrammarChecking:\" target=\"Ady-hI-5gd\" id=\"muD-Qn-j4w\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Correct Spelling Automatically\" id=\"78Y-hA-62v\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <connections>\n                                                            <action selector=\"toggleAutomaticSpellingCorrection:\" target=\"Ady-hI-5gd\" id=\"2lM-Qi-WAP\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                </items>\n                                            </menu>\n                                        </menuItem>\n                                        <menuItem title=\"Substitutions\" id=\"9ic-FL-obx\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <menu key=\"submenu\" title=\"Substitutions\" id=\"FeM-D8-WVr\">\n                                                <items>\n                                                    <menuItem title=\"Show Substitutions\" id=\"z6F-FW-3nz\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <connections>\n                                                            <action selector=\"orderFrontSubstitutionsPanel:\" target=\"Ady-hI-5gd\" id=\"oku-mr-iSq\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem isSeparatorItem=\"YES\" id=\"gPx-C9-uUO\"/>\n                                                    <menuItem title=\"Smart Copy/Paste\" id=\"9yt-4B-nSM\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <connections>\n                                                            <action selector=\"toggleSmartInsertDelete:\" target=\"Ady-hI-5gd\" id=\"3IJ-Se-DZD\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Smart Quotes\" id=\"hQb-2v-fYv\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <connections>\n                                                            <action selector=\"toggleAutomaticQuoteSubstitution:\" target=\"Ady-hI-5gd\" id=\"ptq-xd-QOA\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Smart Dashes\" id=\"rgM-f4-ycn\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <connections>\n                                                            <action selector=\"toggleAutomaticDashSubstitution:\" target=\"Ady-hI-5gd\" id=\"oCt-pO-9gS\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Smart Links\" id=\"cwL-P1-jid\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <connections>\n                                                            <action selector=\"toggleAutomaticLinkDetection:\" target=\"Ady-hI-5gd\" id=\"Gip-E3-Fov\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Data Detectors\" id=\"tRr-pd-1PS\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <connections>\n                                                            <action selector=\"toggleAutomaticDataDetection:\" target=\"Ady-hI-5gd\" id=\"R1I-Nq-Kbl\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Text Replacement\" id=\"HFQ-gK-NFA\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <connections>\n                                                            <action selector=\"toggleAutomaticTextReplacement:\" target=\"Ady-hI-5gd\" id=\"DvP-Fe-Py6\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                </items>\n                                            </menu>\n                                        </menuItem>\n                                        <menuItem title=\"Transformations\" id=\"2oI-Rn-ZJC\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <menu key=\"submenu\" title=\"Transformations\" id=\"c8a-y6-VQd\">\n                                                <items>\n                                                    <menuItem title=\"Make Upper Case\" id=\"vmV-6d-7jI\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <connections>\n                                                            <action selector=\"uppercaseWord:\" target=\"Ady-hI-5gd\" id=\"sPh-Tk-edu\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Make Lower Case\" id=\"d9M-CD-aMd\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <connections>\n                                                            <action selector=\"lowercaseWord:\" target=\"Ady-hI-5gd\" id=\"iUZ-b5-hil\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Capitalize\" id=\"UEZ-Bs-lqG\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <connections>\n                                                            <action selector=\"capitalizeWord:\" target=\"Ady-hI-5gd\" id=\"26H-TL-nsh\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                </items>\n                                            </menu>\n                                        </menuItem>\n                                        <menuItem title=\"Speech\" id=\"xrE-MZ-jX0\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <menu key=\"submenu\" title=\"Speech\" id=\"3rS-ZA-NoH\">\n                                                <items>\n                                                    <menuItem title=\"Start Speaking\" id=\"Ynk-f8-cLZ\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <connections>\n                                                            <action selector=\"startSpeaking:\" target=\"Ady-hI-5gd\" id=\"654-Ng-kyl\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Stop Speaking\" id=\"Oyz-dy-DGm\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <connections>\n                                                            <action selector=\"stopSpeaking:\" target=\"Ady-hI-5gd\" id=\"dX8-6p-jy9\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                </items>\n                                            </menu>\n                                        </menuItem>\n                                    </items>\n                                </menu>\n                            </menuItem>\n                            <menuItem title=\"Format\" id=\"jxT-CU-nIS\">\n                                <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                <menu key=\"submenu\" title=\"Format\" id=\"GEO-Iw-cKr\">\n                                    <items>\n                                        <menuItem title=\"Font\" id=\"Gi5-1S-RQB\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <menu key=\"submenu\" title=\"Font\" systemMenu=\"font\" id=\"aXa-aM-Jaq\">\n                                                <items>\n                                                    <menuItem title=\"Show Fonts\" keyEquivalent=\"t\" id=\"Q5e-8K-NDq\">\n                                                        <connections>\n                                                            <action selector=\"orderFrontFontPanel:\" target=\"YLy-65-1bz\" id=\"WHr-nq-2xA\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Bold\" tag=\"2\" keyEquivalent=\"b\" id=\"GB9-OM-e27\">\n                                                        <connections>\n                                                            <action selector=\"addFontTrait:\" target=\"YLy-65-1bz\" id=\"hqk-hr-sYV\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Italic\" tag=\"1\" keyEquivalent=\"i\" id=\"Vjx-xi-njq\">\n                                                        <connections>\n                                                            <action selector=\"addFontTrait:\" target=\"YLy-65-1bz\" id=\"IHV-OB-c03\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Underline\" keyEquivalent=\"u\" id=\"WRG-CD-K1S\">\n                                                        <connections>\n                                                            <action selector=\"underline:\" target=\"Ady-hI-5gd\" id=\"FYS-2b-JAY\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem isSeparatorItem=\"YES\" id=\"5gT-KC-WSO\"/>\n                                                    <menuItem title=\"Bigger\" tag=\"3\" keyEquivalent=\"+\" id=\"Ptp-SP-VEL\">\n                                                        <connections>\n                                                            <action selector=\"modifyFont:\" target=\"YLy-65-1bz\" id=\"Uc7-di-UnL\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Smaller\" tag=\"4\" keyEquivalent=\"-\" id=\"i1d-Er-qST\">\n                                                        <connections>\n                                                            <action selector=\"modifyFont:\" target=\"YLy-65-1bz\" id=\"HcX-Lf-eNd\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem isSeparatorItem=\"YES\" id=\"kx3-Dk-x3B\"/>\n                                                    <menuItem title=\"Kern\" id=\"jBQ-r6-VK2\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <menu key=\"submenu\" title=\"Kern\" id=\"tlD-Oa-oAM\">\n                                                            <items>\n                                                                <menuItem title=\"Use Default\" id=\"GUa-eO-cwY\">\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                    <connections>\n                                                                        <action selector=\"useStandardKerning:\" target=\"Ady-hI-5gd\" id=\"6dk-9l-Ckg\"/>\n                                                                    </connections>\n                                                                </menuItem>\n                                                                <menuItem title=\"Use None\" id=\"cDB-IK-hbR\">\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                    <connections>\n                                                                        <action selector=\"turnOffKerning:\" target=\"Ady-hI-5gd\" id=\"U8a-gz-Maa\"/>\n                                                                    </connections>\n                                                                </menuItem>\n                                                                <menuItem title=\"Tighten\" id=\"46P-cB-AYj\">\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                    <connections>\n                                                                        <action selector=\"tightenKerning:\" target=\"Ady-hI-5gd\" id=\"hr7-Nz-8ro\"/>\n                                                                    </connections>\n                                                                </menuItem>\n                                                                <menuItem title=\"Loosen\" id=\"ogc-rX-tC1\">\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                    <connections>\n                                                                        <action selector=\"loosenKerning:\" target=\"Ady-hI-5gd\" id=\"8i4-f9-FKE\"/>\n                                                                    </connections>\n                                                                </menuItem>\n                                                            </items>\n                                                        </menu>\n                                                    </menuItem>\n                                                    <menuItem title=\"Ligatures\" id=\"o6e-r0-MWq\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <menu key=\"submenu\" title=\"Ligatures\" id=\"w0m-vy-SC9\">\n                                                            <items>\n                                                                <menuItem title=\"Use Default\" id=\"agt-UL-0e3\">\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                    <connections>\n                                                                        <action selector=\"useStandardLigatures:\" target=\"Ady-hI-5gd\" id=\"7uR-wd-Dx6\"/>\n                                                                    </connections>\n                                                                </menuItem>\n                                                                <menuItem title=\"Use None\" id=\"J7y-lM-qPV\">\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                    <connections>\n                                                                        <action selector=\"turnOffLigatures:\" target=\"Ady-hI-5gd\" id=\"iX2-gA-Ilz\"/>\n                                                                    </connections>\n                                                                </menuItem>\n                                                                <menuItem title=\"Use All\" id=\"xQD-1f-W4t\">\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                    <connections>\n                                                                        <action selector=\"useAllLigatures:\" target=\"Ady-hI-5gd\" id=\"KcB-kA-TuK\"/>\n                                                                    </connections>\n                                                                </menuItem>\n                                                            </items>\n                                                        </menu>\n                                                    </menuItem>\n                                                    <menuItem title=\"Baseline\" id=\"OaQ-X3-Vso\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <menu key=\"submenu\" title=\"Baseline\" id=\"ijk-EB-dga\">\n                                                            <items>\n                                                                <menuItem title=\"Use Default\" id=\"3Om-Ey-2VK\">\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                    <connections>\n                                                                        <action selector=\"unscript:\" target=\"Ady-hI-5gd\" id=\"0vZ-95-Ywn\"/>\n                                                                    </connections>\n                                                                </menuItem>\n                                                                <menuItem title=\"Superscript\" id=\"Rqc-34-cIF\">\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                    <connections>\n                                                                        <action selector=\"superscript:\" target=\"Ady-hI-5gd\" id=\"3qV-fo-wpU\"/>\n                                                                    </connections>\n                                                                </menuItem>\n                                                                <menuItem title=\"Subscript\" id=\"I0S-gh-46l\">\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                    <connections>\n                                                                        <action selector=\"subscript:\" target=\"Ady-hI-5gd\" id=\"Q6W-4W-IGz\"/>\n                                                                    </connections>\n                                                                </menuItem>\n                                                                <menuItem title=\"Raise\" id=\"2h7-ER-AoG\">\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                    <connections>\n                                                                        <action selector=\"raiseBaseline:\" target=\"Ady-hI-5gd\" id=\"4sk-31-7Q9\"/>\n                                                                    </connections>\n                                                                </menuItem>\n                                                                <menuItem title=\"Lower\" id=\"1tx-W0-xDw\">\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                    <connections>\n                                                                        <action selector=\"lowerBaseline:\" target=\"Ady-hI-5gd\" id=\"OF1-bc-KW4\"/>\n                                                                    </connections>\n                                                                </menuItem>\n                                                            </items>\n                                                        </menu>\n                                                    </menuItem>\n                                                    <menuItem isSeparatorItem=\"YES\" id=\"Ndw-q3-faq\"/>\n                                                    <menuItem title=\"Show Colors\" keyEquivalent=\"C\" id=\"bgn-CT-cEk\">\n                                                        <connections>\n                                                            <action selector=\"orderFrontColorPanel:\" target=\"Ady-hI-5gd\" id=\"mSX-Xz-DV3\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem isSeparatorItem=\"YES\" id=\"iMs-zA-UFJ\"/>\n                                                    <menuItem title=\"Copy Style\" keyEquivalent=\"c\" id=\"5Vv-lz-BsD\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\" option=\"YES\" command=\"YES\"/>\n                                                        <connections>\n                                                            <action selector=\"copyFont:\" target=\"Ady-hI-5gd\" id=\"GJO-xA-L4q\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Paste Style\" keyEquivalent=\"v\" id=\"vKC-jM-MkH\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\" option=\"YES\" command=\"YES\"/>\n                                                        <connections>\n                                                            <action selector=\"pasteFont:\" target=\"Ady-hI-5gd\" id=\"JfD-CL-leO\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                </items>\n                                            </menu>\n                                        </menuItem>\n                                        <menuItem title=\"Text\" id=\"Fal-I4-PZk\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <menu key=\"submenu\" title=\"Text\" id=\"d9c-me-L2H\">\n                                                <items>\n                                                    <menuItem title=\"Align Left\" keyEquivalent=\"{\" id=\"ZM1-6Q-yy1\">\n                                                        <connections>\n                                                            <action selector=\"alignLeft:\" target=\"Ady-hI-5gd\" id=\"zUv-R1-uAa\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Center\" keyEquivalent=\"|\" id=\"VIY-Ag-zcb\">\n                                                        <connections>\n                                                            <action selector=\"alignCenter:\" target=\"Ady-hI-5gd\" id=\"spX-mk-kcS\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Justify\" id=\"J5U-5w-g23\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <connections>\n                                                            <action selector=\"alignJustified:\" target=\"Ady-hI-5gd\" id=\"ljL-7U-jND\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Align Right\" keyEquivalent=\"}\" id=\"wb2-vD-lq4\">\n                                                        <connections>\n                                                            <action selector=\"alignRight:\" target=\"Ady-hI-5gd\" id=\"r48-bG-YeY\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem isSeparatorItem=\"YES\" id=\"4s2-GY-VfK\"/>\n                                                    <menuItem title=\"Writing Direction\" id=\"H1b-Si-o9J\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <menu key=\"submenu\" title=\"Writing Direction\" id=\"8mr-sm-Yjd\">\n                                                            <items>\n                                                                <menuItem title=\"Paragraph\" enabled=\"NO\" id=\"ZvO-Gk-QUH\">\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                </menuItem>\n                                                                <menuItem id=\"YGs-j5-SAR\">\n                                                                    <string key=\"title\">\tDefault</string>\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                    <connections>\n                                                                        <action selector=\"makeBaseWritingDirectionNatural:\" target=\"Ady-hI-5gd\" id=\"qtV-5e-UBP\"/>\n                                                                    </connections>\n                                                                </menuItem>\n                                                                <menuItem id=\"Lbh-J2-qVU\">\n                                                                    <string key=\"title\">\tLeft to Right</string>\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                    <connections>\n                                                                        <action selector=\"makeBaseWritingDirectionLeftToRight:\" target=\"Ady-hI-5gd\" id=\"S0X-9S-QSf\"/>\n                                                                    </connections>\n                                                                </menuItem>\n                                                                <menuItem id=\"jFq-tB-4Kx\">\n                                                                    <string key=\"title\">\tRight to Left</string>\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                    <connections>\n                                                                        <action selector=\"makeBaseWritingDirectionRightToLeft:\" target=\"Ady-hI-5gd\" id=\"5fk-qB-AqJ\"/>\n                                                                    </connections>\n                                                                </menuItem>\n                                                                <menuItem isSeparatorItem=\"YES\" id=\"swp-gr-a21\"/>\n                                                                <menuItem title=\"Selection\" enabled=\"NO\" id=\"cqv-fj-IhA\">\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                </menuItem>\n                                                                <menuItem id=\"Nop-cj-93Q\">\n                                                                    <string key=\"title\">\tDefault</string>\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                    <connections>\n                                                                        <action selector=\"makeTextWritingDirectionNatural:\" target=\"Ady-hI-5gd\" id=\"lPI-Se-ZHp\"/>\n                                                                    </connections>\n                                                                </menuItem>\n                                                                <menuItem id=\"BgM-ve-c93\">\n                                                                    <string key=\"title\">\tLeft to Right</string>\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                    <connections>\n                                                                        <action selector=\"makeTextWritingDirectionLeftToRight:\" target=\"Ady-hI-5gd\" id=\"caW-Bv-w94\"/>\n                                                                    </connections>\n                                                                </menuItem>\n                                                                <menuItem id=\"RB4-Sm-HuC\">\n                                                                    <string key=\"title\">\tRight to Left</string>\n                                                                    <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                                    <connections>\n                                                                        <action selector=\"makeTextWritingDirectionRightToLeft:\" target=\"Ady-hI-5gd\" id=\"EXD-6r-ZUu\"/>\n                                                                    </connections>\n                                                                </menuItem>\n                                                            </items>\n                                                        </menu>\n                                                    </menuItem>\n                                                    <menuItem isSeparatorItem=\"YES\" id=\"fKy-g9-1gm\"/>\n                                                    <menuItem title=\"Show Ruler\" id=\"vLm-3I-IUL\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                                        <connections>\n                                                            <action selector=\"toggleRuler:\" target=\"Ady-hI-5gd\" id=\"FOx-HJ-KwY\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Copy Ruler\" keyEquivalent=\"c\" id=\"MkV-Pr-PK5\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\" control=\"YES\" command=\"YES\"/>\n                                                        <connections>\n                                                            <action selector=\"copyRuler:\" target=\"Ady-hI-5gd\" id=\"71i-fW-3W2\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                    <menuItem title=\"Paste Ruler\" keyEquivalent=\"v\" id=\"LVM-kO-fVI\">\n                                                        <modifierMask key=\"keyEquivalentModifierMask\" control=\"YES\" command=\"YES\"/>\n                                                        <connections>\n                                                            <action selector=\"pasteRuler:\" target=\"Ady-hI-5gd\" id=\"cSh-wd-qM2\"/>\n                                                        </connections>\n                                                    </menuItem>\n                                                </items>\n                                            </menu>\n                                        </menuItem>\n                                    </items>\n                                </menu>\n                            </menuItem>\n                            <menuItem title=\"View\" id=\"H8h-7b-M4v\">\n                                <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                <menu key=\"submenu\" title=\"View\" id=\"HyV-fh-RgO\">\n                                    <items>\n                                        <menuItem title=\"Show Toolbar\" keyEquivalent=\"t\" id=\"snW-S8-Cw5\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\" option=\"YES\" command=\"YES\"/>\n                                            <connections>\n                                                <action selector=\"toggleToolbarShown:\" target=\"Ady-hI-5gd\" id=\"BXY-wc-z0C\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Customize Toolbar…\" id=\"1UK-8n-QPP\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <connections>\n                                                <action selector=\"runToolbarCustomizationPalette:\" target=\"Ady-hI-5gd\" id=\"pQI-g3-MTW\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem isSeparatorItem=\"YES\" id=\"hB3-LF-h0Y\"/>\n                                        <menuItem title=\"Show Sidebar\" keyEquivalent=\"s\" id=\"kIP-vf-haE\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\" control=\"YES\" command=\"YES\"/>\n                                            <connections>\n                                                <action selector=\"toggleSidebar:\" target=\"Ady-hI-5gd\" id=\"iwa-gc-5KM\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Enter Full Screen\" keyEquivalent=\"f\" id=\"4J7-dP-txa\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\" control=\"YES\" command=\"YES\"/>\n                                            <connections>\n                                                <action selector=\"toggleFullScreen:\" target=\"Ady-hI-5gd\" id=\"dU3-MA-1Rq\"/>\n                                            </connections>\n                                        </menuItem>\n                                    </items>\n                                </menu>\n                            </menuItem>\n                            <menuItem title=\"Window\" id=\"aUF-d1-5bR\">\n                                <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                <menu key=\"submenu\" title=\"Window\" systemMenu=\"window\" id=\"Td7-aD-5lo\">\n                                    <items>\n                                        <menuItem title=\"Minimize\" keyEquivalent=\"m\" id=\"OY7-WF-poV\">\n                                            <connections>\n                                                <action selector=\"performMiniaturize:\" target=\"Ady-hI-5gd\" id=\"VwT-WD-YPe\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem title=\"Zoom\" id=\"R4o-n2-Eq4\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <connections>\n                                                <action selector=\"performZoom:\" target=\"Ady-hI-5gd\" id=\"DIl-cC-cCs\"/>\n                                            </connections>\n                                        </menuItem>\n                                        <menuItem isSeparatorItem=\"YES\" id=\"eu3-7i-yIM\"/>\n                                        <menuItem title=\"Bring All to Front\" id=\"LE2-aR-0XJ\">\n                                            <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                            <connections>\n                                                <action selector=\"arrangeInFront:\" target=\"Ady-hI-5gd\" id=\"DRN-fu-gQh\"/>\n                                            </connections>\n                                        </menuItem>\n                                    </items>\n                                </menu>\n                            </menuItem>\n                            <menuItem title=\"Help\" id=\"wpr-3q-Mcd\">\n                                <modifierMask key=\"keyEquivalentModifierMask\"/>\n                                <menu key=\"submenu\" title=\"Help\" systemMenu=\"help\" id=\"F2S-fz-NVQ\">\n                                    <items>\n                                        <menuItem title=\"RectangleLauncher Help\" keyEquivalent=\"?\" id=\"FKE-Sm-Kum\">\n                                            <connections>\n                                                <action selector=\"showHelp:\" target=\"Ady-hI-5gd\" id=\"y7X-2Q-9no\"/>\n                                            </connections>\n                                        </menuItem>\n                                    </items>\n                                </menu>\n                            </menuItem>\n                        </items>\n                    </menu>\n                    <connections>\n                        <outlet property=\"delegate\" destination=\"Voe-Tx-rLC\" id=\"PrD-fu-P6m\"/>\n                    </connections>\n                </application>\n                <customObject id=\"Voe-Tx-rLC\" customClass=\"AppDelegate\" customModule=\"RectangleLauncher\" customModuleProvider=\"target\"/>\n                <customObject id=\"YLy-65-1bz\" customClass=\"NSFontManager\"/>\n                <customObject id=\"Ady-hI-5gd\" userLabel=\"First Responder\" customClass=\"NSResponder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"75\" y=\"0.0\"/>\n        </scene>\n    </scenes>\n</document>\n"
  },
  {
    "path": "RectangleLauncher/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>CFBundleDevelopmentRegion</key>\n\t<string>$(DEVELOPMENT_LANGUAGE)</string>\n\t<key>CFBundleExecutable</key>\n\t<string>$(EXECUTABLE_NAME)</string>\n\t<key>CFBundleIconFile</key>\n\t<string></string>\n\t<key>CFBundleIdentifier</key>\n\t<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>\n\t<key>CFBundleInfoDictionaryVersion</key>\n\t<string>6.0</string>\n\t<key>CFBundleName</key>\n\t<string>$(PRODUCT_NAME)</string>\n\t<key>CFBundlePackageType</key>\n\t<string>APPL</string>\n\t<key>CFBundleShortVersionString</key>\n\t<string>1.0</string>\n\t<key>CFBundleVersion</key>\n\t<string>1</string>\n\t<key>LSApplicationCategoryType</key>\n\t<string>public.app-category.utilities</string>\n\t<key>LSBackgroundOnly</key>\n\t<true/>\n\t<key>LSMinimumSystemVersion</key>\n\t<string>$(MACOSX_DEPLOYMENT_TARGET)</string>\n\t<key>NSHumanReadableCopyright</key>\n\t<string>Copyright © 2019 Ryan Hanson. All rights reserved.</string>\n\t<key>NSMainStoryboardFile</key>\n\t<string>Main</string>\n\t<key>NSPrincipalClass</key>\n\t<string>NSApplication</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "RectangleLauncher/RectangleLauncher.entitlements",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict/>\n</plist>\n"
  },
  {
    "path": "RectangleLauncher/RectangleLauncherRelease.entitlements",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>com.apple.security.app-sandbox</key>\n\t<true/>\n</dict>\n</plist>\n"
  },
  {
    "path": "RectangleLauncher/mul.lproj/Main.xcstrings",
    "content": "{\n  \"sourceLanguage\" : \"en\",\n  \"strings\" : {\n    \"1b7-l0-nxx.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Find\\\"; ObjectID = \\\"1b7-l0-nxx\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"بحث\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hledat\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Suchen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Find\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Temukan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rasti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Finn\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Finn\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buscar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Encontrar\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hľadať\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tìm kiếm\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"查找\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"尋找\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"尋找\"\n          }\n        }\n      }\n    },\n    \"1tx-W0-xDw.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Lower\\\"; ObjectID = \\\"1tx-W0-xDw\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تخفيض\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lower\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lower\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Snížit\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Verringern\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Lower\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lower\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lower\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lower\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Turunkan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lower\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lower\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lower\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sumažinti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Senk\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lower\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Senk\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lower\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Inferior\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baixar\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lower\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lower\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Znížiť\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lower\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lower\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lower\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nhỏ lại\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"降低\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"調低\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"調低\"\n          }\n        }\n      }\n    },\n    \"1UK-8n-QPP.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Customize Toolbar…\\\"; ObjectID = \\\"1UK-8n-QPP\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تخصيص شريط الأدوات...\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Customize Toolbar…\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Customize Toolbar…\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Upravit panel nástrojů…\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Werkzeugleiste anpassen…\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Customize Toolbar…\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Customize Toolbar…\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Customize Toolbar…\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Customize Toolbar…\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sesuaikan Bilah Alat…\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Customize Toolbar…\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Customize Toolbar…\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Customize Toolbar…\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pritaikyti įrankių juostą…\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tilpass verktøyfeltet…\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Customize Toolbar…\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tilpass verktøyfeltet…\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Customize Toolbar…\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Personalizar barra de ferramentas…\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Personalizar Toolbar…\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Customize Toolbar…\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Customize Toolbar…\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Upraviť panel nástrojov…\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Customize Toolbar…\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Customize Toolbar…\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Customize Toolbar…\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tùy biến thanh công cụ...\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"自定义工具栏…\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"自訂工具列⋯\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"自訂工具列⋯\"\n          }\n        }\n      }\n    },\n    \"1Xt-HY-uBw.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"RectangleLauncher\\\"; ObjectID = \\\"1Xt-HY-uBw\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"مشغل المستطيل\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        }\n      }\n    },\n    \"2h7-ER-AoG.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Raise\\\"; ObjectID = \\\"2h7-ER-AoG\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"رفع\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Raise\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Raise\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zvýšit\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Erhöhen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Raise\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Raise\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Raise\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Raise\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Naikkan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Raise\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Raise\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Raise\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Padidinti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hev\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Raise\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hev\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Raise\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Levantar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Subir\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Raise\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Raise\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zvýšiť\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Raise\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Raise\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Raise\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tăng lên\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"升高\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"提高\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"提高\"\n          }\n        }\n      }\n    },\n    \"2oI-Rn-ZJC.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Transformations\\\"; ObjectID = \\\"2oI-Rn-ZJC\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"التحويلات\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformations\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformations\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Proměny\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Umwandlungen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Transformations\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformations\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformations\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformations\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformasi\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformations\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformations\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformations\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformacijos\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Endre bokstavtype\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformations\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Endre bokstavtype\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformations\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformações\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformações\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformations\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformations\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Premeny\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformations\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformations\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformations\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Biến đổi\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"转换\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"轉換\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"轉換\"\n          }\n        }\n      }\n    },\n    \"3IN-sU-3Bg.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Spelling\\\"; ObjectID = \\\"3IN-sU-3Bg\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"الإملائي\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spelling\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spelling\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pravopis\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rechtschreibung\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Spelling\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spelling\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spelling\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spelling\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ejaan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spelling\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spelling\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spelling\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rašyba\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stavekontroll\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spelling\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stavekontroll\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spelling\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ortografia\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ortografia\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spelling\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spelling\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pravopis\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spelling\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spelling\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spelling\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Chính tả\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"拼写\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"拼字\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"串字\"\n          }\n        }\n      }\n    },\n    \"3Om-Ey-2VK.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Use Default\\\"; ObjectID = \\\"3Om-Ey-2VK\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"استخدام الافتراضي\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Výchozí\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Benutze Standard\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gunakan Bawaan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Naudoti numatytąjį\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk standard\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk standard\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usar Padrão\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usar Padrão\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Predvolené\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sử dụng mặc định\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"使用默认值\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"使用預設值\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"使用預設值\"\n          }\n        }\n      }\n    },\n    \"3rS-ZA-NoH.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Speech\\\"; ObjectID = \\\"3rS-ZA-NoH\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"النطق\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Speech\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Speech\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Řeč\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sprache\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Speech\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Speech\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Speech\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Speech\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bicara\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Speech\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Speech\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Speech\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kalba\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tale\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Speech\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tale\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Speech\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Voz\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fala\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Speech\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Speech\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Reč\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Speech\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Speech\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Speech\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nói\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"语音\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"語音\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"語音\"\n          }\n        }\n      }\n    },\n    \"4EN-yA-p0u.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Find\\\"; ObjectID = \\\"4EN-yA-p0u\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"بحث\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hledat\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Suchen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Find\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Temukan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rasti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Finn\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Finn\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buscar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Encontrar\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hľadať\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tìm kiếm\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"查找\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"尋找\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"尋找\"\n          }\n        }\n      }\n    },\n    \"4J7-dP-txa.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Enter Full Screen\\\"; ObjectID = \\\"4J7-dP-txa\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"دخول وضع ملء الشاشة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Enter Full Screen\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Enter Full Screen\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spustit režim celé obrazovky\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zu Vollbild wechseln\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Enter Full Screen\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Enter Full Screen\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Enter Full Screen\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Enter Full Screen\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Masuk Layar Penuh\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Enter Full Screen\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Enter Full Screen\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Enter Full Screen\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Įeiti į viso ekrano režimą\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gå til fullskjerm\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Enter Full Screen\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gå til fullskjerm\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Enter Full Screen\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Entrar em tela cheia\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Entrar em Ecrã Inteiro\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Enter Full Screen\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Enter Full Screen\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spustiť režim celej obrazovky\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Enter Full Screen\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Enter Full Screen\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Enter Full Screen\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Toàn màn hình\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"进入全屏幕\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"進入全螢幕\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"進入全螢幕\"\n          }\n        }\n      }\n    },\n    \"4sb-4s-VLi.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Quit RectangleLauncher\\\"; ObjectID = \\\"4sb-4s-VLi\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"إنهاء تشغيل مشغل المستطيل\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quit RectangleLauncher\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quit RectangleLauncher\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ukončit RectangleLauncher\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher Schließen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Quit RectangleLauncher\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quit RectangleLauncher\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quit RectangleLauncher\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quit RectangleLauncher\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Keluar RectangleLauncher\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quit RectangleLauncher\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quit RectangleLauncher\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quit RectangleLauncher\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Išeiti iš RectangleLauncher\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Avslutt RectangleLauncher\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quit RectangleLauncher\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Avslutt RectangleLauncher\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quit RectangleLauncher\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fechar RectangleLauncher\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sair do RectangleLauncher\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quit RectangleLauncher\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quit RectangleLauncher\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ukončiť RectangleLauncher\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quit RectangleLauncher\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quit RectangleLauncher\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Quit RectangleLauncher\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Thoát RectangleLauncher\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"退出RectangleLauncher\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"結束RectangleLauncher\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"結束RectangleLauncher\"\n          }\n        }\n      }\n    },\n    \"5kV-Vb-QxS.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"About RectangleLauncher\\\"; ObjectID = \\\"5kV-Vb-QxS\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"حول مشغل المستطيل\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"About RectangleLauncher\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"About RectangleLauncher\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"O aplikaci RectangleLauncher\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Über RectangleLauncher\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"About RectangleLauncher\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"About RectangleLauncher\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"About RectangleLauncher\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"About RectangleLauncher\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tentang RectangleLauncher\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"About RectangleLauncher\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"About RectangleLauncher\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"About RectangleLauncher\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Apie RectangleLauncher\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Om RectangleLauncher\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"About RectangleLauncher\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Om RectangleLauncher\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"About RectangleLauncher\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sobre o RectangleLauncher\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sobre o RectangleLauncher\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"About RectangleLauncher\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"About RectangleLauncher\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"O aplikácii RectangleLauncher\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"About RectangleLauncher\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"About RectangleLauncher\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"About RectangleLauncher\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Giới thiệu RectangleLauncher\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"关于RectangleLauncher\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"關於RectangleLauncher\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"關於RectangleLauncher\"\n          }\n        }\n      }\n    },\n    \"5QF-Oa-p0T.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Edit\\\"; ObjectID = \\\"5QF-Oa-p0T\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تحرير\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edit\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edit\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Upravit\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bearbeiten\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Edit\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edit\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edit\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edit\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sunting\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edit\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edit\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edit\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Redaguoti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rediger\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edit\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rediger\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edit\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Editar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Editar\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edit\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edit\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Upraviť\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edit\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edit\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edit\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Chỉnh sửa\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"编辑\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"編輯\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"編輯\"\n          }\n        }\n      }\n    },\n    \"5Vv-lz-BsD.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Copy Style\\\"; ObjectID = \\\"5Vv-lz-BsD\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"نسخ النمط\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy Style\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy Style\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kopírovat styl\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kopiere Stil\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Copy Style\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy Style\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy Style\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy Style\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Salin Gaya\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy Style\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy Style\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy Style\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kopijuoti stilių\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kopier stil\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy Style\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kopier stil\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy Style\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copiar estilo\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copiar Estilo\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy Style\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy Style\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kopírovať štýl\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy Style\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy Style\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy Style\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sao chép kiểu\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"拷贝样式\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"拷貝樣式\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"拷貝樣式\"\n          }\n        }\n      }\n    },\n    \"6dh-zS-Vam.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Redo\\\"; ObjectID = \\\"6dh-zS-Vam\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"إعادة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Redo\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Redo\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Znovu\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Wiederholen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Redo\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Redo\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Redo\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Redo\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Balikkan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Redo\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Redo\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Redo\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Atstatyti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gjør på nytt\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Redo\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gjer på nytt\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Redo\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Refazer\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Refazer\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Redo\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Redo\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Znovu\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Redo\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Redo\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Redo\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lặp lại hoàn tác\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"重做\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"重做\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"重做\"\n          }\n        }\n      }\n    },\n    \"8mr-sm-Yjd.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Writing Direction\\\"; ObjectID = \\\"8mr-sm-Yjd\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"اتجاه الكتابة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Writing Direction\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Writing Direction\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Směr textu\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Schreibrichtung\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Writing Direction\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Writing Direction\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Writing Direction\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Writing Direction\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Arah Penulisan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Writing Direction\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Writing Direction\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Writing Direction\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rašymo kryptis\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skriveretning\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Writing Direction\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skriveretning\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Writing Direction\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Direção de escrita\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Direção de Escrita\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Writing Direction\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Writing Direction\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smer textu\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Writing Direction\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Writing Direction\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Writing Direction\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hướng viết\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"书写方向\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"書寫方向\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"書寫方向\"\n          }\n        }\n      }\n    },\n    \"9ic-FL-obx.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Substitutions\\\"; ObjectID = \\\"9ic-FL-obx\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"البدائل\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substitutions\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substitutions\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Náhrady\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ersetzungen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Substitutions\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substitutions\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substitutions\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substitutions\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Penggantian\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substitutions\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substitutions\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substitutions\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pakeitimai\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Teksterstatninger\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substitutions\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Teksterstatningar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substitutions\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substituições\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substituições\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substitutions\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substitutions\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Náhrady\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substitutions\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substitutions\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substitutions\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Thay thế\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"替换\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"替代\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"替代項目\"\n          }\n        }\n      }\n    },\n    \"9yt-4B-nSM.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Smart Copy/Paste\\\"; ObjectID = \\\"9yt-4B-nSM\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"النسخ الذكي/اللصق\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Copy/Paste\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Copy/Paste\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Chytré kopírování/vložení\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smartes Kopieren/Einfügen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Smart Copy/Paste\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Copy/Paste\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Copy/Paste\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Copy/Paste\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Salin/Tempel Pintar\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Copy/Paste\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Copy/Paste\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Copy/Paste\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Protingas kopijavimas/įklijavimas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart kopi/lim inn\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Copy/Paste\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart kopi/lim inn\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Copy/Paste\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copiar/Colar Inteligente\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copiar/Colar Inteligente\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Copy/Paste\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Copy/Paste\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Chytré kopírovanie/vloženie\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Copy/Paste\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Copy/Paste\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Copy/Paste\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sao chép/dán thông minh\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"智能拷贝/粘贴\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"智慧型拷貝/貼上\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"智慧型複製/貼上\"\n          }\n        }\n      }\n    },\n    \"46P-cB-AYj.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Tighten\\\"; ObjectID = \\\"46P-cB-AYj\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تضييق\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tighten\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tighten\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Těsnější\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Verengen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Tighten\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tighten\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tighten\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tighten\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kencangkan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tighten\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tighten\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tighten\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sutvirtinti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Knip\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tighten\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Knip\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tighten\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Apertar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Apertar\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tighten\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tighten\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tesnejšie\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tighten\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tighten\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tighten\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Căng\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"紧排\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"緊密\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"緊密\"\n          }\n        }\n      }\n    },\n    \"78Y-hA-62v.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Correct Spelling Automatically\\\"; ObjectID = \\\"78Y-hA-62v\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"التصحيح التلقائي للإملاء\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Correct Spelling Automatically\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Correct Spelling Automatically\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Automatická kontrola pravopisu\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Schreibweise automatisch korrigieren\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Correct Spelling Automatically\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Correct Spelling Automatically\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Correct Spelling Automatically\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Correct Spelling Automatically\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Perbaiki Ejaan Secara Otomatis\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Correct Spelling Automatically\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Correct Spelling Automatically\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Correct Spelling Automatically\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Automatiškai taisyti rašybą\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Korriger stavemåte automatisk\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Correct Spelling Automatically\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Korriger stavemåte automatisk\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Correct Spelling Automatically\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Correção ortográfica automática\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Corrigir Erros Ortográficos Automaticamente\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Correct Spelling Automatically\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Correct Spelling Automatically\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Automatická kontrola pravopisu\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Correct Spelling Automatically\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Correct Spelling Automatically\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Correct Spelling Automatically\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tự động sửa lỗi chính tả\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"自动纠正拼写\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"自動修正拼字\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"自動更正串字\"\n          }\n        }\n      }\n    },\n    \"agt-UL-0e3.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Use Default\\\"; ObjectID = \\\"agt-UL-0e3\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"استخدام الافتراضي\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Výchozí\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Benutze Standard\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gunakan Bawaan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Naudoti numatytąjį\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk standard\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk standard\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usar padrão\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usar Padrão\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Predvolené\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sử dụng mặc định\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"使用默认值\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"使用預設值\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"使用預設值\"\n          }\n        }\n      }\n    },\n    \"aTl-1u-JFS.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Print…\\\"; ObjectID = \\\"aTl-1u-JFS\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"طباعة...\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Print…\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Print…\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tisknout…\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Drucken…\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Print…\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Print…\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Print…\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Print…\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cetak…\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Print…\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Print…\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Print…\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spausdinti…\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skriv ut…\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Print…\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skriv ut…\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Print…\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Imprimir…\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Imprimir…\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Print…\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Print…\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tlačiť…\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Print…\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Print…\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Print…\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"In…\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"打印…\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"列印⋯\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"列印⋯\"\n          }\n        }\n      }\n    },\n    \"aUF-d1-5bR.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Window\\\"; ObjectID = \\\"aUF-d1-5bR\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"النافذة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Window\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Window\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Okno\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fenster\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Window\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Window\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Window\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Window\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jendela\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Window\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Window\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Window\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Langas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vindu\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Window\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vindauge\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Window\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Janela\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Janela\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Window\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Window\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Okno\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Window\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Window\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Window\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cửa sổ\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"窗口\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"視窗\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"視窗\"\n          }\n        }\n      }\n    },\n    \"aXa-aM-Jaq.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Font\\\"; ObjectID = \\\"aXa-aM-Jaq\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"خط\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Písmo\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Schriftart\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jenis Huruf\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Šriftas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fonte\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tipo de Letra\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Písmo\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"字体\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"字體\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"字體\"\n          }\n        }\n      }\n    },\n    \"AYu-sK-qS6.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Main Menu\\\"; ObjectID = \\\"AYu-sK-qS6\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"القائمة الرئيسية\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Main Menu\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Main Menu\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hlavní menu\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hauptmenu\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Main Menu\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Main Menu\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Main Menu\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Main Menu\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Menu Utama\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Main Menu\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Main Menu\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Main Menu\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pagrindinis meniu\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hovedmeny\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Main Menu\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hovudmeny\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Main Menu\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Menu Principal\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Menu Principal\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Main Menu\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Main Menu\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hlavné menu\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Main Menu\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Main Menu\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Main Menu\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Menu chính\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"主菜单\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"主選單\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"主選單\"\n          }\n        }\n      }\n    },\n    \"BgM-ve-c93.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"\\\\tLeft to Right\\\"; ObjectID = \\\"BgM-ve-c93\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tمن اليسار إلى اليمين\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tLeft to Right\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tLeft to Right\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tZleva doprava\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tLinks nach rechts\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"\\tLeft to Right\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tLeft to Right\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tLeft to Right\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tLeft to Right\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tKiri ke Kanan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tLeft to Right\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tLeft to Right\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tLeft to Right\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tIš kairės į dešinę\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tVenstre til høgre\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tLeft to Right\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tVenstre til høgre\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tLeft to Right\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDa esquerda para a direita\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDa Esquerda para a Direita\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tLeft to Right\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tLeft to Right\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tZľava doprava\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tLeft to Right\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tLeft to Right\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tLeft to Right\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Trái qua phải\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\t从左到右\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\t由左至右\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\t由左至右\"\n          }\n        }\n      }\n    },\n    \"bgn-CT-cEk.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Show Colors\\\"; ObjectID = \\\"bgn-CT-cEk\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"إظهار الألوان\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Colors\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Colors\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zobrazit barvy\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zeige Farben\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Show Colors\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Colors\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Colors\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Colors\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tampilkan Warna\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Colors\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Colors\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Colors\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rodyti spalvas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis farger\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Colors\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis fargar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Colors\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar cores\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar Cores\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Colors\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Colors\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zobraziť farby\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Colors\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Colors\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Colors\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hiển thị màu\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"显示颜色\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"顯示顏色\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"顯示顏色\"\n          }\n        }\n      }\n    },\n    \"bib-Uj-vzu.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"File\\\"; ObjectID = \\\"bib-Uj-vzu\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ملف\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"File\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"File\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Soubor\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Datei\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"File\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"File\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"File\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"File\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Berkas\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"File\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"File\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"File\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Failas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Arkiv\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"File\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Arkiv\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"File\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Arquivo\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ficheiro\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"File\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"File\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Súbor\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"File\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"File\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"File\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tệp\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"文件\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"檔案\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"檔案\"\n          }\n        }\n      }\n    },\n    \"BOF-NM-1cW.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Preferences…\\\"; ObjectID = \\\"BOF-NM-1cW\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"التفضيلات...\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Preferences…\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Preferences…\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Předvolby…\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Einstellungen…\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Preferences…\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Preferences…\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Preferences…\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Preferences…\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Preferensi…\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Preferences…\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Preferences…\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Preferences…\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nuostatos…\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Innstillinger…\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Preferences…\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Innstillingar…\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Preferences…\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Preferências…\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Preferências…\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Preferences…\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Preferences…\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Predvoľby…\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Preferences…\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Preferences…\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Preferences…\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cài đặt…\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"偏好设置…\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"偏好設定⋯\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"偏好設定⋯\"\n          }\n        }\n      }\n    },\n    \"buJ-ug-pKt.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Use Selection for Find\\\"; ObjectID = \\\"buJ-ug-pKt\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"استخدام التحديد للبحث\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Selection for Find\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Selection for Find\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hledat výběr\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nutze Auswahl zum Suchen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Use Selection for Find\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Selection for Find\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Selection for Find\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Selection for Find\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gunakan Pilihan untuk Temukan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Selection for Find\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Selection for Find\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Selection for Find\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Naudoti pasirinkimą paieškai\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk utvalg for å finne\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Selection for Find\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk utval for å finna\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Selection for Find\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usar seleção para buscar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Encontrar Seleção\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Selection for Find\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Selection for Find\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hľadať výber\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Selection for Find\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Selection for Find\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Selection for Find\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tìm bằng bằng lựa chọn\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"查找所选内容\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"使用所選範圍尋找\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"使用所選範圍尋找\"\n          }\n        }\n      }\n    },\n    \"Bw7-FT-i3A.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Save As…\\\"; ObjectID = \\\"Bw7-FT-i3A\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"حفظ باسم...\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Save As…\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Save As…\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Uložit jako…\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Speichern als…\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Save As…\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Save As…\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Save As…\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Save As…\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Simpan Sebagai…\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Save As…\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Save As…\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Save As…\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Išsaugoti kaip…\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lagre som…\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Save As…\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lagre som…\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Save As…\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Salvar Como…\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Guardar Como…\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Save As…\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Save As…\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Uložiť ako…\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Save As…\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Save As…\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Save As…\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lưu như…\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"存储为…\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"儲存為⋯\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"儲存為…\"\n          }\n        }\n      }\n    },\n    \"c8a-y6-VQd.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Transformations\\\"; ObjectID = \\\"c8a-y6-VQd\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"التحويلات\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformations\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformations\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformace\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Umwandlungen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Transformations\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformations\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformations\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformations\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformasi\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformations\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformations\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformations\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformacijos\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Endre bokstavtype\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformations\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Endre bokstavtype\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformations\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformações\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformações\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformations\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformations\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformácia\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformations\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformations\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Transformations\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Biến đổi\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"转换\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"轉換\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"轉換\"\n          }\n        }\n      }\n    },\n    \"cDB-IK-hbR.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Use None\\\"; ObjectID = \\\"cDB-IK-hbR\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"عدم الاستخدام\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use None\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use None\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Žádné\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nutze nichts\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Use None\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use None\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use None\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use None\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tidak Gunakan Apapun\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use None\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use None\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use None\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nenaudoti jokių\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk ingen\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use None\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk ingen\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use None\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usar nenhum\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nenhum\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use None\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use None\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Žiadne\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use None\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use None\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use None\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Không sử dụng\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"都不使用\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"不使用\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"不使用\"\n          }\n        }\n      }\n    },\n    \"cqv-fj-IhA.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Selection\\\"; ObjectID = \\\"cqv-fj-IhA\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"التحديد\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Selection\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Selection\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Výběr\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Auswahl\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Selection\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Selection\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Selection\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Selection\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pilihan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Selection\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Selection\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Selection\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pasirinkimas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Utvalg\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Selection\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Utval\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Selection\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Seleção\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Seleção\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Selection\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Selection\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Výber\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Selection\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Selection\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Selection\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lựa chọn\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"所选内容\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"所選範圍\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"所選範圍\"\n          }\n        }\n      }\n    },\n    \"cwL-P1-jid.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Smart Links\\\"; ObjectID = \\\"cwL-P1-jid\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"روابط ذكية\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Links\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Links\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Chytré odkazy\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smarte Verlinkungen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Smart Links\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Links\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Links\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Links\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tautan Cerdas\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Links\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Links\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Links\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Protingos nuorodos\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smarte lenker\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Links\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smarte lenker\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Links\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Links Inteligentes\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Links Inteligentes\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Links\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Links\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Chytré odkazy\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Links\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Links\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Links\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Đường dẫn thông minh\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"智能链接\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"智慧型連結\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"智慧型連結\"\n          }\n        }\n      }\n    },\n    \"d9c-me-L2H.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Text\\\"; ObjectID = \\\"d9c-me-L2H\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"النص\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Teks\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tekstas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tekst\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tekst\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Texto\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Texto\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Văn bản\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"文本\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"文字\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"文字\"\n          }\n        }\n      }\n    },\n    \"d9M-CD-aMd.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Make Lower Case\\\"; ObjectID = \\\"d9M-CD-aMd\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"جعل الحروف الصغيرة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Make Lower Case\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Make Lower Case\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Převést na malá písmena\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Konvertiere zu Kleinschrift\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Make Lower Case\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Make Lower Case\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Make Lower Case\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Make Lower Case\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buat Huruf Kecil\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Make Lower Case\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Make Lower Case\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Make Lower Case\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paversti mažosiomis raidėmis\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk små bokstaver\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Make Lower Case\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk små bokstavar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Make Lower Case\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Converter em Minúsculas\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minúsculas\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Make Lower Case\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Make Lower Case\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Previesť na malé písmená\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Make Lower Case\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Make Lower Case\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Make Lower Case\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"In thường\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"变为小写\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"小寫\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"小寫\"\n          }\n        }\n      }\n    },\n    \"dMs-cI-mzQ.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"File\\\"; ObjectID = \\\"dMs-cI-mzQ\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"ملف\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"File\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"File\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Soubor\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Datei\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"File\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"File\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"File\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"File\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Berkas\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"File\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"File\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"File\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Failas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Arkiv\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"File\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Arkiv\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"File\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Arquivo\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ficheiro\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"File\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"File\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Súbor\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"File\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"File\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"File\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tệp\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"文件\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"檔案\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"檔案\"\n          }\n        }\n      }\n    },\n    \"dRJ-4n-Yzg.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Undo\\\"; ObjectID = \\\"dRJ-4n-Yzg\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تراجع\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Undo\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Undo\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zpět\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rückgängig machen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Undo\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Undo\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Undo\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Undo\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Balikkan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Undo\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Undo\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Undo\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Atšaukti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Angre\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Undo\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Angre\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Undo\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Desfazer\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Desfazer\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Undo\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Undo\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Späť\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Undo\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Undo\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Undo\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hoàn tác\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"撤销\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"還原\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"還原\"\n          }\n        }\n      }\n    },\n    \"Dv1-io-Yv7.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Spelling and Grammar\\\"; ObjectID = \\\"Dv1-io-Yv7\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"الإملائي والنحو\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spelling and Grammar\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spelling and Grammar\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pravopis a gramatika\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rechtschreibung und Grammatik\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Spelling and Grammar\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spelling and Grammar\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spelling and Grammar\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spelling and Grammar\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ejaan dan Tata Bahasa\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spelling and Grammar\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spelling and Grammar\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spelling and Grammar\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rašyba ir gramatika\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stavekontroll og grammatikk\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spelling and Grammar\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stavekontroll og grammatikk\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spelling and Grammar\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ortografia e Gramática\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ortografia e Gramática\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spelling and Grammar\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spelling and Grammar\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pravopis a gramatika\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spelling and Grammar\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spelling and Grammar\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Spelling and Grammar\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Chính tả và ngữ pháp\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"拼写和语法\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"拼字和文法檢查\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"串字與文法檢查\"\n          }\n        }\n      }\n    },\n    \"DVo-aG-piG.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Close\\\"; ObjectID = \\\"DVo-aG-piG\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"إغلاق\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Close\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Close\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zavřít\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Schließen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Close\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Close\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Close\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Close\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tutup\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Close\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Close\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Close\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Uždaryti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lukk\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Close\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lat att\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Close\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fechar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fechar\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Close\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Close\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zavrieť\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Close\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Close\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Close\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Đóng\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"关闭\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"關閉\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"關閉\"\n          }\n        }\n      }\n    },\n    \"F2S-fz-NVQ.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Help\\\"; ObjectID = \\\"F2S-fz-NVQ\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"المساعدة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Help\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Help\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nápověda\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hilfe\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Help\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Help\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Help\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Help\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bantuan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Help\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Help\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Help\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pagalba\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hjelp\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Help\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hjelp\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Help\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ajuda\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ajuda\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Help\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Help\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nápoveda\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Help\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Help\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Help\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Trợ giúp\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"帮助\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"輔助說明\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"輔助說明\"\n          }\n        }\n      }\n    },\n    \"Fal-I4-PZk.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Text\\\"; ObjectID = \\\"Fal-I4-PZk\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"النص\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Teks\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tekstas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tekst\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tekst\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Texto\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Texto\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Văn bản\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"文本\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"文字\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"文字\"\n          }\n        }\n      }\n    },\n    \"FeM-D8-WVr.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Substitutions\\\"; ObjectID = \\\"FeM-D8-WVr\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"البدائل\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substitutions\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substitutions\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Záměny\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ersetzungen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Substitutions\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substitutions\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substitutions\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substitutions\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Penggantian\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substitutions\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substitutions\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substitutions\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pakeitimai\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Teksterstatninger\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substitutions\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Teksterstatningar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substitutions\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substituições\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substituições\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substitutions\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substitutions\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zámeny\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substitutions\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substitutions\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substitutions\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Thay thế\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"替换\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"替代\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"替代項目\"\n          }\n        }\n      }\n    },\n    \"FKE-Sm-Kum.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"RectangleLauncher Help\\\"; ObjectID = \\\"FKE-Sm-Kum\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"مساعدة مشغل المستطيل\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher Help\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher Help\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher nápověda\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher Hilfe\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"RectangleLauncher Help\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher Help\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher Help\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher Help\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bantuan RectangleLauncher\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher Help\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher Help\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher Help\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher pagalba\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher-hjelp\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher Help\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher-hjelp\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher Help\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ajuda do RectangleLauncher\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ajuda do RectangleLauncer\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher Help\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher Help\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher nápoveda\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher Help\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher Help\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher Help\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Trợ giúp của RectangleLauncher\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher帮助\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher輔助說明\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher輔助說明\"\n          }\n        }\n      }\n    },\n    \"GB9-OM-e27.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Bold\\\"; ObjectID = \\\"GB9-OM-e27\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"غامق\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bold\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bold\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tučné\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fettdruck\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Bold\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bold\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bold\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bold\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cetak Tebal\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bold\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bold\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bold\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paryškintas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Halvfeit\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bold\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Halvfeit\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bold\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Negrito\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Negrito\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bold\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bold\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tučné\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bold\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bold\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bold\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"In đậm\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"粗体\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"粗體\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"粗體\"\n          }\n        }\n      }\n    },\n    \"GEO-Iw-cKr.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Format\\\"; ObjectID = \\\"GEO-Iw-cKr\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"التنسيق\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Formát\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Formatas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Formato\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Formato\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Formát\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Định dạng\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"格式\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"格式\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"格式\"\n          }\n        }\n      }\n    },\n    \"Gi5-1S-RQB.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Font\\\"; ObjectID = \\\"Gi5-1S-RQB\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"الخط\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Písmo\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Schriftart\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jenis Huruf\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Šriftas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fonte\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tipo de Letra\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Písmo\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Font\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"字体\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"字體\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"字體\"\n          }\n        }\n      }\n    },\n    \"GUa-eO-cwY.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Use Default\\\"; ObjectID = \\\"GUa-eO-cwY\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"استخدام الافتراضي\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Výchozí\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Benutze Standard\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gunakan Bawaan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Naudoti numatytąjį\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk standard\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk standard\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usar Padrão\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usar Padrão\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Predvolené\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use Default\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sử dụng mặc định\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"使用默认值\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"使用預設值\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"使用預設值\"\n          }\n        }\n      }\n    },\n    \"gVA-U4-sdL.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Paste\\\"; ObjectID = \\\"gVA-U4-sdL\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"لصق\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vložit\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Einfügen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Paste\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tempel\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Įklijuoti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lim inn\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lim inn\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Colar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Colar\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vložiť\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dán\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"粘贴\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"貼上\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"貼上\"\n          }\n        }\n      }\n    },\n    \"H1b-Si-o9J.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Writing Direction\\\"; ObjectID = \\\"H1b-Si-o9J\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"اتجاه الكتابة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Writing Direction\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Writing Direction\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Směr textu\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Schreibrichtung\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Writing Direction\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Writing Direction\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Writing Direction\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Writing Direction\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Arah Penulisan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Writing Direction\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Writing Direction\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Writing Direction\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rašymo kryptis\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skriveretning\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Writing Direction\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skriveretning\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Writing Direction\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Direção de Escrita\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Direção de Escrita\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Writing Direction\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Writing Direction\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smer textu\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Writing Direction\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Writing Direction\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Writing Direction\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hướng viết\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"书写方向\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"書寫方向\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"書寫方向\"\n          }\n        }\n      }\n    },\n    \"H8h-7b-M4v.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"View\\\"; ObjectID = \\\"H8h-7b-M4v\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"عرض\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"View\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"View\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zobrazit\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Anzeigen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"View\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"View\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"View\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"View\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tampilan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"View\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"View\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"View\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rodyti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"View\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"View\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Visualizar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ver\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"View\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"View\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zobraziť\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"View\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"View\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"View\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Xem\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"显示\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"顯示方式\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"顯示方式\"\n          }\n        }\n      }\n    },\n    \"HFo-cy-zxI.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Show Spelling and Grammar\\\"; ObjectID = \\\"HFo-cy-zxI\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"إظهار الإملائي والنحو\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Spelling and Grammar\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Spelling and Grammar\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zobrazit pravopis a gramatiku\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rechtschreibung und Grammatik anzeigen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Show Spelling and Grammar\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Spelling and Grammar\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Spelling and Grammar\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Spelling and Grammar\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tampilkan Ejaan dan Tata Bahasa\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Spelling and Grammar\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Spelling and Grammar\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Spelling and Grammar\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rodyti rašybą ir gramatiką\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis stavekontroll og grammatikk\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Spelling and Grammar\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis stavekontroll og grammatikk\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Spelling and Grammar\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar ortografia e gramática\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar Ortografia e Gramática\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Spelling and Grammar\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Spelling and Grammar\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zobraziť pravopis a gramatiku\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Spelling and Grammar\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Spelling and Grammar\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Spelling and Grammar\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hiển thị chính tả và ngữ pháp\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"显示拼写和语法\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"顯示拼字和文法檢查\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"顯示串字與文法檢查\"\n          }\n        }\n      }\n    },\n    \"HFQ-gK-NFA.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Text Replacement\\\"; ObjectID = \\\"HFQ-gK-NFA\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"استبدال النص التلقائي\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text Replacement\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text Replacement\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Náhrada textu\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Textersetzung\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Text Replacement\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text Replacement\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text Replacement\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text Replacement\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Penggantian Teks\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text Replacement\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text Replacement\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text Replacement\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Teksto keitimas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Teksterstatning\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text Replacement\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Teksterstatning\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text Replacement\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substituição de Texto\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Substituição de Texto\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text Replacement\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text Replacement\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Náhrada textu\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text Replacement\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text Replacement\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Text Replacement\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Văn bản thay thế\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"文本替换\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"替代文字\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"文字替代\"\n          }\n        }\n      }\n    },\n    \"hQb-2v-fYv.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Smart Quotes\\\"; ObjectID = \\\"hQb-2v-fYv\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"العلامات الذكية\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Quotes\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Quotes\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Chytré uvozovky\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smarte Zitate\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Smart Quotes\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Quotes\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Quotes\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Quotes\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kutipan Pintar\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Quotes\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Quotes\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Quotes\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Protingos kabutės\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smarte hermetegn\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Quotes\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smarte hermeteikn\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Quotes\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Citações Inteligentes\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Citações Inteligentes\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Quotes\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Quotes\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Chytré úvodzovky\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Quotes\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Quotes\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Quotes\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nháy (kép) thông minh\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"智能引号\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"智慧型引號\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"智慧型引號\"\n          }\n        }\n      }\n    },\n    \"HyV-fh-RgO.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"View\\\"; ObjectID = \\\"HyV-fh-RgO\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"عرض\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"View\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"View\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zobrazit\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Anzeigen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"View\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"View\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"View\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"View\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tampilan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"View\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"View\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"View\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rodyti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"View\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"View\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Visualizar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ver\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"View\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"View\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zobraziť\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"View\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"View\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"View\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Xem\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"显示\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"顯示方式\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"顯示方式\"\n          }\n        }\n      }\n    },\n    \"hz2-CU-CR7.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Check Document Now\\\"; ObjectID = \\\"hz2-CU-CR7\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"التحقق من المستند الآن\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Document Now\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Document Now\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zkontrolovat dokument nyní\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dokument jetzt überprüfen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Check Document Now\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Document Now\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Document Now\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Document Now\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Periksa Dokumen Sekarang\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Document Now\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Document Now\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Document Now\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tikrinti dokumentą dabar\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kontroller dokument nå\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Document Now\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kontroller dokument no\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Document Now\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Verificar documento agora\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Verificar Documento Agora\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Document Now\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Document Now\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skontrolovať dokument teraz\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Document Now\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Document Now\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Document Now\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kiểm tra tài liệu ngay\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"立即检查文稿\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"立即檢查文件\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"立即檢查文件\"\n          }\n        }\n      }\n    },\n    \"hz9-B4-Xy5.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Services\\\"; ObjectID = \\\"hz9-B4-Xy5\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"الخدمات\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Služby\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Layanan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paslaugos\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tjenester\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tenester\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Serviços\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Serviços\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Služby\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dịch vụ\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"服务\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"服務\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"服務\"\n          }\n        }\n      }\n    },\n    \"I0S-gh-46l.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Subscript\\\"; ObjectID = \\\"I0S-gh-46l\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"الرمز السفلي\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Subscript\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Subscript\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dolní index\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tiefgestellt\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Subscript\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Subscript\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Subscript\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Subscript\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Subskrip\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Subscript\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Subscript\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Subscript\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Apatinis indeksas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Senka skrift\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Subscript\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Senka skrift\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Subscript\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Subscrito\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Subscrito\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Subscript\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Subscript\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dolný index\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Subscript\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Subscript\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Subscript\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Chỉ số dưới\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"下标\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"下標\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"下標\"\n          }\n        }\n      }\n    },\n    \"i1d-Er-qST.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Smaller\\\"; ObjectID = \\\"i1d-Er-qST\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"أصغر\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smaller\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smaller\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zmenšit\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kleiner\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Smaller\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smaller\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smaller\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smaller\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lebih Kecil\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smaller\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smaller\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smaller\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mažesnis\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mindre\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smaller\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mindre\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smaller\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Menor\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Menor\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smaller\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smaller\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zmenšiť\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smaller\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smaller\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smaller\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nhỏ hơn\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"较小\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"縮小\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"縮小\"\n          }\n        }\n      }\n    },\n    \"IAo-SY-fd9.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Open…\\\"; ObjectID = \\\"IAo-SY-fd9\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"فتح...\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open…\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open…\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Otevřít…\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Öffnen…\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Open…\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open…\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open…\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open…\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buka…\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open…\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open…\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open…\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Atidaryti…\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Åpne…\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open…\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Opne…\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open…\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Abrir…\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Abrir…\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open…\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open…\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Otvoriť…\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open…\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open…\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open…\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mở…\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"打开…\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"打開⋯\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"開啟⋯\"\n          }\n        }\n      }\n    },\n    \"ijk-EB-dga.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Baseline\\\"; ObjectID = \\\"ijk-EB-dga\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"الخط الأساسي\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baseline\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baseline\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Účaří\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baseline\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Baseline\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baseline\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baseline\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baseline\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Garis Dasar\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baseline\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baseline\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baseline\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pagrindo linija\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skriftlinje\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baseline\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skriftline\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baseline\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Linha de base\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Base de Referência\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baseline\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baseline\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Účiari\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baseline\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baseline\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baseline\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Đường chuẩn\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"基线\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"基線\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"基線\"\n          }\n        }\n      }\n    },\n    \"J5U-5w-g23.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Justify\\\"; ObjectID = \\\"J5U-5w-g23\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تبرير\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Justify\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Justify\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zarovnat do bloku\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Justify\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Justify\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Justify\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Justify\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Justify\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rata Kanan Kiri\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Justify\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Justify\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Justify\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lygiuoti abipusėje\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rette marger\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Justify\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rette margar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Justify\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Justificar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Justify\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Justify\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Justify\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zarovnať do bloku\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Justify\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Justify\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Justify\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Căn đều\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"两端对齐\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"齊行\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左右對齊\"\n          }\n        }\n      }\n    },\n    \"J7y-lM-qPV.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Use None\\\"; ObjectID = \\\"J7y-lM-qPV\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"عدم الاستخدام\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use None\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use None\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Žádné\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Benutze nichts\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Use None\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use None\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use None\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use None\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tidak Gunakan Apapun\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use None\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use None\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use None\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nenaudoti jokių\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk ingen\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use None\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk ingen\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use None\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usar Nenhum\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nenhum\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use None\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use None\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Žiadne\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use None\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use None\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use None\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Không sử dụng\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"都不使用\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"不使用\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"不使用\"\n          }\n        }\n      }\n    },\n    \"jBQ-r6-VK2.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Kern\\\"; ObjectID = \\\"jBQ-r6-VK2\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"كيرن\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rozestupy znaků\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kerningas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Knip\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Knip\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rozostupy znakov\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nét\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"字距调整\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"字元間距\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"字元間距\"\n          }\n        }\n      }\n    },\n    \"jFq-tB-4Kx.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"\\\\tRight to Left\\\"; ObjectID = \\\"jFq-tB-4Kx\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tمن اليمين إلى اليسار\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tRight to Left\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tRight to Left\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tZprava doleva\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tRechts nach links\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"\\tRight to Left\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tRight to Left\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tRight to Left\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tRight to Left\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tKanan ke Kiri\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tRight to Left\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tRight to Left\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tRight to Left\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tIš dešinės į kairę\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tHøgre til venstre\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tRight to Left\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tHøgre til venstre\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tRight to Left\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDa direita para a esquerda\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDa Direita para a Esquerda\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tRight to Left\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tRight to Left\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tSprava doľava\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tRight to Left\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tRight to Left\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tRight to Left\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tPhải sang trái\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\t从右到左\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\t由右至左\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\t由右至左\"\n          }\n        }\n      }\n    },\n    \"jxT-CU-nIS.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Format\\\"; ObjectID = \\\"jxT-CU-nIS\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"التنسيق\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Formátovat\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Formatas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Formato\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Formato\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Formátovať\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Format\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Định dạng\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"格式\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"格式\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"格式\"\n          }\n        }\n      }\n    },\n    \"KaW-ft-85H.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Revert to Saved\\\"; ObjectID = \\\"KaW-ft-85H\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"استعادة المحفوظة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Revert to Saved\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Revert to Saved\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vrátit do uloženého stavu\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zum letzten Speicherstand zurücksetzen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Revert to Saved\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Revert to Saved\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Revert to Saved\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Revert to Saved\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kembalikan ke Simpanan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Revert to Saved\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Revert to Saved\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Revert to Saved\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Grįžti į išsaugotą\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gå tilbake til lagra\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Revert to Saved\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gå attende til lagra\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Revert to Saved\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Descartar alterações\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Restaurar Guardadas\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Revert to Saved\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Revert to Saved\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vrátiť do uloženého stavu\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Revert to Saved\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Revert to Saved\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Revert to Saved\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Trở lại trạng thái đã lưu\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"复原到上次存储的版本\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"回復成上次儲存\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"回復為上次儲存\"\n          }\n        }\n      }\n    },\n    \"Kd2-mp-pUS.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Show All\\\"; ObjectID = \\\"Kd2-mp-pUS\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"إظهار الكل\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show All\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show All\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zobrazit vše\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Alles anzeigen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Show All\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show All\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show All\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show All\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tampilkan Semua\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show All\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show All\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show All\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rodyti viską\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis alle\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show All\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis alle\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show All\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar todos\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar Tudo\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show All\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show All\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zobraziť všetko\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show All\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show All\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show All\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hiển thị tất cả\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"显示所有\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"顯示所有\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"顯示所有\"\n          }\n        }\n      }\n    },\n    \"kIP-vf-haE.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Show Sidebar\\\"; ObjectID = \\\"kIP-vf-haE\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"إظهار الشريط الجانبي\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Sidebar\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Sidebar\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zobrazit postranní panel\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zeige Seitenleiste\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Show Sidebar\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Sidebar\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Sidebar\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Sidebar\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tampilkan Bilah Samping\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Sidebar\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Sidebar\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Sidebar\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rodyti šoninę juostą\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis Sidestolpe\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Sidebar\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis Sidestolpe\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Sidebar\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar barra lateral\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar Barra Lateral\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Sidebar\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Sidebar\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zobraziť bočný panel\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Sidebar\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Sidebar\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Sidebar\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hiển thị thanh bên\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"显示侧边栏\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"顯示側邊欄\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"顯示側邊欄\"\n          }\n        }\n      }\n    },\n    \"Lbh-J2-qVU.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"\\\\tLeft to Right\\\"; ObjectID = \\\"Lbh-J2-qVU\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tمن اليسار إلى اليمين\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tLeft to Right\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tLeft to Right\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tZleva doprava\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tLinks Nach Rechts\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"\\tLeft to Right\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tLeft to Right\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tLeft to Right\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tLeft to Right\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tKiri ke Kanan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tLeft to Right\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tLeft to Right\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tLeft to Right\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tIš kairės į dešinę\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tVenstre til høgre\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tLeft to Right\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tVenstre til høgre\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tLeft to Right\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDa esquerda para a direita\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDa Esquerda para a Direita\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tLeft to Right\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tLeft to Right\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tZľava doprava\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tLeft to Right\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tLeft to Right\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tLeft to Right\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tTrái sang phải\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\t从左到右\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\t由左至右\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\t由左至右\"\n          }\n        }\n      }\n    },\n    \"LE2-aR-0XJ.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Bring All to Front\\\"; ObjectID = \\\"LE2-aR-0XJ\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"إحضار الكل للأمام\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bring All to Front\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bring All to Front\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Přenést vše dopředu\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Alles in den Vordergrund bringen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Bring All to Front\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bring All to Front\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bring All to Front\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bring All to Front\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bawa Semua ke Depan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bring All to Front\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bring All to Front\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bring All to Front\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Perkelti visus į priekį\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Legg alle øverst\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bring All to Front\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Legg alle øvst\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bring All to Front\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Trazer tudo para a frente\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Trazer Tudo para a Frente\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bring All to Front\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bring All to Front\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Preniesť všetko dopredu\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bring All to Front\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bring All to Front\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bring All to Front\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Đưa tất cả ra phía trước\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"前置全部窗口\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"將此程式所有視窗移至最前\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"將所有視窗移到最前\"\n          }\n        }\n      }\n    },\n    \"LVM-kO-fVI.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Paste Ruler\\\"; ObjectID = \\\"LVM-kO-fVI\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"لصق المسطرة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste Ruler\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste Ruler\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vložit pravítko\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lineal Einfügen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Paste Ruler\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste Ruler\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste Ruler\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste Ruler\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tempel Penggaris\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste Ruler\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste Ruler\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste Ruler\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Įklijuoti liniuotę\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lim inn linjal\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste Ruler\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lim inn linjal\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste Ruler\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Colar régua\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Régua de Colar\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste Ruler\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste Ruler\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vložiť pravítko\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste Ruler\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste Ruler\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste Ruler\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dán thước\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"粘贴标尺\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"貼上尺標\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"貼上間尺\"\n          }\n        }\n      }\n    },\n    \"mK6-2p-4JG.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Check Grammar With Spelling\\\"; ObjectID = \\\"mK6-2p-4JG\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"التحقق من النحو بالإملاء\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Grammar With Spelling\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Grammar With Spelling\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zkontrolovat gramatiku a pravopis\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Grammatik mit Rechtschreibung prüfen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Check Grammar With Spelling\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Grammar With Spelling\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Grammar With Spelling\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Grammar With Spelling\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Periksa Tata Bahasa dengan Ejaan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Grammar With Spelling\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Grammar With Spelling\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Grammar With Spelling\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tikrinti gramatiką kartu su rašyba\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kontroller grammatikk og stavemåte\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Grammar With Spelling\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kontroller grammatikk og stavemåte\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Grammar With Spelling\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Verificar gramática com ortografia\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Verificar gramática com ortografia\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Grammar With Spelling\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Grammar With Spelling\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skontrolovať gramatiku a pravopis\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Grammar With Spelling\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Grammar With Spelling\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Grammar With Spelling\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kiểm tra cú pháp với chính tả\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"检查拼写和语法\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"檢查拼字文法\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"檢查拼字文法\"\n          }\n        }\n      }\n    },\n    \"MkV-Pr-PK5.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Copy Ruler\\\"; ObjectID = \\\"MkV-Pr-PK5\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"نسخ المسطرة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy Ruler\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy Ruler\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kopírovat pravítko\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kopiere Lineal\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Copy Ruler\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy Ruler\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy Ruler\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy Ruler\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Salin Penggaris\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy Ruler\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy Ruler\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy Ruler\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kopijuoti liniuotę\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kopier linjal\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy Ruler\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kopier linjal\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy Ruler\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copiar régua\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Régua de Colar\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy Ruler\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy Ruler\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kopírovať pravítko\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy Ruler\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy Ruler\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy Ruler\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sao chép thước\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"拷贝标尺\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"拷貝尺標\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"複製間尺\"\n          }\n        }\n      }\n    },\n    \"NMo-om-nkz.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Services\\\"; ObjectID = \\\"NMo-om-nkz\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"الخدمات\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Služby\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Layanan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paslaugos\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tjenester\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tenester\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Serviços\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Serviços\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Služby\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Services\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dịch vụ\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"服务\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"服務\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"服務\"\n          }\n        }\n      }\n    },\n    \"Nop-cj-93Q.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"\\\\tDefault\\\"; ObjectID = \\\"Nop-cj-93Q\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tافتراضي\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDefault\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDefault\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tVýchozí\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tStandard\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"\\tDefault\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDefault\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDefault\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDefault\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tBawaan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDefault\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDefault\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDefault\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tNumatytasis\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tStandard\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDefault\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tStandard\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDefault\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tPadrão\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tPadrão\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDefault\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDefault\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tPredvolené\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDefault\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDefault\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDefault\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tMặc định\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\t默认\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\t預設\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\t預設\"\n          }\n        }\n      }\n    },\n    \"o6e-r0-MWq.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Ligatures\\\"; ObjectID = \\\"o6e-r0-MWq\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"اللويجاتشرز\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatures\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatures\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatura\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligaturen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Ligatures\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatures\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatures\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatures\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatur\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatures\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatures\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatures\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatūros\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligaturer\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatures\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligaturar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatures\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligaduras\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligaduras\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatures\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatures\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatúra\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatures\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatures\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatures\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatures\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"连字\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"連字\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"連字\"\n          }\n        }\n      }\n    },\n    \"OaQ-X3-Vso.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Baseline\\\"; ObjectID = \\\"OaQ-X3-Vso\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"الخط الأساسي\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baseline\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baseline\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Účaří\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baseline\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Baseline\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baseline\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baseline\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baseline\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Garis Dasar\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baseline\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baseline\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baseline\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pagrindo linija\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skriftlinje\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baseline\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skriftline\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baseline\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Linha de base\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Base de Referência\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baseline\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baseline\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Účiari\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baseline\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baseline\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baseline\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Đường chuẩn\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"基线\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"基線\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"基線\"\n          }\n        }\n      }\n    },\n    \"oas-Oc-fiZ.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Open Recent\\\"; ObjectID = \\\"oas-Oc-fiZ\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"الملفات الأخيرة المفتوحة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open Recent\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open Recent\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Otevřít poslední\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Öffne Zuletzt geöffnet\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Open Recent\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open Recent\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open Recent\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open Recent\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buka Baru-baru Ini\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open Recent\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open Recent\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open Recent\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Atidaryti neseniai naudotą\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Åpne sist brukte\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open Recent\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Opne sist brukte\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open Recent\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Abrir recente\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Abrir Recente\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open Recent\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open Recent\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Otvoriť posledné\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open Recent\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open Recent\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open Recent\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mở gần đây\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"打开最近使用\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"打開最近使用過的檔案\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"開啟最近項目\"\n          }\n        }\n      }\n    },\n    \"ogc-rX-tC1.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Loosen\\\"; ObjectID = \\\"ogc-rX-tC1\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"توسيع\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Loosen\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Loosen\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Volnější\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lockern\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Loosen\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Loosen\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Loosen\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Loosen\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kendorkan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Loosen\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Loosen\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Loosen\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Atlaisvinti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Løsere\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Loosen\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lausare\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Loosen\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Afrouxar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Afrouxar\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Loosen\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Loosen\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Voľnejšie\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Loosen\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Loosen\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Loosen\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mỏng\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"松排\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"寬鬆\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"加寬\"\n          }\n        }\n      }\n    },\n    \"Olw-nP-bQN.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Hide RectangleLauncher\\\"; ObjectID = \\\"Olw-nP-bQN\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"إخفاء مشغل المستطيل\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hide RectangleLauncher\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hide RectangleLauncher\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skrýt RectangleLauncher\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher Verstecken\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Hide RectangleLauncher\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hide RectangleLauncher\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hide RectangleLauncher\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hide RectangleLauncher\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sembunyikan RectangleLauncher\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hide RectangleLauncher\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hide RectangleLauncher\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hide RectangleLauncher\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Slėpti RectangleLauncher\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skjul RectangleLauncher\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hide RectangleLauncher\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gøym RectangleLauncher\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hide RectangleLauncher\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ocultar RectangleLauncher\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Esconder RectangleLauncher\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hide RectangleLauncher\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hide RectangleLauncher\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skryť RectangleLauncher\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hide RectangleLauncher\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hide RectangleLauncher\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hide RectangleLauncher\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ẩn RectangleLauncher\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"隐藏RectangleLauncher\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"隱藏RectangleLauncher\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"隱藏RectangleLauncher\"\n          }\n        }\n      }\n    },\n    \"OwM-mh-QMV.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Find Previous\\\"; ObjectID = \\\"OwM-mh-QMV\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"البحث عن السابق\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find Previous\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find Previous\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hledat předchozí\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vorheriges finden\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Find Previous\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find Previous\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find Previous\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find Previous\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Temukan Sebelumnya\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find Previous\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find Previous\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find Previous\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rasti ankstesnį\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Finn forrige\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find Previous\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Finn førre\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find Previous\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buscar Anterior\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Encontrar Próximo\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find Previous\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find Previous\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hľadať predchádzajúce\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find Previous\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find Previous\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find Previous\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tìm kiếm trước đó\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"查找上一个\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"尋找上一個\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"尋找上一個\"\n          }\n        }\n      }\n    },\n    \"OY7-WF-poV.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Minimize\\\"; ObjectID = \\\"OY7-WF-poV\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تصغير\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimize\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimize\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimalizovat\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimieren\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Minimize\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimize\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimize\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimize\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimalkan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimize\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimize\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimize\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sumažinti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimer\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimize\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimer\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimize\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimizar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimizar\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimize\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimize\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimalizovať\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimize\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimize\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Minimize\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Thu nhỏ\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"最小化\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"縮到最小\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"縮到最細\"\n          }\n        }\n      }\n    },\n    \"Oyz-dy-DGm.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Stop Speaking\\\"; ObjectID = \\\"Oyz-dy-DGm\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"إيقاف الكلام\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stop Speaking\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stop Speaking\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Přestat mluvit\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Aufhören zu sprechen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Stop Speaking\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stop Speaking\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stop Speaking\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stop Speaking\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Berhenti Bicara\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stop Speaking\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stop Speaking\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stop Speaking\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nustoti kalbėti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stopp tale\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stop Speaking\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stopp tale\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stop Speaking\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pare de falar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Parar de Falar\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stop Speaking\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stop Speaking\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Prestať hovoriť\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stop Speaking\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stop Speaking\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stop Speaking\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ngừng nói\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"停止朗读\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"停止朗讀\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"停止朗讀\"\n          }\n        }\n      }\n    },\n    \"pa3-QI-u2k.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Delete\\\"; ObjectID = \\\"pa3-QI-u2k\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"حذف\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Delete\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Delete\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smazat\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Löschen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Delete\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Delete\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Delete\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Delete\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hapus\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Delete\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Delete\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Delete\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ištrinti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Slett\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Delete\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Slett\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Delete\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Deletar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Eliminar\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Delete\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Delete\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zmazať\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Delete\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Delete\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Delete\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Xóa\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"删除\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"刪除\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"刪除\"\n          }\n        }\n      }\n    },\n    \"Ptp-SP-VEL.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Bigger\\\"; ObjectID = \\\"Ptp-SP-VEL\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"أكبر\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bigger\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bigger\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zvětšit\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Größer\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Bigger\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bigger\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bigger\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bigger\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lebih Besar\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bigger\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bigger\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bigger\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Didesnis\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Større\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bigger\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Større\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bigger\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maior\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maior\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bigger\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bigger\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zväčšiť\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bigger\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bigger\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bigger\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lớn hơn\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"较大\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"放大\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"放大\"\n          }\n        }\n      }\n    },\n    \"pxx-59-PXV.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Save…\\\"; ObjectID = \\\"pxx-59-PXV\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"حفظ...\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Save…\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Save…\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Uložit…\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Speichern…\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Save…\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Save…\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Save…\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Save…\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Simpan…\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Save…\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Save…\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Save…\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Išsaugoti…\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lagre…\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Save…\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lagre…\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Save…\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Save…\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Guardar…\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Save…\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Save…\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Uložiť…\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Save…\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Save…\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Save…\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lưu…\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"存储…\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"儲存⋯\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"儲存⋯\"\n          }\n        }\n      }\n    },\n    \"Q5e-8K-NDq.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Show Fonts\\\"; ObjectID = \\\"Q5e-8K-NDq\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"إظهار الخطوط\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Fonts\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Fonts\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zobrazit písma\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Schriftarten anzeigen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Show Fonts\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Fonts\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Fonts\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Fonts\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tampilkan Jenis Huruf\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Fonts\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Fonts\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Fonts\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rodyti šriftus\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis fonter\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Fonts\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis fontar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Fonts\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar Fontes\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar Tipos de Letra\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Fonts\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Fonts\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zobraziť písma\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Fonts\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Fonts\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Fonts\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hiển thị Font\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"显示字体\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"顯示字體\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"顯示字體\"\n          }\n        }\n      }\n    },\n    \"q09-fT-Sye.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Find Next\\\"; ObjectID = \\\"q09-fT-Sye\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"البحث عن اللاحق\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find Next\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find Next\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hledat další\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Weitersuchen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Find Next\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find Next\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find Next\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find Next\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Temukan Berikutnya\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find Next\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find Next\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find Next\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rasti kitą\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Finn neste\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find Next\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Finn neste\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find Next\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buscar próximo\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Encontrar Próximo\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find Next\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find Next\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hľadať ďalšie\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find Next\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find Next\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find Next\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tìm kiếm kế tiếp\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"查找下一个\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"尋找下一個\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"尋找下一個\"\n          }\n        }\n      }\n    },\n    \"qIS-W8-SiK.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Page Setup…\\\"; ObjectID = \\\"qIS-W8-SiK\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"إعداد الصفحة...\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Page Setup…\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Page Setup…\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nastavení stránky…\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Seiten einrichten…\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Page Setup…\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Page Setup…\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Page Setup…\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Page Setup…\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pengaturan Halaman…\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Page Setup…\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Page Setup…\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Page Setup…\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Puslapio nustatymai…\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Utskriftsformat…\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Page Setup…\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Utskriftsformat…\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Page Setup…\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Configuração da Página…\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Configuração de Página…\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Page Setup…\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Page Setup…\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nastavenie stránky…\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Page Setup…\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Page Setup…\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Page Setup…\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Thiết lập trang…\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"页面设置…\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"設定頁面⋯\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"頁面設定⋯\"\n          }\n        }\n      }\n    },\n    \"R4o-n2-Eq4.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Zoom\\\"; ObjectID = \\\"R4o-n2-Eq4\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تكبير\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoom\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoom\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zvětšení\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoom\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Zoom\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoom\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoom\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoom\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Perbesar\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoom\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoom\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoom\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mastelis\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoom\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoom\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoom\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoom\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoom\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoom\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoom\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoom\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zväčšenie\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoom\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoom\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zoom\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Phóng\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"缩放\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"縮放\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"縮放\"\n          }\n        }\n      }\n    },\n    \"RB4-Sm-HuC.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"\\\\tRight to Left\\\"; ObjectID = \\\"RB4-Sm-HuC\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tمن اليمين إلى اليسار\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tRight to Left\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tRight to Left\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tZprava doleva\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tRechts Nach Links\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"\\tRight to Left\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tRight to Left\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tRight to Left\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tRight to Left\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tKanan ke Kiri\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tRight to Left\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tRight to Left\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tRight to Left\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tIš dešinės į kairę\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tHøgre til venstre\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tRight to Left\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tHøgre til venstre\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tRight to Left\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDa direita para a esquerda\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDa Direita para a Esquerda\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tRight to Left\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tRight to Left\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tSprava doľava\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tRight to Left\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tRight to Left\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tRight to Left\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tPhải qua trái\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\t从右到左\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\t由右至左\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\t由右至左\"\n          }\n        }\n      }\n    },\n    \"rbD-Rh-wIN.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Check Spelling While Typing\\\"; ObjectID = \\\"rbD-Rh-wIN\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"التحقق من الإملاء أثناء الكتابة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Spelling While Typing\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Spelling While Typing\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kontrolovat pravopis při psaní\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Überprüfe Schreibweise während des Schreibens\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Check Spelling While Typing\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Spelling While Typing\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Spelling While Typing\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Spelling While Typing\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Periksa Ejaan saat Mengetik\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Spelling While Typing\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Spelling While Typing\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Spelling While Typing\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tikrinti rašybą rašant\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kontroller stavemåte mens du skriver\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Spelling While Typing\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kontroller stavemåte medan du skriv\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Spelling While Typing\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Verificar ortografia durante a digitação\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Verificar ortografia enquanto escreve\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Spelling While Typing\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Spelling While Typing\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kontrolovať pravopis pri písaní\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Spelling While Typing\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Spelling While Typing\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Check Spelling While Typing\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kiểm tra chính tả khi gõ\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"键入时检查拼写\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"在輸入時同步檢查拼字\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"在輸入時同時檢查串字\"\n          }\n        }\n      }\n    },\n    \"rgM-f4-ycn.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Smart Dashes\\\"; ObjectID = \\\"rgM-f4-ycn\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"الشرطات الذكية\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Dashes\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Dashes\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Chytré pomlčky\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smarte Bindestriche\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Smart Dashes\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Dashes\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Dashes\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Dashes\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tanda Hubung Pintar\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Dashes\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Dashes\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Dashes\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Protingi brūkšneliai\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smarte bindestreker\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Dashes\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smarte bindestrekar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Dashes\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Traços Inteligentes\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Traços Inteligentes\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Dashes\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Dashes\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Chytré pomlčky\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Dashes\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Dashes\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Smart Dashes\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gạch nối thông minh\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"智能破折号\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"智慧型破折號\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"智慧型引號\"\n          }\n        }\n      }\n    },\n    \"Rqc-34-cIF.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Superscript\\\"; ObjectID = \\\"Rqc-34-cIF\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"السسوبسكريبت\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Superscript\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Superscript\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Horní index\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hochgestellt\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Superscript\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Superscript\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Superscript\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Superscript\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Superskrip\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Superscript\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Superscript\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Superscript\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Viršutinis indeksas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Heva skrift\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Superscript\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Heva skrift\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Superscript\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Superescrito\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sobrescrito\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Superscript\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Superscript\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Horný index\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Superscript\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Superscript\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Superscript\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Chỉ số trên\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"上标\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"上標\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"上標\"\n          }\n        }\n      }\n    },\n    \"Ruw-6m-B2m.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Select All\\\"; ObjectID = \\\"Ruw-6m-B2m\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تحديد الكل\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Select All\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Select All\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vybrat vše\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Alles auswählen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Select All\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Select All\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Select All\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Select All\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pilih Semua\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Select All\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Select All\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Select All\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pasirinkti viską\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Velg alt\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Select All\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vel alt\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Select All\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Selecionar tudo\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Selecionar Tudo\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Select All\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Select All\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vybrať všetko\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Select All\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Select All\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Select All\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Chọn tất cả\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"全选\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"全選\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"全選\"\n          }\n        }\n      }\n    },\n    \"S0p-oC-mLd.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Jump to Selection\\\"; ObjectID = \\\"S0p-oC-mLd\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"الانتقال إلى التحديد\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jump to Selection\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jump to Selection\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zobrazit výběr\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zur Auswahl springen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Jump to Selection\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jump to Selection\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jump to Selection\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jump to Selection\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lompat ke Pilihan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jump to Selection\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jump to Selection\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jump to Selection\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pereiti prie pasirinkimo\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gå til utvalg\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jump to Selection\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gå til utval\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jump to Selection\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ir para a seleção\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ir Para Seleção\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jump to Selection\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jump to Selection\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zobraziť výber\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jump to Selection\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jump to Selection\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jump to Selection\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nhảy đến lựa chọn\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"跳到所选内容\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"跳至所選範圍\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"跳去所選範圍\"\n          }\n        }\n      }\n    },\n    \"snW-S8-Cw5.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Show Toolbar\\\"; ObjectID = \\\"snW-S8-Cw5\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"إظهار شريط الأدوات\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Toolbar\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Toolbar\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zobrazit panel nástrojů\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zeige Werkzeugleiste\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Show Toolbar\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Toolbar\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Toolbar\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Toolbar\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tampilkan Bilah Alat\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Toolbar\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Toolbar\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Toolbar\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rodyti įrankių juostą\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis verktøylinja\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Toolbar\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis verktøylina\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Toolbar\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar barra de ferramentas\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar Barra de Ferramentas\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Toolbar\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Toolbar\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zobraziť panel nástrojov\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Toolbar\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Toolbar\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Toolbar\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hiển thị thanh công cụ\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"显示工具栏\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"顯示工具列\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"顯示工具列\"\n          }\n        }\n      }\n    },\n    \"Td7-aD-5lo.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Window\\\"; ObjectID = \\\"Td7-aD-5lo\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"النافذة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Window\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Window\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Okno\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fenster\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Window\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Window\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Window\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Window\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Jendela\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Window\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Window\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Window\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Langas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vindu\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Window\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vindauge\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Window\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Janela\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Janela\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Window\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Window\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Okno\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Window\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Window\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Window\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cửa sổ\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"窗口\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"視窗\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"視窗\"\n          }\n        }\n      }\n    },\n    \"tlD-Oa-oAM.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Kern\\\"; ObjectID = \\\"tlD-Oa-oAM\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"كيرن\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rozestupy znaků\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kerningas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Knip\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Knip\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rozostupy znakov\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kern\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nét\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"字距调整\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"字元間距\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"字元間距\"\n          }\n        }\n      }\n    },\n    \"tRr-pd-1PS.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Data Detectors\\\"; ObjectID = \\\"tRr-pd-1PS\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"كاشفات البيانات\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Data Detectors\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Data Detectors\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Detektor dat\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Daten Detektoren\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Data Detectors\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Data Detectors\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Data Detectors\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Data Detectors\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pendeteksi Data\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Data Detectors\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Data Detectors\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Data Detectors\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Duomenų detektoriai\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Datadetektorer\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Data Detectors\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Datadetektorar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Data Detectors\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Detectores de dados\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Detetores de Dados\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Data Detectors\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Data Detectors\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Detektor dát\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Data Detectors\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Data Detectors\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Data Detectors\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bộ dò dữ liệu\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"数据检测器\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"資料偵測器\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"資料偵測器\"\n          }\n        }\n      }\n    },\n    \"tXI-mr-wws.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Open Recent\\\"; ObjectID = \\\"tXI-mr-wws\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"الملفات الأخيرة المفتوحة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open Recent\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open Recent\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Otevřít poslední\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Öffne Zuletzt geöffnet\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Open Recent\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open Recent\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open Recent\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open Recent\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buka Baru-baru Ini\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open Recent\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open Recent\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open Recent\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Atidaryti neseniai naudotą\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Åpne sist brukte\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open Recent\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Opne sist brukte\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open Recent\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Abrir recente\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Abrir Recente\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open Recent\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open Recent\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Otvoriť posledné\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open Recent\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open Recent\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Open Recent\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mở gần đây\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"打开最近使用\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"打開最近使用過的檔案\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"開啟最近項目\"\n          }\n        }\n      }\n    },\n    \"UEZ-Bs-lqG.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Capitalize\\\"; ObjectID = \\\"UEZ-Bs-lqG\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"كابيتالايز\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Capitalize\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Capitalize\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Velká počáteční písmena\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Großschreiben\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Capitalize\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Capitalize\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Capitalize\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Capitalize\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Besarkan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Capitalize\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Capitalize\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Capitalize\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Didžiosios raidės\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk stor forbokstav\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Capitalize\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk stor forbokstav\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Capitalize\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Capitalizar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maiúsculas\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Capitalize\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Capitalize\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Veľké počiatočné písmená\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Capitalize\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Capitalize\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Capitalize\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"In hoa\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"首字母大写\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"首字母大寫\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"首字母大寫\"\n          }\n        }\n      }\n    },\n    \"uQy-DD-JDr.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"RectangleLauncher\\\"; ObjectID = \\\"uQy-DD-JDr\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"مشغل المستطيل\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"RectangleLauncher\"\n          }\n        }\n      }\n    },\n    \"uRl-iY-unG.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Cut\\\"; ObjectID = \\\"uRl-iY-unG\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"قص\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cut\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cut\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vyjmout\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ausschneiden\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Cut\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cut\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cut\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cut\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Potong\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cut\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cut\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cut\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Iškirpti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Klipp ut\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cut\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Klypp ut\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cut\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Recortar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cortar\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cut\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cut\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vyňať\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cut\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cut\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cut\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cắt\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"剪切\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"剪下\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"剪下\"\n          }\n        }\n      }\n    },\n    \"Vdr-fp-XzO.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Hide Others\\\"; ObjectID = \\\"Vdr-fp-XzO\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"إخفاء الآخرين\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hide Others\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hide Others\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skrýt ostatní\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Anderes verstecken\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Hide Others\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hide Others\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hide Others\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hide Others\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sembunyikan yang Lain\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hide Others\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hide Others\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hide Others\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Slėpti kitus\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skjul andre\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hide Others\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gøym andre\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hide Others\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Esconder Outros\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ocultar Outros\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hide Others\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hide Others\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Skryť ostatných\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hide Others\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hide Others\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hide Others\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ẩn những thứ khác\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"隐藏其他\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"隱藏其他\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"隱藏其他\"\n          }\n        }\n      }\n    },\n    \"VIY-Ag-zcb.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Center\\\"; ObjectID = \\\"VIY-Ag-zcb\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"توسيط\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Center\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Center\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zarovnat na střed\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zentrieren\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Center\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Center\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Center\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Center\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tengah\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Center\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Center\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Center\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Centre\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Midtstilt\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Center\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Midtstilt\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Center\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Centralizar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Centro\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Center\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Center\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zarovnať na stred\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Center\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Center\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Center\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Căn giữa\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"居中\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"置中\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"置中\"\n          }\n        }\n      }\n    },\n    \"Vjx-xi-njq.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Italic\\\"; ObjectID = \\\"Vjx-xi-njq\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"مائل\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Italic\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Italic\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kurzíva\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kursivdruck\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Italic\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Italic\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Italic\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Italic\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Cetak Miring\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Italic\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Italic\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Italic\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kursyvas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kursiv\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Italic\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kursiv\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Italic\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Itálico\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Itálico\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Italic\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Italic\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kurzíva\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Italic\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Italic\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Italic\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nghiêng\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"斜体\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"斜體\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"斜體\"\n          }\n        }\n      }\n    },\n    \"vKC-jM-MkH.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Paste Style\\\"; ObjectID = \\\"vKC-jM-MkH\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"لصق النمط\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste Style\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste Style\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vložit formát\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Stil einfügen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Paste Style\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste Style\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste Style\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste Style\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tempel Gaya\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste Style\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste Style\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste Style\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Įklijuoti stilių\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lim inn stil\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste Style\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lim inn stil\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste Style\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Colar estilo\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Colar Estilo\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste Style\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste Style\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vložiť formát\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste Style\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste Style\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste Style\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dán kiểu\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"粘贴样式\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"貼上樣式\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"貼上樣式\"\n          }\n        }\n      }\n    },\n    \"vLm-3I-IUL.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Show Ruler\\\"; ObjectID = \\\"vLm-3I-IUL\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"إظهار المسطرة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Ruler\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Ruler\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zobrazit pravítko\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zeige Lineal\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Show Ruler\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Ruler\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Ruler\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Ruler\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tampilkan Penggaris\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Ruler\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Ruler\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Ruler\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rodyti liniuotę\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis linjal\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Ruler\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis linjal\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Ruler\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar Régua\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar Régua\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Ruler\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Ruler\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zobraziť pravítko\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Ruler\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Ruler\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Ruler\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hiển thị thước\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"显示标尺\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"顯示尺標\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"顯示間尺\"\n          }\n        }\n      }\n    },\n    \"vmV-6d-7jI.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Make Upper Case\\\"; ObjectID = \\\"vmV-6d-7jI\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"جعل الحروف الكبيرة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Make Upper Case\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Make Upper Case\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Převést na velká písmena\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Konvertiere in Großschrift\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Make Upper Case\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Make Upper Case\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Make Upper Case\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Make Upper Case\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buat Huruf Besar\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Make Upper Case\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Make Upper Case\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Make Upper Case\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paversti didžiosiomis raidėmis\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk store bokstaver\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Make Upper Case\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk store bokstavar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Make Upper Case\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Converter em Maiúsculas\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Maiúsculas\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Make Upper Case\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Make Upper Case\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Previesť na veľké písmená\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Make Upper Case\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Make Upper Case\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Make Upper Case\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"In hoa\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"变为大写\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"大寫\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"大寫\"\n          }\n        }\n      }\n    },\n    \"vNY-rz-j42.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Clear Menu\\\"; ObjectID = \\\"vNY-rz-j42\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"قائمة واضحة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Clear Menu\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Clear Menu\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vyčistit menu\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Menu aufräumen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Clear Menu\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Clear Menu\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Clear Menu\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Clear Menu\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bersihkan Menu\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Clear Menu\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Clear Menu\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Clear Menu\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Išvalyti meniu\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Slett menyen\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Clear Menu\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Slett menyen\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Clear Menu\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Limpar Menu\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Limpar Menu\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Clear Menu\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Clear Menu\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vyčistiť menu\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Clear Menu\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Clear Menu\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Clear Menu\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dọn sạch menu\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"清除菜单\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"清除選單\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"清除選單\"\n          }\n        }\n      }\n    },\n    \"w0m-vy-SC9.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Ligatures\\\"; ObjectID = \\\"w0m-vy-SC9\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"اللويجاتشرز\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatures\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatures\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatury\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligaturen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Ligatures\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatures\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatures\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatures\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatur\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatures\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatures\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatures\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatūros\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligaturer\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatures\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligaturar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatures\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligaduras\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligaduras\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatures\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatures\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatúry\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatures\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatures\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatures\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ligatures\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"连字\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"連字\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"連字\"\n          }\n        }\n      }\n    },\n    \"W48-6f-4Dl.title\" : {\n      \"comment\" : \"Class = \\\"NSMenu\\\"; title = \\\"Edit\\\"; ObjectID = \\\"W48-6f-4Dl\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تحرير\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edit\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edit\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Editovat\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Editieren\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Edit\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edit\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edit\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edit\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sunting\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edit\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edit\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edit\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Redaguoti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rediger\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edit\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rediger\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edit\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Editar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Editar\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edit\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edit\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Editovať\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edit\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edit\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Edit\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Chỉnh sửa\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"编辑\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"編輯\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"編輯\"\n          }\n        }\n      }\n    },\n    \"Was-JA-tGl.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"New\\\"; ObjectID = \\\"Was-JA-tGl\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"جديد\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"New\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"New\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nový\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Neu\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"New\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"New\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"New\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"New\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Baru\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"New\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"New\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"New\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Naujas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nytt\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"New\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nytt\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"New\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Novo\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Novo\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"New\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"New\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nový\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"New\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"New\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"New\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mới\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"新建\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"新增\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"新增\"\n          }\n        }\n      }\n    },\n    \"wb2-vD-lq4.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Align Right\\\"; ObjectID = \\\"wb2-vD-lq4\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"محاذاة إلى اليمين\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Align Right\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Align Right\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zarovnat doprava\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rechts ausrichten\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Align Right\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Align Right\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Align Right\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Align Right\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rata Kanan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Align Right\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Align Right\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Align Right\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lygiuoti dešinėje\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Høgrejuster\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Align Right\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Høgrejuster\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Align Right\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Alinhar à Direita\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Alinhar à Direita\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Align Right\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Align Right\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zarovnať doprava\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Align Right\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Align Right\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Align Right\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Căn phải\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"右对齐\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"齊右\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"靠右對齊\"\n          }\n        }\n      }\n    },\n    \"WeT-3V-zwk.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Paste and Match Style\\\"; ObjectID = \\\"WeT-3V-zwk\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"لصق ومطابقة النمط\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste and Match Style\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste and Match Style\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vložit a přizpůsobit formátování\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Einfügen und Stil anpassen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Paste and Match Style\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste and Match Style\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste and Match Style\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste and Match Style\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tempel dan Cocokkan Gaya\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste and Match Style\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste and Match Style\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste and Match Style\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Įklijuoti ir pritaikyti stilių\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lim inn og tilpass stil\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste and Match Style\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lim inn og tilpass stil\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste and Match Style\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Colar e manter estilo\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Colar e Combinar Estilo\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste and Match Style\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste and Match Style\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vložiť a prispôsobiť formátovanie\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste and Match Style\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste and Match Style\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paste and Match Style\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dán và khớp kiểu\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"粘贴并匹配样式\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"貼上並符合樣式\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"貼上並符合樣式\"\n          }\n        }\n      }\n    },\n    \"wpr-3q-Mcd.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Help\\\"; ObjectID = \\\"wpr-3q-Mcd\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"المساعدة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Help\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Help\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nápověda\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hilfe\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Help\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Help\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Help\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Help\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bantuan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Help\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Help\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Help\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pagalba\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hjelp\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Help\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hjelp\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Help\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ajuda\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Ajuda\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Help\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Help\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nápoveda\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Help\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Help\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Help\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Trợ giúp\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"帮助\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"輔助說明\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"輔助說明\"\n          }\n        }\n      }\n    },\n    \"WRG-CD-K1S.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Underline\\\"; ObjectID = \\\"WRG-CD-K1S\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"تسطير\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Underline\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Underline\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Podtžení\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Unterstreichen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Underline\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Underline\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Underline\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Underline\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Garis Bawah\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Underline\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Underline\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Underline\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pabrauktas\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Understreka\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Underline\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Understreka\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Underline\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sublinhar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sublinhado\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Underline\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Underline\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Podťaženie\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Underline\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Underline\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Underline\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gạch dưới\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"下划线\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"底線\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"底線\"\n          }\n        }\n      }\n    },\n    \"x3v-GG-iWU.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Copy\\\"; ObjectID = \\\"x3v-GG-iWU\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"نسخ\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kopírovat\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kopieren\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Copy\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Salin\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kopijuoti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kopier\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kopier\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copiar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copiar\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kopírovať\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Copy\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sao chép\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"拷贝\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"拷貝\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"複製\"\n          }\n        }\n      }\n    },\n    \"xQD-1f-W4t.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Use All\\\"; ObjectID = \\\"xQD-1f-W4t\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"استخدام الكل\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use All\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use All\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Použít vše\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Alles benutzen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Use All\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use All\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use All\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use All\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Gunakan Semua\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use All\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use All\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use All\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Naudoti visus\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk alle\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use All\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bruk alle\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use All\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usar todos\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Usar Todos\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use All\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use All\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Použiť všetko\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use All\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use All\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Use All\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Dùng tất cả\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"全部使用\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"使用全部\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"使用全部\"\n          }\n        }\n      }\n    },\n    \"xrE-MZ-jX0.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Speech\\\"; ObjectID = \\\"xrE-MZ-jX0\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"النطق\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Speech\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Speech\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Řeč\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sprache\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Speech\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Speech\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Speech\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Speech\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bicara\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Speech\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Speech\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Speech\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Kalba\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tale\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Speech\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tale\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Speech\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Voz\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Fala\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Speech\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Speech\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Reč\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Speech\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Speech\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Speech\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Nói\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"语音\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"語音\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"語音\"\n          }\n        }\n      }\n    },\n    \"Xz5-n4-O0W.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Find…\\\"; ObjectID = \\\"Xz5-n4-O0W\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"بحث...\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find…\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find…\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hledat…\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Suchen…\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Find…\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find…\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find…\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find…\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Temukan…\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find…\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find…\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find…\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rasti…\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Finn…\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find…\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Finn…\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find…\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buscar…\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Encontrar…\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find…\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find…\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hľadať…\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find…\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find…\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find…\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tìm kiếm…\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"查找…\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"尋找⋯\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"尋找⋯\"\n          }\n        }\n      }\n    },\n    \"YEy-JH-Tfz.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Find and Replace…\\\"; ObjectID = \\\"YEy-JH-Tfz\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"بحث واستبدال...\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find and Replace…\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find and Replace…\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hledat a nahradit…\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Suchen und Ersetzen…\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Find and Replace…\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find and Replace…\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find and Replace…\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find and Replace…\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Temukan dan Ganti…\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find and Replace…\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find and Replace…\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find and Replace…\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rasti ir pakeisti…\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Finn og erstatt…\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find and Replace…\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Finn og erstatt…\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find and Replace…\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Buscar e Substituir…\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Encontrar e Substituir…\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find and Replace…\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find and Replace…\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hľadať a nahradiť…\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find and Replace…\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find and Replace…\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Find and Replace…\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"T\\u0018ìm kiếm và thay thế…\\n\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"查找和替换…\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"尋找與取代⋯\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"尋找與取代⋯\"\n          }\n        }\n      }\n    },\n    \"YGs-j5-SAR.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"\\\\tDefault\\\"; ObjectID = \\\"YGs-j5-SAR\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tافتراضي\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDefault\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDefault\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tVýchozí\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tStandard\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"\\tDefault\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDefault\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDefault\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDefault\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tBawaan\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDefault\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDefault\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDefault\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tNumatytasis\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tStandard\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDefault\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tStandard\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDefault\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tPadrão\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tPadrão\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDefault\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDefault\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tPredvolené\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDefault\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDefault\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tDefault\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\tMặc định\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\t默认\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\t預設\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"\\t預設\"\n          }\n        }\n      }\n    },\n    \"Ynk-f8-cLZ.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Start Speaking\\\"; ObjectID = \\\"Ynk-f8-cLZ\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"بدء الكلام\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Start Speaking\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Start Speaking\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Začít mluvit\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Sprechen beginnen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Start Speaking\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Start Speaking\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Start Speaking\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Start Speaking\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mulai Bicara\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Start Speaking\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Start Speaking\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Start Speaking\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pradėti kalbėti\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Start tale\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Start Speaking\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Start tale\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Start Speaking\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Comece a falar\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Começar a Falar\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Start Speaking\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Start Speaking\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Začať hovoriť\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Start Speaking\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Start Speaking\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Start Speaking\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Bắt đầu nói\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"开始朗读\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"開始朗讀\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"開始朗讀\"\n          }\n        }\n      }\n    },\n    \"z6F-FW-3nz.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Show Substitutions\\\"; ObjectID = \\\"z6F-FW-3nz\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"إظهار البدائل\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Substitutions\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Substitutions\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zobrazit záměny\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zeige Ersetzungen\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Show Substitutions\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Substitutions\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Substitutions\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Substitutions\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Tampilkan Penggantian\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Substitutions\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Substitutions\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Substitutions\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rodyti pakeitimus\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis erstatninger\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Substitutions\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Vis erstatningar\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Substitutions\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar Substituições\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Mostrar Substituições\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Substitutions\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Substitutions\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zobraziť zámeny\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Substitutions\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Substitutions\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Show Substitutions\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Hiển thị thay thế\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"显示替换\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"顯示替代視窗\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"顯示替代項目\"\n          }\n        }\n      }\n    },\n    \"ZM1-6Q-yy1.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Align Left\\\"; ObjectID = \\\"ZM1-6Q-yy1\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"محاذاة إلى اليسار\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Align Left\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Align Left\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zarovnat doleva\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Links ausrichten\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Align Left\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Align Left\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Align Left\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Align Left\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Rata Kiri\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Align Left\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Align Left\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Align Left\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Lygiuoti kairėje\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Venstrejustert\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Align Left\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Venstrejustert\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Align Left\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Alinhar à esquerda\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Alinhar à Esquerda\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Align Left\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Align Left\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Zarovnať doľava\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Align Left\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Align Left\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Align Left\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Căn trái\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"左对齐\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"齊左\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"靠左對齊\"\n          }\n        }\n      }\n    },\n    \"ZvO-Gk-QUH.title\" : {\n      \"comment\" : \"Class = \\\"NSMenuItem\\\"; title = \\\"Paragraph\\\"; ObjectID = \\\"ZvO-Gk-QUH\\\";\",\n      \"extractionState\" : \"extracted_with_value\",\n      \"localizations\" : {\n        \"ar\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"فقرة\"\n          }\n        },\n        \"ca\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paragraph\"\n          }\n        },\n        \"ca-ES\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paragraph\"\n          }\n        },\n        \"cs\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Odstavec\"\n          }\n        },\n        \"de\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paragraph\"\n          }\n        },\n        \"en\" : {\n          \"stringUnit\" : {\n            \"state\" : \"new\",\n            \"value\" : \"Paragraph\"\n          }\n        },\n        \"es\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paragraph\"\n          }\n        },\n        \"es-419\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paragraph\"\n          }\n        },\n        \"fr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paragraph\"\n          }\n        },\n        \"id\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paragraf\"\n          }\n        },\n        \"it\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paragraph\"\n          }\n        },\n        \"ja\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paragraph\"\n          }\n        },\n        \"ko\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paragraph\"\n          }\n        },\n        \"lt\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Pastraipa\"\n          }\n        },\n        \"nb\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Avsnitt\"\n          }\n        },\n        \"nl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paragraph\"\n          }\n        },\n        \"nn\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Avsnitt\"\n          }\n        },\n        \"pl\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paragraph\"\n          }\n        },\n        \"pt-BR\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Parágrafo\"\n          }\n        },\n        \"pt-PT\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Parágrafo\"\n          }\n        },\n        \"ro\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paragraph\"\n          }\n        },\n        \"ru\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paragraph\"\n          }\n        },\n        \"sk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Odstavec\"\n          }\n        },\n        \"sv-SE\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paragraph\"\n          }\n        },\n        \"tr\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paragraph\"\n          }\n        },\n        \"uk\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Paragraph\"\n          }\n        },\n        \"vi\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"Đoạn văn\"\n          }\n        },\n        \"zh-Hans\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"段落\"\n          }\n        },\n        \"zh-Hant\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"段落\"\n          }\n        },\n        \"zh-Hant-HK\" : {\n          \"stringUnit\" : {\n            \"state\" : \"translated\",\n            \"value\" : \"段落\"\n          }\n        }\n      }\n    }\n  },\n  \"version\" : \"1.0\"\n}"
  },
  {
    "path": "RectangleTests/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>CFBundleDevelopmentRegion</key>\n\t<string>$(DEVELOPMENT_LANGUAGE)</string>\n\t<key>CFBundleExecutable</key>\n\t<string>$(EXECUTABLE_NAME)</string>\n\t<key>CFBundleIdentifier</key>\n\t<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>\n\t<key>CFBundleInfoDictionaryVersion</key>\n\t<string>6.0</string>\n\t<key>CFBundleName</key>\n\t<string>$(PRODUCT_NAME)</string>\n\t<key>CFBundlePackageType</key>\n\t<string>BNDL</string>\n\t<key>CFBundleShortVersionString</key>\n\t<string>1.0</string>\n\t<key>CFBundleVersion</key>\n\t<string>1</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "RectangleTests/RectangleTests.swift",
    "content": "//\n//  RectangleTests.swift\n//  RectangleTests\n//\n//  Created by Ryan Hanson on 6/11/19.\n//  Copyright © 2019 Ryan Hanson. All rights reserved.\n//\n\nimport XCTest\n@testable import Rectangle\n\nclass RectangleTests: XCTestCase {\n\n    override func setUp() {\n        // Put setup code here. This method is called before the invocation of each test method in the class.\n    }\n\n    override func tearDown() {\n        // Put teardown code here. This method is called after the invocation of each test method in the class.\n    }\n\n    func testExample() {\n        // This is an example of a functional test case.\n        // Use XCTAssert and related functions to verify your tests produce the correct results.\n    }\n\n    func testPerformanceExample() {\n        // This is an example of a performance test case.\n        self.measure {\n            // Put the code you want to measure the time of here.\n        }\n    }\n\n}\n"
  },
  {
    "path": "TerminalCommands.md",
    "content": "# Rectangle Terminal Commands for Hidden Preferences\n\nThe preferences window is purposefully slim, but there's a lot that can be modified via Terminal. After executing a terminal command, restart the app as these values are loaded on application startup. For Rectangle Pro, please replace `com.knollsoft.Rectangle` with `com.knollsoft.Hookshot` for the following commands. A number of the commands below are for configuring keyboard shortcuts, and you'll need to know the key code and modifier flags integer values. You can use the free [key codes app](https://apps.apple.com/us/app/key-codes/id414568915) to help with this.\n\n## Contents\n\n- [Keyboard Shortcuts](#keyboard-shortcuts)\n- [Adjust Behavior on Repeated Commands](#adjust-behavior-on-repeated-commands)\n- [Cycle thirds on repeated Center Half commands](#cycle-thirds-on-repeated-center-half-commands)\n- [Resize on Directional Move](#resize-on-directional-move)\n- [Adjust macOS Ventura Stage Manager size](#adjust-macos-ventura-stage-manager-size)\n- [Enable Todo Mode](#enable-todo-mode)\n- [Only allow drag-to-snap when modifier keys are pressed](#only-allow-drag-to-snap-when-modifier-keys-are-pressed)\n- [Almost Maximize](#almost-maximize)\n- [Add an extra centering command with custom size](#add-an-extra-centering-command-with-custom-size)\n- [Add extra \"ninths\" sizing commands](#add-extra-ninths-sizing-commands)\n- [Add extra \"eighths\" sizing commands](#add-extra-eighths-sizing-commands)\n- [Add additional \"thirds\" sizing commands](#add-additional-thirds-sizing-commands)\n- [Add doubling/halving window sizing commands](#add-doublinghalving-window-sizing-commands)\n- [Add additional tiling and cascading commands](#add-additional-tiling-and-cascading-commands)\n- [Modify the \"footprint\" displayed for drag to snap area](#modify-the-footprint-displayed-for-drag-to-snap-area)\n- [Move Up/Down/Left/Right: Don't center on edge](#move-updownleftright-dont-center-on-edge)\n- [Make Smaller limits](#make-smaller-limits)\n- [Make Smaller/Make Larger size increments](#make-smallermake-larger-size-increments)\n- [Make Smaller/Make Larger \"curtain resize\" with gaps](#make-smallermake-larger-curtain-resize-with-gaps)\n- [Make Smaller/Make Larger width only](#make-smallermake-larger-width-only)\n- [Make Smaller/Make Larger height only](#make-smallermake-larger-height-only)\n- [Disabling window restore when moving windows](#disabling-window-restore-when-moving-windows)\n- [Changing the margin for the snap areas](#changing-the-margin-for-the-snap-areas)\n- [Setting gaps at the screen edges](#setting-gaps-at-the-screen-edges)\n- [Ignore specific drag to snap areas](#ignore-specific-drag-to-snap-areas)\n- [Disabling gaps when maximizing](#disabling-gaps-when-maximizing)\n- [Enabling snap areas for sixths](#enabling-snap-areas-for-sixths)\n- [Move cursor with window](#move-cursor-with-window)\n- [Prevent a window that is quickly dragged above the menu bar from going into Mission Control](#prevent-a-window-that-is-quickly-dragged-above-the-menu-bar-from-going-into-mission-control)\n- [Change the behavior of double-click window title bar](#change-the-behavior-of-double-click-window-title-bar)\n- [Change the order of displays to order by x coordinate](#change-the-order-of-displays-to-order-by-x-coordinate-for-next-and-prev-displays-commands)\n\n## Keyboard Shortcuts\n\nIf you wish to change the default shortcuts after first launch click \"Restore Default Shortcuts\" in the settings tab of the preferences window. Alternatively, you can set it with the following terminal command followed by app restart. True is for the recommended shortcuts, false is for Spectacle's.\n\n```bash\ndefaults write com.knollsoft.Rectangle alternateDefaultShortcuts -bool true\n```\n\n## Adjust Behavior on Repeated Commands\n\nThis is now in the preferences window, but there's an option in the preferences for \"Move to adjacent display on repeated left or right commands\".\nIf this setting is not checked, then each time you execute a half or quarter action, the width of the window will cycle through the following sizes: 1/2 -> 2/3 -> 1/3.\n\nThe cycling behavior can be disabled entirely with:\n\n```bash\ndefaults write com.knollsoft.Rectangle subsequentExecutionMode -int 2\n```\n\n`subsequentExecutionMode` accepts the following values:\n0: halves to thirds Spectacle behavior (box unchecked)\n1: cycle displays (box checked) for left/right actions\n2: disabled\n3: cycle displays for left/right actions, halves to thirds for the rest (old Rectangle behavior)\n4: repeat same action on next display\n\n## Cycle thirds on repeated Center Half commands\n\nSet Center Half to cycle thirds sizes: 1/2 -> 2/3 -> 1/3 with:\n\n```bash\ndefaults write com.knollsoft.Rectangle centerHalfCycles -int 1\n```\n\n## Resize on Directional Move\n\nBy default, the commands to move to certain edges will not resize the window.\nIf `resizeOnDirectionalMove` is enabled, the _halves to thirds_ mode is instead used.\nThis means that when moving to the left/right, the width will be changed, and when moving to the top/bottom, the height will be changed.\nThis size will cycle between 1/2 -> 2/3 -> 1/3 of the screen’s width/height.\n\nNote that if subsequent execution mode is set to cycle displays when this is enabled, Move Left and Move Right will always resize to 1/2, and pressing it again will move to the next display.\n\n```bash\ndefaults write com.knollsoft.Rectangle resizeOnDirectionalMove -bool true\n```\n\n## Adjust macOS Ventura Stage Manager size\n\nBy default, the Stage Manager area will be set to 190, if enabled.\n\n```bash\ndefaults write com.knollsoft.Rectangle stageSize -float <VALUE>\n```\n\nTo set it to a proportion of your screen's width, set it to a value between 0 and 1.\n\n```bash\ndefaults write com.knollsoft.Rectangle stageSize -float <VALUE_BETWEEN_0_AND_1>\n```\n\n## Enable Todo Mode\n\nSee the [wiki](https://github.com/rxhanson/Rectangle/wiki/Todo-Mode) for more info.\n\n```bash\ndefaults write com.knollsoft.Rectangle todo -int 1\n```\n\n## Only allow drag-to-snap when modifier keys are pressed\n\nModifier keys can be combined by adding the sum of Integer Values together.\n\n| Modifier Key | Integer Value |\n|--------------|---------------|\n| cmd          | 1048576       |\n| option       | 524288        |\n| ctrl         | 262144        |\n| shift        | 131072        |\n| fn           | 8388608       |\n\nThis command would be for restricting snap to the cmd key:\n\n```bash\ndefaults write com.knollsoft.Rectangle snapModifiers -int 1048576\n```\n\n## Almost Maximize\n\nBy default, \"Almost Maximize\" will resize the window to 90% of the screen (width & height).\n\n```bash\ndefaults write com.knollsoft.Rectangle almostMaximizeHeight -float <VALUE_BETWEEN_0_&_1>\n```\n\n```bash\ndefaults write com.knollsoft.Rectangle almostMaximizeWidth -float <VALUE_BETWEEN_0_&_1>\n```\n\n## Add an extra centering command with custom size\n\nThis extra command is not available in the UI. You'll need to know which keycode and modifier flags you want.\n\n```bash\ndefaults write com.knollsoft.Rectangle specified -dict-add keyCode -float 8 modifierFlags -float 1966080\n```\n\n```bash\ndefaults write com.knollsoft.Rectangle specifiedHeight -float 1050\ndefaults write com.knollsoft.Rectangle specifiedWidth -float 1680\n```\n\n## Add an extra centering with prominence command\n\nThere is an extra command that horizontally centers the window but moves up the window vertically slightly from the center to add visual weight. Similar to extra centering you will need to know which keycode and modifier flags you want.\n\nThe key code is:\n\n* centerProminently\n\nFor example, the command for setting the shortcut to `ctrl option command C` would be:\n\n```bash\ndefaults write com.knollsoft.Rectangle centerProminently -dict-add keyCode -float 8 modifierFlags -float 1835305\n```\n\n\n## Add extra \"ninths\" sizing commands\n\nCommands for resizing to screen ninths are not available in the UI.\n\nThe key codes are:\n\n* topLeftNinth\n* topCenterNinth\n* topRightNinth\n* middleLeftNinth\n* middleCenterNinth\n* middleRightNinth\n* bottomLeftNinth\n* bottomCenterNinth\n* bottomRightNinth\n\nFor example, the command for setting the top left ninth shortcut to `ctrl opt shift 1` would be:\n\n```bash\ndefaults write com.knollsoft.Rectangle topLeftNinth -dict-add keyCode -float 18 modifierFlags -float 917504\n```\n\n## Add extra \"eighths\" sizing commands\n\nCommands for resizing to screen eighths are not available in the UI. This divides the screen up into a 4x2 grid.\n\nThe key codes are:\n\n* topLeftEighth\n* topCenterLeftEighth\n* topCenterRightEighth\n* topRightEighth\n* bottomLeftEighth\n* bottomCenterLeftEighth\n* bottomCenterRightEighth\n* bottomRightEighth\n\nFor example, the command for setting the top left eighth shortcut to `ctrl opt shift 1` would be:\n\n```bash\ndefaults write com.knollsoft.Rectangle topLeftEighth -dict-add keyCode -float 18 modifierFlags -float 917504\n```\n\n## Add additional \"thirds\" sizing commands \n\nThese commands for resizing to corner two-thirds are not available in the UI but can be configured via CLI.\n\nThe key codes are:\n\n* topLeftThird\n* topRightThird\n* bottomLeftThird\n* bottomRightThird\n\n(these correspond to two-thirds, and when repeated will cycle through each of the calculations)\n\nFor example, the command for setting the top left two-thirds shortcut to `ctrl opt shift 1` would be:\n\n```bash\ndefaults write com.knollsoft.Rectangle topLeftThird -dict-add keyCode -float 18 modifierFlags -float 917504\n```\n\n## Add doubling/halving window sizing commands\n\nThese commands for doubling/halving the window width/height are not available in the UI but can be configured via CLI. \n\nThe key codes are:\n\n* doubleHeightUp\n* doubleHeightDown\n* doubleWidthLeft\n* doubleWidthRight\n* halveHeightUp\n* halveHeightDown\n* halveWidthLeft\n* halveWidthRight\n\nThe action direction (e.g., \"Right\") is the direction that the center of the window will move towards as a result of resizing. \n\nFor example, the command for setting the doubleWidthRight shortcut to `ctrl option shift right` would be:\n\n```bash\ndefaults write com.knollsoft.Rectangle doubleWidthRight -dict-add keyCode -float 124 modifierFlags -float 11403555\n```\n\n## Add additional tiling and cascading commands\n\nCommands for tiling and cascading the visible windows are not available in the UI but can be configured via CLI.\n\nThe key codes are:\n\n* tileAll\n* cascadeAll\n* cascadeActiveApp\n* tileActiveApp\n\n_tileAll_ and _cascadeAll_ act on all visible windows.\n\n_cascadeActiveApp_ cascades and brings to the front only windows belonging to the currently active (foremost) app, leaving all other windows alone.\n\n_tileActiveApp_ tiles only windows belonging to the currently active (foremost) app into a grid, leaving all other windows alone.\n\nFor example, the command for setting the cascadeActiveApp shortcut to `ctrl shift 2` would be:\n\n```bash\ndefaults write com.knollsoft.Rectangle cascadeActiveApp -dict-add keyCode -float 2 modifierFlags -float 393475\n```\n\n## Modify the \"footprint\" displayed for drag to snap area\n\nAdjust the alpha (transparency). Default is 0.3.\n\n```bash\ndefaults write com.knollsoft.Rectangle footprintAlpha -float <VALUE_BETWEEN_0_&_1>\n```\n\nChange the border width. Default is 2 (used to be 1).\n\n```bash\ndefaults write com.knollsoft.Rectangle footprintBorderWidth -float <NUM_PIXELS>\n```\n\nDisable the fade.\n\n```bash\ndefaults write com.knollsoft.Rectangle footprintFade -int 2\n```\n\nChange the color.\n\n```bash\ndefaults write com.knollsoft.Rectangle footprintColor -string \"{\\\"red\\\":0,\\\"blue\\\":0.5,\\\"green\\\":0.5}\"\n```\n\nChange the animation duration. The value is a multiplier. Default is 0 (no animation).\n\n```bash\ndefaults write com.knollsoft.Rectangle footprintAnimationDurationMultiplier -float <MULTIPLIER>\n```\n\n## Move Up/Down/Left/Right: Don't center on edge\n\nBy default, the directional move will center the window along the edge that the window is being moved to.\n\n```bash\ndefaults write com.knollsoft.Rectangle centeredDirectionalMove -int 2\n```\n\n## Make Smaller limits\n\nBy default, \"Make Smaller\" will decrease the window until it reaches 25% of the screen (width & height).\n\n```bash\ndefaults write com.knollsoft.Rectangle minimumWindowWidth -float <VALUE_BETWEEN_0_&_1>\n```\n\n```bash\ndefaults write com.knollsoft.Rectangle minimumWindowHeight -float <VALUE_BETWEEN_0_&_1>\n```\n\n## Make Smaller/Make Larger size increments\n\nBy default, \"Make Smaller\" and \"Make Larger\" change the window height/width by 30 pixels.\n\n```bash\ndefaults write com.knollsoft.Rectangle sizeOffset -float <NUM_PIXELS>\n```\n\n## Make Smaller/Make Larger \"curtain resize\" with gaps\n\nBy default, windows touching the edge of the screen will keep those shared edges the same while only resizing the non-shared edge. With window gaps, this is a little ambiguous since the edges don't actually touch the screen, so you can disable it for traditional, floating resizing:\n\n```bash\ndefaults write com.knollsoft.Rectangle curtainChangeSize -int 2\n```\n\n## Make Smaller/Make Larger width only\n\nBy default, \"Make Smaller\" and \"Make Larger\" change both, the window height and the window width. If you only want to change the window width without changing window height, configure shortcuts for the _largerWidth_ and _smallerWidth_ commands.\n\nFor example, if you want to assign `ctrl option ]` to _largerWidth_ and `ctrl option [` to _smallerWidth_, the commands would be:\n\n```bash\ndefaults write com.knollsoft.Rectangle largerWidth -dict-add keyCode -float 30 modifierFlags -float 786432\ndefaults write com.knollsoft.Rectangle smallerWidth -dict-add keyCode -float 33 modifierFlags -float 786432\n```\n\n## Make Smaller/Make Larger height only\n\nSimilarly, if you only want to change the window height without changing window width, configure shortcuts for the _largerHeight_ and _smallerHeight_ commands.\n\nFor example, if you want to assign `ctrl option shift ]` to _largerHeight_ and `ctrl option shift [` to _smallerHeight_, the commands would be:\n\n```bash\ndefaults write com.knollsoft.Rectangle largerHeight -dict-add keyCode -float 30 modifierFlags -float 917504\ndefaults write com.knollsoft.Rectangle smallerHeight -dict-add keyCode -float 33 modifierFlags -float 917504\n```\n\n## Disabling window restore when moving windows\n\n```bash\ndefaults write com.knollsoft.Rectangle unsnapRestore -int 2\n```\n\n## Changing the margin for the snap areas\n\nEach margin is configured separately, and has a default value of 5\n\n```bash\ndefaults write com.knollsoft.Rectangle snapEdgeMarginTop -int 10\ndefaults write com.knollsoft.Rectangle snapEdgeMarginBottom -int 10\ndefaults write com.knollsoft.Rectangle snapEdgeMarginLeft -int 10\ndefaults write com.knollsoft.Rectangle snapEdgeMarginRight -int 10\n```\n\n## Setting gaps at the screen edges\n\nYou can specify gaps at the edges of your screen that will be left uncovered by window resizing operations. This is useful if, for example, you use a dock replacement that should not have windows overlapping it.\n\n```bash\ndefaults write com.knollsoft.Rectangle screenEdgeGapTop -int 10\ndefaults write com.knollsoft.Rectangle screenEdgeGapBottom -int 10\ndefaults write com.knollsoft.Rectangle screenEdgeGapLeft -int 10\ndefaults write com.knollsoft.Rectangle screenEdgeGapRight -int 10\n```\n\nYou can also separately specify the gap for a screen with a notch. Useful for multi display setups if you are using a menubar replacement.\n\n```bash\ndefaults write com.knollsoft.Rectangle screenEdgeGapTopNotch -int 5\n```\n\nIf you want these gaps to be applied on your main screen only you can set screenEdgeGapsOnMainScreenOnly. Useful for multi display setups where only one screen has some dock replacement.\n\n```bash\ndefaults write com.knollsoft.Rectangle screenEdgeGapsOnMainScreenOnly -bool true\n```\n\n## Ignore specific drag to snap areas\n\nEach drag to snap area on the edge of a screen can be ignored with a single Terminal command, but it's a bit field setting so you'll have to determine the bit field for which ones you want to disable.\n\n| Bit | Snap Area                 | Window Action       |\n|-----|---------------------------|---------------------|\n| 0   | Top                       | Maximize            |\n| 1   | Bottom                    | Thirds              |\n| 2   | Left                      | Left Half           |\n| 3   | Right                     | Right Half          |\n| 4   | Top Left                  | Top Left Corner     |\n| 5   | Top Right                 | Top Right Corner    |\n| 6   | Bottom Left               | Bottom Left Corner  |\n| 7   | Bottom Right              | Bottom Right Corner |\n| 8   | Top Left Below Corner     | Top Half            |\n| 9   | Top Right Below Corner    | Top Half            |\n| 10  | Bottom Left Above Corner  | Bottom Half         |\n| 11  | Bottom Right Above Corner | Bottom Half         |\n\nTo disable the top (maximize) snap area, execute:\n\n```bash\ndefaults write com.knollsoft.Rectangle ignoredSnapAreas -int 1\n```\n\nTo disable the Top Half and Bottom Half snap areas, the bit field would be 1111 0000 0000, or 3840\n\n```bash\ndefaults write com.knollsoft.Rectangle ignoredSnapAreas -int 3840\n```\n\n## Disabling gaps when maximizing\n\nBy default, the \"Gaps between windows\" setting applies to \"Maximize\" and \"Maximize Height\".\n\nTo disable the gaps for \"Maximize\", execute:\n\n```bash\ndefaults write com.knollsoft.Rectangle applyGapsToMaximize -int 2\n```\n\nTo disable the gaps for \"Maximize Height\", execute:\n\n```bash\ndefaults write com.knollsoft.Rectangle applyGapsToMaximizeHeight -int 2\n```\n\n## Enabling snap areas for sixths\n\nTo enable snap areas for sixths corners, execute: \n\n```bash\ndefaults write com.knollsoft.Rectangle sixthsSnapArea -bool true\n```\n\nOnce enabled, you can drag a window to the corner, then move it along the edge towards the thirds area to snap to a sixth.\n\n## Move cursor with window\n\nThere's an option in the UI for moving the cursor with the window when going across displays, but here's an option for moving it with any shortcut:\n\n```bash\ndefaults write com.knollsoft.Rectangle moveCursor -int 1\n```\n\n## Prevent a window that is quickly dragged above the menu bar from going into Mission Control\n\nImportant: This can cause issues with dragging and dropping in certain apps like Adobe Illustrator, and can affect text selection in a select few apps as well. \n\nWindows that are slowly moved above the menu bar will still go into Mission Control.\n\nOnce this is enabled, the checkbox for it is visible in the Snap Areas tab of the Preferences window.\n\n```bash\ndefaults write com.knollsoft.Rectangle missionControlDragging -int 2\n```\n\nChange the allowed off-screen distance. The value is in pixels and is tied to the speed. Default is 25.\n\n```bash\ndefaults write com.knollsoft.Rectangle missionControlDraggingAllowedOffscreenDistance -float <DISTANCE>\n```\n\nChange the disallowed duration. The value is in milliseconds. Default is 250.\n\n```bash\ndefaults write com.knollsoft.Rectangle missionControlDraggingDisallowedDuration -int <DURATION>\n```\n\n## Change the behavior of double-click window title bar\n\nTo change the action ([list](https://github.com/rxhanson/Rectangle/blob/master/Rectangle/WindowAction.swift)):\n\n```bash\ndefaults write com.knollsoft.Rectangle doubleClickTitleBar -int <ACTION_ID + 1>\n```\n\nTo disable restore when double-clicked again:\n\n```bash\ndefaults write com.knollsoft.Rectangle doubleClickTitleBarRestore -int 2\n```\n\nTo disable double-click window title bar only for specific bundle ids (in example, Outlook):\n\n```bash\ndefaults write com.knollsoft.Rectangle doubleClickTitleBarIgnoredApps -string \"[\\\"com.microsoft.Outlook\\\"]\"\n```\n\n## Change the order of displays to order by x coordinate for next and prev displays commands\n\nBy default, display order is left-to-right, line-by-line. You can change this to be ordered by x coordinate, left-to-right, regardless of which vertical position of the display. This was the default behavior prior to v0.87.\n\n```bash\ndefaults write com.knollsoft.Rectangle screensOrderedByX -int 1\n```"
  }
]