gitextract_uat3ea75/ ├── .claude/ │ └── settings.local.json ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── 1-bug_report.yaml │ │ ├── 2-new-proposal.yaml │ │ ├── 3-others.md │ │ └── config.yml │ └── workflows/ │ └── notify-preview-deploy.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── apps/ │ ├── LICENSE │ ├── NOTICE.md │ └── style/ │ ├── about.css │ ├── bios.css │ ├── calc.css │ ├── camera.css │ ├── code-editor.css │ ├── copilot.css │ ├── defender.css │ ├── edge.css │ ├── explorer.css │ ├── imgviewer.css │ ├── login.css │ ├── mediaplayer.css │ ├── msstore.css │ ├── notepad.css │ ├── pythonEditor.css │ ├── recognition.css │ ├── run.css │ ├── setting.css │ ├── taskmgr.css │ ├── terminal.css │ ├── whiteboard.css │ └── word.css ├── base.css ├── bios.html ├── bluescreen.html ├── boot.html ├── bootstrap-icons.css ├── changelog.md ├── data/ │ ├── disconnected.html │ ├── disconnected_dark.html │ └── tasks.js ├── desktop.css ├── desktop.html ├── desktop.js ├── fonts/ │ └── LICENSE ├── games/ │ └── minesweeper.html ├── icon/ │ ├── LICENSE │ └── NOTICE.md ├── img/ │ ├── LICENSE │ └── NOTICE.md ├── index.html ├── lang/ │ ├── README_trans.md │ ├── lang.properties │ ├── lang_en.properties │ ├── lang_zh.properties │ ├── lang_zh_CN.properties │ ├── lang_zh_TW.properties │ ├── readme.md │ └── trans.py ├── mainpage.html ├── media/ │ └── LICENSE ├── module/ │ ├── apps.js │ ├── tab.css │ ├── tab.js │ ├── widget.css │ ├── widget.js │ └── window.js ├── pwa/ │ └── manifest.json ├── readme/ │ ├── README_en_us.md │ ├── README_fr_fr.md │ └── README_zh_tw.md ├── reload.html ├── robots.txt ├── scripts/ │ ├── AI Copilot service/ │ │ └── README.md │ ├── Lunar.js │ ├── bios_kernel.js │ ├── boot_kernel.js │ ├── calculator_kernel.js │ ├── jquery.i18n.properties.js │ ├── news.js │ ├── setting_getTime.js │ └── utils.js ├── shutdown.html └── sw.js