[
  {
    "path": ".devcontainer/010 - macOS Sequoia/devcontainer.json",
    "content": "{\n  \"name\": \"macOS 15 (Sequoia)\",\n  \"service\": \"macos\",\n  \"containerEnv\": {\n    \"VERSION\": \"15\"\n  },\n  \"forwardPorts\": [8006],\n  \"portsAttributes\": {\n    \"8006\": {\n      \"label\": \"Web\",\n      \"onAutoForward\": \"notify\"\n    }\n  },\n  \"otherPortsAttributes\": {\n    \"onAutoForward\": \"ignore\"\n  }, \n  \"dockerComposeFile\": \"../codespaces.yml\",\n  \"initializeCommand\": \"docker system prune --all --force\"\n}\n"
  },
  {
    "path": ".devcontainer/030 - macOS Ventura/devcontainer.json",
    "content": "{\n  \"name\": \"macOS 13 (Ventura)\",\n  \"service\": \"macos\",\n  \"containerEnv\": {\n    \"VERSION\": \"13\"\n  },\n  \"forwardPorts\": [8006],\n  \"portsAttributes\": {\n    \"8006\": {\n      \"label\": \"Web\",\n      \"onAutoForward\": \"notify\"\n    }\n  },\n  \"otherPortsAttributes\": {\n    \"onAutoForward\": \"ignore\"\n  }, \n  \"dockerComposeFile\": \"../codespaces.yml\",\n  \"initializeCommand\": \"docker system prune --all --force\"\n}\n"
  },
  {
    "path": ".devcontainer/040 - macOS Monterey/devcontainer.json",
    "content": "{\n  \"name\": \"macOS 12 (Monterey)\",\n  \"service\": \"macos\",\n  \"containerEnv\": {\n    \"VERSION\": \"12\"\n  },\n  \"forwardPorts\": [8006],\n  \"portsAttributes\": {\n    \"8006\": {\n      \"label\": \"Web\",\n      \"onAutoForward\": \"notify\"\n    }\n  },\n  \"otherPortsAttributes\": {\n    \"onAutoForward\": \"ignore\"\n  }, \n  \"dockerComposeFile\": \"../codespaces.yml\",\n  \"initializeCommand\": \"docker system prune --all --force\"\n}\n"
  },
  {
    "path": ".devcontainer/050 - macOS Big Sur/devcontainer.json",
    "content": "{\n  \"name\": \"macOS 11 (Big Sur)\",\n  \"service\": \"macos\",\n  \"containerEnv\": {\n    \"VERSION\": \"11\"\n  },\n  \"forwardPorts\": [8006],\n  \"portsAttributes\": {\n    \"8006\": {\n      \"label\": \"Web\",\n      \"onAutoForward\": \"notify\"\n    }\n  },\n  \"otherPortsAttributes\": {\n    \"onAutoForward\": \"ignore\"\n  }, \n  \"dockerComposeFile\": \"../codespaces.yml\",\n  \"initializeCommand\": \"docker system prune --all --force\"\n}\n"
  },
  {
    "path": ".devcontainer/060 - macOS Catalina/devcontainer.json",
    "content": "{\n  \"name\": \"macOS 10 (Catalina)\",\n  \"service\": \"macos\",\n  \"containerEnv\": {\n    \"VERSION\": \"10\"\n  },\n  \"forwardPorts\": [8006],\n  \"portsAttributes\": {\n    \"8006\": {\n      \"label\": \"Web\",\n      \"onAutoForward\": \"notify\"\n    }\n  },\n  \"otherPortsAttributes\": {\n    \"onAutoForward\": \"ignore\"\n  }, \n  \"dockerComposeFile\": \"../codespaces.yml\",\n  \"initializeCommand\": \"docker system prune --all --force\"\n}\n"
  },
  {
    "path": ".devcontainer/codespaces.yml",
    "content": "services:\n  macos:\n    container_name: macos\n    image: ghcr.io/dockur/macos\n    environment:\n      RAM_SIZE: \"half\"\n      DISK_SIZE: \"max\"\n      CPU_CORES: \"max\"\n    devices:\n      - /dev/kvm\n      - /dev/net/tun\n    cap_add:\n      - NET_ADMIN\n    ports:\n      - 8006:8006\n      - 5900:5900/tcp\n      - 5900:5900/udp\n    volumes:\n      - ./macos:/storage\n    restart: on-failure\n    stop_grace_period: 2m\n"
  },
  {
    "path": ".devcontainer/devcontainer.json",
    "content": "{\n  \"name\": \"macOS 14 (Sonoma)\",\n  \"service\": \"macos\",\n  \"containerEnv\": {\n    \"VERSION\": \"14\"\n  },\n  \"forwardPorts\": [8006],\n  \"portsAttributes\": {\n    \"8006\": {\n      \"label\": \"Web\",\n      \"onAutoForward\": \"notify\"\n    }\n  },\n  \"otherPortsAttributes\": {\n    \"onAutoForward\": \"ignore\"\n  }, \n  \"dockerComposeFile\": \"codespaces.yml\",\n  \"initializeCommand\": \"docker system prune --all --force\"\n}\n"
  },
  {
    "path": ".dockerignore",
    "content": ".dockerignore\n.devcontainer\n.git\n.github\n.gitignore\n.gitlab-ci.yml\n.gitmodules\nDockerfile\nDockerfile.archive\ncompose.yml\ncompose.yaml\ndocker-compose.yml\ndocker-compose.yaml\n*.md\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/1-issue.yml",
    "content": "name: \"\\U0001F6A8 Technical issue\"\ndescription: When you're experiencing problems using the container\nbody:\n  - type: input\n    id: os\n    attributes:\n      label: Operating system\n      description: Your Linux distribution (can be shown by `lsb_release -a`).\n      placeholder: e.g. Ubuntu 24.04\n    validations:\n      required: true\n  - type: textarea\n    id: summary\n    attributes:\n      label: Description\n      description: A clear and concise description of your issue.\n    validations:\n      required: true\n  - type: textarea\n    id: compose\n    attributes:\n      label: Docker compose\n      description: The compose file (or otherwise the `docker run` command used).\n      render: yaml\n    validations:\n      required: true\n  - type: textarea\n    id: log\n    attributes:\n      label: Docker log\n      description: The logfile of the container (as shown by `docker logs macos`).\n      render: shell\n    validations:\n      required: true\n  - type: textarea\n    id: screenshot\n    attributes:\n      label: Screenshots (optional)\n      description: Screenshots that might help to make the problem more clear.\n    validations:\n      required: false\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/2-feature.yml",
    "content": "name: \"\\U0001F680 Feature request\"\ndescription: Suggest an idea for improving the container\ntitle: \"[Feature]: \"\nlabels: [\"enhancement\"]\nbody:\n  - type: textarea\n    id: problem\n    attributes:\n      label: Is your proposal related to a problem?\n      description: |\n        Provide a clear and concise description of what the problem is.\n        For example, \"I'm always frustrated when...\"\n    validations:\n      required: true\n  - type: textarea\n    id: solution\n    attributes:\n      label: Describe the solution you'd like.\n      description: |\n        Provide a clear and concise description of what you want to happen.\n    validations:\n      required: true\n  - type: textarea\n    id: alternatives\n    attributes:\n      label: Describe alternatives you've considered.\n      description: |\n        Let us know about other solutions you've tried or researched.\n    validations:\n      required: true\n  - type: textarea\n    id: context\n    attributes:\n      label: Additional context\n      description: |\n        Is there anything else you can add about the proposal?\n        You might want to link to related issues here, if you haven't already.\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/3-bug.yml",
    "content": "name: \"\\U0001F41E Bug report\"\ndescription: Create a report to help us improve the container\ntitle: \"[Bug]: \"\nlabels: [\"bug\"]\nbody:\n  - type: input\n    id: os\n    attributes:\n      label: Operating system\n      description: Your Linux distribution (can be shown by `lsb_release -a`).\n      placeholder: e.g. Ubuntu 24.04\n    validations:\n      required: true\n  - type: textarea\n    id: summary\n    attributes:\n      label: Description\n      description: Describe the expected behaviour, the actual behaviour, and the steps to reproduce.\n    validations:\n      required: true\n  - type: textarea\n    id: compose\n    attributes:\n      label: Docker compose\n      description: The compose file (or otherwise the `docker run` command used).\n      render: yaml\n    validations:\n      required: true\n  - type: textarea\n    id: log\n    attributes:\n      label: Docker log\n      description: The logfile of the container (as shown by `docker logs macos`).\n      render: shell\n    validations:\n      required: true\n  - type: textarea\n    id: screenshot\n    attributes:\n      label: Screenshots (optional)\n      description: Screenshots that might help to make the problem more clear.\n    validations:\n      required: false\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/4-question.yml",
    "content": "name: \"\\U00002753 General question\"\ndescription: Questions about the container not related to an issue\ntitle: \"[Question]: \"\nlabels: [\"question\"]\nbody:\n  - type: checkboxes\n    attributes:\n      label: Is your question not already answered in the FAQ?\n      description: Please read the [FAQ](https://github.com/dockur/macos/blob/master/readme.md) carefully to avoid asking duplicate questions.\n      options:\n      - label: I made sure the question is not listed in the [FAQ](https://github.com/dockur/macos/blob/master/readme.md).\n        required: true\n  - type: checkboxes\n    attributes:\n      label: Is this a general question and not a technical issue?\n      description: For questions related to issues you must use the [technical issue](https://github.com/dockur/macos/issues/new?assignees=&labels=&projects=&template=1-issue.yml) form instead. It contains all the right fields (system info, logfiles, etc.) we need in order to be able to help you.\n      options:\n      - label: I am sure my question is not about a technical issue.\n        required: true\n  - type: textarea\n    id: question\n    attributes:\n      label: Question\n      description: What's the question you have about the container?\n    validations:\n      required: true\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/config.yml",
    "content": "blank_issues_enabled: false\n"
  },
  {
    "path": ".github/dependabot.yml",
    "content": "version: 2\nupdates:\n  - package-ecosystem: docker\n    directory: /\n    schedule:\n      interval: weekly\n  - package-ecosystem: github-actions\n    directory: /\n    schedule:\n      interval: weekly\n"
  },
  {
    "path": ".github/renovate.json",
    "content": "{\n  \"$schema\": \"https://docs.renovatebot.com/renovate-schema.json\",\n  \"extends\": [\"config:recommended\", \":disableDependencyDashboard\"]\n}\n"
  },
  {
    "path": ".github/workflows/build.yml",
    "content": "name: Build\n\non:\n  workflow_dispatch:\n\nconcurrency:\n  group: build\n  cancel-in-progress: false\n\njobs:\n  shellcheck:\n    name: Test\n    uses: ./.github/workflows/check.yml\n  build:\n    name: Build\n    needs: shellcheck\n    runs-on: ubuntu-latest\n    permissions:\n      actions: write\n      packages: write\n      contents: read\n    steps:\n      -\n        name: Checkout\n        uses: actions/checkout@v6\n        with:\n          fetch-depth: 0\n      -\n        name: Docker metadata\n        id: meta\n        uses: docker/metadata-action@v5\n        with:\n          context: git\n          images: |\n            ${{ secrets.DOCKERHUB_REPO }}\n            ghcr.io/${{ github.repository }}\n          tags: |\n            type=raw,value=latest,priority=100\n            type=raw,value=${{ vars.MAJOR }}.${{ vars.MINOR }}\n          labels: |\n            org.opencontainers.image.title=${{ vars.NAME }}\n        env:\n          DOCKER_METADATA_ANNOTATIONS_LEVELS: manifest\n      - \n        name: Set up Docker Buildx\n        uses: docker/setup-buildx-action@v3\n      -\n        name: Login into Docker Hub\n        uses: docker/login-action@v3\n        with:\n          username: ${{ secrets.DOCKERHUB_USERNAME }}\n          password: ${{ secrets.DOCKERHUB_TOKEN }}\n      -\n        name: Login to GitHub Container Registry\n        uses: docker/login-action@v3\n        with:\n          registry: ghcr.io\n          username: ${{ github.actor }}\n          password: ${{ secrets.GITHUB_TOKEN }}\n      -\n        name: Build Docker image\n        uses: docker/build-push-action@v6\n        with:\n          context: .\n          push: true\n          provenance: false\n          platforms: linux/amd64\n          tags: ${{ steps.meta.outputs.tags }}\n          labels: ${{ steps.meta.outputs.labels }}\n          annotations: ${{ steps.meta.outputs.annotations }}\n          build-args: |\n            VERSION_ARG=${{ steps.meta.outputs.version }}\n      -\n        name: Create a release\n        uses: action-pack/github-release@v2\n        with:\n          tag: \"v${{ steps.meta.outputs.version }}\"\n          title: \"v${{ steps.meta.outputs.version }}\"\n          token: ${{ secrets.REPO_ACCESS_TOKEN }}\n      -\n        name: Increment version variable\n        uses: action-pack/bump@v2\n        with:\n          token: ${{ secrets.REPO_ACCESS_TOKEN }}\n      -\n        name: Send mail\n        uses: action-pack/send-mail@v1\n        with:\n          to: ${{secrets.MAILTO}}\n          from: Github Actions <${{secrets.MAILTO}}>\n          connection_url: ${{secrets.MAIL_CONNECTION}}\n          subject: Build of ${{ github.event.repository.name }} v${{ steps.meta.outputs.version }} completed\n          body: |\n              The build job of ${{ github.event.repository.name }} v${{ steps.meta.outputs.version }} was completed successfully! \n              \n              See https://github.com/${{ github.repository }}/actions for more information.\n"
  },
  {
    "path": ".github/workflows/check.yml",
    "content": "on: [workflow_call]\nname: \"Check\"\npermissions: {}\n\njobs:\n  shellcheck:\n    name: shellcheck\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v6\n      - name: Run ShellCheck\n        uses: ludeeus/action-shellcheck@master\n        env:\n          SHELLCHECK_OPTS: -x --source-path=src -e SC1091 -e SC2001 -e SC2002 -e SC2034 -e SC2064 -e SC2153 -e SC2317 -e SC2028\n      - name: Lint Dockerfile\n        uses: hadolint/hadolint-action@v3.3.0\n        with:\n          dockerfile: Dockerfile\n          ignore: DL3008,DL3018,DL3020,DL3029,DL3059 \n          failure-threshold: warning\n      -\n        name: Validate JSON and YML files\n        uses: GrantBirki/json-yaml-validate@v4\n        with:\n          yaml_exclude_regex: \".*\\\\kubernetes\\\\.yml$\"\n"
  },
  {
    "path": ".github/workflows/hub.yml",
    "content": "name: Update\non:\n  push:\n    branches:\n      - master\n    paths:\n      - readme.md\n      - README.md\n      - .github/workflows/hub.yml\n\njobs:\n  dockerHubDescription:\n    runs-on: ubuntu-latest\n    steps:\n      -\n        name: Checkout repo\n        uses: actions/checkout@v6\n      - \n        name: Docker Hub Description\n        uses: peter-evans/dockerhub-description@v5\n        with:\n          username: ${{ secrets.DOCKERHUB_USERNAME }}\n          password: ${{ secrets.DOCKERHUB_TOKEN }}\n          repository: ${{ secrets.DOCKERHUB_REPO }}\n          short-description: ${{ github.event.repository.description }}\n          readme-filepath: ./readme.md\n"
  },
  {
    "path": ".github/workflows/review.yml",
    "content": "on:\n  pull_request:\n\nname: \"Review\"\n\npermissions:\n  contents: read\n  pull-requests: write\n  checks: write\n\njobs:\n  review:\n    name: review\n    runs-on: ubuntu-latest\n    steps:\n      -\n        name: Checkout\n        uses: actions/checkout@v6\n      -\n        name: Spelling\n        uses: reviewdog/action-misspell@v1\n        with:\n          locale: \"US\"\n          level: warning\n          pattern: |\n            *.md\n            *.sh\n          reporter: github-pr-review\n          github_token: ${{ secrets.GITHUB_TOKEN }}\n      -\n        name: Hadolint\n        uses: reviewdog/action-hadolint@v1\n        with:\n          level: warning\n          reporter: github-pr-review\n          hadolint_ignore: DL3008 DL3018 DL3020 DL3029 DL3059\n          github_token: ${{ secrets.GITHUB_TOKEN }}\n      -\n        name: YamlLint\n        uses: reviewdog/action-yamllint@v1\n        with:\n          level: warning\n          reporter: github-pr-review\n          github_token: ${{ secrets.GITHUB_TOKEN }}\n      -\n        name: ActionLint\n        uses: reviewdog/action-actionlint@v1\n        with:\n          level: warning\n          reporter: github-pr-review\n          github_token: ${{ secrets.GITHUB_TOKEN }}\n      -\n        name: Shellformat\n        uses: reviewdog/action-shfmt@v1\n        with:\n          level: warning\n          shfmt_flags: \"-i 2 -ci -bn\"\n          github_token: ${{ secrets.GITHUB_TOKEN }}\n      -\n        name: Shellcheck\n        uses: reviewdog/action-shellcheck@v1\n        with:\n          level: warning\n          reporter: github-pr-review\n          shellcheck_flags: -x -e SC1091 -e SC2001 -e SC2002 -e SC2034 -e SC2064 -e SC2153 -e SC2317 -e SC2028\n          github_token: ${{ secrets.GITHUB_TOKEN }}\n"
  },
  {
    "path": ".github/workflows/test.yml",
    "content": "on:\n  workflow_dispatch:\n  pull_request:\n\nname: \"Test\"\npermissions: {}\n\njobs:\n  shellcheck:\n    name: Test\n    uses: ./.github/workflows/check.yml\n"
  },
  {
    "path": ".gitignore",
    "content": "\n"
  },
  {
    "path": "Dockerfile",
    "content": "# syntax=docker/dockerfile:1\n\nFROM --platform=$BUILDPLATFORM alpine:3.22 AS builder\n\nARG VERSION_OPENCORE=\"1.0.4\"\nARG REPO_OPENCORE=\"https://github.com/acidanthera/OpenCorePkg\"\nADD $REPO_OPENCORE/releases/download/$VERSION_OPENCORE/OpenCore-$VERSION_OPENCORE-RELEASE.zip /tmp/opencore.zip\n\nRUN apk --update --no-cache add unzip && \\\n    unzip /tmp/opencore.zip -d /tmp/oc && \\\n    cp /tmp/oc/Utilities/macserial/macserial.linux /macserial && \\\n    rm -rf /tmp/* /var/tmp/* /var/cache/apk/*\n\nFROM scratch AS runner\nCOPY --from=qemux/qemu:7.29 / /\n\nARG VERSION_ARG=\"0.0\"\nARG VERSION_KVM_OPENCORE=\"v21\"\nARG VERSION_OSX_KVM=\"326053dd61f49375d5dfb28ee715d38b04b5cd8e\"\nARG REPO_OSX_KVM=\"https://raw.githubusercontent.com/kholia/OSX-KVM\"\nARG REPO_KVM_OPENCORE=\"https://github.com/thenickdude/KVM-Opencore\"\n\nARG DEBCONF_NOWARNINGS=\"yes\"\nARG DEBIAN_FRONTEND=\"noninteractive\"\nARG DEBCONF_NONINTERACTIVE_SEEN=\"true\"\n\nRUN set -eu && \\\n    apt-get update && \\\n    apt-get --no-install-recommends -y install \\\n    mtools && \\\n    apt-get clean && \\\n    echo \"$VERSION_ARG\" > /run/version && \\\n    rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*\n\nCOPY --chmod=755 ./src /run/\nCOPY --chmod=755 ./assets /assets/\nCOPY --chmod=755 --from=builder /macserial /usr/local/bin/\n\nADD --chmod=644 \\\n    $REPO_OSX_KVM/$VERSION_OSX_KVM/OVMF_CODE.fd \\\n    $REPO_OSX_KVM/$VERSION_OSX_KVM/OVMF_VARS.fd \\\n    $REPO_OSX_KVM/$VERSION_OSX_KVM/OVMF_VARS-1024x768.fd \\\n    $REPO_OSX_KVM/$VERSION_OSX_KVM/OVMF_VARS-1920x1080.fd /usr/share/OVMF/\n\nADD $REPO_KVM_OPENCORE/releases/download/$VERSION_KVM_OPENCORE/OpenCore-$VERSION_KVM_OPENCORE.iso.gz /opencore.iso.gz\n\nVOLUME /storage\nEXPOSE 5900 8006\n\nENV VERSION=\"14\"\nENV RAM_SIZE=\"4G\"\nENV CPU_CORES=\"1\"\nENV DISK_SIZE=\"64G\"\n\nENTRYPOINT [\"/usr/bin/tini\", \"-s\", \"/run/entry.sh\"]\n"
  },
  {
    "path": "assets/config.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>ACPI</key>\n\t<dict>\n\t\t<key>Add</key>\n\t\t<array>\n\t\t\t<dict>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>My custom DSDT</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>DSDT.aml</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>My custom SSDT</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>SSDT-1.aml</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>Read the comment in dsl sample</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>SSDT-ALS0.aml</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>Read the comment in dsl sample</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>SSDT-AWAC-DISABLE.aml</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>Read the comment in dsl sample</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>SSDT-BRG0.aml</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>Read the comment in dsl sample</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>SSDT-EC-USBX.aml</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>Fake EC and USBX Power</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<true/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>SSDT-EC.aml</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>Read the comment in dsl sample</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>SSDT-EHCx-DISABLE.aml</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>Read the comment in dsl sample</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>SSDT-IMEI.aml</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>CPU AGPM Plugin=1</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<true/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>SSDT-PLUG.aml</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>Read the comment in dsl sample</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>SSDT-PMC.aml</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>Read the comment in dsl sample</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>SSDT-PNLF.aml</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>Read the comment in dsl sample</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>SSDT-RTC0-RANGE.aml</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>Read the comment in dsl sample</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>SSDT-RTC0.aml</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>Read the comment in dsl sample</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>SSDT-SBUS-MCHC.aml</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>Read the comment in dsl sample</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>SSDT-UNC.aml</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>add DTGP method</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<true/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>SSDT-DTGP.aml</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>USB 2.0 Injection</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<true/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>SSDT-EHCI.aml</string>\n\t\t\t</dict>\n\t\t</array>\n\t\t<key>Delete</key>\n\t\t<array>\n\t\t\t<dict>\n\t\t\t\t<key>All</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>Delete CpuPm</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>OemTableId</key>\n\t\t\t\t<data>Q3B1UG0AAAA=</data>\n\t\t\t\t<key>TableLength</key>\n\t\t\t\t<integer>0</integer>\n\t\t\t\t<key>TableSignature</key>\n\t\t\t\t<data>U1NEVA==</data>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>All</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>Delete Cpu0Ist</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>OemTableId</key>\n\t\t\t\t<data>Q3B1MElzdAA=</data>\n\t\t\t\t<key>TableLength</key>\n\t\t\t\t<integer>0</integer>\n\t\t\t\t<key>TableSignature</key>\n\t\t\t\t<data>U1NEVA==</data>\n\t\t\t</dict>\n\t\t</array>\n\t\t<key>Patch</key>\n\t\t<array>\n\t\t\t<dict>\n\t\t\t\t<key>Base</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>BaseSkip</key>\n\t\t\t\t<integer>0</integer>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>Replace one byte sequence with another</string>\n\t\t\t\t<key>Count</key>\n\t\t\t\t<integer>0</integer>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Find</key>\n\t\t\t\t<data>ESIzRA==</data>\n\t\t\t\t<key>Limit</key>\n\t\t\t\t<integer>0</integer>\n\t\t\t\t<key>Mask</key>\n\t\t\t\t<data></data>\n\t\t\t\t<key>OemTableId</key>\n\t\t\t\t<data></data>\n\t\t\t\t<key>Replace</key>\n\t\t\t\t<data>RDMiEQ==</data>\n\t\t\t\t<key>ReplaceMask</key>\n\t\t\t\t<data></data>\n\t\t\t\t<key>Skip</key>\n\t\t\t\t<integer>0</integer>\n\t\t\t\t<key>TableLength</key>\n\t\t\t\t<integer>0</integer>\n\t\t\t\t<key>TableSignature</key>\n\t\t\t\t<data></data>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Base</key>\n\t\t\t\t<string>\\_SB.PCI0.LPCB.HPET</string>\n\t\t\t\t<key>BaseSkip</key>\n\t\t\t\t<integer>0</integer>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>HPET _CRS to XCRS</string>\n\t\t\t\t<key>Count</key>\n\t\t\t\t<integer>1</integer>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Find</key>\n\t\t\t\t<data>X0NSUw==</data>\n\t\t\t\t<key>Limit</key>\n\t\t\t\t<integer>0</integer>\n\t\t\t\t<key>Mask</key>\n\t\t\t\t<data></data>\n\t\t\t\t<key>OemTableId</key>\n\t\t\t\t<data></data>\n\t\t\t\t<key>Replace</key>\n\t\t\t\t<data>WENSUw==</data>\n\t\t\t\t<key>ReplaceMask</key>\n\t\t\t\t<data></data>\n\t\t\t\t<key>Skip</key>\n\t\t\t\t<integer>0</integer>\n\t\t\t\t<key>TableLength</key>\n\t\t\t\t<integer>0</integer>\n\t\t\t\t<key>TableSignature</key>\n\t\t\t\t<data></data>\n\t\t\t</dict>\n\t\t</array>\n\t\t<key>Quirks</key>\n\t\t<dict>\n\t\t\t<key>FadtEnableReset</key>\n\t\t\t<false/>\n\t\t\t<key>NormalizeHeaders</key>\n\t\t\t<false/>\n\t\t\t<key>RebaseRegions</key>\n\t\t\t<false/>\n\t\t\t<key>ResetHwSig</key>\n\t\t\t<false/>\n\t\t\t<key>ResetLogoStatus</key>\n\t\t\t<true/>\n\t\t\t<key>SyncTableIds</key>\n\t\t\t<false/>\n\t\t</dict>\n\t</dict>\n\t<key>Booter</key>\n\t<dict>\n\t\t<key>MmioWhitelist</key>\n\t\t<array/>\n\t\t<key>Patch</key>\n\t\t<array/>\n\t\t<key>Quirks</key>\n\t\t<dict>\n\t\t\t<key>AllowRelocationBlock</key>\n\t\t\t<false/>\n\t\t\t<key>AvoidRuntimeDefrag</key>\n\t\t\t<true/>\n\t\t\t<key>DevirtualiseMmio</key>\n\t\t\t<false/>\n\t\t\t<key>DisableSingleUser</key>\n\t\t\t<false/>\n\t\t\t<key>DisableVariableWrite</key>\n\t\t\t<false/>\n\t\t\t<key>DiscardHibernateMap</key>\n\t\t\t<false/>\n\t\t\t<key>EnableSafeModeSlide</key>\n\t\t\t<true/>\n\t\t\t<key>EnableWriteUnprotector</key>\n\t\t\t<true/>\n\t\t\t<key>FixupAppleEfiImages</key>\n\t\t\t<false/>\n\t\t\t<key>ForceBooterSignature</key>\n\t\t\t<false/>\n\t\t\t<key>ForceExitBootServices</key>\n\t\t\t<false/>\n\t\t\t<key>ProtectMemoryRegions</key>\n\t\t\t<false/>\n\t\t\t<key>ProtectSecureBoot</key>\n\t\t\t<false/>\n\t\t\t<key>ProtectUefiServices</key>\n\t\t\t<false/>\n\t\t\t<key>ProvideCustomSlide</key>\n\t\t\t<true/>\n\t\t\t<key>ProvideMaxSlide</key>\n\t\t\t<integer>0</integer>\n\t\t\t<key>RebuildAppleMemoryMap</key>\n\t\t\t<false/>\n\t\t\t<key>ResizeAppleGpuBars</key>\n\t\t\t<integer>-1</integer>\n\t\t\t<key>SetupVirtualMap</key>\n\t\t\t<false/>\n\t\t\t<key>SignalAppleOS</key>\n\t\t\t<false/>\n\t\t\t<key>SyncRuntimePermissions</key>\n\t\t\t<false/>\n\t\t</dict>\n\t</dict>\n\t<key>DeviceProperties</key>\n\t<dict>\n\t\t<key>Add</key>\n\t\t<dict>\n\t\t\t<key>PciRoot(0x1)/Pci(0x1F,0x0)</key>\n\t\t\t<dict>\n\t\t\t\t<key>compatible</key>\n\t\t\t\t<string>pci8086,2916</string>\n\t\t\t\t<key>device-id</key>\n\t\t\t\t<data>\n\t\t\t\tFikA\n\t\t\t\t</data>\n\t\t\t\t<key>name</key>\n\t\t\t\t<string>pci8086,2916</string>\n\t\t\t</dict>\n\t\t</dict>\n\t\t<key>Delete</key>\n\t\t<dict/>\n\t</dict>\n\t<key>Kernel</key>\n\t<dict>\n\t\t<key>Add</key>\n\t\t<array>\n\t\t\t<dict>\n\t\t\t\t<key>Arch</key>\n\t\t\t\t<string>Any</string>\n\t\t\t\t<key>BundlePath</key>\n\t\t\t\t<string>Lilu.kext</string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>Patch engine</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<true/>\n\t\t\t\t<key>ExecutablePath</key>\n\t\t\t\t<string>Contents/MacOS/Lilu</string>\n\t\t\t\t<key>MaxKernel</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>MinKernel</key>\n\t\t\t\t<string>8.0.0</string>\n\t\t\t\t<key>PlistPath</key>\n\t\t\t\t<string>Contents/Info.plist</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arch</key>\n\t\t\t\t<string>Any</string>\n\t\t\t\t<key>BundlePath</key>\n\t\t\t\t<string>VirtualSMC.kext</string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>SMC emulator</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>ExecutablePath</key>\n\t\t\t\t<string>Contents/MacOS/VirtualSMC</string>\n\t\t\t\t<key>MaxKernel</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>MinKernel</key>\n\t\t\t\t<string>8.0.0</string>\n\t\t\t\t<key>PlistPath</key>\n\t\t\t\t<string>Contents/Info.plist</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arch</key>\n\t\t\t\t<string>x86_64</string>\n\t\t\t\t<key>BundlePath</key>\n\t\t\t\t<string>WhateverGreen.kext</string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>Video patches</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<true/>\n\t\t\t\t<key>ExecutablePath</key>\n\t\t\t\t<string>Contents/MacOS/WhateverGreen</string>\n\t\t\t\t<key>MaxKernel</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>MinKernel</key>\n\t\t\t\t<string>10.0.0</string>\n\t\t\t\t<key>PlistPath</key>\n\t\t\t\t<string>Contents/Info.plist</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arch</key>\n\t\t\t\t<string>Any</string>\n\t\t\t\t<key>BundlePath</key>\n\t\t\t\t<string>AppleALC.kext</string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>Audio patches</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<true/>\n\t\t\t\t<key>ExecutablePath</key>\n\t\t\t\t<string>Contents/MacOS/AppleALC</string>\n\t\t\t\t<key>MaxKernel</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>MinKernel</key>\n\t\t\t\t<string>8.0.0</string>\n\t\t\t\t<key>PlistPath</key>\n\t\t\t\t<string>Contents/Info.plist</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arch</key>\n\t\t\t\t<string>x86_64</string>\n\t\t\t\t<key>BundlePath</key>\n\t\t\t\t<string>IntelMausi.kext</string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>Intel Ethernet LAN</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>ExecutablePath</key>\n\t\t\t\t<string>Contents/MacOS/IntelMausi</string>\n\t\t\t\t<key>MaxKernel</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>MinKernel</key>\n\t\t\t\t<string>13.0.0</string>\n\t\t\t\t<key>PlistPath</key>\n\t\t\t\t<string>Contents/Info.plist</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arch</key>\n\t\t\t\t<string>x86_64</string>\n\t\t\t\t<key>BundlePath</key>\n\t\t\t\t<string>Legacy_USB3.kext</string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>XHC ports configuration</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>ExecutablePath</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>MaxKernel</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>MinKernel</key>\n\t\t\t\t<string>15.0.0</string>\n\t\t\t\t<key>PlistPath</key>\n\t\t\t\t<string>Contents/Info.plist</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arch</key>\n\t\t\t\t<string>x86_64</string>\n\t\t\t\t<key>BundlePath</key>\n\t\t\t\t<string>MCEReporterDisabler.kext</string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>AppleMCEReporter disabler</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<true/>\n\t\t\t\t<key>ExecutablePath</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>MaxKernel</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>MinKernel</key>\n\t\t\t\t<string>19.0.0</string>\n\t\t\t\t<key>PlistPath</key>\n\t\t\t\t<string>Contents/Info.plist</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arch</key>\n\t\t\t\t<string>x86_64</string>\n\t\t\t\t<key>BundlePath</key>\n\t\t\t\t<string>VoodooPS2Controller.kext</string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>ExecutablePath</key>\n\t\t\t\t<string>Contents/MacOS/VoodooPS2Controller</string>\n\t\t\t\t<key>MaxKernel</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>MinKernel</key>\n\t\t\t\t<string>15.0.0</string>\n\t\t\t\t<key>PlistPath</key>\n\t\t\t\t<string>Contents/Info.plist</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arch</key>\n\t\t\t\t<string>x86_64</string>\n\t\t\t\t<key>BundlePath</key>\n\t\t\t\t<string>VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext</string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>ExecutablePath</key>\n\t\t\t\t<string>Contents/MacOS/VoodooPS2Keyboard</string>\n\t\t\t\t<key>MaxKernel</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>MinKernel</key>\n\t\t\t\t<string>15.0.0</string>\n\t\t\t\t<key>PlistPath</key>\n\t\t\t\t<string>Contents/Info.plist</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arch</key>\n\t\t\t\t<string>x86_64</string>\n\t\t\t\t<key>BundlePath</key>\n\t\t\t\t<string>VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext</string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>ExecutablePath</key>\n\t\t\t\t<string>Contents/MacOS/VoodooPS2Mouse</string>\n\t\t\t\t<key>MaxKernel</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>MinKernel</key>\n\t\t\t\t<string>15.0.0</string>\n\t\t\t\t<key>PlistPath</key>\n\t\t\t\t<string>Contents/Info.plist</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arch</key>\n\t\t\t\t<string>x86_64</string>\n\t\t\t\t<key>BundlePath</key>\n\t\t\t\t<string>VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext</string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>ExecutablePath</key>\n\t\t\t\t<string>Contents/MacOS/VoodooPS2Trackpad</string>\n\t\t\t\t<key>MaxKernel</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>MinKernel</key>\n\t\t\t\t<string>15.0.0</string>\n\t\t\t\t<key>PlistPath</key>\n\t\t\t\t<string>Contents/Info.plist</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arch</key>\n\t\t\t\t<string>x86_64</string>\n\t\t\t\t<key>BundlePath</key>\n\t\t\t\t<string>VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext</string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>ExecutablePath</key>\n\t\t\t\t<string>Contents/MacOS/VoodooInput</string>\n\t\t\t\t<key>MaxKernel</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>MinKernel</key>\n\t\t\t\t<string>15.0.0</string>\n\t\t\t\t<key>PlistPath</key>\n\t\t\t\t<string>Contents/Info.plist</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arch</key>\n\t\t\t\t<string>x86_64</string>\n\t\t\t\t<key>BundlePath</key>\n\t\t\t\t<string>USBPorts.kext</string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<true/>\n\t\t\t\t<key>ExecutablePath</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>MaxKernel</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>MinKernel</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>PlistPath</key>\n\t\t\t\t<string>Contents/Info.plist</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arch</key>\n\t\t\t\t<string>x86_64</string>\n\t\t\t\t<key>BundlePath</key>\n\t\t\t\t<string>AGPMInjector.kext</string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<true/>\n\t\t\t\t<key>ExecutablePath</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>MaxKernel</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>MinKernel</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>PlistPath</key>\n\t\t\t\t<string>Contents/Info.plist</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arch</key>\n\t\t\t\t<string>x86_64</string>\n\t\t\t\t<key>BundlePath</key>\n\t\t\t\t<string>BrcmFirmwareData.kext</string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>Bluetooth firmware</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<true/>\n\t\t\t\t<key>ExecutablePath</key>\n\t\t\t\t<string>Contents/MacOS/BrcmFirmwareData</string>\n\t\t\t\t<key>MaxKernel</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>MinKernel</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>PlistPath</key>\n\t\t\t\t<string>Contents/Info.plist</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arch</key>\n\t\t\t\t<string>x86_64</string>\n\t\t\t\t<key>BundlePath</key>\n\t\t\t\t<string>BrcmNonPatchRAM2.kext</string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>Bluetooth support for macOS 10.11-10.14</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<true/>\n\t\t\t\t<key>ExecutablePath</key>\n\t\t\t\t<string>Contents/MacOS/BrcmNonPatchRAM2</string>\n\t\t\t\t<key>MaxKernel</key>\n\t\t\t\t<string>18.99.99</string>\n\t\t\t\t<key>MinKernel</key>\n\t\t\t\t<string>15.0.0</string>\n\t\t\t\t<key>PlistPath</key>\n\t\t\t\t<string>Contents/Info.plist</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arch</key>\n\t\t\t\t<string>x86_64</string>\n\t\t\t\t<key>BundlePath</key>\n\t\t\t\t<string>BrcmPatchRAM2.kext</string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>Bluetooth support for macOS 10.11-10.14</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<true/>\n\t\t\t\t<key>ExecutablePath</key>\n\t\t\t\t<string>Contents/MacOS/BrcmPatchRAM2</string>\n\t\t\t\t<key>MaxKernel</key>\n\t\t\t\t<string>18.99.99</string>\n\t\t\t\t<key>MinKernel</key>\n\t\t\t\t<string>15.0.0</string>\n\t\t\t\t<key>PlistPath</key>\n\t\t\t\t<string>Contents/Info.plist</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arch</key>\n\t\t\t\t<string>x86_64</string>\n\t\t\t\t<key>BundlePath</key>\n\t\t\t\t<string>BrcmPatchRAM3.kext</string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>Bluetooth support for macOS 10.15-</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<true/>\n\t\t\t\t<key>ExecutablePath</key>\n\t\t\t\t<string>Contents/MacOS/BrcmPatchRAM3</string>\n\t\t\t\t<key>MaxKernel</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>MinKernel</key>\n\t\t\t\t<string>19.0.0</string>\n\t\t\t\t<key>PlistPath</key>\n\t\t\t\t<string>Contents/Info.plist</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arch</key>\n\t\t\t\t<string>x86_64</string>\n\t\t\t\t<key>BundlePath</key>\n\t\t\t\t<string>BrcmBluetoothInjector.kext</string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>Bluetooth support for macOS 10.15-11</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<true/>\n\t\t\t\t<key>ExecutablePath</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>MaxKernel</key>\n\t\t\t\t<string>20.99.99</string>\n\t\t\t\t<key>MinKernel</key>\n\t\t\t\t<string>19.0.0</string>\n\t\t\t\t<key>PlistPath</key>\n\t\t\t\t<string>Contents/Info.plist</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arch</key>\n\t\t\t\t<string>x86_64</string>\n\t\t\t\t<key>BundlePath</key>\n\t\t\t\t<string>BlueToolFixup.kext</string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>Bluetooth support for macOS 12-</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<true/>\n\t\t\t\t<key>ExecutablePath</key>\n\t\t\t\t<string>Contents/MacOS/BlueToolFixup</string>\n\t\t\t\t<key>MaxKernel</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>MinKernel</key>\n\t\t\t\t<string>21.0.0</string>\n\t\t\t\t<key>PlistPath</key>\n\t\t\t\t<string>Contents/Info.plist</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arch</key>\n\t\t\t\t<string>x86_64</string>\n\t\t\t\t<key>BundlePath</key>\n\t\t\t\t<string>CryptexFixup.kext</string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>Support for non-AVX2 CPUs in Ventura/Sonoma</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<true/>\n\t\t\t\t<key>ExecutablePath</key>\n\t\t\t\t<string>Contents/MacOS/CryptexFixup</string>\n\t\t\t\t<key>MaxKernel</key>\n\t\t\t\t<string>23.99.99</string>\n\t\t\t\t<key>MinKernel</key>\n\t\t\t\t<string>22.1.0</string>\n\t\t\t\t<key>PlistPath</key>\n\t\t\t\t<string>Contents/Info.plist</string>\n\t\t\t</dict>\n\t\t</array>\n\t\t<key>Block</key>\n\t\t<array>\n\t\t\t<dict>\n\t\t\t\t<key>Arch</key>\n\t\t\t\t<string>Any</string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Identifier</key>\n\t\t\t\t<string>com.apple.driver.AppleTyMCEDriver</string>\n\t\t\t\t<key>MaxKernel</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>MinKernel</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Strategy</key>\n\t\t\t\t<string>Disable</string>\n\t\t\t</dict>\n\t\t</array>\n\t\t<key>Emulate</key>\n\t\t<dict>\n\t\t\t<key>Cpuid1Data</key>\n\t\t\t<data>\n\t\t\tVAYFAAAAAAAAAAAAAAAAAA==\n\t\t\t</data>\n\t\t\t<key>Cpuid1Mask</key>\n\t\t\t<data>\n\t\t\t////AAAAAAAAAAAAAAAAAA==\n\t\t\t</data>\n\t\t\t<key>DummyPowerManagement</key>\n\t\t\t<true/>\n\t\t\t<key>MaxKernel</key>\n\t\t\t<string></string>\n\t\t\t<key>MinKernel</key>\n\t\t\t<string></string>\n\t\t</dict>\n\t\t<key>Force</key>\n\t\t<array>\n\t\t\t<dict>\n\t\t\t\t<key>Arch</key>\n\t\t\t\t<string>Any</string>\n\t\t\t\t<key>BundlePath</key>\n\t\t\t\t<string>System/Library/Extensions/IONetworkingFamily.kext</string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>ExecutablePath</key>\n\t\t\t\t<string>Contents/MacOS/IONetworkingFamily</string>\n\t\t\t\t<key>Identifier</key>\n\t\t\t\t<string>com.apple.iokit.IONetworkingFamily</string>\n\t\t\t\t<key>MaxKernel</key>\n\t\t\t\t<string>13.99.99</string>\n\t\t\t\t<key>MinKernel</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>PlistPath</key>\n\t\t\t\t<string>Contents/Info.plist</string>\n\t\t\t</dict>\n\t\t</array>\n\t\t<key>Patch</key>\n\t\t<array>\n\t\t\t<dict>\n\t\t\t\t<key>Arch</key>\n\t\t\t\t<string>x86_64</string>\n\t\t\t\t<key>Base</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>algrey - cpuid_set_cpufamily - force CPUFAMILY_INTEL_PENRYN</string>\n\t\t\t\t<key>Count</key>\n\t\t\t\t<integer>1</integer>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<true/>\n\t\t\t\t<key>Find</key>\n\t\t\t\t<data>\n\t\t\t\tMduAPQAAAAAGdQA=\n\t\t\t\t</data>\n\t\t\t\t<key>Identifier</key>\n\t\t\t\t<string>kernel</string>\n\t\t\t\t<key>Limit</key>\n\t\t\t\t<integer>0</integer>\n\t\t\t\t<key>Mask</key>\n\t\t\t\t<data>\n\t\t\t\t/////wAAAP///wA=\n\t\t\t\t</data>\n\t\t\t\t<key>MaxKernel</key>\n\t\t\t\t<string>20.3.99</string>\n\t\t\t\t<key>MinKernel</key>\n\t\t\t\t<string>17.0.0</string>\n\t\t\t\t<key>Replace</key>\n\t\t\t\t<data>\n\t\t\t\tu7xP6njpXQAAAJA=\n\t\t\t\t</data>\n\t\t\t\t<key>ReplaceMask</key>\n\t\t\t\t<data>\n\t\t\t\t</data>\n\t\t\t\t<key>Skip</key>\n\t\t\t\t<integer>0</integer>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arch</key>\n\t\t\t\t<string>x86_64</string>\n\t\t\t\t<key>Base</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>algrey - thenickdude - cpuid_set_cpufamily - force CPUFAMILY_INTEL_PENRYN (Big Sur 11.3+, Monterey, Ventura, Sonoma)</string>\n\t\t\t\t<key>Count</key>\n\t\t\t\t<integer>1</integer>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<true/>\n\t\t\t\t<key>Find</key>\n\t\t\t\t<data>\n\t\t\t\t\tMdKzAYA9AAAAAAZ1\n\t\t\t\t</data>\n\t\t\t\t<key>Identifier</key>\n\t\t\t\t<string>kernel</string>\n\t\t\t\t<key>Limit</key>\n\t\t\t\t<integer>0</integer>\n\t\t\t\t<key>Mask</key>\n\t\t\t\t<data>\n\t\t\t\t\t////////AAAAAP//\n\t\t\t\t</data>\n\t\t\t\t<key>MaxKernel</key>\n\t\t\t\t<string>23.99.99</string>\n\t\t\t\t<key>MinKernel</key>\n\t\t\t\t<string>20.4.0</string>\n\t\t\t\t<key>Replace</key>\n\t\t\t\t<data>\n\t\t\t\t\turxP6nizAJCQkJDr\n\t\t\t\t</data>\n\t\t\t\t<key>ReplaceMask</key>\n\t\t\t\t<data>\n\t\t\t\t</data>\n\t\t\t\t<key>Skip</key>\n\t\t\t\t<integer>0</integer>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arch</key>\n\t\t\t\t<string>x86_64</string>\n\t\t\t\t<key>Base</key>\n\t\t\t\t<string>_early_random</string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>SurPlus v1 - PART 1 of 2 - Patch read_erandom (inlined in _early_random)</string>\n\t\t\t\t<key>Count</key>\n\t\t\t\t<integer>1</integer>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<true/>\n\t\t\t\t<key>Find</key>\n\t\t\t\t<data>AHQjSIs=</data>\n\t\t\t\t<key>Identifier</key>\n\t\t\t\t<string>kernel</string>\n\t\t\t\t<key>Limit</key>\n\t\t\t\t<integer>800</integer>\n\t\t\t\t<key>Mask</key>\n\t\t\t\t<data></data>\n\t\t\t\t<key>MaxKernel</key>\n\t\t\t\t<string>21.1.0</string>\n\t\t\t\t<key>MinKernel</key>\n\t\t\t\t<string>20.4.0</string>\n\t\t\t\t<key>Replace</key>\n\t\t\t\t<data>AOsjSIs=</data>\n\t\t\t\t<key>ReplaceMask</key>\n\t\t\t\t<data></data>\n\t\t\t\t<key>Skip</key>\n\t\t\t\t<integer>0</integer>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arch</key>\n\t\t\t\t<string>x86_64</string>\n\t\t\t\t<key>Base</key>\n\t\t\t\t<string>_register_and_init_prng</string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>SurPlus v1 - PART 2 of 2 - Patch register_and_init_prng</string>\n\t\t\t\t<key>Count</key>\n\t\t\t\t<integer>1</integer>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<true/>\n\t\t\t\t<key>Find</key>\n\t\t\t\t<data>ukgBAAAx9g==</data>\n\t\t\t\t<key>Identifier</key>\n\t\t\t\t<string>kernel</string>\n\t\t\t\t<key>Limit</key>\n\t\t\t\t<integer>256</integer>\n\t\t\t\t<key>Mask</key>\n\t\t\t\t<data></data>\n\t\t\t\t<key>MaxKernel</key>\n\t\t\t\t<string>21.1.0</string>\n\t\t\t\t<key>MinKernel</key>\n\t\t\t\t<string>20.4.0</string>\n\t\t\t\t<key>Replace</key>\n\t\t\t\t<data>ukgBAADrBQ==</data>\n\t\t\t\t<key>ReplaceMask</key>\n\t\t\t\t<data></data>\n\t\t\t\t<key>Skip</key>\n\t\t\t\t<integer>0</integer>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arch</key>\n\t\t\t\t<string>x86_64</string>\n\t\t\t\t<key>Base</key>\n\t\t\t\t<string>_apfs_filevault_allowed</string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>Force FileVault on Broken Seal (from OCLP project, for non-AVX2 Ventura/Sonoma)</string>\n\t\t\t\t<key>Count</key>\n\t\t\t\t<integer>0</integer>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<true/>\n\t\t\t\t<key>Find</key>\n\t\t\t\t<data></data>\n\t\t\t\t<key>Identifier</key>\n\t\t\t\t<string>com.apple.filesystems.apfs</string>\n\t\t\t\t<key>Limit</key>\n\t\t\t\t<integer>0</integer>\n\t\t\t\t<key>Mask</key>\n\t\t\t\t<data></data>\n\t\t\t\t<key>MaxKernel</key>\n\t\t\t\t<string>23.99.99</string>\n\t\t\t\t<key>MinKernel</key>\n\t\t\t\t<string>22.1.0</string>\n\t\t\t\t<key>Replace</key>\n\t\t\t\t<data>uAEAAADD</data>\n\t\t\t\t<key>ReplaceMask</key>\n\t\t\t\t<data></data>\n\t\t\t\t<key>Skip</key>\n\t\t\t\t<integer>0</integer>\n\t\t\t</dict>\n\t\t</array>\n\t\t<key>Quirks</key>\n\t\t<dict>\n\t\t\t<key>AppleCpuPmCfgLock</key>\n\t\t\t<false/>\n\t\t\t<key>AppleXcpmCfgLock</key>\n\t\t\t<false/>\n\t\t\t<key>AppleXcpmExtraMsrs</key>\n\t\t\t<false/>\n\t\t\t<key>AppleXcpmForceBoost</key>\n\t\t\t<false/>\n\t\t\t<key>CustomPciSerialDevice</key>\n\t\t\t<false/>\n\t\t\t<key>CustomSMBIOSGuid</key>\n\t\t\t<false/>\n\t\t\t<key>DisableIoMapper</key>\n\t\t\t<false/>\n\t\t\t<key>DisableIoMapperMapping</key>\n\t\t\t<false/>\n\t\t\t<key>DisableLinkeditJettison</key>\n\t\t\t<true/>\n\t\t\t<key>DisableRtcChecksum</key>\n\t\t\t<false/>\n\t\t\t<key>ExtendBTFeatureFlags</key>\n\t\t\t<false/>\n\t\t\t<key>ExternalDiskIcons</key>\n\t\t\t<false/>\n\t\t\t<key>ForceAquantiaEthernet</key>\n\t\t\t<false/>\n\t\t\t<key>ForceSecureBootScheme</key>\n\t\t\t<true/>\n\t\t\t<key>IncreasePciBarSize</key>\n\t\t\t<false/>\n\t\t\t<key>LapicKernelPanic</key>\n\t\t\t<false/>\n\t\t\t<key>LegacyCommpage</key>\n\t\t\t<false/>\n\t\t\t<key>PanicNoKextDump</key>\n\t\t\t<false/>\n\t\t\t<key>PowerTimeoutKernelPanic</key>\n\t\t\t<false/>\n\t\t\t<key>ProvideCurrentCpuInfo</key>\n\t\t\t<true/>\n\t\t\t<key>SetApfsTrimTimeout</key>\n\t\t\t<integer>0</integer>\n\t\t\t<key>ThirdPartyDrives</key>\n\t\t\t<false/>\n\t\t\t<key>XhciPortLimit</key>\n\t\t\t<false/>\n\t\t</dict>\n\t\t<key>Scheme</key>\n\t\t<dict>\n\t\t\t<key>CustomKernel</key>\n\t\t\t<false/>\n\t\t\t<key>FuzzyMatch</key>\n\t\t\t<true/>\n\t\t\t<key>KernelArch</key>\n\t\t\t<string>Auto</string>\n\t\t\t<key>KernelCache</key>\n\t\t\t<string>Auto</string>\n\t\t</dict>\n\t</dict>\n\t<key>Misc</key>\n\t<dict>\n\t\t<key>BlessOverride</key>\n\t\t<array/>\n\t\t<key>Boot</key>\n\t\t<dict>\n\t\t\t<key>ConsoleAttributes</key>\n\t\t\t<integer>0</integer>\n\t\t\t<key>HibernateMode</key>\n\t\t\t<string>Auto</string>\n\t\t\t<key>HibernateSkipsPicker</key>\n\t\t\t<false/>\n\t\t\t<key>HideAuxiliary</key>\n\t\t\t<false/>\n\t\t\t<key>InstanceIdentifier</key>\n\t\t\t<string></string>\n\t\t\t<key>LauncherOption</key>\n\t\t\t<string>Disabled</string>\n\t\t\t<key>LauncherPath</key>\n\t\t\t<string>Default</string>\n\t\t\t<key>PickerAttributes</key>\n\t\t\t<integer>17</integer>\n\t\t\t<key>PickerAudioAssist</key>\n\t\t\t<false/>\n\t\t\t<key>PickerMode</key>\n\t\t\t<string>External</string>\n\t\t\t<key>PickerVariant</key>\n\t\t\t<string>Auto</string>\n\t\t\t<key>PollAppleHotKeys</key>\n\t\t\t<true/>\n\t\t\t<key>ShowPicker</key>\n\t\t\t<false/>\n\t\t\t<key>TakeoffDelay</key>\n\t\t\t<integer>0</integer>\n\t\t\t<key>Timeout</key>\n\t\t\t<integer>0</integer>\n\t\t</dict>\n\t\t<key>Debug</key>\n\t\t<dict>\n\t\t\t<key>AppleDebug</key>\n\t\t\t<false/>\n\t\t\t<key>ApplePanic</key>\n\t\t\t<false/>\n\t\t\t<key>DisableWatchDog</key>\n\t\t\t<false/>\n\t\t\t<key>DisplayDelay</key>\n\t\t\t<integer>0</integer>\n\t\t\t<key>DisplayLevel</key>\n\t\t\t<integer>2147483650</integer>\n\t\t\t<key>LogModules</key>\n\t\t\t<string>*</string>\n\t\t\t<key>SysReport</key>\n\t\t\t<false/>\n\t\t\t<key>Target</key>\n\t\t\t<integer>3</integer>\n\t\t</dict>\n\t\t<key>Entries</key>\n\t\t<array/>\n\t\t<key>Security</key>\n\t\t<dict>\n\t\t\t<key>AllowSetDefault</key>\n\t\t\t<false/>\n\t\t\t<key>ApECID</key>\n\t\t\t<integer>0</integer>\n\t\t\t<key>AuthRestart</key>\n\t\t\t<false/>\n\t\t\t<key>BlacklistAppleUpdate</key>\n\t\t\t<true/>\n\t\t\t<key>DmgLoading</key>\n\t\t\t<string>Signed</string>\n\t\t\t<key>EnablePassword</key>\n\t\t\t<false/>\n\t\t\t<key>ExposeSensitiveData</key>\n\t\t\t<integer>6</integer>\n\t\t\t<key>HaltLevel</key>\n\t\t\t<integer>2147483648</integer>\n\t\t\t<key>PasswordHash</key>\n\t\t\t<data></data>\n\t\t\t<key>PasswordSalt</key>\n\t\t\t<data></data>\n\t\t\t<key>ScanPolicy</key>\n\t\t\t<integer>18809603</integer>\n\t\t\t<key>SecureBootModel</key>\n\t\t\t<string>Disabled</string>\n\t\t\t<key>Vault</key>\n\t\t\t<string>Optional</string>\n\t\t</dict>\n\t\t<key>Serial</key>\n\t\t<dict>\n\t\t\t<key>Init</key>\n\t\t\t<false/>\n\t\t\t<key>Override</key>\n\t\t\t<false/>\n\t\t</dict>\n\t\t<key>Tools</key>\n\t\t<array>\n\t\t\t<dict>\n\t\t\t\t<key>Arguments</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Auxiliary</key>\n\t\t\t\t<true/>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>Not signed for security reasons</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<true/>\n\t\t\t\t<key>Flavour</key>\n\t\t\t\t<string>OpenShell:UEFIShell:Shell</string>\n\t\t\t\t<key>FullNvramAccess</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Name</key>\n\t\t\t\t<string>UEFI Shell</string>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>Shell.efi</string>\n\t\t\t\t<key>RealPath</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>TextMode</key>\n\t\t\t\t<false/>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arguments</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Auxiliary</key>\n\t\t\t\t<true/>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>Memory testing utility</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Flavour</key>\n\t\t\t\t<string>MemTest</string>\n\t\t\t\t<key>FullNvramAccess</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Name</key>\n\t\t\t\t<string>memtest86</string>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>memtest86/BOOTX64.efi</string>\n\t\t\t\t<key>RealPath</key>\n\t\t\t\t<true/>\n\t\t\t\t<key>TextMode</key>\n\t\t\t\t<false/>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arguments</key>\n\t\t\t\t<string>Shutdown</string>\n\t\t\t\t<key>Auxiliary</key>\n\t\t\t\t<true/>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>Perform shutdown</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Flavour</key>\n\t\t\t\t<string>Auto</string>\n\t\t\t\t<key>FullNvramAccess</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Name</key>\n\t\t\t\t<string>Shutdown</string>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>ResetSystem.efi</string>\n\t\t\t\t<key>RealPath</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>TextMode</key>\n\t\t\t\t<false/>\n\t\t\t</dict>\n\t\t</array>\n\t</dict>\n\t<key>NVRAM</key>\n\t<dict>\n\t\t<key>Add</key>\n\t\t<dict>\n\t\t\t<key>4D1EDE05-38C7-4A6A-9CC6-4BCCA8B38C14</key>\n\t\t\t<dict>\n\t\t\t\t<key>DefaultBackgroundColor</key>\n\t\t\t\t<data>AAAAAA==</data>\n\t\t\t</dict>\n\t\t\t<key>4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102</key>\n\t\t\t<dict>\n\t\t\t\t<key>rtc-blacklist</key>\n\t\t\t\t<data></data>\n\t\t\t</dict>\n\t\t\t<key>7C436110-AB2A-4BBB-A880-FE41995C9F82</key>\n\t\t\t<dict>\n\t\t\t\t<key>#INFO (prev-lang:kbd)</key>\n\t\t\t\t<string>en:252 (ABC), set 656e3a323532</string>\n\t\t\t\t<key>ForceDisplayRotationInEFI</key>\n\t\t\t\t<integer>0</integer>\n\t\t\t\t<key>SystemAudioVolume</key>\n\t\t\t\t<data>Rg==</data>\n\t\t\t\t<key>boot-args</key>\n\t\t\t\t<string>keepsyms=1</string>\n\t\t\t\t<key>csr-active-config</key>\n\t\t\t\t<data>Jg8=</data>\n\t\t\t\t<key>prev-lang:kbd</key>\n\t\t\t\t<data>ZW4tVVM6MA==</data>\n\t\t\t\t<key>run-efi-updater</key>\n\t\t\t\t<string>No</string>\n\t\t\t</dict>\n\t\t</dict>\n\t\t<key>Delete</key>\n\t\t<dict>\n\t\t\t<key>4D1EDE05-38C7-4A6A-9CC6-4BCCA8B38C14</key>\n\t\t\t<array>\n\t\t\t\t<string>DefaultBackgroundColor</string>\n\t\t\t</array>\n\t\t\t<key>4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102</key>\n\t\t\t<array>\n\t\t\t\t<string>rtc-blacklist</string>\n\t\t\t</array>\n\t\t\t<key>7C436110-AB2A-4BBB-A880-FE41995C9F82</key>\n\t\t\t<array>\n\t\t\t\t<string>boot-args</string>\n\t\t\t\t<string>ForceDisplayRotationInEFI</string>\n\t\t\t</array>\n\t\t</dict>\n\t\t<key>LegacyOverwrite</key>\n\t\t<false/>\n\t\t<key>LegacySchema</key>\n\t\t<dict>\n\t\t\t<key>7C436110-AB2A-4BBB-A880-FE41995C9F82</key>\n\t\t\t<array>\n\t\t\t\t<string>EFILoginHiDPI</string>\n\t\t\t\t<string>EFIBluetoothDelay</string>\n\t\t\t\t<string>LocationServicesEnabled</string>\n\t\t\t\t<string>SystemAudioVolume</string>\n\t\t\t\t<string>SystemAudioVolumeDB</string>\n\t\t\t\t<string>SystemAudioVolumeSaved</string>\n\t\t\t\t<string>bluetoothActiveControllerInfo</string>\n\t\t\t\t<string>bluetoothInternalControllerInfo</string>\n\t\t\t\t<string>flagstate</string>\n\t\t\t\t<string>fmm-computer-name</string>\n\t\t\t\t<string>fmm-mobileme-token-FMM</string>\n\t\t\t\t<string>fmm-mobileme-token-FMM-BridgeHasAccount</string>\n\t\t\t\t<string>nvda_drv</string>\n\t\t\t\t<string>prev-lang:kbd</string>\n\t\t\t\t<string>backlight-level</string>\n\t\t\t\t<string>BootCampHD</string>\n\t\t\t</array>\n\t\t\t<key>8BE4DF61-93CA-11D2-AA0D-00E098032B8C</key>\n\t\t\t<array>\n\t\t\t\t<string>Boot0080</string>\n\t\t\t\t<string>Boot0081</string>\n\t\t\t\t<string>Boot0082</string>\n\t\t\t\t<string>BootNext</string>\n\t\t\t\t<string>BootOrder</string>\n\t\t\t</array>\n\t\t</dict>\n\t\t<key>WriteFlash</key>\n\t\t<true/>\n\t</dict>\n\t<key>PlatformInfo</key>\n\t<dict>\n\t\t<key>Automatic</key>\n\t\t<true/>\n\t\t<key>CustomMemory</key>\n\t\t<false/>\n\t\t<key>Generic</key>\n\t\t<dict>\n\t\t\t<key>AdviseFeatures</key>\n\t\t\t<false/>\n\t\t\t<key>MLB</key>\n\t\t\t<string>C02717306J9JG361M</string>\n\t\t\t<key>MaxBIOSVersion</key>\n\t\t\t<false/>\n\t\t\t<key>ProcessorType</key>\n\t\t\t<integer>0</integer>\n\t\t\t<key>ROM</key>\n\t\t\t<data>m7zhIYfl</data>\n\t\t\t<key>SpoofVendor</key>\n\t\t\t<true/>\n\t\t\t<key>SystemMemoryStatus</key>\n\t\t\t<string>Auto</string>\n\t\t\t<key>SystemProductName</key>\n\t\t\t<string>iMacPro1,1</string>\n\t\t\t<key>SystemSerialNumber</key>\n\t\t\t<string>C02TM2ZBHX87</string>\n\t\t\t<key>SystemUUID</key>\n\t\t\t<string>007076A6-F2A2-4461-BBE5-BAD019F8025A</string>\n\t\t</dict>\n\t\t<key>UpdateDataHub</key>\n\t\t<true/>\n\t\t<key>UpdateNVRAM</key>\n\t\t<true/>\n\t\t<key>UpdateSMBIOS</key>\n\t\t<true/>\n\t\t<key>UpdateSMBIOSMode</key>\n\t\t<string>Create</string>\n\t\t<key>UseRawUuidEncoding</key>\n\t\t<false/>\n\t</dict>\n\t<key>UEFI</key>\n\t<dict>\n\t\t<key>APFS</key>\n\t\t<dict>\n\t\t\t<key>EnableJumpstart</key>\n\t\t\t<true/>\n\t\t\t<key>GlobalConnect</key>\n\t\t\t<false/>\n\t\t\t<key>HideVerbose</key>\n\t\t\t<true/>\n\t\t\t<key>JumpstartHotPlug</key>\n\t\t\t<false/>\n\t\t\t<key>MinDate</key>\n\t\t\t<integer>-1</integer>\n\t\t\t<key>MinVersion</key>\n\t\t\t<integer>-1</integer>\n\t\t</dict>\n\t\t<key>AppleInput</key>\n\t\t<dict>\n\t\t\t<key>AppleEvent</key>\n\t\t\t<string>Builtin</string>\n\t\t\t<key>CustomDelays</key>\n\t\t\t<false/>\n\t\t\t<key>GraphicsInputMirroring</key>\n\t\t\t<true/>\n\t\t\t<key>KeyInitialDelay</key>\n\t\t\t<integer>50</integer>\n\t\t\t<key>KeySubsequentDelay</key>\n\t\t\t<integer>5</integer>\n\t\t\t<key>PointerDwellClickTimeout</key>\n\t\t\t<integer>0</integer>\n\t\t\t<key>PointerDwellDoubleClickTimeout</key>\n\t\t\t<integer>0</integer>\n\t\t\t<key>PointerDwellRadius</key>\n\t\t\t<integer>0</integer>\n\t\t\t<key>PointerPollMask</key>\n\t\t\t<integer>-1</integer>\n\t\t\t<key>PointerPollMax</key>\n\t\t\t<integer>80</integer>\n\t\t\t<key>PointerPollMin</key>\n\t\t\t<integer>10</integer>\n\t\t\t<key>PointerSpeedDiv</key>\n\t\t\t<integer>1</integer>\n\t\t\t<key>PointerSpeedMul</key>\n\t\t\t<integer>1</integer>\n\t\t</dict>\n\t\t<key>Audio</key>\n\t\t<dict>\n\t\t\t<key>AudioCodec</key>\n\t\t\t<integer>0</integer>\n\t\t\t<key>AudioDevice</key>\n\t\t\t<string></string>\n\t\t\t<key>AudioOutMask</key>\n\t\t\t<integer>1</integer>\n\t\t\t<key>AudioSupport</key>\n\t\t\t<false/>\n\t\t\t<key>DisconnectHda</key>\n\t\t\t<false/>\n\t\t\t<key>MaximumGain</key>\n\t\t\t<integer>-15</integer>\n\t\t\t<key>MinimumAssistGain</key>\n\t\t\t<integer>-30</integer>\n\t\t\t<key>MinimumAudibleGain</key>\n\t\t\t<integer>-55</integer>\n\t\t\t<key>PlayChime</key>\n\t\t\t<string>Auto</string>\n\t\t\t<key>ResetTrafficClass</key>\n\t\t\t<false/>\n\t\t\t<key>SetupDelay</key>\n\t\t\t<integer>0</integer>\n\t\t</dict>\n\t\t<key>ConnectDrivers</key>\n\t\t<true/>\n\t\t<key>Drivers</key>\n\t\t<array>\n\t\t\t<dict>\n\t\t\t\t<key>Arguments</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>LoadEarly</key>\n\t\t\t\t<true/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>OpenVariableRuntimeDxe.efi</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arguments</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<true/>\n\t\t\t\t<key>LoadEarly</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>OpenRuntime.efi</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arguments</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string>HFS+ Driver</string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<true/>\n\t\t\t\t<key>LoadEarly</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>OpenHfsPlus.efi</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arguments</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<true/>\n\t\t\t\t<key>LoadEarly</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>OpenCanopy.efi</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arguments</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>LoadEarly</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>AudioDxe.efi</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arguments</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<true/>\n\t\t\t\t<key>LoadEarly</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>OpenPartitionDxe.efi</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arguments</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>LoadEarly</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>OpenUsbKbDxe.efi</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arguments</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>LoadEarly</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>UsbMouseDxe.efi</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arguments</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>LoadEarly</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>Ps2KeyboardDxe.efi</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arguments</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>LoadEarly</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>Ps2MouseDxe.efi</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arguments</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>LoadEarly</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>HiiDatabase.efi</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arguments</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>LoadEarly</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>NvmExpressDxe.efi</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arguments</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>LoadEarly</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>XhciDxe.efi</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arguments</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>LoadEarly</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>ExFatDxe.efi</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arguments</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>LoadEarly</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>CrScreenshotDxe.efi</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arguments</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>LoadEarly</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>Ext4Dxe.efi</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arguments</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>LoadEarly</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>DpcDxe.efi</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arguments</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>LoadEarly</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>SnpDxe.efi</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arguments</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>LoadEarly</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>MnpDxe.efi</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arguments</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>LoadEarly</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>ArpDxe.efi</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arguments</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>LoadEarly</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>Dhcp4Dxe.efi</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arguments</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>LoadEarly</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>Ip4Dxe.efi</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arguments</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>LoadEarly</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>Udp4Dxe.efi</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arguments</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>LoadEarly</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>TcpDxe.efi</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arguments</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>LoadEarly</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>DnsDxe.efi</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arguments</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>LoadEarly</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>HttpDxe.efi</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arguments</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>LoadEarly</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>HttpUtilitiesDxe.efi</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arguments</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>LoadEarly</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>HttpBootDxe.efi</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arguments</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>LoadEarly</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>OpenLinuxBoot.efi</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arguments</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<true/>\n\t\t\t\t<key>LoadEarly</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>ResetNvramEntry.efi</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arguments</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>LoadEarly</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>ToggleSipEntry.efi</string>\n\t\t\t</dict>\n\t\t\t<dict>\n\t\t\t\t<key>Arguments</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Comment</key>\n\t\t\t\t<string></string>\n\t\t\t\t<key>Enabled</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>LoadEarly</key>\n\t\t\t\t<false/>\n\t\t\t\t<key>Path</key>\n\t\t\t\t<string>FirmwareSettingsEntry.efi</string>\n\t\t\t</dict>\n\t\t</array>\n\t\t<key>Input</key>\n\t\t<dict>\n\t\t\t<key>KeyFiltering</key>\n\t\t\t<false/>\n\t\t\t<key>KeyForgetThreshold</key>\n\t\t\t<integer>5</integer>\n\t\t\t<key>KeySupport</key>\n\t\t\t<true/>\n\t\t\t<key>KeySupportMode</key>\n\t\t\t<string>Auto</string>\n\t\t\t<key>KeySwap</key>\n\t\t\t<false/>\n\t\t\t<key>PointerSupport</key>\n\t\t\t<false/>\n\t\t\t<key>PointerSupportMode</key>\n\t\t\t<string>ASUS</string>\n\t\t\t<key>TimerResolution</key>\n\t\t\t<integer>50000</integer>\n\t\t</dict>\n\t\t<key>Output</key>\n\t\t<dict>\n\t\t\t<key>ClearScreenOnModeSwitch</key>\n\t\t\t<false/>\n\t\t\t<key>ConsoleFont</key>\n\t\t\t<string></string>\n\t\t\t<key>ConsoleMode</key>\n\t\t\t<string></string>\n\t\t\t<key>DirectGopRendering</key>\n\t\t\t<false/>\n\t\t\t<key>ForceResolution</key>\n\t\t\t<false/>\n\t\t\t<key>GopBurstMode</key>\n\t\t\t<false/>\n\t\t\t<key>GopPassThrough</key>\n\t\t\t<string>Disabled</string>\n\t\t\t<key>IgnoreTextInGraphics</key>\n\t\t\t<false/>\n\t\t\t<key>InitialMode</key>\n\t\t\t<string>Auto</string>\n\t\t\t<key>ProvideConsoleGop</key>\n\t\t\t<true/>\n\t\t\t<key>ReconnectGraphicsOnConnect</key>\n\t\t\t<false/>\n\t\t\t<key>ReconnectOnResChange</key>\n\t\t\t<false/>\n\t\t\t<key>ReplaceTabWithSpace</key>\n\t\t\t<false/>\n\t\t\t<key>Resolution</key>\n\t\t\t<string>1920x1080@32</string>\n\t\t\t<key>SanitiseClearScreen</key>\n\t\t\t<false/>\n\t\t\t<key>TextRenderer</key>\n\t\t\t<string>BuiltinGraphics</string>\n\t\t\t<key>UIScale</key>\n\t\t\t<integer>0</integer>\n\t\t\t<key>UgaPassThrough</key>\n\t\t\t<false/>\n\t\t</dict>\n\t\t<key>ProtocolOverrides</key>\n\t\t<dict>\n\t\t\t<key>AppleAudio</key>\n\t\t\t<false/>\n\t\t\t<key>AppleBootPolicy</key>\n\t\t\t<false/>\n\t\t\t<key>AppleDebugLog</key>\n\t\t\t<false/>\n\t\t\t<key>AppleEg2Info</key>\n\t\t\t<false/>\n\t\t\t<key>AppleFramebufferInfo</key>\n\t\t\t<false/>\n\t\t\t<key>AppleImageConversion</key>\n\t\t\t<false/>\n\t\t\t<key>AppleImg4Verification</key>\n\t\t\t<false/>\n\t\t\t<key>AppleKeyMap</key>\n\t\t\t<false/>\n\t\t\t<key>AppleRtcRam</key>\n\t\t\t<false/>\n\t\t\t<key>AppleSecureBoot</key>\n\t\t\t<false/>\n\t\t\t<key>AppleSmcIo</key>\n\t\t\t<false/>\n\t\t\t<key>AppleUserInterfaceTheme</key>\n\t\t\t<false/>\n\t\t\t<key>DataHub</key>\n\t\t\t<false/>\n\t\t\t<key>DeviceProperties</key>\n\t\t\t<false/>\n\t\t\t<key>FirmwareVolume</key>\n\t\t\t<true/>\n\t\t\t<key>HashServices</key>\n\t\t\t<false/>\n\t\t\t<key>OSInfo</key>\n\t\t\t<false/>\n\t\t\t<key>PciIo</key>\n\t\t\t<false/>\n\t\t\t<key>UnicodeCollation</key>\n\t\t\t<false/>\n\t\t</dict>\n\t\t<key>Quirks</key>\n\t\t<dict>\n\t\t\t<key>ActivateHpetSupport</key>\n\t\t\t<false/>\n\t\t\t<key>DisableSecurityPolicy</key>\n\t\t\t<false/>\n\t\t\t<key>EnableVectorAcceleration</key>\n\t\t\t<true/>\n\t\t\t<key>EnableVmx</key>\n\t\t\t<false/>\n\t\t\t<key>ExitBootServicesDelay</key>\n\t\t\t<integer>0</integer>\n\t\t\t<key>ForceOcWriteFlash</key>\n\t\t\t<false/>\n\t\t\t<key>ForgeUefiSupport</key>\n\t\t\t<false/>\n\t\t\t<key>IgnoreInvalidFlexRatio</key>\n\t\t\t<false/>\n\t\t\t<key>ReleaseUsbOwnership</key>\n\t\t\t<false/>\n\t\t\t<key>ReloadOptionRoms</key>\n\t\t\t<false/>\n\t\t\t<key>RequestBootVarRouting</key>\n\t\t\t<false/>\n\t\t\t<key>ResizeGpuBars</key>\n\t\t\t<integer>-1</integer>\n\t\t\t<key>ResizeUsePciRbIo</key>\n\t\t\t<false/>\n\t\t\t<key>ShimRetainProtocol</key>\n\t\t\t<false/>\n\t\t\t<key>TscSyncTimeout</key>\n\t\t\t<integer>0</integer>\n\t\t\t<key>UnblockFsConnect</key>\n\t\t\t<false/>\n\t\t</dict>\n\t\t<key>ReservedMemory</key>\n\t\t<array/>\n\t</dict>\n</dict>\n</plist>\n"
  },
  {
    "path": "compose.yml",
    "content": "services:\n  macos:\n    image: dockurr/macos\n    container_name: macos\n    environment:\n      VERSION: \"14\"\n    devices:\n      - /dev/kvm\n      - /dev/net/tun\n    cap_add:\n      - NET_ADMIN\n    ports:\n      - 8006:8006\n      - 5900:5900/tcp\n      - 5900:5900/udp\n    volumes:\n      - ./macos:/storage\n    restart: always\n    stop_grace_period: 2m\n"
  },
  {
    "path": "kubernetes.yml",
    "content": "---\napiVersion: v1\nkind: PersistentVolumeClaim\nmetadata:\n  name: macos-pvc\nspec:\n  accessModes:\n  - ReadWriteOnce\n  resources:\n    requests:\n      storage: 64Gi\n---\napiVersion: apps/v1\nkind: Deployment\nmetadata:\n  name: macos\n  labels:\n    name: macos\nspec:\n  replicas: 1\n  selector:\n    matchLabels:\n      app: macos\n  template:\n    metadata:\n      labels:\n        app: macos\n    spec:\n      containers:\n      - name: macos\n        image: dockurr/macos\n        env:\n        - name: VERSION\n          value: \"14\"\n        - name: DISK_SIZE\n          value: \"64G\"\n        ports:\n          - containerPort: 8006\n            name: http\n            protocol: TCP\n          - containerPort: 5900\n            name: vnc\n            protocol: TCP\n        securityContext:\n          capabilities:\n            add:\n            - NET_ADMIN\n          privileged: true\n        volumeMounts:\n        - mountPath: /storage\n          name: storage\n        - mountPath: /dev/kvm\n          name: dev-kvm\n        - mountPath: /dev/net/tun\n          name: dev-tun\n      terminationGracePeriodSeconds: 120\n      volumes:\n      - name: storage\n        persistentVolumeClaim:\n          claimName: macos-pvc\n      - hostPath:\n          path: /dev/kvm\n        name: dev-kvm\n      - hostPath:\n          path: /dev/net/tun\n          type: CharDevice\n        name: dev-tun\n---\napiVersion: v1\nkind: Service\nmetadata:\n  name: macos\nspec:\n  internalTrafficPolicy: Cluster\n  ports:\n    - name: http\n      port: 8006\n      protocol: TCP\n      targetPort: 8006\n    - name: vnc\n      port: 5900\n      protocol: TCP\n      targetPort: 5900\n  selector:\n    app: macos\n  type: ClusterIP\n"
  },
  {
    "path": "license.md",
    "content": "MIT License\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": "<h1 align=\"center\">macOS<br />\n<div align=\"center\">\n<a href=\"https://github.com/dockur/macos/\"><img src=\"https://github.com/dockur/macos/raw/master/.github/logo.png\" title=\"Logo\" style=\"max-width:100%;\" width=\"128\" /></a>\n</div>\n<div align=\"center\">\n\n[![Build]][build_url]\n[![Version]][tag_url]\n[![Size]][tag_url]\n[![Package]][pkg_url]\n[![Pulls]][hub_url]\n\n</div></h1>\n\nMacOS inside a Docker container.\n\n## Features ✨\n\n - KVM acceleration\n - Web-based viewer\n - Automatic download\n\n## Usage  🐳\n\n##### Via Docker Compose:\n\n```yaml\nservices:\n  macos:\n    image: dockurr/macos\n    container_name: macos\n    environment:\n      VERSION: \"14\"\n    devices:\n      - /dev/kvm\n      - /dev/net/tun\n    cap_add:\n      - NET_ADMIN\n    ports:\n      - 8006:8006\n      - 5900:5900/tcp\n      - 5900:5900/udp\n    volumes:\n      - ./macos:/storage\n    restart: always\n    stop_grace_period: 2m\n```\n\n##### Via Docker CLI:\n\n```bash\ndocker run -it --rm --name macos -e \"VERSION=14\" -p 8006:8006 --device=/dev/kvm --device=/dev/net/tun --cap-add NET_ADMIN -v \"${PWD:-.}/macos:/storage\" --stop-timeout 120 docker.io/dockurr/macos\n```\n\n##### Via Kubernetes:\n\n```shell\nkubectl apply -f https://raw.githubusercontent.com/dockur/macos/refs/heads/master/kubernetes.yml\n```\n\n##### Via Github Codespaces:\n\n[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/dockur/macos)\n\n## FAQ 💬\n\n### How do I use it?\n\n  Very simple! These are the steps:\n  \n  - Start the container and connect to [port 8006](http://127.0.0.1:8006/) using your web browser.\n\n  - Choose `Disk Utility` and then select the largest `Apple Inc. VirtIO Block Media` disk.\n\n  - Click the `Erase` button to format the disk to APFS, and give it any name you like.\n\n  - Close the current window and proceed the installation by clicking `Reinstall macOS`.\n  \n  - When prompted where you want to install it, select the disk you created previously.\n \n  - After all files are copied, select your region, language, and keyboard settings.\n\n  - When the `Migration Assistant` wants to transfer data, select `Not now` (bottom left).\n\n  - On the `Apple ID` screen, select `Set Up Later` (bottom left) and then proceed using `Skip`.\n  \n  - On the `Create a Computer Account` screen, fill in a username and password and `Continue`.\n \n  Enjoy your brand new machine, and don't forget to star this repo!\n\n### How do I select the version of macOS?\n\n  By default, macOS 14 (Sonoma) will be installed, but you can add the `VERSION` environment variable in order to specify an alternative:\n\n  ```yaml\n  environment:\n    VERSION: \"15\"\n  ```\n\n  Select from the values below:\n  \n  |   **Value** | **Version**    | **Name** |\n  |-------------|----------------|------------------|\n  | `15`        | macOS 15       | Sequoia          |\n  | `14`        | macOS 14       | Sonoma           |\n  | `13`        | macOS 13       | Ventura          |\n  | `12`        | macOS 12       | Monterey         |\n  | `11`        | macOS 11       | Big Sur          |\n\n> [!NOTE]\n> Support for macOS 15 (Sequoia) is still in its infancy, as it does not allow you to sign in to your Apple Account yet. \n\n### How do I change the storage location?\n\n  To change the storage location, include the following bind mount in your compose file:\n\n  ```yaml\n  volumes:\n    - ./macos:/storage\n  ```\n\n  Replace the example path `./macos` with the desired storage folder or named volume.\n\n### How do I change the size of the disk?\n\n  To expand the default size of 64 GB, add the `DISK_SIZE` setting to your compose file and set it to your preferred capacity:\n\n  ```yaml\n  environment:\n    DISK_SIZE: \"256G\"\n  ```\n  \n> [!TIP]\n> This can also be used to resize the existing disk to a larger capacity without any data loss.\n\n### How do I change the amount of CPU or RAM?\n\n  By default, macOS will be allowed to use a single CPU core and 4 GB of RAM.\n\n  If you want to adjust this, you can specify the desired amount using the following environment variables:\n\n  ```yaml\n  environment:\n    RAM_SIZE: \"8G\"\n    CPU_CORES: \"4\"\n  ```\n\n> [!IMPORTANT]  \n> If your system has an AMD processor (instead of Intel), it is not advisable to enable multiple cores before the  installation is completed and you have verified that everything runs stable for a while. Because in many cases it will introduce issues, which are difficult to pinpoint if you do not have experience with its behavior on a single core first.\n\n### How do I assign an individual IP address to the container?\n\n  By default, the container uses bridge networking, which shares the IP address with the host. \n\n  If you want to assign an individual IP address to the container, you can create a macvlan network as follows:\n\n  ```bash\n  docker network create -d macvlan \\\n      --subnet=192.168.0.0/24 \\\n      --gateway=192.168.0.1 \\\n      --ip-range=192.168.0.100/28 \\\n      -o parent=eth0 vlan\n  ```\n  \n  Be sure to modify these values to match your local subnet. \n\n  Once you have created the network, change your compose file to look as follows:\n\n  ```yaml\n  services:\n    macos:\n      container_name: macos\n      ..<snip>..\n      networks:\n        vlan:\n          ipv4_address: 192.168.0.100\n\n  networks:\n    vlan:\n      external: true\n  ```\n \n  An added benefit of this approach is that you won't have to perform any port mapping anymore, since all ports will be exposed by default.\n\n> [!IMPORTANT]  \n> This IP address won't be accessible from the Docker host due to the design of macvlan, which doesn't permit communication between the two. If this is a concern, you need to create a [second macvlan](https://blog.oddbit.com/post/2018-03-12-using-docker-macvlan-networks/#host-access) as a workaround.\n\n### How can macOS acquire an IP address from my router?\n\n  After configuring the container for [macvlan](#how-do-i-assign-an-individual-ip-address-to-the-container), it is possible for macOS to become part of your home network by requesting an IP from your router, just like your other devices.\n\n  To enable this mode, in which the container and macOS will have separate IP addresses, add the following lines to your compose file:\n\n  ```yaml\n  environment:\n    DHCP: \"Y\"\n  devices:\n    - /dev/vhost-net\n  device_cgroup_rules:\n    - 'c *:* rwm'\n  ```\n\n### How do I pass-through a disk?\n\n  It is possible to pass-through disk devices or partitions directly by adding them to your compose file in this way:\n\n  ```yaml\n  devices:\n    - /dev/sdb:/disk1\n    - /dev/sdc1:/disk2\n  ```\n\n  Use `/disk1` if you want it to become your main drive, and use `/disk2` and higher to add them as secondary drives.\n  \n### How do I pass-through a USB device?\n\n  To pass-through a USB device, first lookup its vendor and product id via the `lsusb` command, then add them to your compose file like this:\n\n  ```yaml\n  environment:\n    ARGUMENTS: \"-device usb-host,vendorid=0x1234,productid=0x1234\"\n  devices:\n    - /dev/bus/usb\n  ```\n\n### How do I share files with the host?\n\n  To share files with the host, add the following volume to your compose file:\n\n  ```yaml\n  volumes:\n    - ./example:/shared\n  ```\n\n  Then start macOS and execute the following command:\n  \n  ```shell\n  sudo -S mount_9p shared\n  ```\n\n  In Finder’s menu bar, click on “Go – Computer” to access this shared folder, it will show the contents of `./example`.\n  \n### How do I verify if my system supports KVM?\n\n  First check if your software is compatible using this chart:\n\n  | **Product**  | **Linux** | **Win11** | **Win10** | **macOS** |\n  |---|---|---|---|---|\n  | Docker CLI        | ✅   | ✅       | ❌        | ❌ |\n  | Docker Desktop    | ❌   | ✅       | ❌        | ❌ | \n  | Podman CLI        | ✅   | ✅       | ❌        | ❌ | \n  | Podman Desktop    | ✅   | ✅       | ❌        | ❌ | \n\n  After that you can run the following commands in Linux to check your system:\n\n  ```bash\n  sudo apt install cpu-checker\n  sudo kvm-ok\n  ```\n\n  If you receive an error from `kvm-ok` indicating that KVM cannot be used, please check whether:\n\n  - the virtualization extensions (`Intel VT-x` or `AMD SVM`) are enabled in your BIOS.\n\n  - you enabled \"nested virtualization\" if you are running the container inside a virtual machine.\n\n  - you are not using a cloud provider, as most of them do not allow nested virtualization for their VPS's.\n\n  If you did not receive any error from `kvm-ok` but the container still complains about a missing KVM device, it could help to add `privileged: true` to your compose file (or `sudo` to your `docker` command) to rule out any permission issue.\n\n### How do I run Windows in a container?\n\n  You can use [dockur/windows](https://github.com/dockur/windows) for that. It shares many of the same features, and even has completely automatic installation.\n\n### How do I run a Linux desktop in a container?\n\n  You can use [qemus/qemu](https://github.com/qemus/qemu) in that case.\n\n### Is this project legal?\n\n  Yes, this project contains only open-source code and does not distribute any copyrighted material. Neither does it try to circumvent any copyright protection measures. So under all applicable laws, this project will be considered legal.\n\n  However, by installing Apple's macOS, you must accept their end-user license agreement, which does not permit installation on non-official hardware. So only run this container on hardware sold by Apple, as any other use will be a violation of their terms and conditions.\n\n ## Acknowledgements 🙏\n\nSpecial thanks to [seitenca](https://github.com/seitenca), this project would not exist without her invaluable work.\n\n## Stars 🌟\n[![Stars](https://starchart.cc/dockur/macos.svg?variant=adaptive)](https://starchart.cc/dockur/macos)\n\n## Disclaimer ⚖️\n\n*Only run this container on Apple hardware, any other use is not permitted by their EULA. The product names, logos, brands, and other trademarks referred to within this project are the property of their respective trademark holders. This project is not affiliated, sponsored, or endorsed by Apple Inc.*\n\n[build_url]: https://github.com/dockur/macos/\n[hub_url]: https://hub.docker.com/r/dockurr/macos/\n[tag_url]: https://hub.docker.com/r/dockurr/macos/tags\n[pkg_url]: https://github.com/dockur/macos/pkgs/container/macos\n\n[Build]: https://github.com/dockur/macos/actions/workflows/build.yml/badge.svg\n[Size]: https://img.shields.io/docker/image-size/dockurr/macos/latest?color=066da5&label=size\n[Pulls]: https://img.shields.io/docker/pulls/dockurr/macos.svg?style=flat&label=pulls&logo=docker\n[Version]: https://img.shields.io/docker/v/dockurr/macos/latest?arch=amd64&sort=semver&color=066da5\n[Package]: https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fipitio.github.io%2Fbackage%2Fdockur%2Fmacos%2Fmacos.json&query=%24.downloads&logo=github&style=flat&color=066da5&label=pulls\n"
  },
  {
    "path": "src/boot.sh",
    "content": "#!/usr/bin/env bash\nset -Eeuo pipefail\n\n# Docker environment variables\n: \"${SECURE:=\"off\"}\"       # Secure boot\n: \"${BOOT_MODE:=\"macos\"}\"  # Boot mode\n\nBOOT_DESC=\"\"\nBOOT_OPTS=\"\"\nOVMF=\"/usr/share/OVMF\"\n\nmsg=\"Configuring boot...\"\nhtml \"$msg\"\n[[ \"$DEBUG\" == [Yy1]* ]] && echo \"$msg\"\n\ncase \"${HEIGHT,,}\" in\n  \"1080\" )\n    DEST=\"$PROCESS\"\n    ROM=\"OVMF_CODE.fd\"\n    VARS=\"OVMF_VARS-1920x1080.fd\"\n    ;;\n  \"768\" )\n    DEST=\"${PROCESS}_hd\"\n    ROM=\"OVMF_CODE.fd\"\n    VARS=\"OVMF_VARS-1024x768.fd\"\n    ;;\n  *)\n    ROM=\"OVMF_CODE.fd\"\n    VARS=\"OVMF_VARS.fd\"\n    DEST=\"${PROCESS}_${HEIGHT}\"\n    ;;\nesac\n\nBOOT_OPTS+=\" -smbios type=2\"\nBOOT_OPTS+=\" -rtc base=utc,base=localtime\"\nBOOT_OPTS+=\" -global ICH9-LPC.disable_s3=1\"\nBOOT_OPTS+=\" -global ICH9-LPC.disable_s4=1\"\nBOOT_OPTS+=\" -global ICH9-LPC.acpi-pci-hotplug-with-bridge-support=off\"\n\nosk=$(echo \"bheuneqjbexolgurfrjbeqfthneqrqcyrnfrqbagfgrny(p)NccyrPbzchgreVap\" | tr 'A-Za-z' 'N-ZA-Mn-za-m')\nBOOT_OPTS+=\" -device isa-applesmc,osk=$osk\"\n\n# OVMF\nDEST=\"$STORAGE/$DEST\"\n\nif [ ! -s \"$DEST.rom\" ] || [ ! -f \"$DEST.rom\" ]; then\n  [ ! -s \"$OVMF/$ROM\" ] || [ ! -f \"$OVMF/$ROM\" ] && error \"UEFI boot file ($OVMF/$ROM) not found!\" && exit 44\n  if [[ \"${LOGO:-}\" == [Nn]* ]]; then\n    cp \"$OVMF/$ROM\" \"$DEST.tmp\"\n  else\n    if ! /run/utk.bin \"$OVMF/$ROM\" replace_ffs LogoDXE \"/var/www/img/${PROCESS,,}.ffs\" save \"$DEST.tmp\"; then\n      warn \"failed to add custom logo to BIOS!\"\n      cp \"$OVMF/$ROM\" \"$DEST.tmp\"\n    fi\n  fi\n  mv \"$DEST.tmp\" \"$DEST.rom\"\n  ! setOwner \"$DEST.rom\" && error \"Failed to set the owner for \\\"$DEST.rom\\\" !\"\nfi\n\nif [ ! -s \"$DEST.vars\" ] || [ ! -f \"$DEST.vars\" ]; then\n  [ ! -s \"$OVMF/$VARS\" ] || [ ! -f \"$OVMF/$VARS\" ]&& error \"UEFI vars file ($OVMF/$VARS) not found!\" && exit 45\n  cp \"$OVMF/$VARS\" \"$DEST.tmp\"\n  mv \"$DEST.tmp\" \"$DEST.vars\"\n  ! setOwner \"$DEST.vars\" && error \"Failed to set the owner for \\\"$DEST.vars\\\" !\"\nfi\n\nBOOT_OPTS+=\" -drive if=pflash,format=raw,readonly=on,file=$DEST.rom\"\nBOOT_OPTS+=\" -drive if=pflash,format=raw,file=$DEST.vars\"\n\nIMG=\"$STORAGE/boot.img\"\n\nif [ ! -f \"$IMG\" ]; then\n\n  FILE=\"OpenCore.img\"\n  IMG=\"/tmp/$FILE\"\n  rm -f \"$IMG\"\n\n  # OpenCoreBoot\n  ISO=\"/opencore.iso\"\n  OUT=\"/tmp/extract\"\n\n  rm -rf \"$OUT\"\n  mkdir -p \"$OUT\"\n\n  msg=\"Building boot image\"\n  info \"$msg...\" && html \"$msg...\"\n\n  [ ! -f \"$ISO\" ] && gzip -dk \"$ISO.gz\"\n\n  if [ ! -f \"$ISO\" ] || [ ! -s \"$ISO\" ]; then\n    error \"Could not find image file \\\"$ISO\\\".\" && exit 10\n  fi\n\n  START=$(sfdisk -l \"$ISO\" | grep -i -m 1 \"EFI System\" | awk '{print $2}')\n  mcopy -bspmQ -i \"$ISO@@${START}S\" ::EFI \"$OUT\"\n\n  CFG=\"$OUT/EFI/OC/config.plist\"\n\n  PLIST=\"/assets/config.plist\"\n  [ -f \"/config.plist\" ] && PLIST=\"/config.plist\"\n\n  cp \"$PLIST\" \"$CFG\"\n\n  ROM=\"${MAC//[^[:alnum:]]/}\"\n  ROM=\"${ROM,,}\"\n  BROM=$(echo \"$ROM\" | xxd -r -p | base64)\n  RESOLUTION=\"${WIDTH}x${HEIGHT}@32\"\n\n  sed -r -i -e 's|<data>m7zhIYfl</data>|<data>'\"${BROM}\"'</data>|g' \"$CFG\"\n  sed -r -i -e 's|<string>iMacPro1,1</string>|<string>'\"${MODEL}\"'</string>|g' \"$CFG\"\n  sed -r -i -e 's|<string>C02TM2ZBHX87</string>|<string>'\"${SN}\"'</string>|g' \"$CFG\"\n  sed -r -i -e 's|<string>C02717306J9JG361M</string>|<string>'\"${MLB}\"'</string>|g' \"$CFG\"\n  sed -r -i -e 's|<string>1920x1080@32</string>|<string>'\"${RESOLUTION}\"'</string>|g' \"$CFG\"\n  sed -r -i -e 's|<string>007076A6-F2A2-4461-BBE5-BAD019F8025A</string>|<string>'\"${UUID}\"'</string>|g' \"$CFG\"\n\n  # Build image\n\n  MB=256\n  CLUSTER=4\n  START=2048\n  SECTOR=512\n  FIRST_LBA=34\n\n  SIZE=$(( MB*1024*1024 ))\n  OFFSET=$(( START*SECTOR ))\n  TOTAL=$(( SIZE-(FIRST_LBA*SECTOR) ))\n  LAST_LBA=$(( TOTAL/SECTOR ))\n  COUNT=$(( LAST_LBA-(START-1) ))\n\n  if ! truncate -s \"$SIZE\" \"$IMG\"; then\n    rm -f \"$IMG\"\n    error \"Could not allocate space to create image $IMG .\" && exit 11\n  fi\n\n  PART=\"/tmp/partition.fdisk\"\n\n  {       echo \"label: gpt\"\n          echo \"label-id: 1ACB1E00-3B8F-4B2A-86A4-D99ED21DCAEB\"\n          echo \"device: $FILE\"\n          echo \"unit: sectors\"\n          echo \"first-lba: $FIRST_LBA\"\n          echo \"last-lba: $LAST_LBA\"\n          echo \"sector-size: $SECTOR\"\n          echo \"\"\n          echo \"${FILE}1 : start=$START, size=$COUNT, type=C12A7328-F81F-11D2-BA4B-00A0C93EC93B, uuid=05157F6E-0AE8-4D1A-BEA5-AC172453D02C, name=\\\"primary\\\"\"\n\n  } > \"$PART\"\n\n  sfdisk -q \"$IMG\" < \"$PART\"\n  echo \"drive c: file=\\\"$IMG\\\" partition=0 offset=$OFFSET\" > /etc/mtools.conf\n\n  mformat -F -M \"$SECTOR\" -c \"$CLUSTER\" -T \"$COUNT\" -v \"EFI\" \"C:\"\n  mcopy -bspmQ \"$OUT/EFI\" \"C:\"\n\n  rm -rf \"$OUT\"\n\n  info \"\"\n  info \"Model: $MODEL\"\n  info \"Rom: $ROM\"\n  info \"Serial: $SN\"\n  info \"Board: $MLB\"\n  info \"\"\n\nfi\n\n! setOwner \"$IMG\" && error \"Failed to set the owner for \\\"$IMG\\\" !\"\n\nBOOT_DRIVE_ID=\"OpenCore\"\n\nDISK_OPTS+=\" -device virtio-blk-pci,drive=${BOOT_DRIVE_ID},bus=pcie.0,addr=0x5,bootindex=$BOOT_INDEX\"\nDISK_OPTS+=\" -drive file=$IMG,id=$BOOT_DRIVE_ID,format=raw,cache=unsafe,readonly=on,if=none\"\n\nCPU_VENDOR=$(lscpu | awk '/Vendor ID/{print $3}')\nDEFAULT_FLAGS=\"vendor=GenuineIntel,vmx=off,vmware-cpuid-freq=on,-pdpe1gb\"\n\nif [[ \"$CPU_VENDOR\" == \"AuthenticAMD\" || \"${KVM:-}\" == [Nn]* ]]; then\n\n  if [ -z \"${CPU_MODEL:-}\" ]; then\n\n    case \"${VERSION,,}\" in\n      \"ventura\" | \"13\"* )\n        CPU_MODEL=\"Haswell-noTSX\" ;;\n      \"monterey\" | \"12\"* )\n        CPU_MODEL=\"Haswell-noTSX\" ;;\n      \"bigsur\" | \"big-sur\" | \"11\"* )\n        CPU_MODEL=\"Haswell-noTSX\" ;;\n      \"catalina\" | \"10\"* )\n        CPU_MODEL=\"Haswell-noTSX\" ;;\n      *)\n        CPU_MODEL=\"Skylake-Client-v4\"\n        DEFAULT_FLAGS+=\",-spec-ctrl\"\n        ;;\n    esac\n\n  fi\n\n  if [[ \"${KVM:-}\" == [Nn]* ]] || [[ \"${ARCH,,}\" != \"amd64\" ]] || [[ \"$OSTYPE\" =~ ^darwin ]]; then\n    DEFAULT_FLAGS+=\",-pcid,-tsc-deadline,-invpcid,-xsavec,-xsaves,+ssse3,+sse4.2,+popcnt,+avx,+avx2,+aes,+fma,+bmi1,+bmi2,+smep,+xsave,+xsaveopt,+xgetbv1,+movbe,+rdrand,check\"\n  else\n    DEFAULT_FLAGS+=\",+pcid,+ssse3,+sse4.2,+popcnt,+avx,+avx2,+aes,+fma,+bmi1,+bmi2,+smep,+xsave,+xsavec,+xsaves,+xsaveopt,+xgetbv1,+movbe,+rdrand,check\"\n  fi\n\nfi\n\nif [ -z \"${CPU_FLAGS:-}\" ]; then\n  CPU_FLAGS=\"$DEFAULT_FLAGS\"\nelse\n  CPU_FLAGS=\"$DEFAULT_FLAGS,$CPU_FLAGS\"\nfi\n\nSM_BIOS=\"\"\nCLOCKSOURCE=\"tsc\"\n[[ \"${ARCH,,}\" == \"arm64\" ]] && CLOCKSOURCE=\"arch_sys_counter\"\nCLOCK=\"/sys/devices/system/clocksource/clocksource0/current_clocksource\"\n\nif [ ! -f \"$CLOCK\" ]; then\n  warn \"file \\\"$CLOCK\\\" cannot not found?\"\nelse\n  result=$(<\"$CLOCK\")\n  result=\"${result//[![:print:]]/}\"\n  case \"${result,,}\" in\n    \"${CLOCKSOURCE,,}\" ) \n      if [[ \"$CPU_VENDOR\" == \"GenuineIntel\" && \"$CPU_CORES\" == \"1\" && \"${KVM:-}\" != [Nn]* ]]; then\n        CPU_CORES=\"2\"\n      fi ;;\n    \"kvm-clock\" ) warn \"Nested KVM virtualization detected, this might cause issues running macOS!\" ;;\n    \"hyperv_clocksource_tsc_page\" ) info \"Nested Hyper-V virtualization detected, this might cause issues running macOS!\" ;;\n    \"hpet\" ) warn \"unsupported clock source ﻿detected﻿: '$result'. Please﻿ ﻿set host clock source to '$CLOCKSOURCE', otherwise it will cause issues running macOS!\" ;;\n    *) warn \"unexpected clock source ﻿detected﻿: '$result'. Please﻿ ﻿set host clock source to '$CLOCKSOURCE', otherwise it will cause issues running macOS!\" ;;\n  esac\nfi\n\ncase \"$CPU_CORES\" in\n  \"\" | \"0\" | \"3\" ) CPU_CORES=\"2\" ;;\n  \"5\" ) CPU_CORES=\"4\" ;;\n  \"9\" ) CPU_CORES=\"8\" ;;\nesac\n\ncase \"$CPU_CORES\" in\n  \"1\" | \"2\" | \"4\" | \"8\" ) SMP=\"$CPU_CORES,sockets=1,dies=1,cores=$CPU_CORES,threads=1\" ;;\n  \"6\" | \"7\" ) SMP=\"$CPU_CORES,sockets=3,dies=1,cores=2,threads=1\" ;;\n  \"10\" | \"11\" ) SMP=\"$CPU_CORES,sockets=5,dies=1,cores=2,threads=1\" ;;\n  \"12\" | \"13\" ) SMP=\"$CPU_CORES,sockets=3,dies=1,cores=4,threads=1\" ;;\n  \"14\" | \"15\" ) SMP=\"$CPU_CORES,sockets=7,dies=1,cores=2,threads=1\" ;;\n  \"16\" | \"32\" | \"64\" ) SMP=\"$CPU_CORES,sockets=1,dies=1,cores=$CPU_CORES,threads=1\" ;;\n  *)\n    error \"Invalid amount of CPU_CORES, value \\\"${CPU_CORES}\\\" is not a power of 2!\" && exit 35\n    ;;\nesac\n\nUSB=\"nec-usb-xhci,id=xhci\"\nUSB+=\" -device usb-kbd,bus=xhci.0\"\nUSB+=\" -global nec-usb-xhci.msi=off\"\n\nreturn 0\n"
  },
  {
    "path": "src/entry.sh",
    "content": "#!/usr/bin/env bash\nset -Eeuo pipefail\n\n: \"${APP:=\"macOS\"}\"\n: \"${VGA:=\"vmware\"}\"\n: \"${DISK_TYPE:=\"blk\"}\"\n: \"${PLATFORM:=\"x64\"}\"\n: \"${SUPPORT:=\"https://github.com/dockur/macos\"}\"\n\ncd /run\n\n. start.sh      # Startup hook\n. utils.sh      # Load functions\n. reset.sh      # Initialize system\n. server.sh     # Start webserver\n. install.sh    # Get the OSX images\n. disk.sh       # Initialize disks\n. display.sh    # Initialize graphics\n. network.sh    # Initialize network\n. boot.sh       # Configure boot\n. proc.sh       # Initialize processor\n. memory.sh     # Check available memory\n. config.sh     # Configure arguments\n. finish.sh     # Finish initialization\n\ntrap - ERR\n\nversion=$(qemu-system-x86_64 --version | head -n 1 | cut -d '(' -f 1 | awk '{ print $NF }')\ninfo \"Booting ${APP}${BOOT_DESC} using QEMU v$version...\"\n\nexec qemu-system-x86_64 ${ARGS:+ $ARGS}\n"
  },
  {
    "path": "src/install.sh",
    "content": "#!/usr/bin/env bash\nset -Eeuo pipefail\n\n# Docker environment variables\n\n: \"${SN:=\"\"}\"                # Device serial\n: \"${MLB:=\"\"}\"               # Board serial\n: \"${MAC:=\"\"}\"               # MAC address\n: \"${UUID:=\"\"}\"              # Unique ID\n: \"${VERSION:=\"\"}\"           # OSX Version\n: \"${WIDTH:=\"1920\"}\"         # Horizontal\n: \"${HEIGHT:=\"1080\"}\"        # Vertical\n: \"${MODEL:=\"iMacPro1,1\"}\"   # Device model\n\nBASE_IMG_ID=\"InstallMedia\"\nBASE_IMG=\"$STORAGE/base.dmg\"\n\nfunction getRandom() {\n  local length=\"${1}\"\n  local result=\"\"\n  local chars=(\"0\" \"1\" \"2\" \"3\" \"4\" \"5\" \"6\" \"7\" \"8\" \"9\" \"A\" \"B\" \"C\" \"D\" \"E\" \"F\")\n\n  for ((i=0; i<length; i++)); do\n      result+=\"${chars[$((RANDOM % 16))]}\"\n  done\n\n  echo \"$result\"\n  return 0\n}\n\ndelay() {\n\n  local i\n  local delay=\"$1\"\n  local msg=\"Retrying failed download in X seconds...\"\n\n  info \"${msg/X/$delay}\"\n\n  for i in $(seq \"$delay\" -1 1); do\n    html \"${msg/X/$i}\"\n    sleep 1\n  done\n\n  return 0\n}\n\nfunction download() {\n  local info=\"\"\n  local dest=\"$1\"\n  local board=\"$2\"\n  local version=\"$3\"\n  local type=\"latest\"\n  local appleSession=\"\"\n  local downloadLink=\"\"\n  local downloadSession=\"\"\n  local mlb=\"00000000000000000\"\n  local rc total size progress\n\n  local msg=\"Downloading macOS ${version^}\"\n  info \"$msg recovery image...\" && html \"$msg...\"\n\n  appleSession=$(curl --disable -v -H \"Host: osrecovery.apple.com\" \\\n                           -H \"Connection: close\" \\\n                           -A \"InternetRecovery/1.0\" https://osrecovery.apple.com/ 2>&1 | tr ';' '\\n' | awk -F'session=|;' '{print $2}' | grep 1)\n  info=$(curl --disable -s -X POST -H \"Host: osrecovery.apple.com\" \\\n                           -H \"Connection: close\" \\\n                           -A \"InternetRecovery/1.0\" \\\n                           -b \"session=\\\"${appleSession}\\\"\" \\\n                           -H \"Content-Type: text/plain\" \\\n                           -d $'cid='\"$(getRandom 16)\"$'\\nsn='\"${mlb}\"$'\\nbid='\"${board}\"$'\\nk='\"$(getRandom 64)\"$'\\nfg='\"$(getRandom 64)\"$'\\nos='\"${type}\" \\\n                           https://osrecovery.apple.com/InstallationPayload/RecoveryImage | tr ' ' '\\n')\n\n  downloadLink=$(echo \"$info\" | grep 'oscdn' | grep 'dmg')\n  downloadSession=$(echo \"$info\" | grep 'expires' | grep 'dmg')\n\n  if [ -z \"$downloadLink\" ] || [ -z \"$downloadSession\" ]; then\n\n    local code=\"99\"\n    msg=\"Failed to connect to the Apple servers, reason:\"\n\n    curl --silent --max-time 10 --output /dev/null --fail -H \"Host: osrecovery.apple.com\" -H \"Connection: close\" -A \"InternetRecovery/1.0\" https://osrecovery.apple.com/ || {\n      code=\"$?\"\n    }\n\n    case \"${code,,}\" in\n      \"6\" ) error \"$msg could not resolve host!\" ;;\n      \"7\" ) error \"$msg no internet connection available!\" ;;\n      \"28\" ) error \"$msg connection timed out!\" ;;\n      \"99\" )\n        [ -n \"$info\" ] && echo \"$info\" && echo\n        error \"$msg unknown error\" ;;\n      *) error \"$msg $code\" ;;\n    esac\n\n    return 1\n  fi\n\n  # Check if running with interactive TTY or redirected to docker log\n  if [ -t 1 ]; then\n    progress=\"--progress=bar:noscroll\"\n  else\n    progress=\"--progress=dot:giga\"\n  fi\n\n  rm -f \"$dest\"\n  /run/progress.sh \"$dest\" \"0\" \"$msg ([P])...\" &\n\n  { wget \"$downloadLink\" -O \"$dest\" -q --header \"Host: oscdn.apple.com\" --header \"Connection: close\" --header \"User-Agent: InternetRecovery/1.0\" --header \"Cookie: AssetToken=${downloadSession}\" --timeout=30 --no-http-keep-alive --show-progress \"$progress\"; rc=$?; } || :\n\n  fKill \"progress.sh\"\n\n  if (( rc == 0 )) && [ -f \"$dest\" ]; then\n    total=$(stat -c%s \"$dest\")\n    size=$(formatBytes \"$total\")\n    if [ \"$total\" -lt 100000 ]; then\n      error \"Invalid recovery image, file is only $size ?\" && return 1\n    fi\n    html \"Download finished successfully...\"\n    return 0\n  fi\n\n  msg=\"Failed to download $downloadLink\"\n  (( rc == 3 )) && error \"$msg , cannot write file (disk full?)\" && return 1\n  (( rc == 4 )) && error \"$msg , network failure!\" && return 1\n  (( rc == 8 )) && error \"$msg , server issued an error response!\" && return 1\n\n  error \"$msg , reason: $rc\"\n  return 1\n}\n\ninstall() {\n\n  local board\n  local version=\"$1\"\n  local dest=\"$2\"\n\n  case \"${version,,}\" in\n    \"tahoe\" | \"26\"* | \"16\"* )\n      board=\"Mac-CFF7D910A743CAAF\" ;;\n    \"sequoia\" | \"15\"* )\n      board=\"Mac-937A206F2EE63C01\" ;;\n    \"sonoma\" | \"14\"* )\n      board=\"Mac-827FAC58A8FDFA22\" ;;\n    \"ventura\" | \"13\"* )\n      board=\"Mac-4B682C642B45593E\" ;;\n    \"monterey\" | \"12\"* )\n      board=\"Mac-B809C3757DA9BB8D\" ;;\n    \"bigsur\" | \"big-sur\" | \"11\"* )\n      board=\"Mac-2BD1B31983FE1663\" ;;\n    \"catalina\" | \"10\"* )\n      board=\"Mac-00BE6ED71E35EB86\" ;;\n    *)\n      error \"Unknown VERSION specified, value \\\"${version}\\\" is not recognized!\"\n      return 1 ;;\n  esac\n\n  rm -f \"$dest\"\n\n  if ! makeDir \"$STORAGE\"; then\n    error \"Failed to create directory \\\"$STORAGE\\\" !\" && return 1\n  fi\n\n  find \"$STORAGE\" -maxdepth 1 -type f \\( -iname '*.rom' -or -iname '*.vars' \\) -delete\n  find \"$STORAGE\" -maxdepth 1 -type f \\( -iname 'data.*' -or -iname 'macos.*' \\) -delete\n\n  if [ -f \"/boot.dmg\" ]; then\n    cp \"/boot.dmg\" \"$dest\"\n    return 0\n  fi\n\n  local file=\"$STORAGE/boot.dmg\"\n    \n  if ! download \"$file\" \"$board\" \"$version\"; then\n    delay 5\n    if ! download \"$file\" \"$board\" \"$version\"; then\n      rm -f \"$file\"\n      exit 60\n    fi\n  fi\n\n  mv -f \"$file\" \"$dest\"\n  return 0\n}\n\ngenerateID() {\n\n  local file=\"$STORAGE/$PROCESS.id\"\n\n  [ -n \"$UUID\" ] && return 0\n  [ -s \"$file\" ] && UUID=$(<\"$file\")\n  UUID=\"${UUID//[![:print:]]/}\"\n  [ -n \"$UUID\" ] && return 0\n\n  UUID=$(cat /proc/sys/kernel/random/uuid 2> /dev/null || uuidgen --random)\n  UUID=\"${UUID^^}\"\n  UUID=\"${UUID//[![:print:]]/}\"\n\n  echo \"$UUID\" > \"$file\"\n  ! setOwner \"$file\" && error \"Failed to set the owner for \\\"$file\\\" !\"\n\n  return 0\n}\n\ngenerateAddress() {\n\n  local file=\"$STORAGE/$PROCESS.mac\"\n\n  [ -n \"$MAC\" ] && return 0\n  [ -s \"$file\" ] && MAC=$(<\"$file\")\n  MAC=\"${MAC//[![:print:]]/}\"\n  [ -n \"$MAC\" ] && return 0\n\n  # Generate Apple MAC address based on Docker container ID in hostname\n  MAC=$(echo \"$HOST\" | md5sum | sed 's/^\\(..\\)\\(..\\)\\(..\\)\\(..\\)\\(..\\).*$/00:16:cb:\\3:\\4:\\5/')\n  MAC=\"${MAC^^}\" \n\n  echo \"$MAC\" > \"$file\"\n  ! setOwner \"$file\" && error \"Failed to set the owner for \\\"$file\\\" !\"\n\n  return 0\n}\n\ngenerateSerial() {\n\n  local file=\"$STORAGE/$PROCESS.sn\"\n  local file2=\"$STORAGE/$PROCESS.mlb\"\n\n  [ -n \"$SN\" ] && [ -n \"$MLB\" ] && return 0\n  [ -s \"$file\" ] && SN=$(<\"$file\")\n  [ -s \"$file2\" ] && MLB=$(<\"$file2\")\n  SN=\"${SN//[![:print:]]/}\"\n  MLB=\"${MLB//[![:print:]]/}\"\n  [ -n \"$SN\" ] && [ -n \"$MLB\" ] && return 0\n\n  # Generate unique serial numbers for machine\n  SN=$(/usr/local/bin/macserial --num 1 --model \"${MODEL}\" 2>/dev/null)\n\n  SN=\"${SN##*$'\\n'}\"\n  [[ \"$SN\" != *\" | \"* ]] && error \"$SN\" && return 1\n\n  MLB=${SN#*|}\n  MLB=\"${MLB#\"${MLB%%[![:space:]]*}\"}\"\n  SN=\"${SN%%|*}\"\n  SN=\"${SN%\"${SN##*[![:space:]]}\"}\"\n\n  echo \"$SN\" > \"$file\"\n  echo \"$MLB\" > \"$file2\"\n\n  ! setOwner \"$file\" && error \"Failed to set the owner for \\\"$file\\\" !\"\n  ! setOwner \"$file2\" && error \"Failed to set the owner for \\\"$file2\\\" !\"\n\n  return 0\n}\n\nif [[ \"${VERSION}\" == \\\"*\\\" || \"${VERSION}\" == \\'*\\' ]]; then\n  VERSION=\"${VERSION:1:-1}\"\nfi\n\nVERSION=$(expr \"$VERSION\" : \"^\\ *\\(.*[^ ]\\)\\ *$\")\n\nif [ -z \"$VERSION\" ]; then\n\n  VERSION=\"14\"\n  warn \"no value specified for the VERSION variable, defaulting to \\\"${VERSION}\\\".\"\n\nfi\n\nif [ ! -f \"$BASE_IMG\" ] || [ ! -s \"$BASE_IMG\" ]; then\n\n  STORAGE=\"$STORAGE/${VERSION,,}\"\n  BASE_IMG=\"$STORAGE/base.dmg\"\n\n  if [ ! -f \"$BASE_IMG\" ] || [ ! -s \"$BASE_IMG\" ]; then\n    ! install \"$VERSION\" \"$BASE_IMG\" && exit 34\n    ! setOwner \"$BASE_IMG\" && error \"Failed to set the owner for \\\"$BASE_IMG\\\" !\"\n  fi\n\nfi\n\nif ! generateID; then\n  error \"Failed to generate UUID!\" && exit 35\nfi\n\nif ! generateSerial; then\n  error \"Failed to generate serial number!\" && exit 36\nfi\n\nif ! generateAddress; then\n  error \"Failed to generate MAC address!\" && exit 37\nfi\n\nDISK_OPTS=\"-device virtio-blk-pci,drive=${BASE_IMG_ID},bus=pcie.0,addr=0x6\"\nDISK_OPTS+=\" -drive file=$BASE_IMG,id=$BASE_IMG_ID,format=dmg,cache=unsafe,readonly=on,if=none\"\n\nreturn 0\n"
  }
]