gitextract_xvezqapj/ ├── .dockerignore ├── .github/ │ └── ISSUE_TEMPLATE/ │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── __init__.py ├── backend/ │ ├── Dockerfile │ ├── __init__.py │ ├── diff_tree.py │ ├── diffcache.py │ ├── diskdiff.py │ ├── file_entry_lister.py │ ├── memdiff.py │ ├── pyvmdk_delta.py │ ├── requirements.txt │ ├── unified_diff.py │ ├── utils.py │ ├── vmdiff.py │ └── vmdk_file_io.py ├── config.py ├── docker-compose.yml ├── frontend/ │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ └── manifest.json │ ├── src/ │ │ ├── App.css │ │ ├── App.test.tsx │ │ ├── App.tsx │ │ ├── index.css │ │ ├── index.tsx │ │ ├── react-app-env.d.ts │ │ ├── reportWebVitals.ts │ │ └── setupTests.ts │ └── tsconfig.json ├── memory-processing/ │ ├── Dockerfile │ └── memdiff.sh ├── requirements.txt ├── server.py └── vmdiff