├── .prettierignore ├── images ├── cms.png ├── jvm-pdf.png ├── parnew.png ├── serial.png ├── jvm-memory.png ├── jvm-stack.jpg ├── loadclass.png ├── classloader.png ├── favicon-16x16.png ├── favicon-32x32.png ├── handle-access.jpg ├── mark-and-copy.jpg ├── cc-by-sa-80x15.png ├── cc-by-sa-88x31.png ├── direct-pointer.jpg ├── mark-and-sweep.jpg ├── new-instruction.png ├── cc-by-nc-sa-80x15.png ├── cc-by-nc-sa-88x31.png ├── mark-and-compact.jpg ├── qrcode-for-doocs.jpg ├── jvm-memory-structure.jpg ├── jvm-off-heap-memory.png ├── object-memory-layout.png ├── qrcode-for-yanglbme.jpg ├── finalize-method-process.jpg └── jvm-runtime-constant-pool.png ├── vercel.json ├── docs ├── public │ └── favicon.png ├── index.md ├── 10-class-loader.md ├── 06-jvm-performance-tuning.md ├── 02-hotspot-jvm-object.md ├── 05-memory-allocation-gc.md ├── 08-load-class-time.md ├── .vitepress │ └── config.mts ├── 09-load-class-process.md ├── 04-hotspot-gc.md ├── 00-quickstart.md ├── 03-gc-algorithms.md ├── 07-class-structure.md └── 01-jvm-memory-structure.md ├── .npmrc ├── Main.java ├── wrangler.toml ├── .prettierrc ├── .gitignore ├── package.json ├── worker.js ├── .github └── workflows │ ├── cloudflare.yml │ ├── compress.yml │ └── deploy.yml ├── README.md ├── LICENSE └── pnpm-lock.yaml /.prettierignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .github/ 3 | node_modules/ 4 | docs/.vuepress/ -------------------------------------------------------------------------------- /images/cms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doocs/jvm/HEAD/images/cms.png -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- 1 | { 2 | "github": { 3 | "silent": true 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /images/jvm-pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doocs/jvm/HEAD/images/jvm-pdf.png -------------------------------------------------------------------------------- /images/parnew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doocs/jvm/HEAD/images/parnew.png -------------------------------------------------------------------------------- /images/serial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doocs/jvm/HEAD/images/serial.png -------------------------------------------------------------------------------- /images/jvm-memory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doocs/jvm/HEAD/images/jvm-memory.png -------------------------------------------------------------------------------- /images/jvm-stack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doocs/jvm/HEAD/images/jvm-stack.jpg -------------------------------------------------------------------------------- /images/loadclass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doocs/jvm/HEAD/images/loadclass.png -------------------------------------------------------------------------------- /docs/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doocs/jvm/HEAD/docs/public/favicon.png -------------------------------------------------------------------------------- /images/classloader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doocs/jvm/HEAD/images/classloader.png -------------------------------------------------------------------------------- /images/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doocs/jvm/HEAD/images/favicon-16x16.png -------------------------------------------------------------------------------- /images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doocs/jvm/HEAD/images/favicon-32x32.png -------------------------------------------------------------------------------- /images/handle-access.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doocs/jvm/HEAD/images/handle-access.jpg -------------------------------------------------------------------------------- /images/mark-and-copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doocs/jvm/HEAD/images/mark-and-copy.jpg -------------------------------------------------------------------------------- /images/cc-by-sa-80x15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doocs/jvm/HEAD/images/cc-by-sa-80x15.png -------------------------------------------------------------------------------- /images/cc-by-sa-88x31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doocs/jvm/HEAD/images/cc-by-sa-88x31.png -------------------------------------------------------------------------------- /images/direct-pointer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doocs/jvm/HEAD/images/direct-pointer.jpg -------------------------------------------------------------------------------- /images/mark-and-sweep.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doocs/jvm/HEAD/images/mark-and-sweep.jpg -------------------------------------------------------------------------------- /images/new-instruction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doocs/jvm/HEAD/images/new-instruction.png -------------------------------------------------------------------------------- /images/cc-by-nc-sa-80x15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doocs/jvm/HEAD/images/cc-by-nc-sa-80x15.png -------------------------------------------------------------------------------- /images/cc-by-nc-sa-88x31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doocs/jvm/HEAD/images/cc-by-nc-sa-88x31.png -------------------------------------------------------------------------------- /images/mark-and-compact.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doocs/jvm/HEAD/images/mark-and-compact.jpg -------------------------------------------------------------------------------- /images/qrcode-for-doocs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doocs/jvm/HEAD/images/qrcode-for-doocs.jpg -------------------------------------------------------------------------------- /images/jvm-memory-structure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doocs/jvm/HEAD/images/jvm-memory-structure.jpg -------------------------------------------------------------------------------- /images/jvm-off-heap-memory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doocs/jvm/HEAD/images/jvm-off-heap-memory.png -------------------------------------------------------------------------------- /images/object-memory-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doocs/jvm/HEAD/images/object-memory-layout.png -------------------------------------------------------------------------------- /images/qrcode-for-yanglbme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doocs/jvm/HEAD/images/qrcode-for-yanglbme.jpg -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | # 使用严格的对等依赖 2 | auto-install-peers=true 3 | 4 | # 不提升依赖(使用 pnpm 的默认隔离模式) 5 | shamefully-hoist=false 6 | -------------------------------------------------------------------------------- /images/finalize-method-process.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doocs/jvm/HEAD/images/finalize-method-process.jpg -------------------------------------------------------------------------------- /images/jvm-runtime-constant-pool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doocs/jvm/HEAD/images/jvm-runtime-constant-pool.png -------------------------------------------------------------------------------- /Main.java: -------------------------------------------------------------------------------- 1 | /** 2 | * @author yanglbme 3 | */ 4 | public class Main { 5 | public static void main(String[] args) { 6 | System.out.println("JVM 底层原理最全知识总结"); 7 | } 8 | } -------------------------------------------------------------------------------- /wrangler.toml: -------------------------------------------------------------------------------- 1 | name = "jvm" 2 | main = "worker.js" 3 | compatibility_date = "2024-10-22" 4 | workers_dev = true 5 | 6 | [assets] 7 | directory = "docs/.vitepress/dist" 8 | binding = "ASSETS" 9 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "tabWidth": 2, 3 | "useTabs": false, 4 | "semi": true, 5 | "singleQuote": true, 6 | "trailingComma": "all", 7 | "bracketSpacing": true, 8 | "jsxBracketSameLine": false, 9 | "arrowParens": "avoid" 10 | } 11 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 3 | 4 | # dependencies 5 | /node_modules 6 | /.pnp 7 | .pnp.js 8 | 9 | # testing 10 | /coverage 11 | 12 | # production 13 | /build 14 | 15 | # misc 16 | .DS_Store 17 | .env.local 18 | .env.development.local 19 | .env.test.local 20 | .env.production.local 21 | .vscode 22 | 23 | npm-debug.log* 24 | yarn-debug.log* 25 | yarn-error.log* 26 | 27 | dist 28 | lib 29 | 30 | node_modules 31 | 32 | # Log files 33 | npm-debug.log* 34 | yarn-debug.log* 35 | yarn-error.log* 36 | 37 | # Editor directories and files 38 | .idea 39 | *.suo 40 | *.ntvs* 41 | *.njsproj 42 | *.sln 43 | *.sw? 44 | 45 | # VS Code 46 | 47 | .temp 48 | .cache 49 | cache -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jvm", 3 | "version": "1.0.0", 4 | "description": "Java 虚拟机底层原理知识总结", 5 | "directories": { 6 | "doc": "docs" 7 | }, 8 | "repository": { 9 | "type": "git", 10 | "url": "git+https://github.com/doocs/jvm.git" 11 | }, 12 | "keywords": [ 13 | "jvm" 14 | ], 15 | "author": "yanglbme", 16 | "bugs": { 17 | "url": "https://github.com/doocs/jvm/issues" 18 | }, 19 | "homepage": "https://jvm.doocs.org", 20 | "devDependencies": { 21 | "vitepress": "^2.0.0-alpha.12", 22 | "wrangler": "^4.44.0" 23 | }, 24 | "scripts": { 25 | "docs:dev": "vitepress dev docs", 26 | "docs:build": "vitepress build docs", 27 | "docs:preview": "vitepress preview docs", 28 | "deploy:cf": "pnpm run docs:build && wrangler deploy" 29 | }, 30 | "packageManager": "pnpm@10.0.0" 31 | } -------------------------------------------------------------------------------- /worker.js: -------------------------------------------------------------------------------- 1 | export default { 2 | async fetch(request, env) { 3 | const url = new URL(request.url); 4 | let path = url.pathname; 5 | 6 | // 处理根路径 7 | if (path === '/') { 8 | path = '/index.html'; 9 | } 10 | 11 | // 如果路径没有扩展名,尝试添加 .html 12 | if (!path.includes('.') && !path.endsWith('/')) { 13 | path = path + '.html'; 14 | } 15 | 16 | // 如果路径以 / 结尾,添加 index.html 17 | if (path.endsWith('/')) { 18 | path = path + 'index.html'; 19 | } 20 | 21 | try { 22 | // 从 ASSETS 绑定中获取文件 23 | const asset = await env.ASSETS.fetch(new URL(path, request.url)); 24 | 25 | if (asset.status === 404) { 26 | // 如果找不到文件,尝试返回 index.html(用于 SPA 路由) 27 | return await env.ASSETS.fetch(new URL('/index.html', request.url)); 28 | } 29 | 30 | return asset; 31 | } catch (e) { 32 | return new Response('Not Found', { status: 404 }); 33 | } 34 | }, 35 | }; 36 | -------------------------------------------------------------------------------- /.github/workflows/cloudflare.yml: -------------------------------------------------------------------------------- 1 | name: Deploy to Cloudflare Workers 2 | 3 | on: 4 | push: 5 | branches: [main] 6 | workflow_dispatch: 7 | 8 | jobs: 9 | deploy: 10 | runs-on: ubuntu-latest 11 | permissions: 12 | contents: read 13 | deployments: write 14 | steps: 15 | - uses: actions/checkout@v5 16 | 17 | - name: Setup pnpm 18 | uses: pnpm/action-setup@v4 19 | 20 | - name: Setup Node.js 21 | uses: actions/setup-node@v6 22 | with: 23 | node-version: 22 24 | cache: pnpm 25 | 26 | - name: Install dependencies 27 | run: pnpm install --frozen-lockfile 28 | 29 | - name: Build VitePress site 30 | run: pnpm run docs:build 31 | 32 | - name: Deploy to Cloudflare Workers 33 | uses: cloudflare/wrangler-action@v3 34 | with: 35 | apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} 36 | accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} 37 | command: deploy 38 | -------------------------------------------------------------------------------- /.github/workflows/compress.yml: -------------------------------------------------------------------------------- 1 | name: Compress 2 | 3 | on: 4 | schedule: 5 | - cron: "0 0 * * 3" 6 | workflow_dispatch: 7 | 8 | jobs: 9 | compress: 10 | runs-on: ubuntu-latest 11 | if: github.repository == 'doocs/jvm' 12 | steps: 13 | - name: Checkout Branch 14 | uses: actions/checkout@v4 15 | 16 | - name: Compress Images 17 | id: calibre 18 | uses: calibreapp/image-actions@main 19 | with: 20 | githubToken: ${{ secrets.GITHUB_TOKEN }} 21 | compressOnly: true 22 | 23 | - name: Commit Files 24 | if: | 25 | steps.calibre.outputs.markdown != '' 26 | run: | 27 | git config --local user.email "szuyanglb@outlook.com" 28 | git config --local user.name "yanglbme" 29 | git commit -m "chore: auto compress images" -a 30 | 31 | - name: Push Changes 32 | if: | 33 | steps.calibre.outputs.markdown != '' 34 | uses: ad-m/github-push-action@master 35 | with: 36 | github_token: ${{ secrets.GITHUB_TOKEN }} 37 | -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- 1 | name: Build and deploy 2 | 3 | on: 4 | push: 5 | branches: [main] 6 | workflow_dispatch: 7 | 8 | jobs: 9 | build: 10 | runs-on: ubuntu-latest 11 | steps: 12 | - uses: actions/checkout@v5 13 | with: 14 | fetch-depth: 0 15 | 16 | - name: Setup pnpm 17 | uses: pnpm/action-setup@v4 18 | 19 | - name: Setup Node.js 20 | uses: actions/setup-node@v6 21 | with: 22 | node-version: 22 23 | cache: pnpm 24 | 25 | - name: Install dependencies 26 | run: pnpm install --frozen-lockfile 27 | 28 | - name: Build with VitePress 29 | run: pnpm run docs:build 30 | 31 | - name: Generate CNAME 32 | run: echo "jvm.doocs.org" > docs/.vitepress/dist/CNAME 33 | 34 | - name: Upload artifact 35 | uses: actions/upload-pages-artifact@v3 36 | with: 37 | path: docs/.vitepress/dist 38 | 39 | deploy: 40 | needs: build 41 | runs-on: ubuntu-latest 42 | permissions: 43 | pages: write 44 | id-token: write 45 | environment: 46 | name: github_pages 47 | url: ${{ steps.deployment.outputs.page_url }} 48 | steps: 49 | - name: Deploy to GitHub Pages 50 | id: deployment 51 | uses: actions/deploy-pages@v4 52 | -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: home 3 | 4 | hero: 5 | name: "jvm" 6 | text: "JVM 底层原理最全知识总结" 7 | tagline: Doocs 技术社区出品 8 | actions: 9 | - theme: alt 10 | text: 作者主页 11 | link: https://github.com/yanglbme 12 | - theme: brand 13 | text: 开始学习 14 | link: /00-quickstart 15 | 16 | features: 17 | - title: "JVM 内存结构 🧠" 18 | details: 程序计数器、Java 虚拟机栈、本地方法栈、堆、方法区... 19 | link: /01-jvm-memory-structure 20 | - title: "HotSpot 虚拟机对象探秘 🔍" 21 | details: 对象内存布局、创建过程、访问方式 22 | link: /02-hotspot-jvm-object 23 | - title: "垃圾收集策略与算法 ♻️" 24 | details: 判断对象是否存活、引用种类、垃圾收集算法 25 | link: /03-gc-algorithms 26 | - title: "HotSpot 垃圾收集器 🔥" 27 | details: 新生代、老年代、G1 通用垃圾收集器 28 | link: /04-hotspot-gc 29 | - title: "内存分配与回收策略 💡" 30 | details: 对象分配、大对象、动态对象年龄判定、空间分配担保 31 | link: /05-memory-allocation-gc 32 | - title: "JVM 性能调优 🚀" 33 | details: 使用 64 位 JDK 管理大内存、使用 32 位 JVM 建立逻辑集群 34 | link: /06-jvm-performance-tuning 35 | - title: "类文件结构 📑" 36 | details: 魔数、版本信息、常量池、访问标志、类索引、字段表、方法表... 37 | link: /07-class-structure 38 | - title: "类加载的时机 ⏳" 39 | details: 类的生命周期、类加载过程初始化时机、接口加载过程 40 | link: /08-load-class-time 41 | - title: "类加载的过程 ⚙️" 42 | details: 加载、验证、准备、解析、初始化 43 | link: /09-load-class-process 44 | - title: "类加载器 🛠️" 45 | details: 类与类加载器、双亲委派模型工作过程 46 | link: /10-class-loader 47 | --- -------------------------------------------------------------------------------- /docs/10-class-loader.md: -------------------------------------------------------------------------------- 1 | # 类加载器 2 | 3 | ## 类与类加载器 4 | 5 | ### 判断类是否“相等” 6 | 7 | 任意一个类,都由**加载它的类加载器**和这个**类本身**一同确立其在 Java 虚拟机中的唯一性,每一个类加载器,都有一个独立的类名称空间。 8 | 9 | 因此,比较两个类是否“相等”,只有在这两个类是由同一个类加载器加载的前提下才有意义,否则,即使这两个类来源于同一个 Class 文件,被同一个虚拟机加载,只要加载它们的类加载器不同,那么这两个类就必定不相等。 10 | 11 | 这里的“相等”,包括代表类的 Class 对象的 `equals()` 方法、`isInstance()` 方法的返回结果,也包括使用 instanceof 关键字做对象所属关系判定等情况。 12 | 13 | ### 加载器种类 14 | 15 | 系统提供了 3 种类加载器: 16 | 17 | - 启动类加载器(Bootstrap ClassLoader): 负责将存放在 `\lib` 目录中的,并且能被虚拟机识别的(仅按照文件名识别,如 rt.jar,名字不符合的类库即使放在 lib 目录中也不会被加载)类库加载到虚拟机内存中。 18 | - 扩展类加载器(Extension ClassLoader): 负责加载 `\lib\ext` 目录中的所有类库,开发者可以直接使用扩展类加载器。 19 | - 应用程序类加载器(Application ClassLoader): 由于这个类加载器是 ClassLoader 中的 `getSystemClassLoader()` 方法的返回值,所以一般也称它为“系统类加载器”。它负责加载用户类路径(classpath)上所指定的类库,开发者可以直接使用这个类加载器,如果应用程序中没有自定义过自己的类加载器,一般情况下这个就是程序中默认的类加载器。 20 | 21 | ![ClassLoader](https://cdn-doocs.oss-cn-shenzhen.aliyuncs.com/gh/doocs/jvm@main/images/classloader.png) 22 | 23 | 当然,如果有必要,还可以加入自己定义的类加载器。 24 | 25 | ## 双亲委派模型 26 | 27 | ### 什么是双亲委派模型 28 | 29 | 双亲委派模型是描述类加载器之间的层次关系。它要求除了顶层的启动类加载器外,其余的类加载器都应当有自己的父类加载器。(父子关系一般不会以继承的关系实现,而是以组合关系来复用父加载器的代码) 30 | 31 | ### 工作过程 32 | 33 | 如果一个类加载器收到了类加载的请求,它首先不会自己去尝试加载这个类,而是把这个请求委派给父类加载器去完成,每一个层次的类加载器都是如此,因此所有的加载请求最终都应该传送到顶层的启动类加载器中,只有当父加载器反馈自己无法完成这个加载请求(找不到所需的类)时,子加载器才会尝试自己去加载。 34 | 35 | 在 java.lang.ClassLoader 中的 `loadClass` 方法中实现该过程。 36 | 37 | ### 为什么使用双亲委派模型 38 | 39 | 像 java.lang.Object 这些存放在 rt.jar 中的类,无论使用哪个类加载器加载,最终都会委派给最顶端的启动类加载器加载,从而使得不同加载器加载的 Object 类都是同一个。 40 | 41 | 相反,如果没有使用双亲委派模型,由各个类加载器自行去加载的话,如果用户自己编写了一个称为 java.lang.Object 的类,并放在 classpath 下,那么系统将会出现多个不同的 Object 类,Java 类型体系中最基础的行为也就无法保证。 42 | -------------------------------------------------------------------------------- /docs/06-jvm-performance-tuning.md: -------------------------------------------------------------------------------- 1 | # JVM 性能调优 2 | 3 | 在高性能硬件上部署程序,目前主要有两种方式: 4 | 5 | - 通过 64 位 JDK 来使用大内存; 6 | - 使用若干个 32 位虚拟机建立逻辑集群来利用硬件资源。 7 | 8 | ## 使用 64 位 JDK 管理大内存 9 | 10 | 堆内存变大后,虽然垃圾收集的频率减少了,但每次垃圾回收的时间变长。 如果堆内存为 14 G,那么每次 Full GC 将长达数十秒。如果 Full GC 频繁发生,那么对于一个网站来说是无法忍受的。 11 | 12 | 对于用户交互性强、对停顿时间敏感的系统,可以给 Java 虚拟机分配超大堆的前提是有把握把应用程序的 Full GC 频率控制得足够低,至少要低到不会影响用户使用。 13 | 14 | 可能面临的问题: 15 | 16 | - 内存回收导致的长时间停顿; 17 | - 现阶段,64 位 JDK 的性能普遍比 32 位 JDK 低; 18 | - 需要保证程序足够稳定,因为这种应用要是产生堆溢出几乎就无法产生堆转储快照(因为要产生超过 10GB 的 Dump 文件),哪怕产生了快照也几乎无法进行分析; 19 | - 相同程序在 64 位 JDK 消耗的内存一般比 32 位 JDK 大,这是由于指针膨胀,以及数据类型对齐补白等因素导致的。 20 | 21 | ## 使用 32 位 JVM 建立逻辑集群 22 | 23 | 在一台物理机器上启动多个应用服务器进程,每个服务器进程分配不同端口, 然后在前端搭建一个负载均衡器,以反向代理的方式来分配访问请求。 24 | 25 | 考虑到在一台物理机器上建立逻辑集群的目的仅仅是为了尽可能利用硬件资源,并不需要关心状态保留、热转移之类的高可用性能需求, 也不需要保证每个虚拟机进程有绝对的均衡负载,因此使用无 Session 复制的亲合式集群是一个不错的选择。 我们仅仅需要保障集群具备亲合性,也就是均衡器按一定的规则算法(一般根据 SessionID 分配) 将一个固定的用户请求永远分配到固定的一个集群节点进行处理即可。 26 | 27 | 可能遇到的问题: 28 | 29 | - 尽量避免节点竞争全局资源,如磁盘竞争,各个节点如果同时访问某个磁盘文件的话,很可能导致 IO 异常; 30 | - 很难高效利用资源池,如连接池,一般都是在节点建立自己独立的连接池,这样有可能导致一些节点池满了而另外一些节点仍有较多空余; 31 | - 各个节点受到 32 位的内存限制; 32 | - 大量使用本地缓存的应用,在逻辑集群中会造成较大的内存浪费,因为每个逻辑节点都有一份缓存,这时候可以考虑把本地缓存改成集中式缓存。 33 | 34 | ## 调优案例分析与实战 35 | 36 | ### 场景描述 37 | 38 | 一个小型系统,使用 32 位 JDK,4G 内存,测试期间发现服务端不定时抛出内存溢出异常。 加入 -XX:+HeapDumpOnOutOfMemoryError(添加这个参数后,堆内存溢出时就会输出异常日志), 但再次发生内存溢出时,没有生成相关异常日志。 39 | 40 | ### 分析 41 | 42 | 在 32 位 JDK 上,1.6G 分配给堆,还有一部分分配给 JVM 的其他内存,直接内存最大也只能在剩余的 0.4G 空间中分出一部分, 如果使用了 NIO,JVM 会在 JVM 内存之外分配内存空间,那么就要小心“直接内存”不足时发生内存溢出异常了。 43 | 44 | ### 直接内存的回收过程 45 | 46 | 直接内存虽然不是 JVM 内存空间,但它的垃圾回收也由 JVM 负责。 47 | 48 | 垃圾收集进行时,虚拟机虽然会对直接内存进行回收, 但是直接内存却不能像新生代、老年代那样,发现空间不足了就通知收集器进行垃圾回收, 它只能等老年代满了后 Full GC,然后“顺便”帮它清理掉内存的废弃对象。 否则只能一直等到抛出内存溢出异常时,先 catch 掉,再在 catch 块里大喊 “`System.gc()`”。 要是虚拟机还是不听,那就只能眼睁睁看着堆中还有许多空闲内存,自己却不得不抛出内存溢出异常了。 49 | -------------------------------------------------------------------------------- /docs/02-hotspot-jvm-object.md: -------------------------------------------------------------------------------- 1 | # HotSpot 虚拟机对象探秘 2 | 3 | ## 对象的内存布局 4 | 5 | 在 HotSpot 虚拟机中,对象的内存布局分为以下 3 块区域: 6 | 7 | - 对象头(Header) 8 | - 实例数据(Instance Data) 9 | - 对齐填充(Padding) 10 | 11 | ![object-memory-layout.png](https://cdn-doocs.oss-cn-shenzhen.aliyuncs.com/gh/doocs/jvm@main/images/object-memory-layout.png) 12 | 13 | ### 对象头 14 | 15 | 对象头记录了对象在运行过程中所需要使用的一些数据: 16 | 17 | - 哈希码 18 | - GC 分代年龄 19 | - 锁状态标志 20 | - 线程持有的锁 21 | - 偏向线程 ID 22 | - 偏向时间戳 23 | 24 | 对象头可能包含类型指针,通过该指针能确定对象属于哪个类。如果对象是一个数组,那么对象头还会包括数组长度。 25 | 26 | ### 实例数据 27 | 28 | 实例数据部分就是成员变量的值,其中包括父类成员变量和本类成员变量。 29 | 30 | ### 对齐填充 31 | 32 | 用于确保对象的总长度为 8 字节的整数倍。 33 | 34 | HotSpot VM 的自动内存管理系统要求对象的大小必须是 8 字节的整数倍。而对象头部分正好是 8 字节的倍数(1 倍或 2 倍),因此,当对象实例数据部分没有对齐时,就需要通过对齐填充来补全。 35 | 36 | > 对齐填充并不是必然存在,也没有特别的含义,它仅仅起着占位符的作用。 37 | 38 | ## 对象的创建过程 39 | 40 | ![new-instruction](https://cdn-doocs.oss-cn-shenzhen.aliyuncs.com/gh/doocs/jvm@main/images/new-instruction.png) 41 | 42 | ### 类加载检查 43 | 44 | 虚拟机在解析`.class`文件时,若遇到一条 new 指令,首先它会去检查常量池中是否有这个类的符号引用,并且检查这个符号引用所代表的类是否已被加载、解析和初始化过。如果没有,那么必须先执行相应的类加载过程。 45 | 46 | ### 为新生对象分配内存 47 | 48 | 对象所需内存的大小在类加载完成后便可完全确定,接下来从堆中划分一块对应大小的内存空间给新的对象。分配堆中内存有两种方式: 49 | 50 | - **指针碰撞**
51 | 如果 Java **堆中内存绝对规整**(说明采用的是“**复制算法**”或“**标记整理法**”),空闲内存和已使用内存中间放着一个指针作为分界点指示器,那么分配内存时只需要把指针向空闲内存挪动一段与对象大小一样的距离,这种分配方式称为“**指针碰撞**”。 52 | 53 | - **空闲列表**
54 | 如果 Java **堆中内存并不规整**,已使用的内存和空闲内存交错(说明采用的是**标记-清除法**,有碎片),此时没法简单进行指针碰撞, VM 必须维护一个列表,记录其中哪些内存块空闲可用。分配之时从空闲列表中找到一块足够大的内存空间划分给对象实例。这种方式称为“**空闲列表**”。 55 | 56 | ### 初始化 57 | 58 | 分配完内存后,为对象中的成员变量赋上初始值,设置对象头信息,调用对象的构造函数方法进行初始化。 59 | 60 | 至此,整个对象的创建过程就完成了。 61 | 62 | ## 对象的访问方式 63 | 64 | 所有对象的存储空间都是在堆中分配的,但是这个对象的引用却是在堆栈中分配的。也就是说在建立一个对象时两个地方都分配内存,在堆中分配的内存实际建立这个对象,而在堆栈中分配的内存只是一个指向这个堆对象的指针(引用)而已。 那么根据引用存放的地址类型的不同,对象有不同的访问方式。 65 | 66 | ### 句柄访问方式 67 | 68 | 堆中需要有一块叫做“句柄池”的内存空间,句柄中包含了对象实例数据与类型数据各自的具体地址信息。 69 | 70 | 引用类型的变量存放的是该对象的句柄地址(reference)。访问对象时,首先需要通过引用类型的变量找到该对象的句柄,然后根据句柄中对象的地址找到对象。 71 | 72 | ![handle-access](https://cdn-doocs.oss-cn-shenzhen.aliyuncs.com/gh/doocs/jvm@main/images/handle-access.jpg) 73 | 74 | ### 直接指针访问方式 75 | 76 | 引用类型的变量直接存放对象的地址,从而不需要句柄池,通过引用能够直接访问对象。但对象所在的内存空间需要额外的策略存储对象所属的类信息的地址。 77 | 78 | ![direct-pointer](https://cdn-doocs.oss-cn-shenzhen.aliyuncs.com/gh/doocs/jvm@main/images/direct-pointer.jpg) 79 | 80 | 需要说明的是,HotSpot 采用第二种方式,即直接指针方式来访问对象,只需要一次寻址操作,所以在性能上比句柄访问方式快一倍。但像上面所说,它需要**额外的策略**来存储对象在方法区中类信息的地址。 81 | -------------------------------------------------------------------------------- /docs/05-memory-allocation-gc.md: -------------------------------------------------------------------------------- 1 | # 内存分配与回收策略 2 | 3 | 对象的内存分配,就是在堆上分配(也可能经过 JIT 编译后被拆散为标量类型并间接在栈上分配),对象主要分配在新生代的 Eden 区上,少数情况下可能直接分配在老年代,**分配规则不固定**,取决于当前使用的垃圾收集器组合以及相关的参数配置。 4 | 5 | 以下列举几条最普遍的内存分配规则,供大家学习。 6 | 7 | ## 对象优先在 Eden 分配 8 | 9 | 大多数情况下,对象在新生代 Eden 区中分配。当 Eden 区没有足够空间进行分配时,虚拟机将发起一次 Minor GC。 10 | 11 | 👇**Minor GC** vs **Major GC**/**Full GC**: 12 | 13 | - Minor GC:回收新生代(包括 Eden 和 Survivor 区域),因为 Java 对象大多都具备朝生夕灭的特性,所以 Minor GC 非常频繁,一般回收速度也比较快。 14 | - Major GC / Full GC:回收老年代,出现了 Major GC,经常会伴随至少一次的 Minor GC,但这并非绝对。Major GC 的速度一般会比 Minor GC 慢 10 倍 以上。 15 | 16 | > 在 JVM 规范中,Major GC 和 Full GC 都没有一个正式的定义,所以有人也简单地认为 Major GC 清理老年代,而 Full GC 清理整个内存堆。 17 | 18 | ## 大对象直接进入老年代 19 | 20 | 大对象是指需要大量连续内存空间的 Java 对象,如很长的字符串或数据。 21 | 22 | 一个大对象能够存入 Eden 区的概率比较小,发生分配担保的概率比较大,而分配担保需要涉及大量的复制,就会造成效率低下。 23 | 24 | 虚拟机提供了一个 -XX:PretenureSizeThreshold 参数,令大于这个设置值的对象直接在老年代分配,这样做的目的是避免在 Eden 区及两个 Survivor 区之间发生大量的内存复制。(还记得吗,新生代采用复制算法回收垃圾) 25 | 26 | ## 长期存活的对象将进入老年代 27 | 28 | JVM 给每个对象定义了一个对象年龄计数器。当新生代发生一次 Minor GC 后,存活下来的对象年龄 +1,当年龄超过一定值时,就将超过该值的所有对象转移到老年代中去。 29 | 30 | 使用 `-XXMaxTenuringThreshold` 设置新生代的最大年龄,只要超过该参数的新生代对象都会被转移到老年代中去。 31 | 32 | ## 动态对象年龄判定 33 | 34 | 如果当前新生代的 Survivor 中,相同年龄所有对象大小的总和大于 Survivor 空间的一半,年龄 >= 该年龄的对象就可以直接进入老年代,无须等到 `MaxTenuringThreshold` 中要求的年龄。 35 | 36 | ## 空间分配担保 37 | 38 | JDK 6 Update 24 之前的规则是这样的: 39 | 40 | 在发生 Minor GC 之前,虚拟机会先检查**老年代最大可用的连续空间是否大于新生代所有对象总空间**, 如果这个条件成立,Minor GC 可以确保是安全的; 如果不成立,则虚拟机会查看 `HandlePromotionFailure` 值是否设置为允许担保失败, 如果是,那么会继续检查老年代最大可用的连续空间是否大于历次晋升到老年代对象的平均大小, 如果大于,将尝试进行一次 Minor GC,尽管这次 Minor GC 是有风险的; 如果小于,或者 `HandlePromotionFailure` 设置不允许冒险,那此时也要改为进行一次 Full GC。 41 | 42 | JDK 6 Update 24 之后的规则变为: 43 | 44 | 只要老年代的连续空间大于新生代对象总大小或者历次晋升的平均大小,就会进行 Minor GC,否则将进行 Full GC。 45 | 46 | 通过清除老年代中的废弃数据来扩大老年代空闲空间,以便给新生代作担保。 47 | 48 | 这个过程就是分配担保。 49 | 50 | --- 51 | 52 | 👇 总结一下有哪些情况可能会触发 JVM 进行 Full GC。 53 | 54 | 1. **`System.gc()` 方法的调用** 55 | 此方法的调用是建议 JVM 进行 Full GC,注意这**只是建议而非一定**,但在很多情况下它会触发 Full GC,从而增加 Full GC 的频率。通常情况下我们只需要让虚拟机自己去管理内存即可,我们可以通过 -XX:+ DisableExplicitGC 来禁止调用 `System.gc()`。 56 | 1. **老年代空间不足** 57 | 老年代空间不足会触发 Full GC 操作,若进行该操作后空间依然不足,则会抛出如下错误:`java.lang.OutOfMemoryError: Java heap space` 58 | 1. **永久代空间不足** 59 | JVM 规范中运行时数据区域中的方法区,在 HotSpot 虚拟机中也称为永久代(Permanet Generation),存放一些类信息、常量、静态变量等数据,当系统要加载的类、反射的类和调用的方法较多时,永久代可能会被占满,会触发 Full GC。如果经过 Full GC 仍然回收不了,那么 JVM 会抛出如下错误信息:`java.lang.OutOfMemoryError: PermGen space ` 60 | 1. **CMS GC 时出现 `promotion failed` 和 `concurrent mode failure`** 61 | promotion failed,就是上文所说的担保失败,而 concurrent mode failure 是在执行 CMS GC 的过程中同时有对象要放入老年代,而此时老年代空间不足造成的。 62 | 1. **统计得到的 Minor GC 晋升到旧生代的平均大小大于老年代的剩余空间。** 63 | -------------------------------------------------------------------------------- /docs/08-load-class-time.md: -------------------------------------------------------------------------------- 1 | # 类加载的时机 2 | 3 | ## 类的生命周期 4 | 5 | 类从被加载到虚拟机内存开始,到卸载出内存为止,它的整个生命周期包括以下 7 个阶段: 6 | 7 | - 加载 8 | - 验证 9 | - 准备 10 | - 解析 11 | - 初始化 12 | - 使用 13 | - 卸载 14 | 15 | 验证、准备、解析 3 个阶段统称为连接。 16 | 17 | ![Load Class](https://cdn-doocs.oss-cn-shenzhen.aliyuncs.com/gh/doocs/jvm@main/images/loadclass.png) 18 | 19 | 加载、验证、准备、初始化和卸载这 5 个阶段的顺序是确定的,类的加载过程必须按照这种顺序按部就班地开始(注意是“开始”,而不是“进行”或“完成”),而解析阶段则不一定:它在某些情况下可以在初始化后再开始,这是为了支持 Java 语言的运行时绑定。 20 | 21 | ## 类加载过程中“初始化”开始的时机 22 | 23 | Java 虚拟机规范没有强制约束类加载过程的第一阶段(即:加载)什么时候开始,但对于“初始化”阶段,有着严格的规定。有且仅有 5 种情况必须立即对类进行“初始化”: 24 | 25 | - 在遇到 new、putstatic、getstatic、invokestatic 字节码指令时,如果类尚未初始化,则需要先触发其初始化。 26 | - 对类进行反射调用时,如果类还没有初始化,则需要先触发其初始化。 27 | - 初始化一个类时,如果其父类还没有初始化,则需要先初始化父类。 28 | - 虚拟机启动时,用于需要指定一个包含 `main()` 方法的主类,虚拟机会先初始化这个主类。 29 | - 当使用 JDK 1.7 的动态语言支持时,如果一个 java.lang.invoke.MethodHandle 实例最后的解析结果为 REF_getStatic、REF_putStatic、REF_invokeStatic 的方法句柄,并且这个方法句柄所对应的类还没初始化,则需要先触发其初始化。 30 | 31 | 这 5 种场景中的行为称为对一个类进行**主动引用**,除此之外,其它所有引用类的方式都不会触发初始化,称为**被动引用**。 32 | 33 | ## 被动引用演示 Demo 34 | 35 | ### Demo1 36 | 37 | ```java 38 | /** 39 | * 被动引用 Demo1: 40 | * 通过子类引用父类的静态字段,不会导致子类初始化。 41 | * 42 | * @author ylb 43 | * 44 | */ 45 | class SuperClass { 46 | static { 47 | System.out.println("SuperClass init!"); 48 | } 49 | 50 | public static int value = 123; 51 | } 52 | 53 | class SubClass extends SuperClass { 54 | static { 55 | System.out.println("SubClass init!"); 56 | } 57 | } 58 | 59 | public class NotInitialization { 60 | 61 | public static void main(String[] args) { 62 | System.out.println(SubClass.value); 63 | // SuperClass init! 64 | } 65 | 66 | } 67 | ``` 68 | 69 | 对于静态字段,只有直接定义这个字段的类才会被初始化,因此通过其子类来引用父类中定义的静态字段,只会触发父类的初始化而不会触发子类的初始化。 70 | 71 | ### Demo2 72 | 73 | ```java 74 | /** 75 | * 被动引用 Demo2: 76 | * 通过数组定义来引用类,不会触发此类的初始化。 77 | * 78 | * @author ylb 79 | * 80 | */ 81 | 82 | public class NotInitialization { 83 | 84 | public static void main(String[] args) { 85 | SuperClass[] superClasses = new SuperClass[10]; 86 | } 87 | 88 | } 89 | ``` 90 | 91 | 这段代码不会触发父类的初始化,但会触发“\[L 全类名”这个类的初始化,它由虚拟机自动生成,直接继承自 java.lang.Object,创建动作由字节码指令 newarray 触发。 92 | 93 | ### Demo3 94 | 95 | ```java 96 | /** 97 | * 被动引用 Demo3: 98 | * 常量在编译阶段会存入调用类的常量池中,本质上并没有直接引用到定义常量的类,因此不会触发定义常量的类的初始化。 99 | * 100 | * @author ylb 101 | * 102 | */ 103 | class ConstClass { 104 | static { 105 | System.out.println("ConstClass init!"); 106 | } 107 | 108 | public static final String HELLO_BINGO = "Hello Bingo"; 109 | 110 | } 111 | 112 | public class NotInitialization { 113 | 114 | public static void main(String[] args) { 115 | System.out.println(ConstClass.HELLO_BINGO); 116 | } 117 | 118 | } 119 | ``` 120 | 121 | 编译通过之后,常量存储到 NotInitialization 类的常量池中,NotInitialization 的 Class 文件中并没有 ConstClass 类的符号引用入口,这两个类在编译成 Class 之后就没有任何联系了。 122 | 123 | ## 接口的加载过程 124 | 125 | 接口加载过程与类加载过程稍有不同。 126 | 127 | 当一个类在初始化时,要求其父类全部都已经初始化过了,但是一个接口在初始化时,并不要求其父接口全部都完成了初始化,当真正用到父接口的时候才会初始化。 128 | -------------------------------------------------------------------------------- /docs/.vitepress/config.mts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vitepress' 2 | 3 | // https://vitepress.dev/reference/site-config 4 | export default defineConfig({ 5 | title: "jvm", 6 | description: "Doocs 开源社区", 7 | themeConfig: { 8 | // https://vitepress.dev/reference/default-theme-config 9 | nav: [ 10 | { text: '首页', link: '/' }, 11 | ], 12 | search: { 13 | provider: 'local' 14 | }, 15 | footer: { 16 | message: 'Released under the CC-BY-SA-4.0 license.', 17 | copyright: `Copyright © 2018-${new Date().getFullYear()} Doocs` 18 | }, 19 | logo: '/favicon.png', 20 | docFooter: { 21 | prev: '上一页', 22 | next: '下一页' 23 | }, 24 | editLink: { 25 | pattern: 'https://github.com/doocs/jvm/edit/main/docs/:path', 26 | text: '在 GitHub 编辑' 27 | }, 28 | lastUpdated: { 29 | text: 'Updated at', 30 | formatOptions: { 31 | dateStyle: 'full', 32 | timeStyle: 'medium' 33 | } 34 | }, 35 | sidebar: [ 36 | { 37 | items: [ 38 | { 39 | 'text': '开始学习', 40 | 'link': '/00-quickstart' 41 | }, 42 | { 43 | 'text': 'JVM 内存结构', 44 | 'link': '/01-jvm-memory-structure' 45 | }, 46 | { 47 | 'text': 'HotSpot 虚拟机对象探秘', 48 | 'link': '/02-hotspot-jvm-object', 49 | }, 50 | { 51 | 'text': '垃圾收集策略与算法', 52 | 'link': '/03-gc-algorithms' 53 | }, 54 | { 55 | 'text': 'HotSpot 垃圾收集器', 56 | 'link': '/04-hotspot-gc' 57 | }, 58 | { 59 | 'text': '内存分配与回收策略', 60 | 'link': '/05-memory-allocation-gc' 61 | }, 62 | { 63 | 'text': 'JVM 性能调优', 64 | 'link': '/06-jvm-performance-tuning' 65 | }, 66 | { 67 | 'text': '类文件结构', 68 | 'link': '/07-class-structure' 69 | }, 70 | { 71 | 'text': '类加载的时机', 72 | 'link': '/08-load-class-time' 73 | }, 74 | { 75 | 'text': '类加载的过程', 76 | 'link': '/09-load-class-process' 77 | }, 78 | { 79 | 'text': '类加载器', 80 | 'link': '/10-class-loader' 81 | } 82 | ], 83 | }, 84 | ], 85 | 86 | socialLinks: [ 87 | { icon: 'github', link: 'https://github.com/doocs/jvm' } 88 | ] 89 | }, 90 | head: [ 91 | ['link', { rel: 'icon', type: 'image/png', href: '/favicon.png' }], 92 | [ 93 | 'script', 94 | { async: '', src: 'https://www.googletagmanager.com/gtag/js?id=G-7W625EPRG6' } 95 | ], 96 | [ 97 | 'script', 98 | {}, 99 | `window.dataLayer = window.dataLayer || []; 100 | function gtag(){dataLayer.push(arguments);} 101 | gtag('js', new Date()); 102 | gtag('config', 'G-7W625EPRG6');` 103 | ] 104 | ], 105 | cleanUrls: true, 106 | sitemap: { 107 | hostname: 'https://jvm.doocs.org' 108 | } 109 | }) 110 | -------------------------------------------------------------------------------- /docs/09-load-class-process.md: -------------------------------------------------------------------------------- 1 | # 类加载的过程 2 | 3 | 类加载过程包括 5 个阶段:加载、验证、准备、解析和初始化。 4 | 5 | ## 加载 6 | 7 | ### 加载的过程 8 | 9 | “加载”是“类加载”过程的一个阶段,不能混淆这两个名词。在加载阶段,虚拟机需要完成 3 件事: 10 | 11 | - 通过类的全限定名获取该类的二进制字节流。 12 | - 将二进制字节流所代表的静态结构转化为方法区的运行时数据结构。 13 | - 在内存中创建一个代表该类的 java.lang.Class 对象,作为方法区这个类的各种数据的访问入口。 14 | 15 | ### 获取二进制字节流 16 | 17 | 对于 Class 文件,虚拟机没有指明要从哪里获取、怎样获取。除了直接从编译好的 .class 文件中读取,还有以下几种方式: 18 | 19 | - 从 zip 包中读取,如 jar、war 等; 20 | - 从网络中获取,如 Applet; 21 | - 通过动态代理技术生成代理类的二进制字节流; 22 | - 由 JSP 文件生成对应的 Class 类; 23 | - 从数据库中读取,如 有些中间件服务器可以选择把程序安装到数据库中来完成程序代码在集群间的分发。 24 | 25 | ### “非数组类”与“数组类”加载比较 26 | 27 | - 非数组类加载阶段可以使用系统提供的引导类加载器,也可以由用户自定义的类加载器完成,开发人员可以通过定义自己的类加载器控制字节流的获取方式(如重写一个类加载器的 `loadClass()` 方法)。 28 | - 数组类本身不通过类加载器创建,它是由 Java 虚拟机直接创建的,再由类加载器创建数组中的元素类。 29 | 30 | ### 注意事项 31 | 32 | - 虚拟机规范未规定 Class 对象的存储位置,对于 HotSpot 虚拟机而言,Class 对象比较特殊,它虽然是对象,但存放在方法区中。 33 | - 加载阶段与连接阶段的部分内容交叉进行,加载阶段尚未完成,连接阶段可能已经开始了。但这两个阶段的开始时间仍然保持着固定的先后顺序。 34 | 35 | ## 验证 36 | 37 | ### 验证的重要性 38 | 39 | 验证阶段确保 Class 文件的字节流中包含的信息符合当前虚拟机的要求,并且不会危害虚拟机自身的安全。 40 | 41 | ### 验证的过程 42 | 43 | - 文件格式验证 验证字节流是否符合 Class 文件格式的规范,并且能被当前版本的虚拟机处理,验证点如下: 44 | - 是否以魔数 0XCAFEBABE 开头。 45 | - 主次版本号是否在当前虚拟机处理范围内。 46 | - 常量池是否有不被支持的常量类型。 47 | - 指向常量的索引值是否指向了不存在的常量。 48 | - CONSTANT_Utf8_info 型的常量是否有不符合 UTF8 编码的数据。 49 | - ...... 50 | - 元数据验证 对字节码描述信息进行语义分析,确保其符合 Java 语法规范。 51 | - 字节码验证 本阶段是验证过程中最复杂的一个阶段,是对方法体进行语义分析,保证方法在运行时不会出现危害虚拟机的事件。 52 | - 符号引用验证 本阶段发生在解析阶段,确保解析正常执行。 53 | 54 | ## 准备 55 | 56 | 准备阶段是正式为类变量(或称“静态成员变量”)分配内存并设置初始值的阶段。这些变量(不包括实例变量)所使用的内存都在方法区中进行分配。 57 | 58 | 初始值“通常情况下”是数据类型的零值(0, null...),假设一个类变量的定义为: 59 | 60 | ```java 61 | public static int value = 123; 62 | ``` 63 | 64 | 那么变量 value 在准备阶段过后的初始值为 0 而不是 123,因为这时候尚未开始执行任何 Java 方法。 65 | 66 | 存在“特殊情况”:如果类字段的字段属性表中存在 ConstantValue 属性,那么在准备阶段 value 就会被初始化为 ConstantValue 属性所指定的值,假设上面类变量 value 的定义变为: 67 | 68 | ```java 69 | public static final int value = 123; 70 | ``` 71 | 72 | 那么在准备阶段虚拟机会根据 ConstantValue 的设置将 value 赋值为 123。 73 | 74 | ## 解析 75 | 76 | 解析阶段是虚拟机将常量池内的符号引用替换为直接引用的过程。 77 | 78 | ## 初始化 79 | 80 | 类初始化阶段是类加载过程的最后一步,是执行类构造器 `()` 方法的过程。 81 | 82 | `()` 方法是由编译器自动收集类中的所有类变量的赋值动作和静态语句块(static {} 块)中的语句合并产生的,编译器收集的顺序是由语句在源文件中出现的顺序所决定的。 83 | 84 | 静态语句块中只能访问定义在静态语句块之前的变量,定义在它之后的变量,在前面的静态语句块中可以赋值,但不能访问。如下方代码所示: 85 | 86 | ```java 87 | public class Test { 88 | static { 89 | i = 0; // 给变量赋值可以正常编译通过 90 | System.out.println(i); // 这句编译器会提示“非法向前引用” 91 | } 92 | static int i = 1; 93 | } 94 | ``` 95 | 96 | `()` 方法不需要显式调用父类构造器,虚拟机会保证在子类的 `()` 方法执行之前,父类的 `()` 方法已经执行完毕。 97 | 98 | 由于父类的 `()` 方法先执行,意味着父类中定义的静态语句块要优先于子类的变量赋值操作。如下方代码所示: 99 | 100 | ```java 101 | static class Parent { 102 | public static int A = 1; 103 | static { 104 | A = 2; 105 | } 106 | } 107 | 108 | static class Sub extends Parent { 109 | public static int B = A; 110 | } 111 | 112 | public static void main(String[] args) { 113 | System.out.println(Sub.B); // 输出 2 114 | } 115 | ``` 116 | 117 | `()` 方法不是必需的,如果一个类没有静态语句块,也没有对类变量的赋值操作,那么编译器可以不为这个类生成 `()` 方法。 118 | 119 | 接口中不能使用静态代码块,但接口也需要通过 `()` 方法为接口中定义的静态成员变量显式初始化。但接口与类不同,接口的 `()` 方法不需要先执行父类的 `()` 方法,只有当父接口中定义的变量使用时,父接口才会初始化。 120 | 121 | 虚拟机会保证一个类的 `()` 方法在多线程环境中被正确加锁、同步。如果多个线程同时去初始化一个类,那么只会有一个线程去执行这个类的 `()` 方法。 122 | -------------------------------------------------------------------------------- /docs/04-hotspot-gc.md: -------------------------------------------------------------------------------- 1 | # HotSpot 垃圾收集器 2 | 3 | HotSpot 虚拟机提供了多种垃圾收集器,每种收集器都有各自的特点,虽然我们要对各个收集器进行比较,但并非为了挑选出一个最好的收集器。我们选择的只是对具体应用最合适的收集器。 4 | 5 | ## 新生代垃圾收集器 6 | 7 | ### Serial 垃圾收集器(单线程) 8 | 9 | 只开启**一条** GC 线程进行垃圾回收,并且在垃圾收集过程中停止一切用户线程,即 Stop The World。 10 | 11 | 一般客户端应用所需内存较小,不会创建太多对象,而且堆内存不大,因此垃圾收集器回收时间短,即使在这段时间停止一切用户线程,也不会感觉明显卡顿。因此 Serial 垃圾收集器**适合客户端**使用。 12 | 13 | 由于 Serial 收集器只使用一条 GC 线程,避免了线程切换的开销,从而简单高效。 14 | 15 | ![Serial](https://cdn-doocs.oss-cn-shenzhen.aliyuncs.com/gh/doocs/jvm@main/images/serial.png) 16 | 17 | ### ParNew 垃圾收集器(多线程) 18 | 19 | ParNew 是 Serial 的多线程版本。由多条 GC 线程并行地进行垃圾清理。但清理过程依然需要 Stop The World。 20 | 21 | ParNew 追求“**低停顿时间**”,与 Serial 唯一区别就是使用了多线程进行垃圾收集,在多 CPU 环境下性能比 Serial 会有一定程度的提升;但**线程切换需要额外的开销**,因此在单 CPU 环境中表现不如 Serial。 22 | 23 | ![ParNew](https://cdn-doocs.oss-cn-shenzhen.aliyuncs.com/gh/doocs/jvm@main/images/parnew.png) 24 | 25 | ### Parallel Scavenge 垃圾收集器(多线程) 26 | 27 | Parallel Scavenge 和 ParNew 一样,都是多线程、新生代垃圾收集器。但是两者有巨大的不同点: 28 | 29 | - Parallel Scavenge:追求 CPU 吞吐量,能够在较短时间内完成指定任务,因此适合没有交互的后台计算。 30 | - ParNew:追求降低用户停顿时间,适合交互式应用。 31 | 32 | `吞吐量 = 运行用户代码时间 / (运行用户代码时间 + 垃圾收集时间)` 33 | 34 | 追求高吞吐量,可以通过减少 GC 执行实际工作的时间,然而,仅仅偶尔运行 GC 意味着每当 GC 运行时将有许多工作要做,因为在此期间积累在堆中的对象数量很高。单个 GC 需要花更多的时间来完成,从而导致更高的暂停时间。而考虑到低暂停时间,最好频繁运行 GC 以便更快速完成,反过来又导致吞吐量下降。 35 | 36 | - 通过参数 -XX:GCTimeRadio 设置垃圾回收时间占总 CPU 时间的百分比。 37 | - 通过参数 -XX:MaxGCPauseMillis 设置垃圾处理过程最久停顿时间。 38 | - 通过命令 -XX:+UseAdaptiveSizePolicy 开启自适应策略。我们只要设置好堆的大小和 MaxGCPauseMillis 或 GCTimeRadio,收集器会自动调整新生代的大小、Eden 和 Survivor 的比例、对象进入老年代的年龄,以最大程度上接近我们设置的 MaxGCPauseMillis 或 GCTimeRadio。 39 | 40 | ## 老年代垃圾收集器 41 | 42 | ### Serial Old 垃圾收集器(单线程) 43 | 44 | Serial Old 收集器是 Serial 的老年代版本,都是单线程收集器,只启用一条 GC 线程,都适合客户端应用。它们唯一的区别就是:Serial Old 工作在老年代,使用“标记-整理”算法;Serial 工作在新生代,使用“复制”算法。 45 | 46 | ### Parallel Old 垃圾收集器(多线程) 47 | 48 | Parallel Old 收集器是 Parallel Scavenge 的老年代版本,追求 CPU 吞吐量。 49 | 50 | ### CMS 垃圾收集器 51 | 52 | CMS(Concurrent Mark Sweep,并发标记清除)收集器是以获取最短回收停顿时间为目标的收集器(追求低停顿),它在垃圾收集时使得用户线程和 GC 线程并发执行,因此在垃圾收集过程中用户也不会感到明显的卡顿。 53 | 54 | - 初始标记:Stop The World,仅使用一条初始标记线程对所有与 GC Roots 直接关联的对象进行标记。 55 | - 并发标记:使用**多条**标记线程,与用户线程并发执行。此过程进行可达性分析,标记出所有废弃对象。速度很慢。 56 | - 重新标记:Stop The World,使用多条标记线程并发执行,将刚才并发标记过程中新出现的废弃对象标记出来。 57 | - 并发清除:只使用一条 GC 线程,与用户线程并发执行,清除刚才标记的对象。这个过程非常耗时。 58 | 59 | 并发标记与并发清除过程耗时最长,且可以与用户线程一起工作,因此,**总体上说**,CMS 收集器的内存回收过程是与用户线程**一起并发执行**的。 60 | 61 | ![CMS](https://cdn-doocs.oss-cn-shenzhen.aliyuncs.com/gh/doocs/jvm@main/images/cms.png) 62 | 63 | CMS 的缺点: 64 | 65 | - 吞吐量低 66 | - 无法处理浮动垃圾 67 | - 使用“标记-清除”算法产生碎片空间,导致频繁 Full GC 68 | 69 | 对于产生碎片空间的问题,可以通过开启 -XX:+UseCMSCompactAtFullCollection,在每次 Full GC 完成后都会进行一次内存压缩整理,将零散在各处的对象整理到一块。设置参数 -XX:CMSFullGCsBeforeCompaction 告诉 CMS,经过了 N 次 Full GC 之后再进行一次内存整理。 70 | 71 | ## G1 通用垃圾收集器 72 | 73 | G1 是一款面向服务端应用的垃圾收集器,它没有新生代和老年代的概念,而是将堆划分为一块块独立的 Region。当要进行垃圾收集时,首先估计每个 Region 中垃圾的数量,每次都从垃圾回收价值最大的 Region 开始回收,因此可以获得最大的回收效率。 74 | 75 | 从整体上看, G1 是基于“标记-整理”算法实现的收集器,从局部(两个 Region 之间)上看是基于“复制”算法实现的,这意味着运行期间不会产生内存空间碎片。 76 | 77 | 这里抛个问题 👇 78 | 79 | > 一个对象和它内部所引用的对象可能不在同一个 Region 中,那么当垃圾回收时,是否需要扫描整个堆内存才能完整地进行一次可达性分析? 80 | 81 | 并不!每个 Region 都有一个 Remembered Set,用于记录本区域中所有对象引用的对象所在的区域,进行可达性分析时,只要在 GC Roots 中再加上 Remembered Set 即可防止对整个堆内存进行遍历。 82 | 83 | 如果不计算维护 Remembered Set 的操作,G1 收集器的工作过程分为以下几个步骤: 84 | 85 | - 初始标记:Stop The World,仅使用一条初始标记线程对所有与 GC Roots 直接关联的对象进行标记。 86 | - 并发标记:使用**一条**标记线程与用户线程并发执行。此过程进行可达性分析,速度很慢。 87 | - 最终标记:Stop The World,使用多条标记线程并发执行。 88 | - 筛选回收:回收废弃对象,此时也要 Stop The World,并使用多条筛选回收线程并发执行。 89 | -------------------------------------------------------------------------------- /docs/00-quickstart.md: -------------------------------------------------------------------------------- 1 | # 开始学习 2 | 3 | 这里仅仅记录了一些笔者认为需要重点掌握的 JVM 知识点,如果你想更加全面地了解 JVM 底层原理,可以阅读周志明老师《深入理解 Java 虚拟机——JVM 高级特性与最佳实践(第 2/3 版)》全书。 4 | 5 | ## 清单 6 | 7 | - [JVM 内存结构](./01-jvm-memory-structure.md) 8 | - [HotSpot 虚拟机对象探秘](./02-hotspot-jvm-object.md) 9 | - [垃圾收集策略与算法](./03-gc-algorithms.md) 10 | - [HotSpot 垃圾收集器](./04-hotspot-gc.md) 11 | - [内存分配与回收策略](./05-memory-allocation-gc.md) 12 | - [JVM 性能调优](./06-jvm-performance-tuning.md) 13 | - [类文件结构](./07-class-structure.md) 14 | - [类加载的时机](./08-load-class-time.md) 15 | - [类加载的过程](./09-load-class-process.md) 16 | - [类加载器](./10-class-loader.md) 17 | 18 | ## 站点 19 | 20 | [https://jvm.doocs.org](https://jvm.doocs.org) 21 | 22 | ## 写作规范 23 | 24 | 参考《[中文技术文档的写作规范](https://github.com/ruanyf/document-style-guide)》 25 | 26 | ## 许可证 27 | 28 | [知识共享 版权归属-相同方式共享 4.0 国际 公共许可证](http://creativecommons.org/licenses/by-sa/4.0/) 29 | 30 | --- 31 | 32 | ## Doocs 社区优质项目 33 | 34 | Doocs 技术社区,致力于打造一个内容完整、持续成长的互联网开发者学习生态圈!以下是 Doocs 旗下的一些优秀项目,欢迎各位开发者朋友持续保持关注。 35 | 36 | | # | 项目 | 描述 | 热度 | 37 | | --- | ----------------------------------------------------------------- | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------- | 38 | | 1 | [advanced-java](https://github.com/doocs/advanced-java) | 互联网 Java 工程师进阶知识完全扫盲:涵盖高并发、分布式、高可用、微服务、海量数据处理等领域知识。 | ![](https://badgen.net/github/stars/doocs/advanced-java)
![](https://badgen.net/github/forks/doocs/advanced-java) | 39 | | 2 | [leetcode](https://github.com/doocs/leetcode) | 多种编程语言实现 LeetCode、《剑指 Offer(第 2 版)》、《程序员面试金典(第 6 版)》题解。 | ![](https://badgen.net/github/stars/doocs/leetcode)
![](https://badgen.net/github/forks/doocs/leetcode) | 40 | | 3 | [source-code-hunter](https://github.com/doocs/source-code-hunter) | 互联网常用组件框架源码分析。 | ![](https://badgen.net/github/stars/doocs/source-code-hunter)
![](https://badgen.net/github/forks/doocs/source-code-hunter) | 41 | | 4 | [jvm](https://github.com/doocs/jvm) | Java 虚拟机底层原理知识总结。 | ![](https://badgen.net/github/stars/doocs/jvm)
![](https://badgen.net/github/forks/doocs/jvm) | 42 | | 5 | [coding-interview](https://github.com/doocs/coding-interview) | 代码面试题集,包括《剑指 Offer》、《编程之美》等。 | ![](https://badgen.net/github/stars/doocs/coding-interview)
![](https://badgen.net/github/forks/doocs/coding-interview) | 43 | | 6 | [md](https://github.com/doocs/md) | 一款高度简洁的微信 Markdown 编辑器。 | ![](https://badgen.net/github/stars/doocs/md)
![](https://badgen.net/github/forks/doocs/md) | 44 | | 7 | [technical-books](https://github.com/doocs/technical-books) | 值得一看的技术书籍列表。 | ![](https://badgen.net/github/stars/doocs/technical-books)
![](https://badgen.net/github/forks/doocs/technical-books) | 45 | 46 | ## 贡献者 47 | 48 | 感谢以下所有朋友对 [Doocs 技术社区](https://github.com/doocs) 所做出的贡献,[参与项目维护请戳这儿](https://doocs.org/#/?id=how-to-join)。 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | ## 公众号 57 | 58 | [Doocs](https://github.com/doocs) 技术社区旗下唯一公众号「**Doocs**」​,欢迎扫码关注,**专注分享技术领域相关知识及行业最新资讯**。当然,也可以加我个人微信(备注:GitHub),拉你进技术交流群。 59 | 60 | | ![QRCode 1](https://cdn-doocs.oss-cn-shenzhen.aliyuncs.com/gh/doocs/images/qrcode-for-doocs.png) | ![QRCode 2](https://cdn-doocs.oss-cn-shenzhen.aliyuncs.com/gh/doocs/images/qrcode-for-yanglbme.png) | 61 | |:--------------------------------------------:|:---------------------------------------------:| 62 | 63 | 关注「**Doocs**」公众号,回复 **JVM**,即可获取本项目离线 PDF 文档,学习更加方便! 64 | 65 | ![](https://cdn-doocs.oss-cn-shenzhen.aliyuncs.com/gh/doocs/jvm@main/images/jvm-pdf.png) 66 | -------------------------------------------------------------------------------- /docs/03-gc-algorithms.md: -------------------------------------------------------------------------------- 1 | # 垃圾收集策略与算法 2 | 3 | 程序计数器、虚拟机栈、本地方法栈随线程而生,也随线程而灭;栈帧随着方法的开始而入栈,随着方法的结束而出栈。这几个区域的内存分配和回收都具有确定性,在这几个区域内不需要过多考虑回收的问题,因为方法结束或者线程结束时,内存自然就跟随着回收了。 4 | 5 | 而对于 Java 堆和方法区,我们只有在程序运行期间才能知道会创建哪些对象,这部分内存的分配和回收都是动态的,垃圾收集器所关注的正是这部分内存。 6 | 7 | ## 判定对象是否存活 8 | 9 | 若一个对象不被任何对象或变量引用,那么它就是无效对象,需要被回收。 10 | 11 | ### 引用计数法 12 | 13 | 在对象头维护着一个 counter 计数器,对象被引用一次则计数器 +1;若引用失效则计数器 -1。当计数器为 0 时,就认为该对象无效了。 14 | 15 | 引用计数算法的实现简单,判定效率也很高,在大部分情况下它都是一个不错的算法。但是主流的 Java 虚拟机里没有选用引用计数算法来管理内存,主要是因为它很难解决对象之间循环引用的问题。(虽然循环引用的问题可通过 Recycler 算法解决,但是在多线程环境下,引用计数变更也要进行昂贵的同步操作,性能较低,早期的编程语言会采用此算法。) 16 | 17 | > 举个栗子 👉 对象 objA 和 objB 都有字段 instance,令 objA.instance = objB 并且 objB.instance = objA,由于它们互相引用着对方,导致它们的引用计数都不为 0,于是引用计数算法无法通知 GC 收集器回收它们。 18 | 19 | ### 可达性分析法 20 | 21 | 所有和 GC Roots 直接或间接关联的对象都是有效对象,和 GC Roots 没有关联的对象就是无效对象。 22 | 23 | GC Roots 是指: 24 | 25 | - Java 虚拟机栈(栈帧中的本地变量表)中引用的对象 26 | - 本地方法栈中引用的对象 27 | - 方法区中常量引用的对象 28 | - 方法区中类静态属性引用的对象 29 | 30 | GC Roots 并不包括堆中对象所引用的对象,这样就不会有循环引用的问题。 31 | 32 | ## 引用的种类 33 | 34 | 判定对象是否存活与“引用”有关。在 JDK 1.2 以前,Java 中的引用定义很传统,一个对象只有被引用或者没有被引用两种状态,我们希望能描述这一类对象:当内存空间还足够时,则保留在内存中;如果内存空间在进行垃圾收集后还是非常紧张,则可以抛弃这些对象。很多系统的缓存功能都符合这样的应用场景。 35 | 36 | 在 JDK 1.2 之后,Java 对引用的概念进行了扩充,将引用分为了以下四种。不同的引用类型,主要体现的是对象不同的可达性状态`reachable`和垃圾收集的影响。 37 | 38 | ### 强引用(Strong Reference) 39 | 40 | 类似 "`Object obj = new Object()`" 这类的引用,就是强引用,只要强引用存在,垃圾收集器永远不会回收被引用的对象。但是,如果我们**错误地保持了强引用**,比如:赋值给了 static 变量,那么对象在很长一段时间内不会被回收,会产生内存泄漏。 41 | 42 | ### 软引用(Soft Reference) 43 | 44 | 软引用是一种相对强引用弱化一些的引用,可以让对象豁免一些垃圾收集,只有当 JVM 认为内存不足时,才会去试图回收软引用指向的对象。JVM 会确保在抛出 OutOfMemoryError 之前,清理软引用指向的对象。软引用通常用来**实现内存敏感的缓存**,如果还有空闲内存,就可以暂时保留缓存,当内存不足时清理掉,这样就保证了使用缓存的同时,不会耗尽内存。 45 | 46 | ### 弱引用(Weak Reference) 47 | 48 | 弱引用的**强度比软引用更弱**一些。当 JVM 进行垃圾回收时,**无论内存是否充足,都会回收**只被弱引用关联的对象。 49 | 50 | ### 虚引用(Phantom Reference) 51 | 52 | 虚引用也称幽灵引用或者幻影引用,它是**最弱**的一种引用关系。一个对象是否有虚引用的存在,完全不会对其生存时间构成影响。它仅仅是提供了一种确保对象被 finalize 以后,做某些事情的机制,比如,通常用来做所谓的 Post-Mortem 清理机制。 53 | 54 | ## 回收堆中无效对象 55 | 56 | 对于可达性分析中不可达的对象,也并不是没有存活的可能。 57 | 58 | ### 判定 finalize() 是否有必要执行 59 | 60 | ![](https://cdn-doocs.oss-cn-shenzhen.aliyuncs.com/gh/doocs/jvm@main/images/finalize-method-process.jpg) 61 | 62 | JVM 会判断此对象是否有必要执行 finalize() 方法,如果对象没有覆盖 finalize() 方法,或者 finalize() 方法已经被虚拟机调用过,那么视为“没有必要执行”。那么对象基本上就真的被回收了。 63 | 64 | 如果对象被判定为有必要执行 finalize() 方法,那么对象会被放入一个 F-Queue 队列中,虚拟机会以较低的优先级执行这些 finalize()方法,但不会确保所有的 finalize() 方法都会执行结束。如果 finalize() 方法出现耗时操作,虚拟机就直接停止指向该方法,将对象清除。 65 | 66 | ### 对象重生或死亡 67 | 68 | 如果在执行 finalize() 方法时,将 this 赋给了某一个引用,那么该对象就重生了。如果没有,那么就会被垃圾收集器清除。 69 | 70 | > 任何一个对象的 finalize() 方法只会被系统自动调用一次,如果对象面临下一次回收,它的 finalize() 方法不会被再次执行,想继续在 finalize() 中自救就失效了。 71 | 72 | ## 回收方法区内存 73 | 74 | 方法区中存放生命周期较长的类信息、常量、静态变量,每次垃圾收集只有少量的垃圾被清除。方法区中主要清除两种垃圾: 75 | 76 | - 废弃常量 77 | - 无用的类 78 | 79 | ### 判定废弃常量 80 | 81 | 只要常量池中的常量不被任何变量或对象引用,那么这些常量就会被清除掉。比如,一个字符串 "bingo" 进入了常量池,但是当前系统没有任何一个 String 对象引用常量池中的 "bingo" 常量,也没有其它地方引用这个字面量,必要的话,"bingo"常量会被清理出常量池。 82 | 83 | ### 判定无用的类 84 | 85 | 判定一个类是否是“无用的类”,条件较为苛刻。 86 | 87 | - 该类的所有对象都已经被清除 88 | - 加载该类的 ClassLoader 已经被回收 89 | - 该类的 java.lang.Class 对象没有在任何地方被引用,无法在任何地方通过反射访问该类的方法。 90 | 91 | > 一个类被虚拟机加载进方法区,那么在堆中就会有一个代表该类的对象:java.lang.Class。这个对象在类被加载进方法区时创建,在方法区该类被删除时清除。 92 | 93 | ## 垃圾收集算法 94 | 95 | 学会了如何判定无效对象、无用类、废弃常量之后,剩余工作就是回收这些垃圾。常见的垃圾收集算法有以下几个: 96 | 97 | ### 标记-清除算法 98 | 99 | ![](https://cdn-doocs.oss-cn-shenzhen.aliyuncs.com/gh/doocs/jvm@main/images/mark-and-sweep.jpg) 100 | 101 | **标记**的过程是:遍历所有的 `GC Roots`,然后将所有 `GC Roots` 可达的对象**标记为存活的对象**。 102 | 103 | **清除**的过程将遍历堆中所有的对象,将没有标记的对象全部清除掉。与此同时,清除那些被标记过的对象的标记,以便下次的垃圾回收。 104 | 105 | 这种方法有两个**不足**: 106 | 107 | - 效率问题:标记和清除两个过程的效率都不高。 108 | - 空间问题:标记清除之后会产生大量不连续的内存碎片,碎片太多可能导致以后需要分配较大对象时,无法找到足够的连续内存而不得不提前触发另一次垃圾收集动作。 109 | 110 | ### 复制算法(新生代) 111 | 112 | ![](https://cdn-doocs.oss-cn-shenzhen.aliyuncs.com/gh/doocs/jvm@main/images/mark-and-copy.jpg) 113 | 114 | 为了解决效率问题,“复制”收集算法出现了。它将可用内存按容量划分为大小相等的两块,每次只使用其中的一块。当这一块内存用完,需要进行垃圾收集时,就将存活者的对象复制到另一块上面,然后将第一块内存全部清除。这种算法有优有劣: 115 | 116 | - 优点:不会有内存碎片的问题。 117 | - 缺点:内存缩小为原来的一半,浪费空间。 118 | 119 | 为了解决空间利用率问题,可以将内存分为三块: Eden、From Survivor、To Survivor,比例是 8:1:1,每次使用 Eden 和其中一块 Survivor。回收时,将 Eden 和 Survivor 中还存活的对象一次性复制到另外一块 Survivor 空间上,最后清理掉 Eden 和刚才使用的 Survivor 空间。这样只有 10% 的内存被浪费。 120 | 121 | 但是我们无法保证每次回收都只有不多于 10% 的对象存活,当 Survivor 空间不够,需要依赖其他内存(指老年代)进行分配担保。 122 | 123 | #### 分配担保 124 | 125 | 为对象分配内存空间时,如果 Eden+Survivor 中空闲区域无法装下该对象,会触发 MinorGC 进行垃圾收集。但如果 Minor GC 过后依然有超过 10% 的对象存活,这样存活的对象直接通过分配担保机制进入老年代,然后再将新对象存入 Eden 区。 126 | 127 | ### 标记-整理算法(老年代) 128 | 129 | ![](https://cdn-doocs.oss-cn-shenzhen.aliyuncs.com/gh/doocs/jvm@main/images/mark-and-compact.jpg) 130 | 131 | **标记**:它的第一个阶段与**标记-清除算法**是一模一样的,均是遍历 `GC Roots`,然后将存活的对象标记。 132 | 133 | **整理**:移动所有**存活的对象**,且按照内存地址次序依次排列,然后将末端内存地址以后的内存全部回收。因此,第二阶段才称为整理阶段。 134 | 135 | 这是一种老年代的垃圾收集算法。老年代的对象一般寿命比较长,因此每次垃圾回收会有大量对象存活,如果采用复制算法,每次需要复制大量存活的对象,效率很低。 136 | 137 | ### 分代收集算法 138 | 139 | 根据对象存活周期的不同,将内存划分为几块。一般是把 Java 堆分为新生代和老年代,针对各个年代的特点采用最适当的收集算法。 140 | 141 | - 新生代:复制算法 142 | - 老年代:标记-清除算法、标记-整理算法 143 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Java 虚拟机底层原理知识总结 2 | 3 | license 4 | stars 5 | github 6 | gitee 7 | GitCode 8 | PRs Welcome 9 | open-source-organization 10 | 11 | 这里仅仅记录了一些笔者认为需要重点掌握的 JVM 知识点,如果你想更加全面地了解 JVM 底层原理,可以阅读周志明老师《深入理解 Java 虚拟机——JVM 高级特性与最佳实践(第 2/3 版)》全书。 12 | 13 | ## 清单 14 | 15 | - [JVM 内存结构](/docs/01-jvm-memory-structure.md) 16 | - [HotSpot 虚拟机对象探秘](/docs/02-hotspot-jvm-object.md) 17 | - [垃圾收集策略与算法](/docs/03-gc-algorithms.md) 18 | - [HotSpot 垃圾收集器](/docs/04-hotspot-gc.md) 19 | - [内存分配与回收策略](/docs/05-memory-allocation-gc.md) 20 | - [JVM 性能调优](/docs/06-jvm-performance-tuning.md) 21 | - [类文件结构](/docs/07-class-structure.md) 22 | - [类加载的时机](/docs/08-load-class-time.md) 23 | - [类加载的过程](/docs/09-load-class-process.md) 24 | - [类加载器](/docs/10-class-loader.md) 25 | 26 | ## 站点 27 | 28 | [https://jvm.doocs.org](https://jvm.doocs.org) 29 | 30 | ## 写作规范 31 | 32 | 参考《[中文技术文档的写作规范](https://github.com/ruanyf/document-style-guide)》 33 | 34 | ## 许可证 35 | 36 | [知识共享 版权归属-相同方式共享 4.0 国际 公共许可证](http://creativecommons.org/licenses/by-sa/4.0/) 37 | 38 | --- 39 | 40 | ## Doocs 社区优质项目 41 | 42 | Doocs 技术社区,致力于打造一个内容完整、持续成长的互联网开发者学习生态圈!以下是 Doocs 旗下的一些优秀项目,欢迎各位开发者朋友持续保持关注。 43 | 44 | | # | 项目 | 描述 | 热度 | 45 | | --- | ----------------------------------------------------------------- | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------- | 46 | | 1 | [advanced-java](https://github.com/doocs/advanced-java) | 互联网 Java 工程师进阶知识完全扫盲:涵盖高并发、分布式、高可用、微服务、海量数据处理等领域知识。 | ![](https://badgen.net/github/stars/doocs/advanced-java)
![](https://badgen.net/github/forks/doocs/advanced-java) | 47 | | 2 | [leetcode](https://github.com/doocs/leetcode) | 多种编程语言实现 LeetCode、《剑指 Offer(第 2 版)》、《程序员面试金典(第 6 版)》题解。 | ![](https://badgen.net/github/stars/doocs/leetcode)
![](https://badgen.net/github/forks/doocs/leetcode) | 48 | | 3 | [source-code-hunter](https://github.com/doocs/source-code-hunter) | 互联网常用组件框架源码分析。 | ![](https://badgen.net/github/stars/doocs/source-code-hunter)
![](https://badgen.net/github/forks/doocs/source-code-hunter) | 49 | | 4 | [jvm](https://github.com/doocs/jvm) | Java 虚拟机底层原理知识总结。 | ![](https://badgen.net/github/stars/doocs/jvm)
![](https://badgen.net/github/forks/doocs/jvm) | 50 | | 5 | [coding-interview](https://github.com/doocs/coding-interview) | 代码面试题集,包括《剑指 Offer》、《编程之美》等。 | ![](https://badgen.net/github/stars/doocs/coding-interview)
![](https://badgen.net/github/forks/doocs/coding-interview) | 51 | | 6 | [md](https://github.com/doocs/md) | 一款高度简洁的微信 Markdown 编辑器。 | ![](https://badgen.net/github/stars/doocs/md)
![](https://badgen.net/github/forks/doocs/md) | 52 | | 7 | [technical-books](https://github.com/doocs/technical-books) | 值得一看的技术书籍列表。 | ![](https://badgen.net/github/stars/doocs/technical-books)
![](https://badgen.net/github/forks/doocs/technical-books) | 53 | 54 | ## 公众号 55 | 56 | [Doocs](https://github.com/doocs) 技术社区旗下唯一公众号「**Doocs**」​,欢迎扫码关注,**专注分享技术领域相关知识及行业最新资讯**。当然,也可以加我个人微信(备注:GitHub),拉你进技术交流群。 57 | 58 | 59 | 60 | 63 | 66 | 67 |
61 |
62 |
64 |
65 |
68 | 69 | 关注「**Doocs**」公众号,回复 **JVM**,即可获取本项目离线 PDF 文档,学习更加方便! 70 | 71 | ![](https://cdn-doocs.oss-cn-shenzhen.aliyuncs.com/gh/doocs/jvm@main/images/jvm-pdf.png) 72 | -------------------------------------------------------------------------------- /docs/07-class-structure.md: -------------------------------------------------------------------------------- 1 | # 类文件结构 2 | 3 | ## JVM 的“无关性” 4 | 5 | 谈论 JVM 的无关性,主要有以下两个: 6 | 7 | - 平台无关性:任何操作系统都能运行 Java 代码 8 | - 语言无关性: JVM 能运行除 Java 以外的其他代码 9 | 10 | Java 源代码首先需要使用 Javac 编译器编译成 .class 文件,然后由 JVM 执行 .class 文件,从而程序开始运行。 11 | 12 | JVM 只认识 .class 文件,它不关心是何种语言生成了 .class 文件,只要 .class 文件符合 JVM 的规范就能运行。 目前已经有 JRuby、Jython、Scala 等语言能够在 JVM 上运行。它们有各自的语法规则,不过它们的编译器 都能将各自的源码编译成符合 JVM 规范的 .class 文件,从而能够借助 JVM 运行它们。 13 | 14 | > Java 语言中的各种变量、关键字和运算符号的语义最终都是由多条字节码命令组合而成的, 因此字节码命令所能提供的语义描述能力肯定会比 Java 语言本身更加强大。 因此,有一些 Java 语言本身无法有效支持的语言特性,不代表字节码本身无法有效支持。 15 | 16 | ## Class 文件结构 17 | 18 | Class 文件是二进制文件,它的内容具有严格的规范,文件中没有任何空格,全都是连续的 0/1。Class 文件 中的所有内容被分为两种类型:无符号数、表。 19 | 20 | - 无符号数 无符号数表示 Class 文件中的值,这些值没有任何类型,但有不同的长度。u1、u2、u4、u8 分别代表 1/2/4/8 字节的无符号数。 21 | - 表 由多个无符号数或者其他表作为数据项构成的复合数据类型。 22 | 23 | Class 文件具体由以下几个构成: 24 | 25 | - 魔数 26 | - 版本信息 27 | - 常量池 28 | - 访问标志 29 | - 类索引、父类索引、接口索引集合 30 | - 字段表集合 31 | - 方法表集合 32 | - 属性表集合 33 | 34 | ### 魔数 35 | 36 | Class 文件的头 4 个字节称为魔数,用来表示这个 Class 文件的类型。 37 | 38 | Class 文件的魔数是用 16 进制表示的“CAFE BABE”,是不是很具有浪漫色彩? 39 | 40 | > 魔数相当于文件后缀名,只不过后缀名容易被修改,不安全,因此在 Class 文件中标识文件类型比较合适。 41 | 42 | ### 版本信息 43 | 44 | 紧接着魔数的 4 个字节是版本信息,5-6 字节表示次版本号,7-8 字节表示主版本号,它们表示当前 Class 文件中使用的是哪个版本的 JDK。 45 | 46 | 高版本的 JDK 能向下兼容以前版本的 Class 文件,但不能运行以后版本的 Class 文件,即使文件格式并未发生任何变化,虚拟机也必须拒绝执行超过其版本号的 Class 文件。 47 | 48 | ### 常量池 49 | 50 | 版本信息之后就是常量池,常量池中存放两种类型的常量: 51 | 52 | - 字面值常量 53 | 54 | 字面值常量就是我们在程序中定义的字符串、被 final 修饰的值。 55 | 56 | - 符号引用 57 | 58 | 符号引用就是我们定义的各种名字:类和接口的全限定名、字段的名字和描述符、方法的名字和描述符。 59 | 60 | #### 常量池的特点 61 | 62 | - 常量池中常量数量不固定,因此常量池开头放置一个 u2 类型的无符号数,用来存储当前常量池的容量。 63 | - 常量池的每一项常量都是一个表,表开始的第一位是一个 u1 类型的标志位(tag),代表当前这个常量属于哪种常量类型。 64 | 65 | #### 常量池中常量类型 66 | 67 | | 类型 | tag | 描述  | 68 | | -------------------------------- | --- | ---------------------- | 69 | | CONSTANT_utf8_info | 1 | UTF-8 编码的字符串 | 70 | | CONSTANT_Integer_info | 3 | 整型字面量 | 71 | | CONSTANT_Float_info | 4 | 浮点型字面量 | 72 | | CONSTANT_Long_info | 5 | 长整型字面量 | 73 | | CONSTANT_Double_info | 6 | 双精度浮点型字面量 | 74 | | CONSTANT_Class_info | 7 | 类或接口的符号引用 | 75 | | CONSTANT_String_info | 8 | 字符串类型字面量 | 76 | | CONSTANT_Fieldref_info | 9 | 字段的符号引用 | 77 | | CONSTANT_Methodref_info | 10 | 类中方法的符号引用 | 78 | | CONSTANT_InterfaceMethodref_info | 11 | 接口中方法的符号引用 | 79 | | CONSTANT_NameAndType_info | 12 | 字段或方法的符号引用 | 80 | | CONSTANT_MethodHandle_info | 15 | 表示方法句柄 | 81 | | CONSTANT_MethodType_info | 16 | 标识方法类型 | 82 | | CONSTANT_InvokeDynamic_info | 18 | 表示一个动态方法调用点 | 83 | 84 | 对于 CONSTANT_Class_info(此类型的常量代表一个类或者接口的符号引用),它的二维表结构如下: 85 | 86 | | 类型 | 名称 | 数量 | 87 | | ---- | ---------- | ---- | 88 | | u1 | tag | 1 | 89 | | u2 | name_index | 1 | 90 | 91 | tag 是标志位,用于区分常量类型;name_index 是一个索引值,它指向常量池中一个 CONSTANT_Utf8_info 类型常量,此常量代表这个类(或接口)的全限定名,这里 name_index 值若为 0x0002,也即是指向了常量池中的第二项常量。 92 | 93 | CONSTANT_Utf8_info 型常量的结构如下: 94 | 95 | | 类型 | 名称 | 数量 | 96 | | ---- | ------ | ------ | 97 | | u1 | tag | 1 | 98 | | u2 | length | 1 | 99 | | u1 | bytes | length | 100 | 101 | tag 是当前常量的类型;length 表示这个字符串的长度;bytes 是这个字符串的内容(采用缩略的 UTF8 编码) 102 | 103 | ### 访问标志 104 | 105 | 在常量池结束之后,紧接着的两个字节代表访问标志,这个标志用于识别一些类或者接口层次的访问信息,包括:这个 Class 是类还是接口;是否定义为 public 类型;是否被 abstract/final 修饰。 106 | 107 | ### 类索引、父类索引、接口索引集合 108 | 109 | 类索引和父类索引都是一个 u2 类型的数据,而接口索引集合是一组 u2 类型的数据的集合,Class 文件中由这三项数据来确定类的继承关系。类索引用于确定这个类的全限定名,父类索引用于确定这个类的父类的全限定名。 110 | 111 | 由于 Java 不允许多重继承,所以父类索引只有一个,除了 java.lang.Object 之外,所有的 Java 类都有父类,因此除了 java.lang.Object 外,所有 Java 类的父类索引都不为 0。一个类可能实现了多个接口,因此用接口索引集合来描述。这个集合第一项为 u2 类型的数据,表示索引表的容量,接下来就是接口的名字索引。 112 | 113 | 类索引和父类索引用两个 u2 类型的索引值表示,它们各自指向一个类型为 CONSTANT_Class_info 的类描述符常量,通过该常量总的索引值可以找到定义在 CONSTANT_Utf8_info 类型的常量中的全限定名字符串。 114 | 115 | ### 字段表集合 116 | 117 | 字段表集合存储本类涉及到的成员变量,包括实例变量和类变量,但不包括方法中的局部变量。 118 | 119 | 每一个字段表只表示一个成员变量,本类中的所有成员变量构成了字段表集合。字段表结构如下: 120 | 121 | | 类型 | 名称 | 数量 | 说明 | 122 | | ---- | ---------------- | ---------------- | ---------------------------------------------------------------------------------------------------- | 123 | | u2 | access_flags | 1 | 字段的访问标志,与类稍有不同 | 124 | | u2 | name_index | 1 | 字段名字的索引 | 125 | | u2 | descriptor_index | 1 | 描述符,用于描述字段的数据类型。 基本数据类型用大写字母表示; 对象类型用“L 对象类型的全限定名”表示。 | 126 | | u2 | attributes_count | 1 | 属性表集合的长度 | 127 | | u2 | attributes | attributes_count | 属性表集合,用于存放属性的额外信息,如属性的值。 | 128 | 129 | > 字段表集合中不会出现从父类(或接口)中继承而来的字段,但有可能出现原本 Java 代码中不存在的字段,譬如在内部类中为了保持对外部类的访问性,会自动添加指向外部类实例的字段。 130 | 131 | ### 方法表集合 132 | 133 | 方法表结构与属性表类似。 134 | 135 | volatile 关键字 和 transient 关键字不能修饰方法,所以方法表的访问标志中没有 ACC_VOLATILE 和 ACC_TRANSIENT 标志。 136 | 137 | 方法表的属性表集合中有一张 Code 属性表,用于存储当前方法经编译器编译后的字节码指令。 138 | 139 | ### 属性表集合 140 | 141 | 每个属性对应一张属性表,属性表的结构如下: 142 | 143 | | 类型 | 名称 | 数量 | 144 | | ---- | -------------------- | ---------------- | 145 | | u2 | attribute_name_index | 1 | 146 | | u4 | attribute_length | 1 | 147 | | u1 | info | attribute_length | 148 | -------------------------------------------------------------------------------- /docs/01-jvm-memory-structure.md: -------------------------------------------------------------------------------- 1 | # JVM 内存结构 2 | 3 | Java 虚拟机的内存空间分为 5 个部分: 4 | 5 | - 程序计数器 6 | - Java 虚拟机栈 7 | - 本地方法栈 8 | - 堆 9 | - 方法区 10 | 11 | ![jvm-memory-structure](https://cdn-doocs.oss-cn-shenzhen.aliyuncs.com/gh/doocs/jvm@main/images/jvm-memory-structure.jpg) 12 | 13 | JDK 1.8 同 JDK 1.7 比,最大的差别就是:元数据区取代了永久代。元空间的本质和永久代类似,都是对 JVM 规范中方法区的实现。不过元空间与永久代之间最大的区别在于:元数据空间并不在虚拟机中,而是使用本地内存。 14 | 15 | ## 程序计数器(PC 寄存器) 16 | 17 | ### 程序计数器的定义 18 | 19 | 程序计数器是一块较小的内存空间,是当前线程正在执行的那条字节码指令的地址。若当前线程正在执行的是一个本地方法,那么此时程序计数器为`Undefined`。 20 | 21 | ### 程序计数器的作用 22 | 23 | - 字节码解释器通过改变程序计数器来依次读取指令,从而实现代码的流程控制。 24 | - 在多线程情况下,程序计数器记录的是当前线程执行的位置,从而当线程切换回来时,就知道上次线程执行到哪了。 25 | 26 | ### 程序计数器的特点 27 | 28 | - 是一块较小的内存空间。 29 | - 线程私有,每条线程都有自己的程序计数器。 30 | - 生命周期:随着线程的创建而创建,随着线程的结束而销毁。 31 | - 是唯一一个不会出现 `OutOfMemoryError` 的内存区域。 32 | 33 | ## Java 虚拟机栈(Java 栈) 34 | 35 | ### Java 虚拟机栈的定义 36 | 37 | Java 虚拟机栈是描述 Java 方法运行过程的内存模型。 38 | 39 | Java 虚拟机栈会为每一个即将运行的 Java 方法创建一块叫做“栈帧”的区域,用于存放该方法运行过程中的一些信息,如: 40 | 41 | - 局部变量表 42 | - 操作数栈 43 | - 动态链接 44 | - 方法出口信息 45 | - ...... 46 | 47 | ![jvm-stack](https://cdn-doocs.oss-cn-shenzhen.aliyuncs.com/gh/doocs/jvm@main/images/jvm-stack.jpg) 48 | 49 | ### 压栈出栈过程 50 | 51 | 当方法运行过程中需要创建局部变量时,就将局部变量的值存入栈帧中的局部变量表中。 52 | 53 | Java 虚拟机栈的栈顶的栈帧是当前正在执行的活动栈,也就是当前正在执行的方法,PC 寄存器也会指向这个地址。只有这个活动的栈帧的本地变量可以被操作数栈使用,当在这个栈帧中调用另一个方法,与之对应的栈帧又会被创建,新创建的栈帧压入栈顶,变为当前的活动栈帧。 54 | 55 | 方法结束后,当前栈帧被移出,栈帧的返回值变成新的活动栈帧中操作数栈的一个操作数。如果没有返回值,那么新的活动栈帧中操作数栈的操作数没有变化。 56 | 57 | > 由于 Java 虚拟机栈是与线程对应的,数据不是线程共享的(也就是线程私有的),因此不用关心数据一致性问题,也不会存在同步锁的问题。 58 | 59 | ### 局部变量表 60 | 61 | 定义为一个数字数组,主要用于存储方法参数、定义在方法体内部的局部变量,数据类型包括各类基本数据类型,对象引用,以及 return address 类型。 62 | 63 | 局部变量表容量大小是在编译期确定下来的。最基本的存储单元是 slot,32 位占用一个 slot,64 位类型(long 和 double)占用两个 slot。 64 | 65 | 对于 slot 的理解: 66 | 67 | - JVM 虚拟机会为局部变量表中的每个 slot 都分配一个访问索引,通过这个索引即可成功访问到局部变量表中指定的局部变量值。 68 | - 如果当前帧是由构造方法或者实例方法创建的,那么该对象引用 this,会存放在 index 为 0 的 slot 处,其余的参数表顺序继续排列。 69 | - 栈帧中的局部变量表中的槽位是可以重复的,如果一个局部变量过了其作用域,那么其作用域之后申明的新的局部变量就有可能会复用过期局部变量的槽位,从而达到节省资源的目的。 70 | 71 | 在栈帧中,与性能调优关系最密切的部分,就是局部变量表,方法执行时,虚拟机使用局部变量表完成方法的传递局部变量表中的变量也是重要的垃圾回收根节点,只要被局部变量表中直接或间接引用的对象都不会被回收。 72 | 73 | ### 操作数栈 74 | 75 | - **栈顶缓存技术**:由于操作数是存储在内存中,频繁的进行内存读写操作影响执行速度,将栈顶元素全部缓存到物理 CPU 的寄存器中,以此降低对内存的读写次数,提升执行引擎的执行效率。 76 | - 每一个操作数栈会拥有一个明确的栈深度,用于存储数值,最大深度在编译期就定义好。32bit 类型占用一个栈单位深度,64bit 类型占用两个栈单位深度操作数栈。 77 | - 并非采用访问索引方式进行数据访问,而是只能通过标准的入栈、出栈操作完成一次数据访问。 78 | 79 | ### 方法的调用 80 | 81 | - 静态链接:当一个字节码文件被装载进 JVM 内部时,如果被调用的目标方法在编译期可知,且运行时期间保持不变,这种情况下将调用方的符号引用转为直接引用的过程称为静态链接。 82 | - 动态链接:如果被调用的方法无法在编译期被确定下来,只能在运行期将调用的方法的符号引用转为直接引用,这种引用转换过程具备动态性,因此被称为动态链接。 83 | - 方法绑定 84 | - 早期绑定:被调用的目标方法如果在编译期可知,且运行期保持不变。 85 | - 晚期绑定:被调用的方法在编译期无法被确定,只能够在程序运行期根据实际的类型绑定相关的方法。 86 | - 非虚方法:如果方法在编译期就确定了具体的调用版本,则这个版本在运行时是不可变的,这样的方法称为非虚方法静态方法。私有方法,final 方法,实例构造器,父类方法都是非虚方法,除了这些以外都是虚方法。 87 | - 虚方法表:面向对象的编程中,会很频繁的使用动态分配,如果每次动态分配的过程都要重新在类的方法元数据中搜索合适的目标的话,就可能影响到执行效率,因此为了提高性能,JVM 采用在类的方法区建立一个虚方法表,使用索引表来代替查找。 88 | - 每个类都有一个虚方法表,表中存放着各个方法的实际入口。 89 | - 虚方法表会在类加载的链接阶段被创建,并开始初始化,类的变量初始值准备完成之后,JVM 会把该类的方法也初始化完毕。 90 | - 方法重写的本质 91 | - 找到操作数栈顶的第一个元素所执行的对象的实际类型,记做 C。如果在类型 C 中找到与常量池中描述符和简单名称都相符的方法,则进行访问权限校验。 92 | - 如果通过则返回这个方法的直接引用,查找过程结束;如果不通过,则返回 java.lang.IllegalAccessError 异常。 93 | - 否则,按照继承关系从下往上依次对 C 的各个父类进行上一步的搜索和验证过程。 94 | - 如果始终没有找到合适的方法,则抛出 java.lang.AbstractMethodError 异常。 95 | 96 | Java 中任何一个普通方法都具备虚函数的特征(运行期确认,具备晚期绑定的特点),C++ 中则使用关键字 virtual 来显式定义。如果在 Java 程序中,不希望某个方法拥有虚函数的特征,则可以使用关键字 final 来标记这个方法。 97 | 98 | ### 方法出口信息(Return Address) 99 | 方法出口信息本质上是一个地址,它记录了当前方法执行完毕后,应该返回到调用者方法的哪条指令继续执行。 100 | 具体来说,它保存的是调用者方法的程序计数器(Program Counter, PC)的值。当方法正常结束(通过return指令)或异常退出时,JVM会使用这个地址恢复调用者方法的执行位置。 101 | 102 | ### Java 虚拟机栈的特点 103 | 104 | - 运行速度特别快,仅仅次于 PC 寄存器。 105 | - 局部变量表随着栈帧的创建而创建,它的大小在编译时确定,创建时只需分配事先规定的大小即可。在方法运行过程中,局部变量表的大小不会发生改变。 106 | - Java 虚拟机栈会出现两种异常:StackOverFlowError 和 OutOfMemoryError。 107 | - StackOverFlowError 若 Java 虚拟机栈的大小不允许动态扩展,那么当线程请求栈的深度超过当前 Java 虚拟机栈的最大深度时,抛出 StackOverFlowError 异常。 108 | - OutOfMemoryError 若允许动态扩展,那么当线程请求栈时内存用完了,无法再动态扩展时,抛出 OutOfMemoryError 异常。 109 | - Java 虚拟机栈也是线程私有,随着线程创建而创建,随着线程的结束而销毁。 110 | - 出现 StackOverFlowError 时,内存空间可能还有很多。 111 | 112 | 常见的运行时异常有: 113 | 114 | - NullPointerException - 空指针引用异常 115 | - ClassCastException - 类型强制转换异 116 | - IllegalArgumentException - 传递非法参数异常 117 | - ArithmeticException - 算术运算异常 118 | - ArrayStoreException - 向数组中存放与声明类型不兼容对象异常 119 | - IndexOutOfBoundsException - 下标越界异常 120 | - NegativeArraySizeException - 创建一个大小为负数的数组错误异常 121 | - NumberFormatException - 数字格式异常 122 | - SecurityException - 安全异常 123 | - UnsupportedOperationException - 不支持的操作异常 124 | 125 | ## 本地方法栈(C 栈) 126 | 127 | ### 本地方法栈的定义 128 | 129 | 本地方法栈是为 JVM 运行 Native 方法准备的空间,由于很多 Native 方法都是用 C 语言实现的,所以它通常又叫 C 栈。它与 Java 虚拟机栈实现的功能类似,只不过本地方法栈是描述本地方法运行过程的内存模型。 130 | 131 | ### 栈帧变化过程 132 | 133 | 本地方法被执行时,在本地方法栈也会创建一块栈帧,用于存放该方法的局部变量表、操作数栈、动态链接、方法出口信息等。 134 | 135 | 方法执行结束后,相应的栈帧也会出栈,并释放内存空间。也会抛出 StackOverFlowError 和 OutOfMemoryError 异常。 136 | 137 | > 如果 Java 虚拟机本身不支持 Native 方法,或是本身不依赖于传统栈,那么可以不提供本地方法栈。如果支持本地方法栈,那么这个栈一般会在线程创建的时候按线程分配。 138 | 139 | ## 堆 140 | 141 | ### 堆的定义 142 | 143 | 堆是用来存放对象的内存空间,`几乎`所有的对象都存储在堆中。 144 | 145 | ![jvm-memory](https://cdn-doocs.oss-cn-shenzhen.aliyuncs.com/gh/doocs/jvm@main/images/jvm-memory.png) 146 | 147 | ### 堆的特点 148 | 149 | - 线程共享,整个 Java 虚拟机只有一个堆,所有的线程都访问同一个堆。而程序计数器、Java 虚拟机栈、本地方法栈都是一个线程对应一个。 150 | - 在虚拟机启动时创建。 151 | - 是垃圾回收的主要场所。 152 | - 堆可分为新生代(Eden 区:`From Survior`,`To Survivor`)、老年代。 153 | - Java 虚拟机规范规定,堆可以处于物理上不连续的内存空间中,但在逻辑上它应该被视为连续的。 154 | - 关于 Survivor s0,s1 区: 复制之后有交换,谁空谁是 to。 155 | 156 | 不同的区域存放不同生命周期的对象,这样可以根据不同的区域使用不同的垃圾回收算法,更具有针对性。 157 | 158 | 堆的大小既可以固定也可以扩展,但对于主流的虚拟机,堆的大小是可扩展的,因此当线程请求分配内存,但堆已满,且内存已无法再扩展时,就抛出 OutOfMemoryError 异常。 159 | 160 | > Java 堆所使用的内存不需要保证是连续的。而由于堆是被所有线程共享的,所以对它的访问需要注意同步问题,方法和对应的属性都需要保证一致性。 161 | 162 | ### 新生代与老年代 163 | 164 | - 老年代比新生代生命周期长。 165 | - 新生代与老年代空间默认比例 `1:2`:JVM 调参数,`XX:NewRatio=2`,表示新生代占 1,老年代占 2,新生代占整个堆的 1/3。 166 | - HotSpot 中,Eden 空间和另外两个 Survivor 空间缺省所占的比例是:`8:1:1`。 167 | - 几乎所有的 Java 对象都是在 Eden 区被 new 出来的,Eden 放不了的大对象,就直接进入老年代了。 168 | 169 | ### 对象分配过程 170 | 171 | - new 的对象先放在 Eden 区,大小有限制 172 | - 如果创建新对象时,Eden 空间填满了,就会触发 Minor GC,将 Eden 不再被其他对象引用的对象进行销毁,再加载新的对象放到 Eden 区,特别注意的是 Survivor 区满了是不会触发 Minor GC 的,而是 Eden 空间填满了,Minor GC 才顺便清理 Survivor 区 173 | - 将 Eden 中剩余的对象移到 Survivor0 区 174 | - 再次触发垃圾回收,此时上次 Survivor 下来的,放在 Survivor0 区的,如果没有回收,就会放到 Survivor1 区 175 | - 再次经历垃圾回收,又会将幸存者重新放回 Survivor0 区,依次类推 176 | - 默认是 15 次的循环,超过 15 次,则会将幸存者区幸存下来的转去老年区 177 | jvm 参数设置次数 : -XX:MaxTenuringThreshold=N 进行设置 178 | - 频繁在新生区收集,很少在养老区收集,几乎不在永久区/元空间搜集 179 | 180 | ### Full GC /Major GC 触发条件 181 | 182 | - 显示调用`System.gc()`,老年代的空间不够,方法区的空间不够等都会触发 Full GC,同时对新生代和老年代回收,FUll GC 的 STW 的时间最长,应该要避免 183 | - 在出现 Major GC 之前,会先触发 Minor GC,如果老年代的空间还是不够就会触发 Major GC,STW 的时间长于 Minor GC 184 | 185 | ### 逃逸分析 186 | 187 | - #### 标量替换 188 | 189 | - 标量不可在分解的量,java 的基本数据类型就是标量,标量的对立就是可以被进一步分解的量,而这种量称之为聚合量。而在 JAVA 中对象就是可以被进一步分解的聚合量 190 | - 替换过程,通过逃逸分析确定该对象不会被外部访问,并且对象可以被进一步分解时,JVM 不会创建该对象,而会将该对象成员变量分解若干个被这个方法使用的成员变量所代替。这些代替的成员变量在栈帧或寄存器上分配空间。 191 | 192 | - **对象和数组并非都是在堆上分配内存的** 193 | 194 | - 《深入理解 Java 虚拟机中》关于 Java 堆内存有这样一段描述:随着 JIT 编译期的发展与逃逸分析技术逐渐成熟,`栈上分配`,`标量替换`优化技术将会导致一些变化,所有的对象都分配到堆上也渐渐变得不那么"绝对"了。 195 | 196 | - 这是一种可以有效减少 Java 内存堆分配压力的分析算法,通过逃逸分析,Java Hotspot 编译器能够分析出一个新的对象的引用的使用范围从而决定是否要将这个对象分配到堆上。 197 | 198 | - 当一个对象在方法中被定义后,它可能被外部方法所引用,如作为调用参数传递到其他地方中,称为`方法逃逸`。 199 | 200 | - 再如赋值给类变量或可以在其他线程中访问的实例变量,称为`线程逃逸` 201 | 202 | - 使用逃逸分析,编译器可以对代码做如下优化: 203 | 204 | - 同步省略:如果一个对象被发现只能从一个线程被访问到,那么对于这个对象的操作可以不考虑同步。 205 | 206 | - 将堆分配转化为栈分配:如果一个对象在子程序中被分配,要使指向该对象的指针永远不会逃逸,对象可能是栈分配的候选,而不是堆分配。 207 | 208 | - 分离对象或标量替换:有的对象可能不需要作为一个连续的内存结构存在也可以被访问到,那么对象的部分(或全部)可以不存储在内存,而是存储在 CPU 寄存器中。 209 | 210 | ```java 211 | public static StringBuffer createStringBuffer(String s1, String s2) { 212 | 213 | StringBuffer s = new StringBuffer(); 214 | 215 | s.append(s1); 216 | 217 | s.append(s2); 218 | 219 | return s; 220 | } 221 | ``` 222 | 223 | s 是一个方法内部变量,上边的代码中直接将 s 返回,这个 StringBuffer 的对象有可能被其他方法所改变,导致它的作用域就不只是在方法内部,即使它是一个局部变量,但还是逃逸到了方法外部,称为`方法逃逸`。 224 | 225 | 还有可能被外部线程访问到,譬如赋值给类变量或可以在其他线程中访问的实例变量,称为`线程逃逸`。 226 | 227 | - 在编译期间,如果 JIT 经过逃逸分析,发现有些对象没有逃逸出方法,那么有可能堆内存分配会被优化成栈内存分配。 228 | - jvm 参数设置,`-XX:+DoEscapeAnalysis` :开启逃逸分析 ,`-XX:-DoEscapeAnalysis` : 关闭逃逸分析 229 | - 从 jdk 1.7 开始已经默认开始逃逸分析。 230 | 231 | ### TLAB 232 | 233 | - TLAB 的全称是 Thread Local Allocation Buffer,即线程本地分配缓存区,是属于 Eden 区的,这是一个线程专用的内存分配区域,线程私有,默认开启的(当然也不是绝对的,也要看哪种类型的虚拟机) 234 | - 堆是全局共享的,在同一时间,可能会有多个线程在堆上申请空间,但每次的对象分配需要同步的进行(虚拟机采用 CAS 配上失败重试的方式保证更新操作的原子性)但是效率却有点下降 235 | - 所以用 TLAB 来避免多线程冲突,在给对象分配内存时,每个线程使用自己的 TLAB,这样可以使得线程同步,提高了对象分配的效率 236 | - 当然并不是所有的对象都可以在 TLAB 中分配内存成功,如果失败了就会使用加锁的机制来保持操作的原子性 237 | - `-XX:+UseTLAB `使用 TLAB,`-XX:+TLABSize` 设置 TLAB 大小 238 | 239 | ### 四种引用方式 240 | 241 | - 强引用:创建一个对象并把这个对象赋给一个引用变量,普通 new 出来对象的变量引用都是强引用,有引用变量指向时永远不会被垃圾回收,jvm 即使抛出 OOM,可以将引用赋值为 null,那么它所指向的对象就会被垃圾回收。 242 | - 软引用:如果一个对象具有软引用,内存空间足够,垃圾回收器就不会回收它,如果内存空间不足了,就会回收这些对象的内存。只要垃圾回收器没有回收它,该对象就可以被程序使用。 243 | - 弱引用:非必需对象,当 JVM 进行垃圾回收时,无论内存是否充足,都会回收被弱引用关联的对象。 244 | - 虚引用:虚引用并不会决定对象的生命周期,如果一个对象仅持有虚引用,那么它就和没有任何引用一样,在任何时候都可能被垃圾回收器回收。 245 | 246 | ## 方法区 247 | 248 | ### 方法区的定义 249 | 250 | Java 虚拟机规范中定义方法区是堆的一个逻辑部分。方法区存放以下信息: 251 | 252 | - 已经被虚拟机加载的类信息 253 | - 常量 254 | - 静态变量 255 | - 即时编译器编译后的代码 256 | 257 | ### 方法区的特点 258 | 259 | - 线程共享。 方法区是堆的一个逻辑部分,因此和堆一样,都是线程共享的。整个虚拟机中只有一个方法区。 260 | - 永久代。 方法区中的信息一般需要长期存在,而且它又是堆的逻辑分区,因此用堆的划分方法,把方法区称为“永久代”。 261 | - 内存回收效率低。 方法区中的信息一般需要长期存在,回收一遍之后可能只有少量信息无效。主要回收目标是:对常量池的回收;对类型的卸载。 262 | - Java 虚拟机规范对方法区的要求比较宽松。 和堆一样,允许固定大小,也允许动态扩展,还允许不实现垃圾回收。 263 | 264 | ### 运行时常量池 265 | 266 | 方法区中存放:类信息、常量、静态变量、即时编译器编译后的代码。常量就存放在运行时常量池中。 267 | 268 | 当类被 Java 虚拟机加载后, .class 文件中的常量就存放在方法区的运行时常量池中。而且在运行期间,可以向常量池中添加新的常量。如 String 类的 `intern()` 方法就能在运行期间向常量池中添加字符串常量。 269 | 270 | ![jvm-runtime-constant-pool](https://cdn-doocs.oss-cn-shenzhen.aliyuncs.com/gh/doocs/jvm@main/images/jvm-runtime-constant-pool.png) 271 | 272 | ## 直接内存(堆外内存) 273 | 274 | 直接内存是除 Java 虚拟机之外的内存,但也可能被 Java 使用。 275 | 276 | ### 操作直接内存 277 | 278 | 在 NIO 中引入了一种基于通道和缓冲的 IO 方式。它可以通过调用本地方法直接分配 Java 虚拟机之外的内存,然后通过一个存储在堆中的`DirectByteBuffer`对象直接操作该内存,而无须先将外部内存中的数据复制到堆中再进行操作,从而提高了数据操作的效率。 279 | 280 | 直接内存的大小不受 Java 虚拟机控制,但既然是内存,当内存不足时就会抛出 OutOfMemoryError 异常。 281 | 282 | ### 直接内存与堆内存比较 283 | 284 | - 直接内存申请空间耗费更高的性能 285 | - 直接内存读取 IO 的性能要优于普通的堆内存 286 | - 直接内存作用链: 本地 IO -> 直接内存 -> 本地 IO 287 | - 堆内存作用链:本地 IO -> 直接内存 -> 非直接内存 -> 直接内存 -> 本地 IO 288 | 289 | > 服务器管理员在配置虚拟机参数时,会根据实际内存设置`-Xmx`等参数信息,但经常忽略直接内存,使得各个内存区域总和大于物理内存限制,从而导致动态扩展时出现`OutOfMemoryError`异常。 290 | 291 | > ![jvm-off-heap-memory](https://cdn-doocs.oss-cn-shenzhen.aliyuncs.com/gh/doocs/jvm@main/images/jvm-off-heap-memory.png) 292 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Attribution-ShareAlike 4.0 International 2 | 3 | ======================================================================= 4 | 5 | Creative Commons Corporation ("Creative Commons") is not a law firm and 6 | does not provide legal services or legal advice. Distribution of 7 | Creative Commons public licenses does not create a lawyer-client or 8 | other relationship. Creative Commons makes its licenses and related 9 | information available on an "as-is" basis. Creative Commons gives no 10 | warranties regarding its licenses, any material licensed under their 11 | terms and conditions, or any related information. Creative Commons 12 | disclaims all liability for damages resulting from their use to the 13 | fullest extent possible. 14 | 15 | Using Creative Commons Public Licenses 16 | 17 | Creative Commons public licenses provide a standard set of terms and 18 | conditions that creators and other rights holders may use to share 19 | original works of authorship and other material subject to copyright 20 | and certain other rights specified in the public license below. The 21 | following considerations are for informational purposes only, are not 22 | exhaustive, and do not form part of our licenses. 23 | 24 | Considerations for licensors: Our public licenses are 25 | intended for use by those authorized to give the public 26 | permission to use material in ways otherwise restricted by 27 | copyright and certain other rights. Our licenses are 28 | irrevocable. Licensors should read and understand the terms 29 | and conditions of the license they choose before applying it. 30 | Licensors should also secure all rights necessary before 31 | applying our licenses so that the public can reuse the 32 | material as expected. Licensors should clearly mark any 33 | material not subject to the license. This includes other CC- 34 | licensed material, or material used under an exception or 35 | limitation to copyright. More considerations for licensors: 36 | wiki.creativecommons.org/Considerations_for_licensors 37 | 38 | Considerations for the public: By using one of our public 39 | licenses, a licensor grants the public permission to use the 40 | licensed material under specified terms and conditions. If 41 | the licensor's permission is not necessary for any reason--for 42 | example, because of any applicable exception or limitation to 43 | copyright--then that use is not regulated by the license. Our 44 | licenses grant only permissions under copyright and certain 45 | other rights that a licensor has authority to grant. Use of 46 | the licensed material may still be restricted for other 47 | reasons, including because others have copyright or other 48 | rights in the material. A licensor may make special requests, 49 | such as asking that all changes be marked or described. 50 | Although not required by our licenses, you are encouraged to 51 | respect those requests where reasonable. More_considerations 52 | for the public: 53 | wiki.creativecommons.org/Considerations_for_licensees 54 | 55 | ======================================================================= 56 | 57 | Creative Commons Attribution-ShareAlike 4.0 International Public 58 | License 59 | 60 | By exercising the Licensed Rights (defined below), You accept and agree 61 | to be bound by the terms and conditions of this Creative Commons 62 | Attribution-ShareAlike 4.0 International Public License ("Public 63 | License"). To the extent this Public License may be interpreted as a 64 | contract, You are granted the Licensed Rights in consideration of Your 65 | acceptance of these terms and conditions, and the Licensor grants You 66 | such rights in consideration of benefits the Licensor receives from 67 | making the Licensed Material available under these terms and 68 | conditions. 69 | 70 | 71 | Section 1 -- Definitions. 72 | 73 | a. Adapted Material means material subject to Copyright and Similar 74 | Rights that is derived from or based upon the Licensed Material 75 | and in which the Licensed Material is translated, altered, 76 | arranged, transformed, or otherwise modified in a manner requiring 77 | permission under the Copyright and Similar Rights held by the 78 | Licensor. For purposes of this Public License, where the Licensed 79 | Material is a musical work, performance, or sound recording, 80 | Adapted Material is always produced where the Licensed Material is 81 | synched in timed relation with a moving image. 82 | 83 | b. Adapter's License means the license You apply to Your Copyright 84 | and Similar Rights in Your contributions to Adapted Material in 85 | accordance with the terms and conditions of this Public License. 86 | 87 | c. BY-SA Compatible License means a license listed at 88 | creativecommons.org/compatiblelicenses, approved by Creative 89 | Commons as essentially the equivalent of this Public License. 90 | 91 | d. Copyright and Similar Rights means copyright and/or similar rights 92 | closely related to copyright including, without limitation, 93 | performance, broadcast, sound recording, and Sui Generis Database 94 | Rights, without regard to how the rights are labeled or 95 | categorized. For purposes of this Public License, the rights 96 | specified in Section 2(b)(1)-(2) are not Copyright and Similar 97 | Rights. 98 | 99 | e. Effective Technological Measures means those measures that, in the 100 | absence of proper authority, may not be circumvented under laws 101 | fulfilling obligations under Article 11 of the WIPO Copyright 102 | Treaty adopted on December 20, 1996, and/or similar international 103 | agreements. 104 | 105 | f. Exceptions and Limitations means fair use, fair dealing, and/or 106 | any other exception or limitation to Copyright and Similar Rights 107 | that applies to Your use of the Licensed Material. 108 | 109 | g. License Elements means the license attributes listed in the name 110 | of a Creative Commons Public License. The License Elements of this 111 | Public License are Attribution and ShareAlike. 112 | 113 | h. Licensed Material means the artistic or literary work, database, 114 | or other material to which the Licensor applied this Public 115 | License. 116 | 117 | i. Licensed Rights means the rights granted to You subject to the 118 | terms and conditions of this Public License, which are limited to 119 | all Copyright and Similar Rights that apply to Your use of the 120 | Licensed Material and that the Licensor has authority to license. 121 | 122 | j. Licensor means the individual(s) or entity(ies) granting rights 123 | under this Public License. 124 | 125 | k. Share means to provide material to the public by any means or 126 | process that requires permission under the Licensed Rights, such 127 | as reproduction, public display, public performance, distribution, 128 | dissemination, communication, or importation, and to make material 129 | available to the public including in ways that members of the 130 | public may access the material from a place and at a time 131 | individually chosen by them. 132 | 133 | l. Sui Generis Database Rights means rights other than copyright 134 | resulting from Directive 96/9/EC of the European Parliament and of 135 | the Council of 11 March 1996 on the legal protection of databases, 136 | as amended and/or succeeded, as well as other essentially 137 | equivalent rights anywhere in the world. 138 | 139 | m. You means the individual or entity exercising the Licensed Rights 140 | under this Public License. Your has a corresponding meaning. 141 | 142 | 143 | Section 2 -- Scope. 144 | 145 | a. License grant. 146 | 147 | 1. Subject to the terms and conditions of this Public License, 148 | the Licensor hereby grants You a worldwide, royalty-free, 149 | non-sublicensable, non-exclusive, irrevocable license to 150 | exercise the Licensed Rights in the Licensed Material to: 151 | 152 | a. reproduce and Share the Licensed Material, in whole or 153 | in part; and 154 | 155 | b. produce, reproduce, and Share Adapted Material. 156 | 157 | 2. Exceptions and Limitations. For the avoidance of doubt, where 158 | Exceptions and Limitations apply to Your use, this Public 159 | License does not apply, and You do not need to comply with 160 | its terms and conditions. 161 | 162 | 3. Term. The term of this Public License is specified in Section 163 | 6(a). 164 | 165 | 4. Media and formats; technical modifications allowed. The 166 | Licensor authorizes You to exercise the Licensed Rights in 167 | all media and formats whether now known or hereafter created, 168 | and to make technical modifications necessary to do so. The 169 | Licensor waives and/or agrees not to assert any right or 170 | authority to forbid You from making technical modifications 171 | necessary to exercise the Licensed Rights, including 172 | technical modifications necessary to circumvent Effective 173 | Technological Measures. For purposes of this Public License, 174 | simply making modifications authorized by this Section 2(a) 175 | (4) never produces Adapted Material. 176 | 177 | 5. Downstream recipients. 178 | 179 | a. Offer from the Licensor -- Licensed Material. Every 180 | recipient of the Licensed Material automatically 181 | receives an offer from the Licensor to exercise the 182 | Licensed Rights under the terms and conditions of this 183 | Public License. 184 | 185 | b. Additional offer from the Licensor -- Adapted Material. 186 | Every recipient of Adapted Material from You 187 | automatically receives an offer from the Licensor to 188 | exercise the Licensed Rights in the Adapted Material 189 | under the conditions of the Adapter's License You apply. 190 | 191 | c. No downstream restrictions. You may not offer or impose 192 | any additional or different terms or conditions on, or 193 | apply any Effective Technological Measures to, the 194 | Licensed Material if doing so restricts exercise of the 195 | Licensed Rights by any recipient of the Licensed 196 | Material. 197 | 198 | 6. No endorsement. Nothing in this Public License constitutes or 199 | may be construed as permission to assert or imply that You 200 | are, or that Your use of the Licensed Material is, connected 201 | with, or sponsored, endorsed, or granted official status by, 202 | the Licensor or others designated to receive attribution as 203 | provided in Section 3(a)(1)(A)(i). 204 | 205 | b. Other rights. 206 | 207 | 1. Moral rights, such as the right of integrity, are not 208 | licensed under this Public License, nor are publicity, 209 | privacy, and/or other similar personality rights; however, to 210 | the extent possible, the Licensor waives and/or agrees not to 211 | assert any such rights held by the Licensor to the limited 212 | extent necessary to allow You to exercise the Licensed 213 | Rights, but not otherwise. 214 | 215 | 2. Patent and trademark rights are not licensed under this 216 | Public License. 217 | 218 | 3. To the extent possible, the Licensor waives any right to 219 | collect royalties from You for the exercise of the Licensed 220 | Rights, whether directly or through a collecting society 221 | under any voluntary or waivable statutory or compulsory 222 | licensing scheme. In all other cases the Licensor expressly 223 | reserves any right to collect such royalties. 224 | 225 | 226 | Section 3 -- License Conditions. 227 | 228 | Your exercise of the Licensed Rights is expressly made subject to the 229 | following conditions. 230 | 231 | a. Attribution. 232 | 233 | 1. If You Share the Licensed Material (including in modified 234 | form), You must: 235 | 236 | a. retain the following if it is supplied by the Licensor 237 | with the Licensed Material: 238 | 239 | i. identification of the creator(s) of the Licensed 240 | Material and any others designated to receive 241 | attribution, in any reasonable manner requested by 242 | the Licensor (including by pseudonym if 243 | designated); 244 | 245 | ii. a copyright notice; 246 | 247 | iii. a notice that refers to this Public License; 248 | 249 | iv. a notice that refers to the disclaimer of 250 | warranties; 251 | 252 | v. a URI or hyperlink to the Licensed Material to the 253 | extent reasonably practicable; 254 | 255 | b. indicate if You modified the Licensed Material and 256 | retain an indication of any previous modifications; and 257 | 258 | c. indicate the Licensed Material is licensed under this 259 | Public License, and include the text of, or the URI or 260 | hyperlink to, this Public License. 261 | 262 | 2. You may satisfy the conditions in Section 3(a)(1) in any 263 | reasonable manner based on the medium, means, and context in 264 | which You Share the Licensed Material. For example, it may be 265 | reasonable to satisfy the conditions by providing a URI or 266 | hyperlink to a resource that includes the required 267 | information. 268 | 269 | 3. If requested by the Licensor, You must remove any of the 270 | information required by Section 3(a)(1)(A) to the extent 271 | reasonably practicable. 272 | 273 | b. ShareAlike. 274 | 275 | In addition to the conditions in Section 3(a), if You Share 276 | Adapted Material You produce, the following conditions also apply. 277 | 278 | 1. The Adapter's License You apply must be a Creative Commons 279 | license with the same License Elements, this version or 280 | later, or a BY-SA Compatible License. 281 | 282 | 2. You must include the text of, or the URI or hyperlink to, the 283 | Adapter's License You apply. You may satisfy this condition 284 | in any reasonable manner based on the medium, means, and 285 | context in which You Share Adapted Material. 286 | 287 | 3. You may not offer or impose any additional or different terms 288 | or conditions on, or apply any Effective Technological 289 | Measures to, Adapted Material that restrict exercise of the 290 | rights granted under the Adapter's License You apply. 291 | 292 | 293 | Section 4 -- Sui Generis Database Rights. 294 | 295 | Where the Licensed Rights include Sui Generis Database Rights that 296 | apply to Your use of the Licensed Material: 297 | 298 | a. for the avoidance of doubt, Section 2(a)(1) grants You the right 299 | to extract, reuse, reproduce, and Share all or a substantial 300 | portion of the contents of the database; 301 | 302 | b. if You include all or a substantial portion of the database 303 | contents in a database in which You have Sui Generis Database 304 | Rights, then the database in which You have Sui Generis Database 305 | Rights (but not its individual contents) is Adapted Material, 306 | 307 | including for purposes of Section 3(b); and 308 | c. You must comply with the conditions in Section 3(a) if You Share 309 | all or a substantial portion of the contents of the database. 310 | 311 | For the avoidance of doubt, this Section 4 supplements and does not 312 | replace Your obligations under this Public License where the Licensed 313 | Rights include other Copyright and Similar Rights. 314 | 315 | 316 | Section 5 -- Disclaimer of Warranties and Limitation of Liability. 317 | 318 | a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE 319 | EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS 320 | AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF 321 | ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, 322 | IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, 323 | WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR 324 | PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, 325 | ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT 326 | KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT 327 | ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. 328 | 329 | b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE 330 | TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, 331 | NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, 332 | INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, 333 | COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR 334 | USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN 335 | ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR 336 | DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR 337 | IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. 338 | 339 | c. The disclaimer of warranties and limitation of liability provided 340 | above shall be interpreted in a manner that, to the extent 341 | possible, most closely approximates an absolute disclaimer and 342 | waiver of all liability. 343 | 344 | 345 | Section 6 -- Term and Termination. 346 | 347 | a. This Public License applies for the term of the Copyright and 348 | Similar Rights licensed here. However, if You fail to comply with 349 | this Public License, then Your rights under this Public License 350 | terminate automatically. 351 | 352 | b. Where Your right to use the Licensed Material has terminated under 353 | Section 6(a), it reinstates: 354 | 355 | 1. automatically as of the date the violation is cured, provided 356 | it is cured within 30 days of Your discovery of the 357 | violation; or 358 | 359 | 2. upon express reinstatement by the Licensor. 360 | 361 | For the avoidance of doubt, this Section 6(b) does not affect any 362 | right the Licensor may have to seek remedies for Your violations 363 | of this Public License. 364 | 365 | c. For the avoidance of doubt, the Licensor may also offer the 366 | Licensed Material under separate terms or conditions or stop 367 | distributing the Licensed Material at any time; however, doing so 368 | will not terminate this Public License. 369 | 370 | d. Sections 1, 5, 6, 7, and 8 survive termination of this Public 371 | License. 372 | 373 | 374 | Section 7 -- Other Terms and Conditions. 375 | 376 | a. The Licensor shall not be bound by any additional or different 377 | terms or conditions communicated by You unless expressly agreed. 378 | 379 | b. Any arrangements, understandings, or agreements regarding the 380 | Licensed Material not stated herein are separate from and 381 | independent of the terms and conditions of this Public License. 382 | 383 | 384 | Section 8 -- Interpretation. 385 | 386 | a. For the avoidance of doubt, this Public License does not, and 387 | shall not be interpreted to, reduce, limit, restrict, or impose 388 | conditions on any use of the Licensed Material that could lawfully 389 | be made without permission under this Public License. 390 | 391 | b. To the extent possible, if any provision of this Public License is 392 | deemed unenforceable, it shall be automatically reformed to the 393 | minimum extent necessary to make it enforceable. If the provision 394 | cannot be reformed, it shall be severed from this Public License 395 | without affecting the enforceability of the remaining terms and 396 | conditions. 397 | 398 | c. No term or condition of this Public License will be waived and no 399 | failure to comply consented to unless expressly agreed to by the 400 | Licensor. 401 | 402 | d. Nothing in this Public License constitutes or may be interpreted 403 | as a limitation upon, or waiver of, any privileges and immunities 404 | that apply to the Licensor or You, including from the legal 405 | processes of any jurisdiction or authority. 406 | 407 | 408 | ======================================================================= 409 | 410 | Creative Commons is not a party to its public 411 | licenses. Notwithstanding, Creative Commons may elect to apply one of 412 | its public licenses to material it publishes and in those instances 413 | will be considered the “Licensor.” The text of the Creative Commons 414 | public licenses is dedicated to the public domain under the CC0 Public 415 | Domain Dedication. Except for the limited purpose of indicating that 416 | material is shared under a Creative Commons public license or as 417 | otherwise permitted by the Creative Commons policies published at 418 | creativecommons.org/policies, Creative Commons does not authorize the 419 | use of the trademark "Creative Commons" or any other trademark or logo 420 | of Creative Commons without its prior written consent including, 421 | without limitation, in connection with any unauthorized modifications 422 | to any of its public licenses or any other arrangements, 423 | understandings, or agreements concerning use of licensed material. For 424 | the avoidance of doubt, this paragraph does not form part of the 425 | public licenses. 426 | 427 | Creative Commons may be contacted at creativecommons.org. 428 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '9.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | importers: 8 | 9 | .: 10 | devDependencies: 11 | vitepress: 12 | specifier: ^2.0.0-alpha.12 13 | version: 2.0.0-alpha.12(postcss@8.5.6) 14 | wrangler: 15 | specifier: ^4.44.0 16 | version: 4.44.0 17 | 18 | packages: 19 | 20 | '@babel/helper-string-parser@7.27.1': 21 | resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} 22 | engines: {node: '>=6.9.0'} 23 | 24 | '@babel/helper-validator-identifier@7.27.1': 25 | resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==} 26 | engines: {node: '>=6.9.0'} 27 | 28 | '@babel/parser@7.28.4': 29 | resolution: {integrity: sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==} 30 | engines: {node: '>=6.0.0'} 31 | hasBin: true 32 | 33 | '@babel/types@7.28.4': 34 | resolution: {integrity: sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==} 35 | engines: {node: '>=6.9.0'} 36 | 37 | '@cloudflare/kv-asset-handler@0.4.0': 38 | resolution: {integrity: sha512-+tv3z+SPp+gqTIcImN9o0hqE9xyfQjI1XD9pL6NuKjua9B1y7mNYv0S9cP+QEbA4ppVgGZEmKOvHX5G5Ei1CVA==} 39 | engines: {node: '>=18.0.0'} 40 | 41 | '@cloudflare/unenv-preset@2.7.8': 42 | resolution: {integrity: sha512-Ky929MfHh+qPhwCapYrRPwPVHtA2Ioex/DbGZyskGyNRDe9Ru3WThYZivyNVaPy5ergQSgMs9OKrM9Ajtz9F6w==} 43 | peerDependencies: 44 | unenv: 2.0.0-rc.21 45 | workerd: ^1.20250927.0 46 | peerDependenciesMeta: 47 | workerd: 48 | optional: true 49 | 50 | '@cloudflare/workerd-darwin-64@1.20251011.0': 51 | resolution: {integrity: sha512-0DirVP+Z82RtZLlK2B+VhLOkk+ShBqDYO/jhcRw4oVlp0TOvk3cOVZChrt3+y3NV8Y/PYgTEywzLKFSziK4wCg==} 52 | engines: {node: '>=16'} 53 | cpu: [x64] 54 | os: [darwin] 55 | 56 | '@cloudflare/workerd-darwin-arm64@1.20251011.0': 57 | resolution: {integrity: sha512-1WuFBGwZd15p4xssGN/48OE2oqokIuc51YvHvyNivyV8IYnAs3G9bJNGWth1X7iMDPe4g44pZrKhRnISS2+5dA==} 58 | engines: {node: '>=16'} 59 | cpu: [arm64] 60 | os: [darwin] 61 | 62 | '@cloudflare/workerd-linux-64@1.20251011.0': 63 | resolution: {integrity: sha512-BccMiBzFlWZyFghIw2szanmYJrJGBGHomw2y/GV6pYXChFzMGZkeCEMfmCyJj29xczZXxcZmUVJxNy4eJxO8QA==} 64 | engines: {node: '>=16'} 65 | cpu: [x64] 66 | os: [linux] 67 | 68 | '@cloudflare/workerd-linux-arm64@1.20251011.0': 69 | resolution: {integrity: sha512-79o/216lsbAbKEVDZYXR24ivEIE2ysDL9jvo0rDTkViLWju9dAp3CpyetglpJatbSi3uWBPKZBEOqN68zIjVsQ==} 70 | engines: {node: '>=16'} 71 | cpu: [arm64] 72 | os: [linux] 73 | 74 | '@cloudflare/workerd-windows-64@1.20251011.0': 75 | resolution: {integrity: sha512-RIXUQRchFdqEvaUqn1cXZXSKjpqMaSaVAkI5jNZ8XzAw/bw2bcdOVUtakrflgxDprltjFb0PTNtuss1FKtH9Jg==} 76 | engines: {node: '>=16'} 77 | cpu: [x64] 78 | os: [win32] 79 | 80 | '@cspotcode/source-map-support@0.8.1': 81 | resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} 82 | engines: {node: '>=12'} 83 | 84 | '@docsearch/css@4.2.0': 85 | resolution: {integrity: sha512-65KU9Fw5fGsPPPlgIghonMcndyx1bszzrDQYLfierN+Ha29yotMHzVS94bPkZS6On9LS8dE4qmW4P/fGjtCf/g==} 86 | 87 | '@docsearch/js@4.2.0': 88 | resolution: {integrity: sha512-KBHVPO29QiGUFJYeAqxW0oXtGf/aghNmRrIRPT4/28JAefqoCkNn/ZM/jeQ7fHjl0KNM6C+KlLVYjwyz6lNZnA==} 89 | 90 | '@emnapi/runtime@1.6.0': 91 | resolution: {integrity: sha512-obtUmAHTMjll499P+D9A3axeJFlhdjOWdKUNs/U6QIGT7V5RjcUW1xToAzjvmgTSQhDbYn/NwfTRoJcQ2rNBxA==} 92 | 93 | '@esbuild/aix-ppc64@0.25.11': 94 | resolution: {integrity: sha512-Xt1dOL13m8u0WE8iplx9Ibbm+hFAO0GsU2P34UNoDGvZYkY8ifSiy6Zuc1lYxfG7svWE2fzqCUmFp5HCn51gJg==} 95 | engines: {node: '>=18'} 96 | cpu: [ppc64] 97 | os: [aix] 98 | 99 | '@esbuild/aix-ppc64@0.25.4': 100 | resolution: {integrity: sha512-1VCICWypeQKhVbE9oW/sJaAmjLxhVqacdkvPLEjwlttjfwENRSClS8EjBz0KzRyFSCPDIkuXW34Je/vk7zdB7Q==} 101 | engines: {node: '>=18'} 102 | cpu: [ppc64] 103 | os: [aix] 104 | 105 | '@esbuild/android-arm64@0.25.11': 106 | resolution: {integrity: sha512-9slpyFBc4FPPz48+f6jyiXOx/Y4v34TUeDDXJpZqAWQn/08lKGeD8aDp9TMn9jDz2CiEuHwfhRmGBvpnd/PWIQ==} 107 | engines: {node: '>=18'} 108 | cpu: [arm64] 109 | os: [android] 110 | 111 | '@esbuild/android-arm64@0.25.4': 112 | resolution: {integrity: sha512-bBy69pgfhMGtCnwpC/x5QhfxAz/cBgQ9enbtwjf6V9lnPI/hMyT9iWpR1arm0l3kttTr4L0KSLpKmLp/ilKS9A==} 113 | engines: {node: '>=18'} 114 | cpu: [arm64] 115 | os: [android] 116 | 117 | '@esbuild/android-arm@0.25.11': 118 | resolution: {integrity: sha512-uoa7dU+Dt3HYsethkJ1k6Z9YdcHjTrSb5NUy66ZfZaSV8hEYGD5ZHbEMXnqLFlbBflLsl89Zke7CAdDJ4JI+Gg==} 119 | engines: {node: '>=18'} 120 | cpu: [arm] 121 | os: [android] 122 | 123 | '@esbuild/android-arm@0.25.4': 124 | resolution: {integrity: sha512-QNdQEps7DfFwE3hXiU4BZeOV68HHzYwGd0Nthhd3uCkkEKK7/R6MTgM0P7H7FAs5pU/DIWsviMmEGxEoxIZ+ZQ==} 125 | engines: {node: '>=18'} 126 | cpu: [arm] 127 | os: [android] 128 | 129 | '@esbuild/android-x64@0.25.11': 130 | resolution: {integrity: sha512-Sgiab4xBjPU1QoPEIqS3Xx+R2lezu0LKIEcYe6pftr56PqPygbB7+szVnzoShbx64MUupqoE0KyRlN7gezbl8g==} 131 | engines: {node: '>=18'} 132 | cpu: [x64] 133 | os: [android] 134 | 135 | '@esbuild/android-x64@0.25.4': 136 | resolution: {integrity: sha512-TVhdVtQIFuVpIIR282btcGC2oGQoSfZfmBdTip2anCaVYcqWlZXGcdcKIUklfX2wj0JklNYgz39OBqh2cqXvcQ==} 137 | engines: {node: '>=18'} 138 | cpu: [x64] 139 | os: [android] 140 | 141 | '@esbuild/darwin-arm64@0.25.11': 142 | resolution: {integrity: sha512-VekY0PBCukppoQrycFxUqkCojnTQhdec0vevUL/EDOCnXd9LKWqD/bHwMPzigIJXPhC59Vd1WFIL57SKs2mg4w==} 143 | engines: {node: '>=18'} 144 | cpu: [arm64] 145 | os: [darwin] 146 | 147 | '@esbuild/darwin-arm64@0.25.4': 148 | resolution: {integrity: sha512-Y1giCfM4nlHDWEfSckMzeWNdQS31BQGs9/rouw6Ub91tkK79aIMTH3q9xHvzH8d0wDru5Ci0kWB8b3up/nl16g==} 149 | engines: {node: '>=18'} 150 | cpu: [arm64] 151 | os: [darwin] 152 | 153 | '@esbuild/darwin-x64@0.25.11': 154 | resolution: {integrity: sha512-+hfp3yfBalNEpTGp9loYgbknjR695HkqtY3d3/JjSRUyPg/xd6q+mQqIb5qdywnDxRZykIHs3axEqU6l1+oWEQ==} 155 | engines: {node: '>=18'} 156 | cpu: [x64] 157 | os: [darwin] 158 | 159 | '@esbuild/darwin-x64@0.25.4': 160 | resolution: {integrity: sha512-CJsry8ZGM5VFVeyUYB3cdKpd/H69PYez4eJh1W/t38vzutdjEjtP7hB6eLKBoOdxcAlCtEYHzQ/PJ/oU9I4u0A==} 161 | engines: {node: '>=18'} 162 | cpu: [x64] 163 | os: [darwin] 164 | 165 | '@esbuild/freebsd-arm64@0.25.11': 166 | resolution: {integrity: sha512-CmKjrnayyTJF2eVuO//uSjl/K3KsMIeYeyN7FyDBjsR3lnSJHaXlVoAK8DZa7lXWChbuOk7NjAc7ygAwrnPBhA==} 167 | engines: {node: '>=18'} 168 | cpu: [arm64] 169 | os: [freebsd] 170 | 171 | '@esbuild/freebsd-arm64@0.25.4': 172 | resolution: {integrity: sha512-yYq+39NlTRzU2XmoPW4l5Ifpl9fqSk0nAJYM/V/WUGPEFfek1epLHJIkTQM6bBs1swApjO5nWgvr843g6TjxuQ==} 173 | engines: {node: '>=18'} 174 | cpu: [arm64] 175 | os: [freebsd] 176 | 177 | '@esbuild/freebsd-x64@0.25.11': 178 | resolution: {integrity: sha512-Dyq+5oscTJvMaYPvW3x3FLpi2+gSZTCE/1ffdwuM6G1ARang/mb3jvjxs0mw6n3Lsw84ocfo9CrNMqc5lTfGOw==} 179 | engines: {node: '>=18'} 180 | cpu: [x64] 181 | os: [freebsd] 182 | 183 | '@esbuild/freebsd-x64@0.25.4': 184 | resolution: {integrity: sha512-0FgvOJ6UUMflsHSPLzdfDnnBBVoCDtBTVyn/MrWloUNvq/5SFmh13l3dvgRPkDihRxb77Y17MbqbCAa2strMQQ==} 185 | engines: {node: '>=18'} 186 | cpu: [x64] 187 | os: [freebsd] 188 | 189 | '@esbuild/linux-arm64@0.25.11': 190 | resolution: {integrity: sha512-Qr8AzcplUhGvdyUF08A1kHU3Vr2O88xxP0Tm8GcdVOUm25XYcMPp2YqSVHbLuXzYQMf9Bh/iKx7YPqECs6ffLA==} 191 | engines: {node: '>=18'} 192 | cpu: [arm64] 193 | os: [linux] 194 | 195 | '@esbuild/linux-arm64@0.25.4': 196 | resolution: {integrity: sha512-+89UsQTfXdmjIvZS6nUnOOLoXnkUTB9hR5QAeLrQdzOSWZvNSAXAtcRDHWtqAUtAmv7ZM1WPOOeSxDzzzMogiQ==} 197 | engines: {node: '>=18'} 198 | cpu: [arm64] 199 | os: [linux] 200 | 201 | '@esbuild/linux-arm@0.25.11': 202 | resolution: {integrity: sha512-TBMv6B4kCfrGJ8cUPo7vd6NECZH/8hPpBHHlYI3qzoYFvWu2AdTvZNuU/7hsbKWqu/COU7NIK12dHAAqBLLXgw==} 203 | engines: {node: '>=18'} 204 | cpu: [arm] 205 | os: [linux] 206 | 207 | '@esbuild/linux-arm@0.25.4': 208 | resolution: {integrity: sha512-kro4c0P85GMfFYqW4TWOpvmF8rFShbWGnrLqlzp4X1TNWjRY3JMYUfDCtOxPKOIY8B0WC8HN51hGP4I4hz4AaQ==} 209 | engines: {node: '>=18'} 210 | cpu: [arm] 211 | os: [linux] 212 | 213 | '@esbuild/linux-ia32@0.25.11': 214 | resolution: {integrity: sha512-TmnJg8BMGPehs5JKrCLqyWTVAvielc615jbkOirATQvWWB1NMXY77oLMzsUjRLa0+ngecEmDGqt5jiDC6bfvOw==} 215 | engines: {node: '>=18'} 216 | cpu: [ia32] 217 | os: [linux] 218 | 219 | '@esbuild/linux-ia32@0.25.4': 220 | resolution: {integrity: sha512-yTEjoapy8UP3rv8dB0ip3AfMpRbyhSN3+hY8mo/i4QXFeDxmiYbEKp3ZRjBKcOP862Ua4b1PDfwlvbuwY7hIGQ==} 221 | engines: {node: '>=18'} 222 | cpu: [ia32] 223 | os: [linux] 224 | 225 | '@esbuild/linux-loong64@0.25.11': 226 | resolution: {integrity: sha512-DIGXL2+gvDaXlaq8xruNXUJdT5tF+SBbJQKbWy/0J7OhU8gOHOzKmGIlfTTl6nHaCOoipxQbuJi7O++ldrxgMw==} 227 | engines: {node: '>=18'} 228 | cpu: [loong64] 229 | os: [linux] 230 | 231 | '@esbuild/linux-loong64@0.25.4': 232 | resolution: {integrity: sha512-NeqqYkrcGzFwi6CGRGNMOjWGGSYOpqwCjS9fvaUlX5s3zwOtn1qwg1s2iE2svBe4Q/YOG1q6875lcAoQK/F4VA==} 233 | engines: {node: '>=18'} 234 | cpu: [loong64] 235 | os: [linux] 236 | 237 | '@esbuild/linux-mips64el@0.25.11': 238 | resolution: {integrity: sha512-Osx1nALUJu4pU43o9OyjSCXokFkFbyzjXb6VhGIJZQ5JZi8ylCQ9/LFagolPsHtgw6himDSyb5ETSfmp4rpiKQ==} 239 | engines: {node: '>=18'} 240 | cpu: [mips64el] 241 | os: [linux] 242 | 243 | '@esbuild/linux-mips64el@0.25.4': 244 | resolution: {integrity: sha512-IcvTlF9dtLrfL/M8WgNI/qJYBENP3ekgsHbYUIzEzq5XJzzVEV/fXY9WFPfEEXmu3ck2qJP8LG/p3Q8f7Zc2Xg==} 245 | engines: {node: '>=18'} 246 | cpu: [mips64el] 247 | os: [linux] 248 | 249 | '@esbuild/linux-ppc64@0.25.11': 250 | resolution: {integrity: sha512-nbLFgsQQEsBa8XSgSTSlrnBSrpoWh7ioFDUmwo158gIm5NNP+17IYmNWzaIzWmgCxq56vfr34xGkOcZ7jX6CPw==} 251 | engines: {node: '>=18'} 252 | cpu: [ppc64] 253 | os: [linux] 254 | 255 | '@esbuild/linux-ppc64@0.25.4': 256 | resolution: {integrity: sha512-HOy0aLTJTVtoTeGZh4HSXaO6M95qu4k5lJcH4gxv56iaycfz1S8GO/5Jh6X4Y1YiI0h7cRyLi+HixMR+88swag==} 257 | engines: {node: '>=18'} 258 | cpu: [ppc64] 259 | os: [linux] 260 | 261 | '@esbuild/linux-riscv64@0.25.11': 262 | resolution: {integrity: sha512-HfyAmqZi9uBAbgKYP1yGuI7tSREXwIb438q0nqvlpxAOs3XnZ8RsisRfmVsgV486NdjD7Mw2UrFSw51lzUk1ww==} 263 | engines: {node: '>=18'} 264 | cpu: [riscv64] 265 | os: [linux] 266 | 267 | '@esbuild/linux-riscv64@0.25.4': 268 | resolution: {integrity: sha512-i8JUDAufpz9jOzo4yIShCTcXzS07vEgWzyX3NH2G7LEFVgrLEhjwL3ajFE4fZI3I4ZgiM7JH3GQ7ReObROvSUA==} 269 | engines: {node: '>=18'} 270 | cpu: [riscv64] 271 | os: [linux] 272 | 273 | '@esbuild/linux-s390x@0.25.11': 274 | resolution: {integrity: sha512-HjLqVgSSYnVXRisyfmzsH6mXqyvj0SA7pG5g+9W7ESgwA70AXYNpfKBqh1KbTxmQVaYxpzA/SvlB9oclGPbApw==} 275 | engines: {node: '>=18'} 276 | cpu: [s390x] 277 | os: [linux] 278 | 279 | '@esbuild/linux-s390x@0.25.4': 280 | resolution: {integrity: sha512-jFnu+6UbLlzIjPQpWCNh5QtrcNfMLjgIavnwPQAfoGx4q17ocOU9MsQ2QVvFxwQoWpZT8DvTLooTvmOQXkO51g==} 281 | engines: {node: '>=18'} 282 | cpu: [s390x] 283 | os: [linux] 284 | 285 | '@esbuild/linux-x64@0.25.11': 286 | resolution: {integrity: sha512-HSFAT4+WYjIhrHxKBwGmOOSpphjYkcswF449j6EjsjbinTZbp8PJtjsVK1XFJStdzXdy/jaddAep2FGY+wyFAQ==} 287 | engines: {node: '>=18'} 288 | cpu: [x64] 289 | os: [linux] 290 | 291 | '@esbuild/linux-x64@0.25.4': 292 | resolution: {integrity: sha512-6e0cvXwzOnVWJHq+mskP8DNSrKBr1bULBvnFLpc1KY+d+irZSgZ02TGse5FsafKS5jg2e4pbvK6TPXaF/A6+CA==} 293 | engines: {node: '>=18'} 294 | cpu: [x64] 295 | os: [linux] 296 | 297 | '@esbuild/netbsd-arm64@0.25.11': 298 | resolution: {integrity: sha512-hr9Oxj1Fa4r04dNpWr3P8QKVVsjQhqrMSUzZzf+LZcYjZNqhA3IAfPQdEh1FLVUJSiu6sgAwp3OmwBfbFgG2Xg==} 299 | engines: {node: '>=18'} 300 | cpu: [arm64] 301 | os: [netbsd] 302 | 303 | '@esbuild/netbsd-arm64@0.25.4': 304 | resolution: {integrity: sha512-vUnkBYxZW4hL/ie91hSqaSNjulOnYXE1VSLusnvHg2u3jewJBz3YzB9+oCw8DABeVqZGg94t9tyZFoHma8gWZQ==} 305 | engines: {node: '>=18'} 306 | cpu: [arm64] 307 | os: [netbsd] 308 | 309 | '@esbuild/netbsd-x64@0.25.11': 310 | resolution: {integrity: sha512-u7tKA+qbzBydyj0vgpu+5h5AeudxOAGncb8N6C9Kh1N4n7wU1Xw1JDApsRjpShRpXRQlJLb9wY28ELpwdPcZ7A==} 311 | engines: {node: '>=18'} 312 | cpu: [x64] 313 | os: [netbsd] 314 | 315 | '@esbuild/netbsd-x64@0.25.4': 316 | resolution: {integrity: sha512-XAg8pIQn5CzhOB8odIcAm42QsOfa98SBeKUdo4xa8OvX8LbMZqEtgeWE9P/Wxt7MlG2QqvjGths+nq48TrUiKw==} 317 | engines: {node: '>=18'} 318 | cpu: [x64] 319 | os: [netbsd] 320 | 321 | '@esbuild/openbsd-arm64@0.25.11': 322 | resolution: {integrity: sha512-Qq6YHhayieor3DxFOoYM1q0q1uMFYb7cSpLD2qzDSvK1NAvqFi8Xgivv0cFC6J+hWVw2teCYltyy9/m/14ryHg==} 323 | engines: {node: '>=18'} 324 | cpu: [arm64] 325 | os: [openbsd] 326 | 327 | '@esbuild/openbsd-arm64@0.25.4': 328 | resolution: {integrity: sha512-Ct2WcFEANlFDtp1nVAXSNBPDxyU+j7+tId//iHXU2f/lN5AmO4zLyhDcpR5Cz1r08mVxzt3Jpyt4PmXQ1O6+7A==} 329 | engines: {node: '>=18'} 330 | cpu: [arm64] 331 | os: [openbsd] 332 | 333 | '@esbuild/openbsd-x64@0.25.11': 334 | resolution: {integrity: sha512-CN+7c++kkbrckTOz5hrehxWN7uIhFFlmS/hqziSFVWpAzpWrQoAG4chH+nN3Be+Kzv/uuo7zhX716x3Sn2Jduw==} 335 | engines: {node: '>=18'} 336 | cpu: [x64] 337 | os: [openbsd] 338 | 339 | '@esbuild/openbsd-x64@0.25.4': 340 | resolution: {integrity: sha512-xAGGhyOQ9Otm1Xu8NT1ifGLnA6M3sJxZ6ixylb+vIUVzvvd6GOALpwQrYrtlPouMqd/vSbgehz6HaVk4+7Afhw==} 341 | engines: {node: '>=18'} 342 | cpu: [x64] 343 | os: [openbsd] 344 | 345 | '@esbuild/openharmony-arm64@0.25.11': 346 | resolution: {integrity: sha512-rOREuNIQgaiR+9QuNkbkxubbp8MSO9rONmwP5nKncnWJ9v5jQ4JxFnLu4zDSRPf3x4u+2VN4pM4RdyIzDty/wQ==} 347 | engines: {node: '>=18'} 348 | cpu: [arm64] 349 | os: [openharmony] 350 | 351 | '@esbuild/sunos-x64@0.25.11': 352 | resolution: {integrity: sha512-nq2xdYaWxyg9DcIyXkZhcYulC6pQ2FuCgem3LI92IwMgIZ69KHeY8T4Y88pcwoLIjbed8n36CyKoYRDygNSGhA==} 353 | engines: {node: '>=18'} 354 | cpu: [x64] 355 | os: [sunos] 356 | 357 | '@esbuild/sunos-x64@0.25.4': 358 | resolution: {integrity: sha512-Mw+tzy4pp6wZEK0+Lwr76pWLjrtjmJyUB23tHKqEDP74R3q95luY/bXqXZeYl4NYlvwOqoRKlInQialgCKy67Q==} 359 | engines: {node: '>=18'} 360 | cpu: [x64] 361 | os: [sunos] 362 | 363 | '@esbuild/win32-arm64@0.25.11': 364 | resolution: {integrity: sha512-3XxECOWJq1qMZ3MN8srCJ/QfoLpL+VaxD/WfNRm1O3B4+AZ/BnLVgFbUV3eiRYDMXetciH16dwPbbHqwe1uU0Q==} 365 | engines: {node: '>=18'} 366 | cpu: [arm64] 367 | os: [win32] 368 | 369 | '@esbuild/win32-arm64@0.25.4': 370 | resolution: {integrity: sha512-AVUP428VQTSddguz9dO9ngb+E5aScyg7nOeJDrF1HPYu555gmza3bDGMPhmVXL8svDSoqPCsCPjb265yG/kLKQ==} 371 | engines: {node: '>=18'} 372 | cpu: [arm64] 373 | os: [win32] 374 | 375 | '@esbuild/win32-ia32@0.25.11': 376 | resolution: {integrity: sha512-3ukss6gb9XZ8TlRyJlgLn17ecsK4NSQTmdIXRASVsiS2sQ6zPPZklNJT5GR5tE/MUarymmy8kCEf5xPCNCqVOA==} 377 | engines: {node: '>=18'} 378 | cpu: [ia32] 379 | os: [win32] 380 | 381 | '@esbuild/win32-ia32@0.25.4': 382 | resolution: {integrity: sha512-i1sW+1i+oWvQzSgfRcxxG2k4I9n3O9NRqy8U+uugaT2Dy7kLO9Y7wI72haOahxceMX8hZAzgGou1FhndRldxRg==} 383 | engines: {node: '>=18'} 384 | cpu: [ia32] 385 | os: [win32] 386 | 387 | '@esbuild/win32-x64@0.25.11': 388 | resolution: {integrity: sha512-D7Hpz6A2L4hzsRpPaCYkQnGOotdUpDzSGRIv9I+1ITdHROSFUWW95ZPZWQmGka1Fg7W3zFJowyn9WGwMJ0+KPA==} 389 | engines: {node: '>=18'} 390 | cpu: [x64] 391 | os: [win32] 392 | 393 | '@esbuild/win32-x64@0.25.4': 394 | resolution: {integrity: sha512-nOT2vZNw6hJ+z43oP1SPea/G/6AbN6X+bGNhNuq8NtRHy4wsMhw765IKLNmnjek7GvjWBYQ8Q5VBoYTFg9y1UQ==} 395 | engines: {node: '>=18'} 396 | cpu: [x64] 397 | os: [win32] 398 | 399 | '@iconify-json/simple-icons@1.2.55': 400 | resolution: {integrity: sha512-9vc04pmup/zcef8hDypWU8nMwMaFVkWuUzWkxyL++DVp5AA8baoJHK6RyKN1v+cvfR2agxkUb053XVggzFFkTA==} 401 | 402 | '@iconify/types@2.0.0': 403 | resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==} 404 | 405 | '@img/sharp-darwin-arm64@0.33.5': 406 | resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==} 407 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 408 | cpu: [arm64] 409 | os: [darwin] 410 | 411 | '@img/sharp-darwin-x64@0.33.5': 412 | resolution: {integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==} 413 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 414 | cpu: [x64] 415 | os: [darwin] 416 | 417 | '@img/sharp-libvips-darwin-arm64@1.0.4': 418 | resolution: {integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==} 419 | cpu: [arm64] 420 | os: [darwin] 421 | 422 | '@img/sharp-libvips-darwin-x64@1.0.4': 423 | resolution: {integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==} 424 | cpu: [x64] 425 | os: [darwin] 426 | 427 | '@img/sharp-libvips-linux-arm64@1.0.4': 428 | resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==} 429 | cpu: [arm64] 430 | os: [linux] 431 | libc: [glibc] 432 | 433 | '@img/sharp-libvips-linux-arm@1.0.5': 434 | resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==} 435 | cpu: [arm] 436 | os: [linux] 437 | libc: [glibc] 438 | 439 | '@img/sharp-libvips-linux-s390x@1.0.4': 440 | resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==} 441 | cpu: [s390x] 442 | os: [linux] 443 | libc: [glibc] 444 | 445 | '@img/sharp-libvips-linux-x64@1.0.4': 446 | resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==} 447 | cpu: [x64] 448 | os: [linux] 449 | libc: [glibc] 450 | 451 | '@img/sharp-libvips-linuxmusl-arm64@1.0.4': 452 | resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==} 453 | cpu: [arm64] 454 | os: [linux] 455 | libc: [musl] 456 | 457 | '@img/sharp-libvips-linuxmusl-x64@1.0.4': 458 | resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==} 459 | cpu: [x64] 460 | os: [linux] 461 | libc: [musl] 462 | 463 | '@img/sharp-linux-arm64@0.33.5': 464 | resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==} 465 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 466 | cpu: [arm64] 467 | os: [linux] 468 | libc: [glibc] 469 | 470 | '@img/sharp-linux-arm@0.33.5': 471 | resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==} 472 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 473 | cpu: [arm] 474 | os: [linux] 475 | libc: [glibc] 476 | 477 | '@img/sharp-linux-s390x@0.33.5': 478 | resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==} 479 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 480 | cpu: [s390x] 481 | os: [linux] 482 | libc: [glibc] 483 | 484 | '@img/sharp-linux-x64@0.33.5': 485 | resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==} 486 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 487 | cpu: [x64] 488 | os: [linux] 489 | libc: [glibc] 490 | 491 | '@img/sharp-linuxmusl-arm64@0.33.5': 492 | resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==} 493 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 494 | cpu: [arm64] 495 | os: [linux] 496 | libc: [musl] 497 | 498 | '@img/sharp-linuxmusl-x64@0.33.5': 499 | resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==} 500 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 501 | cpu: [x64] 502 | os: [linux] 503 | libc: [musl] 504 | 505 | '@img/sharp-wasm32@0.33.5': 506 | resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==} 507 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 508 | cpu: [wasm32] 509 | 510 | '@img/sharp-win32-ia32@0.33.5': 511 | resolution: {integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==} 512 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 513 | cpu: [ia32] 514 | os: [win32] 515 | 516 | '@img/sharp-win32-x64@0.33.5': 517 | resolution: {integrity: sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==} 518 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 519 | cpu: [x64] 520 | os: [win32] 521 | 522 | '@jridgewell/resolve-uri@3.1.2': 523 | resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} 524 | engines: {node: '>=6.0.0'} 525 | 526 | '@jridgewell/sourcemap-codec@1.5.5': 527 | resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} 528 | 529 | '@jridgewell/trace-mapping@0.3.9': 530 | resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} 531 | 532 | '@poppinss/colors@4.1.5': 533 | resolution: {integrity: sha512-FvdDqtcRCtz6hThExcFOgW0cWX+xwSMWcRuQe5ZEb2m7cVQOAVZOIMt+/v9RxGiD9/OY16qJBXK4CVKWAPalBw==} 534 | 535 | '@poppinss/dumper@0.6.4': 536 | resolution: {integrity: sha512-iG0TIdqv8xJ3Lt9O8DrPRxw1MRLjNpoqiSGU03P/wNLP/s0ra0udPJ1J2Tx5M0J3H/cVyEgpbn8xUKRY9j59kQ==} 537 | 538 | '@poppinss/exception@1.2.2': 539 | resolution: {integrity: sha512-m7bpKCD4QMlFCjA/nKTs23fuvoVFoA83brRKmObCUNmi/9tVu8Ve3w4YQAnJu4q3Tjf5fr685HYIC/IA2zHRSg==} 540 | 541 | '@rolldown/pluginutils@1.0.0-beta.29': 542 | resolution: {integrity: sha512-NIJgOsMjbxAXvoGq/X0gD7VPMQ8j9g0BiDaNjVNVjvl+iKXxL3Jre0v31RmBYeLEmkbj2s02v8vFTbUXi5XS2Q==} 543 | 544 | '@rollup/rollup-android-arm-eabi@4.52.5': 545 | resolution: {integrity: sha512-8c1vW4ocv3UOMp9K+gToY5zL2XiiVw3k7f1ksf4yO1FlDFQ1C2u72iACFnSOceJFsWskc2WZNqeRhFRPzv+wtQ==} 546 | cpu: [arm] 547 | os: [android] 548 | 549 | '@rollup/rollup-android-arm64@4.52.5': 550 | resolution: {integrity: sha512-mQGfsIEFcu21mvqkEKKu2dYmtuSZOBMmAl5CFlPGLY94Vlcm+zWApK7F/eocsNzp8tKmbeBP8yXyAbx0XHsFNA==} 551 | cpu: [arm64] 552 | os: [android] 553 | 554 | '@rollup/rollup-darwin-arm64@4.52.5': 555 | resolution: {integrity: sha512-takF3CR71mCAGA+v794QUZ0b6ZSrgJkArC+gUiG6LB6TQty9T0Mqh3m2ImRBOxS2IeYBo4lKWIieSvnEk2OQWA==} 556 | cpu: [arm64] 557 | os: [darwin] 558 | 559 | '@rollup/rollup-darwin-x64@4.52.5': 560 | resolution: {integrity: sha512-W901Pla8Ya95WpxDn//VF9K9u2JbocwV/v75TE0YIHNTbhqUTv9w4VuQ9MaWlNOkkEfFwkdNhXgcLqPSmHy0fA==} 561 | cpu: [x64] 562 | os: [darwin] 563 | 564 | '@rollup/rollup-freebsd-arm64@4.52.5': 565 | resolution: {integrity: sha512-QofO7i7JycsYOWxe0GFqhLmF6l1TqBswJMvICnRUjqCx8b47MTo46W8AoeQwiokAx3zVryVnxtBMcGcnX12LvA==} 566 | cpu: [arm64] 567 | os: [freebsd] 568 | 569 | '@rollup/rollup-freebsd-x64@4.52.5': 570 | resolution: {integrity: sha512-jr21b/99ew8ujZubPo9skbrItHEIE50WdV86cdSoRkKtmWa+DDr6fu2c/xyRT0F/WazZpam6kk7IHBerSL7LDQ==} 571 | cpu: [x64] 572 | os: [freebsd] 573 | 574 | '@rollup/rollup-linux-arm-gnueabihf@4.52.5': 575 | resolution: {integrity: sha512-PsNAbcyv9CcecAUagQefwX8fQn9LQ4nZkpDboBOttmyffnInRy8R8dSg6hxxl2Re5QhHBf6FYIDhIj5v982ATQ==} 576 | cpu: [arm] 577 | os: [linux] 578 | libc: [glibc] 579 | 580 | '@rollup/rollup-linux-arm-musleabihf@4.52.5': 581 | resolution: {integrity: sha512-Fw4tysRutyQc/wwkmcyoqFtJhh0u31K+Q6jYjeicsGJJ7bbEq8LwPWV/w0cnzOqR2m694/Af6hpFayLJZkG2VQ==} 582 | cpu: [arm] 583 | os: [linux] 584 | libc: [musl] 585 | 586 | '@rollup/rollup-linux-arm64-gnu@4.52.5': 587 | resolution: {integrity: sha512-a+3wVnAYdQClOTlyapKmyI6BLPAFYs0JM8HRpgYZQO02rMR09ZcV9LbQB+NL6sljzG38869YqThrRnfPMCDtZg==} 588 | cpu: [arm64] 589 | os: [linux] 590 | libc: [glibc] 591 | 592 | '@rollup/rollup-linux-arm64-musl@4.52.5': 593 | resolution: {integrity: sha512-AvttBOMwO9Pcuuf7m9PkC1PUIKsfaAJ4AYhy944qeTJgQOqJYJ9oVl2nYgY7Rk0mkbsuOpCAYSs6wLYB2Xiw0Q==} 594 | cpu: [arm64] 595 | os: [linux] 596 | libc: [musl] 597 | 598 | '@rollup/rollup-linux-loong64-gnu@4.52.5': 599 | resolution: {integrity: sha512-DkDk8pmXQV2wVrF6oq5tONK6UHLz/XcEVow4JTTerdeV1uqPeHxwcg7aFsfnSm9L+OO8WJsWotKM2JJPMWrQtA==} 600 | cpu: [loong64] 601 | os: [linux] 602 | libc: [glibc] 603 | 604 | '@rollup/rollup-linux-ppc64-gnu@4.52.5': 605 | resolution: {integrity: sha512-W/b9ZN/U9+hPQVvlGwjzi+Wy4xdoH2I8EjaCkMvzpI7wJUs8sWJ03Rq96jRnHkSrcHTpQe8h5Tg3ZzUPGauvAw==} 606 | cpu: [ppc64] 607 | os: [linux] 608 | libc: [glibc] 609 | 610 | '@rollup/rollup-linux-riscv64-gnu@4.52.5': 611 | resolution: {integrity: sha512-sjQLr9BW7R/ZiXnQiWPkErNfLMkkWIoCz7YMn27HldKsADEKa5WYdobaa1hmN6slu9oWQbB6/jFpJ+P2IkVrmw==} 612 | cpu: [riscv64] 613 | os: [linux] 614 | libc: [glibc] 615 | 616 | '@rollup/rollup-linux-riscv64-musl@4.52.5': 617 | resolution: {integrity: sha512-hq3jU/kGyjXWTvAh2awn8oHroCbrPm8JqM7RUpKjalIRWWXE01CQOf/tUNWNHjmbMHg/hmNCwc/Pz3k1T/j/Lg==} 618 | cpu: [riscv64] 619 | os: [linux] 620 | libc: [musl] 621 | 622 | '@rollup/rollup-linux-s390x-gnu@4.52.5': 623 | resolution: {integrity: sha512-gn8kHOrku8D4NGHMK1Y7NA7INQTRdVOntt1OCYypZPRt6skGbddska44K8iocdpxHTMMNui5oH4elPH4QOLrFQ==} 624 | cpu: [s390x] 625 | os: [linux] 626 | libc: [glibc] 627 | 628 | '@rollup/rollup-linux-x64-gnu@4.52.5': 629 | resolution: {integrity: sha512-hXGLYpdhiNElzN770+H2nlx+jRog8TyynpTVzdlc6bndktjKWyZyiCsuDAlpd+j+W+WNqfcyAWz9HxxIGfZm1Q==} 630 | cpu: [x64] 631 | os: [linux] 632 | libc: [glibc] 633 | 634 | '@rollup/rollup-linux-x64-musl@4.52.5': 635 | resolution: {integrity: sha512-arCGIcuNKjBoKAXD+y7XomR9gY6Mw7HnFBv5Rw7wQRvwYLR7gBAgV7Mb2QTyjXfTveBNFAtPt46/36vV9STLNg==} 636 | cpu: [x64] 637 | os: [linux] 638 | libc: [musl] 639 | 640 | '@rollup/rollup-openharmony-arm64@4.52.5': 641 | resolution: {integrity: sha512-QoFqB6+/9Rly/RiPjaomPLmR/13cgkIGfA40LHly9zcH1S0bN2HVFYk3a1eAyHQyjs3ZJYlXvIGtcCs5tko9Cw==} 642 | cpu: [arm64] 643 | os: [openharmony] 644 | 645 | '@rollup/rollup-win32-arm64-msvc@4.52.5': 646 | resolution: {integrity: sha512-w0cDWVR6MlTstla1cIfOGyl8+qb93FlAVutcor14Gf5Md5ap5ySfQ7R9S/NjNaMLSFdUnKGEasmVnu3lCMqB7w==} 647 | cpu: [arm64] 648 | os: [win32] 649 | 650 | '@rollup/rollup-win32-ia32-msvc@4.52.5': 651 | resolution: {integrity: sha512-Aufdpzp7DpOTULJCuvzqcItSGDH73pF3ko/f+ckJhxQyHtp67rHw3HMNxoIdDMUITJESNE6a8uh4Lo4SLouOUg==} 652 | cpu: [ia32] 653 | os: [win32] 654 | 655 | '@rollup/rollup-win32-x64-gnu@4.52.5': 656 | resolution: {integrity: sha512-UGBUGPFp1vkj6p8wCRraqNhqwX/4kNQPS57BCFc8wYh0g94iVIW33wJtQAx3G7vrjjNtRaxiMUylM0ktp/TRSQ==} 657 | cpu: [x64] 658 | os: [win32] 659 | 660 | '@rollup/rollup-win32-x64-msvc@4.52.5': 661 | resolution: {integrity: sha512-TAcgQh2sSkykPRWLrdyy2AiceMckNf5loITqXxFI5VuQjS5tSuw3WlwdN8qv8vzjLAUTvYaH/mVjSFpbkFbpTg==} 662 | cpu: [x64] 663 | os: [win32] 664 | 665 | '@shikijs/core@3.13.0': 666 | resolution: {integrity: sha512-3P8rGsg2Eh2qIHekwuQjzWhKI4jV97PhvYjYUzGqjvJfqdQPz+nMlfWahU24GZAyW1FxFI1sYjyhfh5CoLmIUA==} 667 | 668 | '@shikijs/engine-javascript@3.13.0': 669 | resolution: {integrity: sha512-Ty7xv32XCp8u0eQt8rItpMs6rU9Ki6LJ1dQOW3V/56PKDcpvfHPnYFbsx5FFUP2Yim34m/UkazidamMNVR4vKg==} 670 | 671 | '@shikijs/engine-oniguruma@3.13.0': 672 | resolution: {integrity: sha512-O42rBGr4UDSlhT2ZFMxqM7QzIU+IcpoTMzb3W7AlziI1ZF7R8eS2M0yt5Ry35nnnTX/LTLXFPUjRFCIW+Operg==} 673 | 674 | '@shikijs/langs@3.13.0': 675 | resolution: {integrity: sha512-672c3WAETDYHwrRP0yLy3W1QYB89Hbpj+pO4KhxK6FzIrDI2FoEXNiNCut6BQmEApYLfuYfpgOZaqbY+E9b8wQ==} 676 | 677 | '@shikijs/themes@3.13.0': 678 | resolution: {integrity: sha512-Vxw1Nm1/Od8jyA7QuAenaV78BG2nSr3/gCGdBkLpfLscddCkzkL36Q5b67SrLLfvAJTOUzW39x4FHVCFriPVgg==} 679 | 680 | '@shikijs/transformers@3.13.0': 681 | resolution: {integrity: sha512-833lcuVzcRiG+fXvgslWsM2f4gHpjEgui1ipIknSizRuTgMkNZupiXE5/TVJ6eSYfhNBFhBZKkReKWO2GgYmqA==} 682 | 683 | '@shikijs/types@3.13.0': 684 | resolution: {integrity: sha512-oM9P+NCFri/mmQ8LoFGVfVyemm5Hi27330zuOBp0annwJdKH1kOLndw3zCtAVDehPLg9fKqoEx3Ht/wNZxolfw==} 685 | 686 | '@shikijs/vscode-textmate@10.0.2': 687 | resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==} 688 | 689 | '@sindresorhus/is@7.1.0': 690 | resolution: {integrity: sha512-7F/yz2IphV39hiS2zB4QYVkivrptHHh0K8qJJd9HhuWSdvf8AN7NpebW3CcDZDBQsUPMoDKWsY2WWgW7bqOcfA==} 691 | engines: {node: '>=18'} 692 | 693 | '@speed-highlight/core@1.2.7': 694 | resolution: {integrity: sha512-0dxmVj4gxg3Jg879kvFS/msl4s9F3T9UXC1InxgOf7t5NvcPD97u/WTA5vL/IxWHMn7qSxBozqrnnE2wvl1m8g==} 695 | 696 | '@types/estree@1.0.8': 697 | resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} 698 | 699 | '@types/hast@3.0.4': 700 | resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} 701 | 702 | '@types/linkify-it@5.0.0': 703 | resolution: {integrity: sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==} 704 | 705 | '@types/markdown-it@14.1.2': 706 | resolution: {integrity: sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==} 707 | 708 | '@types/mdast@4.0.4': 709 | resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} 710 | 711 | '@types/mdurl@2.0.0': 712 | resolution: {integrity: sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==} 713 | 714 | '@types/unist@3.0.3': 715 | resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} 716 | 717 | '@types/web-bluetooth@0.0.21': 718 | resolution: {integrity: sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA==} 719 | 720 | '@ungap/structured-clone@1.3.0': 721 | resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==} 722 | 723 | '@vitejs/plugin-vue@6.0.1': 724 | resolution: {integrity: sha512-+MaE752hU0wfPFJEUAIxqw18+20euHHdxVtMvbFcOEpjEyfqXH/5DCoTHiVJ0J29EhTJdoTkjEv5YBKU9dnoTw==} 725 | engines: {node: ^20.19.0 || >=22.12.0} 726 | peerDependencies: 727 | vite: ^5.0.0 || ^6.0.0 || ^7.0.0 728 | vue: ^3.2.25 729 | 730 | '@vue/compiler-core@3.5.22': 731 | resolution: {integrity: sha512-jQ0pFPmZwTEiRNSb+i9Ow/I/cHv2tXYqsnHKKyCQ08irI2kdF5qmYedmF8si8mA7zepUFmJ2hqzS8CQmNOWOkQ==} 732 | 733 | '@vue/compiler-dom@3.5.22': 734 | resolution: {integrity: sha512-W8RknzUM1BLkypvdz10OVsGxnMAuSIZs9Wdx1vzA3mL5fNMN15rhrSCLiTm6blWeACwUwizzPVqGJgOGBEN/hA==} 735 | 736 | '@vue/compiler-sfc@3.5.22': 737 | resolution: {integrity: sha512-tbTR1zKGce4Lj+JLzFXDq36K4vcSZbJ1RBu8FxcDv1IGRz//Dh2EBqksyGVypz3kXpshIfWKGOCcqpSbyGWRJQ==} 738 | 739 | '@vue/compiler-ssr@3.5.22': 740 | resolution: {integrity: sha512-GdgyLvg4R+7T8Nk2Mlighx7XGxq/fJf9jaVofc3IL0EPesTE86cP/8DD1lT3h1JeZr2ySBvyqKQJgbS54IX1Ww==} 741 | 742 | '@vue/devtools-api@8.0.3': 743 | resolution: {integrity: sha512-YxZE7xNvvfq5XmjJh1ml+CzVNrRjuZYCuT5Xjj0u9RlXU7za/MRuZDUXcKfp0j7IvYkDut49vlKqbiQ1xhXP2w==} 744 | 745 | '@vue/devtools-kit@8.0.3': 746 | resolution: {integrity: sha512-UF4YUOVGdfzXLCv5pMg2DxocB8dvXz278fpgEE+nJ/DRALQGAva7sj9ton0VWZ9hmXw+SV8yKMrxP2MpMhq9Wg==} 747 | 748 | '@vue/devtools-shared@8.0.3': 749 | resolution: {integrity: sha512-s/QNll7TlpbADFZrPVsaUNPCOF8NvQgtgmmB7Tip6pLf/HcOvBTly0lfLQ0Eylu9FQ4OqBhFpLyBgwykiSf8zw==} 750 | 751 | '@vue/reactivity@3.5.22': 752 | resolution: {integrity: sha512-f2Wux4v/Z2pqc9+4SmgZC1p73Z53fyD90NFWXiX9AKVnVBEvLFOWCEgJD3GdGnlxPZt01PSlfmLqbLYzY/Fw4A==} 753 | 754 | '@vue/runtime-core@3.5.22': 755 | resolution: {integrity: sha512-EHo4W/eiYeAzRTN5PCextDUZ0dMs9I8mQ2Fy+OkzvRPUYQEyK9yAjbasrMCXbLNhF7P0OUyivLjIy0yc6VrLJQ==} 756 | 757 | '@vue/runtime-dom@3.5.22': 758 | resolution: {integrity: sha512-Av60jsryAkI023PlN7LsqrfPvwfxOd2yAwtReCjeuugTJTkgrksYJJstg1e12qle0NarkfhfFu1ox2D+cQotww==} 759 | 760 | '@vue/server-renderer@3.5.22': 761 | resolution: {integrity: sha512-gXjo+ao0oHYTSswF+a3KRHZ1WszxIqO7u6XwNHqcqb9JfyIL/pbWrrh/xLv7jeDqla9u+LK7yfZKHih1e1RKAQ==} 762 | peerDependencies: 763 | vue: 3.5.22 764 | 765 | '@vue/shared@3.5.22': 766 | resolution: {integrity: sha512-F4yc6palwq3TT0u+FYf0Ns4Tfl9GRFURDN2gWG7L1ecIaS/4fCIuFOjMTnCyjsu/OK6vaDKLCrGAa+KvvH+h4w==} 767 | 768 | '@vueuse/core@13.9.0': 769 | resolution: {integrity: sha512-ts3regBQyURfCE2BcytLqzm8+MmLlo5Ln/KLoxDVcsZ2gzIwVNnQpQOL/UKV8alUqjSZOlpFZcRNsLRqj+OzyA==} 770 | peerDependencies: 771 | vue: ^3.5.0 772 | 773 | '@vueuse/integrations@13.9.0': 774 | resolution: {integrity: sha512-SDobKBbPIOe0cVL7QxMzGkuUGHvWTdihi9zOrrWaWUgFKe15cwEcwfWmgrcNzjT6kHnNmWuTajPHoIzUjYNYYQ==} 775 | peerDependencies: 776 | async-validator: ^4 777 | axios: ^1 778 | change-case: ^5 779 | drauu: ^0.4 780 | focus-trap: ^7 781 | fuse.js: ^7 782 | idb-keyval: ^6 783 | jwt-decode: ^4 784 | nprogress: ^0.2 785 | qrcode: ^1.5 786 | sortablejs: ^1 787 | universal-cookie: ^7 || ^8 788 | vue: ^3.5.0 789 | peerDependenciesMeta: 790 | async-validator: 791 | optional: true 792 | axios: 793 | optional: true 794 | change-case: 795 | optional: true 796 | drauu: 797 | optional: true 798 | focus-trap: 799 | optional: true 800 | fuse.js: 801 | optional: true 802 | idb-keyval: 803 | optional: true 804 | jwt-decode: 805 | optional: true 806 | nprogress: 807 | optional: true 808 | qrcode: 809 | optional: true 810 | sortablejs: 811 | optional: true 812 | universal-cookie: 813 | optional: true 814 | 815 | '@vueuse/metadata@13.9.0': 816 | resolution: {integrity: sha512-1AFRvuiGphfF7yWixZa0KwjYH8ulyjDCC0aFgrGRz8+P4kvDFSdXLVfTk5xAN9wEuD1J6z4/myMoYbnHoX07zg==} 817 | 818 | '@vueuse/shared@13.9.0': 819 | resolution: {integrity: sha512-e89uuTLMh0U5cZ9iDpEI2senqPGfbPRTHM/0AaQkcxnpqjkZqDYP8rpfm7edOz8s+pOCOROEy1PIveSW8+fL5g==} 820 | peerDependencies: 821 | vue: ^3.5.0 822 | 823 | acorn-walk@8.3.2: 824 | resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==} 825 | engines: {node: '>=0.4.0'} 826 | 827 | acorn@8.14.0: 828 | resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} 829 | engines: {node: '>=0.4.0'} 830 | hasBin: true 831 | 832 | birpc@2.6.1: 833 | resolution: {integrity: sha512-LPnFhlDpdSH6FJhJyn4M0kFO7vtQ5iPw24FnG0y21q09xC7e8+1LeR31S1MAIrDAHp4m7aas4bEkTDTvMAtebQ==} 834 | 835 | blake3-wasm@2.1.5: 836 | resolution: {integrity: sha512-F1+K8EbfOZE49dtoPtmxUQrpXaBIl3ICvasLh+nJta0xkz+9kF/7uet9fLnwKqhDrmj6g+6K3Tw9yQPUg2ka5g==} 837 | 838 | ccount@2.0.1: 839 | resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} 840 | 841 | character-entities-html4@2.1.0: 842 | resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} 843 | 844 | character-entities-legacy@3.0.0: 845 | resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} 846 | 847 | color-convert@2.0.1: 848 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 849 | engines: {node: '>=7.0.0'} 850 | 851 | color-name@1.1.4: 852 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 853 | 854 | color-string@1.9.1: 855 | resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} 856 | 857 | color@4.2.3: 858 | resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} 859 | engines: {node: '>=12.5.0'} 860 | 861 | comma-separated-tokens@2.0.3: 862 | resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} 863 | 864 | cookie@1.0.2: 865 | resolution: {integrity: sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==} 866 | engines: {node: '>=18'} 867 | 868 | copy-anything@3.0.5: 869 | resolution: {integrity: sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==} 870 | engines: {node: '>=12.13'} 871 | 872 | csstype@3.1.3: 873 | resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} 874 | 875 | defu@6.1.4: 876 | resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} 877 | 878 | dequal@2.0.3: 879 | resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 880 | engines: {node: '>=6'} 881 | 882 | detect-libc@2.1.2: 883 | resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==} 884 | engines: {node: '>=8'} 885 | 886 | devlop@1.1.0: 887 | resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} 888 | 889 | entities@4.5.0: 890 | resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} 891 | engines: {node: '>=0.12'} 892 | 893 | error-stack-parser-es@1.0.5: 894 | resolution: {integrity: sha512-5qucVt2XcuGMcEGgWI7i+yZpmpByQ8J1lHhcL7PwqCwu9FPP3VUXzT4ltHe5i2z9dePwEHcDVOAfSnHsOlCXRA==} 895 | 896 | esbuild@0.25.11: 897 | resolution: {integrity: sha512-KohQwyzrKTQmhXDW1PjCv3Tyspn9n5GcY2RTDqeORIdIJY8yKIF7sTSopFmn/wpMPW4rdPXI0UE5LJLuq3bx0Q==} 898 | engines: {node: '>=18'} 899 | hasBin: true 900 | 901 | esbuild@0.25.4: 902 | resolution: {integrity: sha512-8pgjLUcUjcgDg+2Q4NYXnPbo/vncAY4UmyaCm0jZevERqCHZIaWwdJHkf8XQtu4AxSKCdvrUbT0XUr1IdZzI8Q==} 903 | engines: {node: '>=18'} 904 | hasBin: true 905 | 906 | estree-walker@2.0.2: 907 | resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} 908 | 909 | exit-hook@2.2.1: 910 | resolution: {integrity: sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw==} 911 | engines: {node: '>=6'} 912 | 913 | exsolve@1.0.7: 914 | resolution: {integrity: sha512-VO5fQUzZtI6C+vx4w/4BWJpg3s/5l+6pRQEHzFRM8WFi4XffSP1Z+4qi7GbjWbvRQEbdIco5mIMq+zX4rPuLrw==} 915 | 916 | fdir@6.5.0: 917 | resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} 918 | engines: {node: '>=12.0.0'} 919 | peerDependencies: 920 | picomatch: ^3 || ^4 921 | peerDependenciesMeta: 922 | picomatch: 923 | optional: true 924 | 925 | focus-trap@7.6.5: 926 | resolution: {integrity: sha512-7Ke1jyybbbPZyZXFxEftUtxFGLMpE2n6A+z//m4CRDlj0hW+o3iYSmh8nFlYMurOiJVDmJRilUQtJr08KfIxlg==} 927 | 928 | fsevents@2.3.3: 929 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 930 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 931 | os: [darwin] 932 | 933 | glob-to-regexp@0.4.1: 934 | resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} 935 | 936 | hast-util-to-html@9.0.5: 937 | resolution: {integrity: sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==} 938 | 939 | hast-util-whitespace@3.0.0: 940 | resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==} 941 | 942 | hookable@5.5.3: 943 | resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==} 944 | 945 | html-void-elements@3.0.0: 946 | resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==} 947 | 948 | is-arrayish@0.3.4: 949 | resolution: {integrity: sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==} 950 | 951 | is-what@4.1.16: 952 | resolution: {integrity: sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==} 953 | engines: {node: '>=12.13'} 954 | 955 | kleur@4.1.5: 956 | resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} 957 | engines: {node: '>=6'} 958 | 959 | magic-string@0.30.19: 960 | resolution: {integrity: sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==} 961 | 962 | mark.js@8.11.1: 963 | resolution: {integrity: sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==} 964 | 965 | mdast-util-to-hast@13.2.0: 966 | resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==} 967 | 968 | micromark-util-character@2.1.1: 969 | resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==} 970 | 971 | micromark-util-encode@2.0.1: 972 | resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==} 973 | 974 | micromark-util-sanitize-uri@2.0.1: 975 | resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==} 976 | 977 | micromark-util-symbol@2.0.1: 978 | resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==} 979 | 980 | micromark-util-types@2.0.2: 981 | resolution: {integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==} 982 | 983 | mime@3.0.0: 984 | resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==} 985 | engines: {node: '>=10.0.0'} 986 | hasBin: true 987 | 988 | miniflare@4.20251011.0: 989 | resolution: {integrity: sha512-DlZ7vR5q/RE9eLsxsrXzfSZIF2f6O5k0YsFrSKhWUtdefyGtJt4sSpR6V+Af/waaZ6+zIFy9lsknHBCm49sEYA==} 990 | engines: {node: '>=18.0.0'} 991 | hasBin: true 992 | 993 | minisearch@7.2.0: 994 | resolution: {integrity: sha512-dqT2XBYUOZOiC5t2HRnwADjhNS2cecp9u+TJRiJ1Qp/f5qjkeT5APcGPjHw+bz89Ms8Jp+cG4AlE+QZ/QnDglg==} 995 | 996 | mitt@3.0.1: 997 | resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==} 998 | 999 | nanoid@3.3.11: 1000 | resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} 1001 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 1002 | hasBin: true 1003 | 1004 | ohash@2.0.11: 1005 | resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==} 1006 | 1007 | oniguruma-parser@0.12.1: 1008 | resolution: {integrity: sha512-8Unqkvk1RYc6yq2WBYRj4hdnsAxVze8i7iPfQr8e4uSP3tRv0rpZcbGUDvxfQQcdwHt/e9PrMvGCsa8OqG9X3w==} 1009 | 1010 | oniguruma-to-es@4.3.3: 1011 | resolution: {integrity: sha512-rPiZhzC3wXwE59YQMRDodUwwT9FZ9nNBwQQfsd1wfdtlKEyCdRV0avrTcSZ5xlIvGRVPd/cx6ZN45ECmS39xvg==} 1012 | 1013 | path-to-regexp@6.3.0: 1014 | resolution: {integrity: sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==} 1015 | 1016 | pathe@2.0.3: 1017 | resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==} 1018 | 1019 | perfect-debounce@2.0.0: 1020 | resolution: {integrity: sha512-fkEH/OBiKrqqI/yIgjR92lMfs2K8105zt/VT6+7eTjNwisrsh47CeIED9z58zI7DfKdH3uHAn25ziRZn3kgAow==} 1021 | 1022 | picocolors@1.1.1: 1023 | resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} 1024 | 1025 | picomatch@4.0.3: 1026 | resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==} 1027 | engines: {node: '>=12'} 1028 | 1029 | postcss@8.5.6: 1030 | resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} 1031 | engines: {node: ^10 || ^12 || >=14} 1032 | 1033 | property-information@7.1.0: 1034 | resolution: {integrity: sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==} 1035 | 1036 | regex-recursion@6.0.2: 1037 | resolution: {integrity: sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==} 1038 | 1039 | regex-utilities@2.3.0: 1040 | resolution: {integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==} 1041 | 1042 | regex@6.0.1: 1043 | resolution: {integrity: sha512-uorlqlzAKjKQZ5P+kTJr3eeJGSVroLKoHmquUj4zHWuR+hEyNqlXsSKlYYF5F4NI6nl7tWCs0apKJ0lmfsXAPA==} 1044 | 1045 | rfdc@1.4.1: 1046 | resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} 1047 | 1048 | rollup@4.52.5: 1049 | resolution: {integrity: sha512-3GuObel8h7Kqdjt0gxkEzaifHTqLVW56Y/bjN7PSQtkKr0w3V/QYSdt6QWYtd7A1xUtYQigtdUfgj1RvWVtorw==} 1050 | engines: {node: '>=18.0.0', npm: '>=8.0.0'} 1051 | hasBin: true 1052 | 1053 | semver@7.7.3: 1054 | resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==} 1055 | engines: {node: '>=10'} 1056 | hasBin: true 1057 | 1058 | sharp@0.33.5: 1059 | resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==} 1060 | engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 1061 | 1062 | shiki@3.13.0: 1063 | resolution: {integrity: sha512-aZW4l8Og16CokuCLf8CF8kq+KK2yOygapU5m3+hoGw0Mdosc6fPitjM+ujYarppj5ZIKGyPDPP1vqmQhr+5/0g==} 1064 | 1065 | simple-swizzle@0.2.4: 1066 | resolution: {integrity: sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==} 1067 | 1068 | source-map-js@1.2.1: 1069 | resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} 1070 | engines: {node: '>=0.10.0'} 1071 | 1072 | space-separated-tokens@2.0.2: 1073 | resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} 1074 | 1075 | speakingurl@14.0.1: 1076 | resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==} 1077 | engines: {node: '>=0.10.0'} 1078 | 1079 | stoppable@1.1.0: 1080 | resolution: {integrity: sha512-KXDYZ9dszj6bzvnEMRYvxgeTHU74QBFL54XKtP3nyMuJ81CFYtABZ3bAzL2EdFUaEwJOBOgENyFj3R7oTzDyyw==} 1081 | engines: {node: '>=4', npm: '>=6'} 1082 | 1083 | stringify-entities@4.0.4: 1084 | resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==} 1085 | 1086 | superjson@2.2.2: 1087 | resolution: {integrity: sha512-5JRxVqC8I8NuOUjzBbvVJAKNM8qoVuH0O77h4WInc/qC2q5IreqKxYwgkga3PfA22OayK2ikceb/B26dztPl+Q==} 1088 | engines: {node: '>=16'} 1089 | 1090 | supports-color@10.2.2: 1091 | resolution: {integrity: sha512-SS+jx45GF1QjgEXQx4NJZV9ImqmO2NPz5FNsIHrsDjh2YsHnawpan7SNQ1o8NuhrbHZy9AZhIoCUiCeaW/C80g==} 1092 | engines: {node: '>=18'} 1093 | 1094 | tabbable@6.2.0: 1095 | resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==} 1096 | 1097 | tinyglobby@0.2.15: 1098 | resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} 1099 | engines: {node: '>=12.0.0'} 1100 | 1101 | trim-lines@3.0.1: 1102 | resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} 1103 | 1104 | tslib@2.8.1: 1105 | resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} 1106 | 1107 | ufo@1.6.1: 1108 | resolution: {integrity: sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==} 1109 | 1110 | undici@7.14.0: 1111 | resolution: {integrity: sha512-Vqs8HTzjpQXZeXdpsfChQTlafcMQaaIwnGwLam1wudSSjlJeQ3bw1j+TLPePgrCnCpUXx7Ba5Pdpf5OBih62NQ==} 1112 | engines: {node: '>=20.18.1'} 1113 | 1114 | unenv@2.0.0-rc.21: 1115 | resolution: {integrity: sha512-Wj7/AMtE9MRnAXa6Su3Lk0LNCfqDYgfwVjwRFVum9U7wsto1imuHqk4kTm7Jni+5A0Hn7dttL6O/zjvUvoo+8A==} 1116 | 1117 | unist-util-is@6.0.1: 1118 | resolution: {integrity: sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==} 1119 | 1120 | unist-util-position@5.0.0: 1121 | resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==} 1122 | 1123 | unist-util-stringify-position@4.0.0: 1124 | resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} 1125 | 1126 | unist-util-visit-parents@6.0.2: 1127 | resolution: {integrity: sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==} 1128 | 1129 | unist-util-visit@5.0.0: 1130 | resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} 1131 | 1132 | vfile-message@4.0.3: 1133 | resolution: {integrity: sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==} 1134 | 1135 | vfile@6.0.3: 1136 | resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==} 1137 | 1138 | vite@7.1.11: 1139 | resolution: {integrity: sha512-uzcxnSDVjAopEUjljkWh8EIrg6tlzrjFUfMcR1EVsRDGwf/ccef0qQPRyOrROwhrTDaApueq+ja+KLPlzR/zdg==} 1140 | engines: {node: ^20.19.0 || >=22.12.0} 1141 | hasBin: true 1142 | peerDependencies: 1143 | '@types/node': ^20.19.0 || >=22.12.0 1144 | jiti: '>=1.21.0' 1145 | less: ^4.0.0 1146 | lightningcss: ^1.21.0 1147 | sass: ^1.70.0 1148 | sass-embedded: ^1.70.0 1149 | stylus: '>=0.54.8' 1150 | sugarss: ^5.0.0 1151 | terser: ^5.16.0 1152 | tsx: ^4.8.1 1153 | yaml: ^2.4.2 1154 | peerDependenciesMeta: 1155 | '@types/node': 1156 | optional: true 1157 | jiti: 1158 | optional: true 1159 | less: 1160 | optional: true 1161 | lightningcss: 1162 | optional: true 1163 | sass: 1164 | optional: true 1165 | sass-embedded: 1166 | optional: true 1167 | stylus: 1168 | optional: true 1169 | sugarss: 1170 | optional: true 1171 | terser: 1172 | optional: true 1173 | tsx: 1174 | optional: true 1175 | yaml: 1176 | optional: true 1177 | 1178 | vitepress@2.0.0-alpha.12: 1179 | resolution: {integrity: sha512-yZwCwRRepcpN5QeAhwSnEJxS3I6zJcVixqL1dnm6km4cnriLpQyy2sXQDsE5Ti3pxGPbhU51nTMwI+XC1KNnJg==} 1180 | hasBin: true 1181 | peerDependencies: 1182 | markdown-it-mathjax3: ^4 1183 | oxc-minify: ^0.82.1 1184 | postcss: ^8 1185 | peerDependenciesMeta: 1186 | markdown-it-mathjax3: 1187 | optional: true 1188 | oxc-minify: 1189 | optional: true 1190 | postcss: 1191 | optional: true 1192 | 1193 | vue@3.5.22: 1194 | resolution: {integrity: sha512-toaZjQ3a/G/mYaLSbV+QsQhIdMo9x5rrqIpYRObsJ6T/J+RyCSFwN2LHNVH9v8uIcljDNa3QzPVdv3Y6b9hAJQ==} 1195 | peerDependencies: 1196 | typescript: '*' 1197 | peerDependenciesMeta: 1198 | typescript: 1199 | optional: true 1200 | 1201 | workerd@1.20251011.0: 1202 | resolution: {integrity: sha512-Dq35TLPEJAw7BuYQMkN3p9rge34zWMU2Gnd4DSJFeVqld4+DAO2aPG7+We2dNIAyM97S8Y9BmHulbQ00E0HC7Q==} 1203 | engines: {node: '>=16'} 1204 | hasBin: true 1205 | 1206 | wrangler@4.44.0: 1207 | resolution: {integrity: sha512-BLOUigckcWZ0r4rm7b5PuaTpb9KP9as0XeCRSJ8kqcNgXcKoUD3Ij8FlPvN25KybLnFnetaO0ZdfRYUPWle4qw==} 1208 | engines: {node: '>=18.0.0'} 1209 | hasBin: true 1210 | peerDependencies: 1211 | '@cloudflare/workers-types': ^4.20251011.0 1212 | peerDependenciesMeta: 1213 | '@cloudflare/workers-types': 1214 | optional: true 1215 | 1216 | ws@8.18.0: 1217 | resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==} 1218 | engines: {node: '>=10.0.0'} 1219 | peerDependencies: 1220 | bufferutil: ^4.0.1 1221 | utf-8-validate: '>=5.0.2' 1222 | peerDependenciesMeta: 1223 | bufferutil: 1224 | optional: true 1225 | utf-8-validate: 1226 | optional: true 1227 | 1228 | youch-core@0.3.3: 1229 | resolution: {integrity: sha512-ho7XuGjLaJ2hWHoK8yFnsUGy2Y5uDpqSTq1FkHLK4/oqKtyUU1AFbOOxY4IpC9f0fTLjwYbslUz0Po5BpD1wrA==} 1230 | 1231 | youch@4.1.0-beta.10: 1232 | resolution: {integrity: sha512-rLfVLB4FgQneDr0dv1oddCVZmKjcJ6yX6mS4pU82Mq/Dt9a3cLZQ62pDBL4AUO+uVrCvtWz3ZFUL2HFAFJ/BXQ==} 1233 | 1234 | zod@3.22.3: 1235 | resolution: {integrity: sha512-EjIevzuJRiRPbVH4mGc8nApb/lVLKVpmUhAaR5R5doKGfAnGJ6Gr3CViAVjP+4FWSxCsybeWQdcgCtbX+7oZug==} 1236 | 1237 | zwitch@2.0.4: 1238 | resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} 1239 | 1240 | snapshots: 1241 | 1242 | '@babel/helper-string-parser@7.27.1': {} 1243 | 1244 | '@babel/helper-validator-identifier@7.27.1': {} 1245 | 1246 | '@babel/parser@7.28.4': 1247 | dependencies: 1248 | '@babel/types': 7.28.4 1249 | 1250 | '@babel/types@7.28.4': 1251 | dependencies: 1252 | '@babel/helper-string-parser': 7.27.1 1253 | '@babel/helper-validator-identifier': 7.27.1 1254 | 1255 | '@cloudflare/kv-asset-handler@0.4.0': 1256 | dependencies: 1257 | mime: 3.0.0 1258 | 1259 | '@cloudflare/unenv-preset@2.7.8(unenv@2.0.0-rc.21)(workerd@1.20251011.0)': 1260 | dependencies: 1261 | unenv: 2.0.0-rc.21 1262 | optionalDependencies: 1263 | workerd: 1.20251011.0 1264 | 1265 | '@cloudflare/workerd-darwin-64@1.20251011.0': 1266 | optional: true 1267 | 1268 | '@cloudflare/workerd-darwin-arm64@1.20251011.0': 1269 | optional: true 1270 | 1271 | '@cloudflare/workerd-linux-64@1.20251011.0': 1272 | optional: true 1273 | 1274 | '@cloudflare/workerd-linux-arm64@1.20251011.0': 1275 | optional: true 1276 | 1277 | '@cloudflare/workerd-windows-64@1.20251011.0': 1278 | optional: true 1279 | 1280 | '@cspotcode/source-map-support@0.8.1': 1281 | dependencies: 1282 | '@jridgewell/trace-mapping': 0.3.9 1283 | 1284 | '@docsearch/css@4.2.0': {} 1285 | 1286 | '@docsearch/js@4.2.0': {} 1287 | 1288 | '@emnapi/runtime@1.6.0': 1289 | dependencies: 1290 | tslib: 2.8.1 1291 | optional: true 1292 | 1293 | '@esbuild/aix-ppc64@0.25.11': 1294 | optional: true 1295 | 1296 | '@esbuild/aix-ppc64@0.25.4': 1297 | optional: true 1298 | 1299 | '@esbuild/android-arm64@0.25.11': 1300 | optional: true 1301 | 1302 | '@esbuild/android-arm64@0.25.4': 1303 | optional: true 1304 | 1305 | '@esbuild/android-arm@0.25.11': 1306 | optional: true 1307 | 1308 | '@esbuild/android-arm@0.25.4': 1309 | optional: true 1310 | 1311 | '@esbuild/android-x64@0.25.11': 1312 | optional: true 1313 | 1314 | '@esbuild/android-x64@0.25.4': 1315 | optional: true 1316 | 1317 | '@esbuild/darwin-arm64@0.25.11': 1318 | optional: true 1319 | 1320 | '@esbuild/darwin-arm64@0.25.4': 1321 | optional: true 1322 | 1323 | '@esbuild/darwin-x64@0.25.11': 1324 | optional: true 1325 | 1326 | '@esbuild/darwin-x64@0.25.4': 1327 | optional: true 1328 | 1329 | '@esbuild/freebsd-arm64@0.25.11': 1330 | optional: true 1331 | 1332 | '@esbuild/freebsd-arm64@0.25.4': 1333 | optional: true 1334 | 1335 | '@esbuild/freebsd-x64@0.25.11': 1336 | optional: true 1337 | 1338 | '@esbuild/freebsd-x64@0.25.4': 1339 | optional: true 1340 | 1341 | '@esbuild/linux-arm64@0.25.11': 1342 | optional: true 1343 | 1344 | '@esbuild/linux-arm64@0.25.4': 1345 | optional: true 1346 | 1347 | '@esbuild/linux-arm@0.25.11': 1348 | optional: true 1349 | 1350 | '@esbuild/linux-arm@0.25.4': 1351 | optional: true 1352 | 1353 | '@esbuild/linux-ia32@0.25.11': 1354 | optional: true 1355 | 1356 | '@esbuild/linux-ia32@0.25.4': 1357 | optional: true 1358 | 1359 | '@esbuild/linux-loong64@0.25.11': 1360 | optional: true 1361 | 1362 | '@esbuild/linux-loong64@0.25.4': 1363 | optional: true 1364 | 1365 | '@esbuild/linux-mips64el@0.25.11': 1366 | optional: true 1367 | 1368 | '@esbuild/linux-mips64el@0.25.4': 1369 | optional: true 1370 | 1371 | '@esbuild/linux-ppc64@0.25.11': 1372 | optional: true 1373 | 1374 | '@esbuild/linux-ppc64@0.25.4': 1375 | optional: true 1376 | 1377 | '@esbuild/linux-riscv64@0.25.11': 1378 | optional: true 1379 | 1380 | '@esbuild/linux-riscv64@0.25.4': 1381 | optional: true 1382 | 1383 | '@esbuild/linux-s390x@0.25.11': 1384 | optional: true 1385 | 1386 | '@esbuild/linux-s390x@0.25.4': 1387 | optional: true 1388 | 1389 | '@esbuild/linux-x64@0.25.11': 1390 | optional: true 1391 | 1392 | '@esbuild/linux-x64@0.25.4': 1393 | optional: true 1394 | 1395 | '@esbuild/netbsd-arm64@0.25.11': 1396 | optional: true 1397 | 1398 | '@esbuild/netbsd-arm64@0.25.4': 1399 | optional: true 1400 | 1401 | '@esbuild/netbsd-x64@0.25.11': 1402 | optional: true 1403 | 1404 | '@esbuild/netbsd-x64@0.25.4': 1405 | optional: true 1406 | 1407 | '@esbuild/openbsd-arm64@0.25.11': 1408 | optional: true 1409 | 1410 | '@esbuild/openbsd-arm64@0.25.4': 1411 | optional: true 1412 | 1413 | '@esbuild/openbsd-x64@0.25.11': 1414 | optional: true 1415 | 1416 | '@esbuild/openbsd-x64@0.25.4': 1417 | optional: true 1418 | 1419 | '@esbuild/openharmony-arm64@0.25.11': 1420 | optional: true 1421 | 1422 | '@esbuild/sunos-x64@0.25.11': 1423 | optional: true 1424 | 1425 | '@esbuild/sunos-x64@0.25.4': 1426 | optional: true 1427 | 1428 | '@esbuild/win32-arm64@0.25.11': 1429 | optional: true 1430 | 1431 | '@esbuild/win32-arm64@0.25.4': 1432 | optional: true 1433 | 1434 | '@esbuild/win32-ia32@0.25.11': 1435 | optional: true 1436 | 1437 | '@esbuild/win32-ia32@0.25.4': 1438 | optional: true 1439 | 1440 | '@esbuild/win32-x64@0.25.11': 1441 | optional: true 1442 | 1443 | '@esbuild/win32-x64@0.25.4': 1444 | optional: true 1445 | 1446 | '@iconify-json/simple-icons@1.2.55': 1447 | dependencies: 1448 | '@iconify/types': 2.0.0 1449 | 1450 | '@iconify/types@2.0.0': {} 1451 | 1452 | '@img/sharp-darwin-arm64@0.33.5': 1453 | optionalDependencies: 1454 | '@img/sharp-libvips-darwin-arm64': 1.0.4 1455 | optional: true 1456 | 1457 | '@img/sharp-darwin-x64@0.33.5': 1458 | optionalDependencies: 1459 | '@img/sharp-libvips-darwin-x64': 1.0.4 1460 | optional: true 1461 | 1462 | '@img/sharp-libvips-darwin-arm64@1.0.4': 1463 | optional: true 1464 | 1465 | '@img/sharp-libvips-darwin-x64@1.0.4': 1466 | optional: true 1467 | 1468 | '@img/sharp-libvips-linux-arm64@1.0.4': 1469 | optional: true 1470 | 1471 | '@img/sharp-libvips-linux-arm@1.0.5': 1472 | optional: true 1473 | 1474 | '@img/sharp-libvips-linux-s390x@1.0.4': 1475 | optional: true 1476 | 1477 | '@img/sharp-libvips-linux-x64@1.0.4': 1478 | optional: true 1479 | 1480 | '@img/sharp-libvips-linuxmusl-arm64@1.0.4': 1481 | optional: true 1482 | 1483 | '@img/sharp-libvips-linuxmusl-x64@1.0.4': 1484 | optional: true 1485 | 1486 | '@img/sharp-linux-arm64@0.33.5': 1487 | optionalDependencies: 1488 | '@img/sharp-libvips-linux-arm64': 1.0.4 1489 | optional: true 1490 | 1491 | '@img/sharp-linux-arm@0.33.5': 1492 | optionalDependencies: 1493 | '@img/sharp-libvips-linux-arm': 1.0.5 1494 | optional: true 1495 | 1496 | '@img/sharp-linux-s390x@0.33.5': 1497 | optionalDependencies: 1498 | '@img/sharp-libvips-linux-s390x': 1.0.4 1499 | optional: true 1500 | 1501 | '@img/sharp-linux-x64@0.33.5': 1502 | optionalDependencies: 1503 | '@img/sharp-libvips-linux-x64': 1.0.4 1504 | optional: true 1505 | 1506 | '@img/sharp-linuxmusl-arm64@0.33.5': 1507 | optionalDependencies: 1508 | '@img/sharp-libvips-linuxmusl-arm64': 1.0.4 1509 | optional: true 1510 | 1511 | '@img/sharp-linuxmusl-x64@0.33.5': 1512 | optionalDependencies: 1513 | '@img/sharp-libvips-linuxmusl-x64': 1.0.4 1514 | optional: true 1515 | 1516 | '@img/sharp-wasm32@0.33.5': 1517 | dependencies: 1518 | '@emnapi/runtime': 1.6.0 1519 | optional: true 1520 | 1521 | '@img/sharp-win32-ia32@0.33.5': 1522 | optional: true 1523 | 1524 | '@img/sharp-win32-x64@0.33.5': 1525 | optional: true 1526 | 1527 | '@jridgewell/resolve-uri@3.1.2': {} 1528 | 1529 | '@jridgewell/sourcemap-codec@1.5.5': {} 1530 | 1531 | '@jridgewell/trace-mapping@0.3.9': 1532 | dependencies: 1533 | '@jridgewell/resolve-uri': 3.1.2 1534 | '@jridgewell/sourcemap-codec': 1.5.5 1535 | 1536 | '@poppinss/colors@4.1.5': 1537 | dependencies: 1538 | kleur: 4.1.5 1539 | 1540 | '@poppinss/dumper@0.6.4': 1541 | dependencies: 1542 | '@poppinss/colors': 4.1.5 1543 | '@sindresorhus/is': 7.1.0 1544 | supports-color: 10.2.2 1545 | 1546 | '@poppinss/exception@1.2.2': {} 1547 | 1548 | '@rolldown/pluginutils@1.0.0-beta.29': {} 1549 | 1550 | '@rollup/rollup-android-arm-eabi@4.52.5': 1551 | optional: true 1552 | 1553 | '@rollup/rollup-android-arm64@4.52.5': 1554 | optional: true 1555 | 1556 | '@rollup/rollup-darwin-arm64@4.52.5': 1557 | optional: true 1558 | 1559 | '@rollup/rollup-darwin-x64@4.52.5': 1560 | optional: true 1561 | 1562 | '@rollup/rollup-freebsd-arm64@4.52.5': 1563 | optional: true 1564 | 1565 | '@rollup/rollup-freebsd-x64@4.52.5': 1566 | optional: true 1567 | 1568 | '@rollup/rollup-linux-arm-gnueabihf@4.52.5': 1569 | optional: true 1570 | 1571 | '@rollup/rollup-linux-arm-musleabihf@4.52.5': 1572 | optional: true 1573 | 1574 | '@rollup/rollup-linux-arm64-gnu@4.52.5': 1575 | optional: true 1576 | 1577 | '@rollup/rollup-linux-arm64-musl@4.52.5': 1578 | optional: true 1579 | 1580 | '@rollup/rollup-linux-loong64-gnu@4.52.5': 1581 | optional: true 1582 | 1583 | '@rollup/rollup-linux-ppc64-gnu@4.52.5': 1584 | optional: true 1585 | 1586 | '@rollup/rollup-linux-riscv64-gnu@4.52.5': 1587 | optional: true 1588 | 1589 | '@rollup/rollup-linux-riscv64-musl@4.52.5': 1590 | optional: true 1591 | 1592 | '@rollup/rollup-linux-s390x-gnu@4.52.5': 1593 | optional: true 1594 | 1595 | '@rollup/rollup-linux-x64-gnu@4.52.5': 1596 | optional: true 1597 | 1598 | '@rollup/rollup-linux-x64-musl@4.52.5': 1599 | optional: true 1600 | 1601 | '@rollup/rollup-openharmony-arm64@4.52.5': 1602 | optional: true 1603 | 1604 | '@rollup/rollup-win32-arm64-msvc@4.52.5': 1605 | optional: true 1606 | 1607 | '@rollup/rollup-win32-ia32-msvc@4.52.5': 1608 | optional: true 1609 | 1610 | '@rollup/rollup-win32-x64-gnu@4.52.5': 1611 | optional: true 1612 | 1613 | '@rollup/rollup-win32-x64-msvc@4.52.5': 1614 | optional: true 1615 | 1616 | '@shikijs/core@3.13.0': 1617 | dependencies: 1618 | '@shikijs/types': 3.13.0 1619 | '@shikijs/vscode-textmate': 10.0.2 1620 | '@types/hast': 3.0.4 1621 | hast-util-to-html: 9.0.5 1622 | 1623 | '@shikijs/engine-javascript@3.13.0': 1624 | dependencies: 1625 | '@shikijs/types': 3.13.0 1626 | '@shikijs/vscode-textmate': 10.0.2 1627 | oniguruma-to-es: 4.3.3 1628 | 1629 | '@shikijs/engine-oniguruma@3.13.0': 1630 | dependencies: 1631 | '@shikijs/types': 3.13.0 1632 | '@shikijs/vscode-textmate': 10.0.2 1633 | 1634 | '@shikijs/langs@3.13.0': 1635 | dependencies: 1636 | '@shikijs/types': 3.13.0 1637 | 1638 | '@shikijs/themes@3.13.0': 1639 | dependencies: 1640 | '@shikijs/types': 3.13.0 1641 | 1642 | '@shikijs/transformers@3.13.0': 1643 | dependencies: 1644 | '@shikijs/core': 3.13.0 1645 | '@shikijs/types': 3.13.0 1646 | 1647 | '@shikijs/types@3.13.0': 1648 | dependencies: 1649 | '@shikijs/vscode-textmate': 10.0.2 1650 | '@types/hast': 3.0.4 1651 | 1652 | '@shikijs/vscode-textmate@10.0.2': {} 1653 | 1654 | '@sindresorhus/is@7.1.0': {} 1655 | 1656 | '@speed-highlight/core@1.2.7': {} 1657 | 1658 | '@types/estree@1.0.8': {} 1659 | 1660 | '@types/hast@3.0.4': 1661 | dependencies: 1662 | '@types/unist': 3.0.3 1663 | 1664 | '@types/linkify-it@5.0.0': {} 1665 | 1666 | '@types/markdown-it@14.1.2': 1667 | dependencies: 1668 | '@types/linkify-it': 5.0.0 1669 | '@types/mdurl': 2.0.0 1670 | 1671 | '@types/mdast@4.0.4': 1672 | dependencies: 1673 | '@types/unist': 3.0.3 1674 | 1675 | '@types/mdurl@2.0.0': {} 1676 | 1677 | '@types/unist@3.0.3': {} 1678 | 1679 | '@types/web-bluetooth@0.0.21': {} 1680 | 1681 | '@ungap/structured-clone@1.3.0': {} 1682 | 1683 | '@vitejs/plugin-vue@6.0.1(vite@7.1.11)(vue@3.5.22)': 1684 | dependencies: 1685 | '@rolldown/pluginutils': 1.0.0-beta.29 1686 | vite: 7.1.11 1687 | vue: 3.5.22 1688 | 1689 | '@vue/compiler-core@3.5.22': 1690 | dependencies: 1691 | '@babel/parser': 7.28.4 1692 | '@vue/shared': 3.5.22 1693 | entities: 4.5.0 1694 | estree-walker: 2.0.2 1695 | source-map-js: 1.2.1 1696 | 1697 | '@vue/compiler-dom@3.5.22': 1698 | dependencies: 1699 | '@vue/compiler-core': 3.5.22 1700 | '@vue/shared': 3.5.22 1701 | 1702 | '@vue/compiler-sfc@3.5.22': 1703 | dependencies: 1704 | '@babel/parser': 7.28.4 1705 | '@vue/compiler-core': 3.5.22 1706 | '@vue/compiler-dom': 3.5.22 1707 | '@vue/compiler-ssr': 3.5.22 1708 | '@vue/shared': 3.5.22 1709 | estree-walker: 2.0.2 1710 | magic-string: 0.30.19 1711 | postcss: 8.5.6 1712 | source-map-js: 1.2.1 1713 | 1714 | '@vue/compiler-ssr@3.5.22': 1715 | dependencies: 1716 | '@vue/compiler-dom': 3.5.22 1717 | '@vue/shared': 3.5.22 1718 | 1719 | '@vue/devtools-api@8.0.3': 1720 | dependencies: 1721 | '@vue/devtools-kit': 8.0.3 1722 | 1723 | '@vue/devtools-kit@8.0.3': 1724 | dependencies: 1725 | '@vue/devtools-shared': 8.0.3 1726 | birpc: 2.6.1 1727 | hookable: 5.5.3 1728 | mitt: 3.0.1 1729 | perfect-debounce: 2.0.0 1730 | speakingurl: 14.0.1 1731 | superjson: 2.2.2 1732 | 1733 | '@vue/devtools-shared@8.0.3': 1734 | dependencies: 1735 | rfdc: 1.4.1 1736 | 1737 | '@vue/reactivity@3.5.22': 1738 | dependencies: 1739 | '@vue/shared': 3.5.22 1740 | 1741 | '@vue/runtime-core@3.5.22': 1742 | dependencies: 1743 | '@vue/reactivity': 3.5.22 1744 | '@vue/shared': 3.5.22 1745 | 1746 | '@vue/runtime-dom@3.5.22': 1747 | dependencies: 1748 | '@vue/reactivity': 3.5.22 1749 | '@vue/runtime-core': 3.5.22 1750 | '@vue/shared': 3.5.22 1751 | csstype: 3.1.3 1752 | 1753 | '@vue/server-renderer@3.5.22(vue@3.5.22)': 1754 | dependencies: 1755 | '@vue/compiler-ssr': 3.5.22 1756 | '@vue/shared': 3.5.22 1757 | vue: 3.5.22 1758 | 1759 | '@vue/shared@3.5.22': {} 1760 | 1761 | '@vueuse/core@13.9.0(vue@3.5.22)': 1762 | dependencies: 1763 | '@types/web-bluetooth': 0.0.21 1764 | '@vueuse/metadata': 13.9.0 1765 | '@vueuse/shared': 13.9.0(vue@3.5.22) 1766 | vue: 3.5.22 1767 | 1768 | '@vueuse/integrations@13.9.0(focus-trap@7.6.5)(vue@3.5.22)': 1769 | dependencies: 1770 | '@vueuse/core': 13.9.0(vue@3.5.22) 1771 | '@vueuse/shared': 13.9.0(vue@3.5.22) 1772 | vue: 3.5.22 1773 | optionalDependencies: 1774 | focus-trap: 7.6.5 1775 | 1776 | '@vueuse/metadata@13.9.0': {} 1777 | 1778 | '@vueuse/shared@13.9.0(vue@3.5.22)': 1779 | dependencies: 1780 | vue: 3.5.22 1781 | 1782 | acorn-walk@8.3.2: {} 1783 | 1784 | acorn@8.14.0: {} 1785 | 1786 | birpc@2.6.1: {} 1787 | 1788 | blake3-wasm@2.1.5: {} 1789 | 1790 | ccount@2.0.1: {} 1791 | 1792 | character-entities-html4@2.1.0: {} 1793 | 1794 | character-entities-legacy@3.0.0: {} 1795 | 1796 | color-convert@2.0.1: 1797 | dependencies: 1798 | color-name: 1.1.4 1799 | 1800 | color-name@1.1.4: {} 1801 | 1802 | color-string@1.9.1: 1803 | dependencies: 1804 | color-name: 1.1.4 1805 | simple-swizzle: 0.2.4 1806 | 1807 | color@4.2.3: 1808 | dependencies: 1809 | color-convert: 2.0.1 1810 | color-string: 1.9.1 1811 | 1812 | comma-separated-tokens@2.0.3: {} 1813 | 1814 | cookie@1.0.2: {} 1815 | 1816 | copy-anything@3.0.5: 1817 | dependencies: 1818 | is-what: 4.1.16 1819 | 1820 | csstype@3.1.3: {} 1821 | 1822 | defu@6.1.4: {} 1823 | 1824 | dequal@2.0.3: {} 1825 | 1826 | detect-libc@2.1.2: {} 1827 | 1828 | devlop@1.1.0: 1829 | dependencies: 1830 | dequal: 2.0.3 1831 | 1832 | entities@4.5.0: {} 1833 | 1834 | error-stack-parser-es@1.0.5: {} 1835 | 1836 | esbuild@0.25.11: 1837 | optionalDependencies: 1838 | '@esbuild/aix-ppc64': 0.25.11 1839 | '@esbuild/android-arm': 0.25.11 1840 | '@esbuild/android-arm64': 0.25.11 1841 | '@esbuild/android-x64': 0.25.11 1842 | '@esbuild/darwin-arm64': 0.25.11 1843 | '@esbuild/darwin-x64': 0.25.11 1844 | '@esbuild/freebsd-arm64': 0.25.11 1845 | '@esbuild/freebsd-x64': 0.25.11 1846 | '@esbuild/linux-arm': 0.25.11 1847 | '@esbuild/linux-arm64': 0.25.11 1848 | '@esbuild/linux-ia32': 0.25.11 1849 | '@esbuild/linux-loong64': 0.25.11 1850 | '@esbuild/linux-mips64el': 0.25.11 1851 | '@esbuild/linux-ppc64': 0.25.11 1852 | '@esbuild/linux-riscv64': 0.25.11 1853 | '@esbuild/linux-s390x': 0.25.11 1854 | '@esbuild/linux-x64': 0.25.11 1855 | '@esbuild/netbsd-arm64': 0.25.11 1856 | '@esbuild/netbsd-x64': 0.25.11 1857 | '@esbuild/openbsd-arm64': 0.25.11 1858 | '@esbuild/openbsd-x64': 0.25.11 1859 | '@esbuild/openharmony-arm64': 0.25.11 1860 | '@esbuild/sunos-x64': 0.25.11 1861 | '@esbuild/win32-arm64': 0.25.11 1862 | '@esbuild/win32-ia32': 0.25.11 1863 | '@esbuild/win32-x64': 0.25.11 1864 | 1865 | esbuild@0.25.4: 1866 | optionalDependencies: 1867 | '@esbuild/aix-ppc64': 0.25.4 1868 | '@esbuild/android-arm': 0.25.4 1869 | '@esbuild/android-arm64': 0.25.4 1870 | '@esbuild/android-x64': 0.25.4 1871 | '@esbuild/darwin-arm64': 0.25.4 1872 | '@esbuild/darwin-x64': 0.25.4 1873 | '@esbuild/freebsd-arm64': 0.25.4 1874 | '@esbuild/freebsd-x64': 0.25.4 1875 | '@esbuild/linux-arm': 0.25.4 1876 | '@esbuild/linux-arm64': 0.25.4 1877 | '@esbuild/linux-ia32': 0.25.4 1878 | '@esbuild/linux-loong64': 0.25.4 1879 | '@esbuild/linux-mips64el': 0.25.4 1880 | '@esbuild/linux-ppc64': 0.25.4 1881 | '@esbuild/linux-riscv64': 0.25.4 1882 | '@esbuild/linux-s390x': 0.25.4 1883 | '@esbuild/linux-x64': 0.25.4 1884 | '@esbuild/netbsd-arm64': 0.25.4 1885 | '@esbuild/netbsd-x64': 0.25.4 1886 | '@esbuild/openbsd-arm64': 0.25.4 1887 | '@esbuild/openbsd-x64': 0.25.4 1888 | '@esbuild/sunos-x64': 0.25.4 1889 | '@esbuild/win32-arm64': 0.25.4 1890 | '@esbuild/win32-ia32': 0.25.4 1891 | '@esbuild/win32-x64': 0.25.4 1892 | 1893 | estree-walker@2.0.2: {} 1894 | 1895 | exit-hook@2.2.1: {} 1896 | 1897 | exsolve@1.0.7: {} 1898 | 1899 | fdir@6.5.0(picomatch@4.0.3): 1900 | optionalDependencies: 1901 | picomatch: 4.0.3 1902 | 1903 | focus-trap@7.6.5: 1904 | dependencies: 1905 | tabbable: 6.2.0 1906 | 1907 | fsevents@2.3.3: 1908 | optional: true 1909 | 1910 | glob-to-regexp@0.4.1: {} 1911 | 1912 | hast-util-to-html@9.0.5: 1913 | dependencies: 1914 | '@types/hast': 3.0.4 1915 | '@types/unist': 3.0.3 1916 | ccount: 2.0.1 1917 | comma-separated-tokens: 2.0.3 1918 | hast-util-whitespace: 3.0.0 1919 | html-void-elements: 3.0.0 1920 | mdast-util-to-hast: 13.2.0 1921 | property-information: 7.1.0 1922 | space-separated-tokens: 2.0.2 1923 | stringify-entities: 4.0.4 1924 | zwitch: 2.0.4 1925 | 1926 | hast-util-whitespace@3.0.0: 1927 | dependencies: 1928 | '@types/hast': 3.0.4 1929 | 1930 | hookable@5.5.3: {} 1931 | 1932 | html-void-elements@3.0.0: {} 1933 | 1934 | is-arrayish@0.3.4: {} 1935 | 1936 | is-what@4.1.16: {} 1937 | 1938 | kleur@4.1.5: {} 1939 | 1940 | magic-string@0.30.19: 1941 | dependencies: 1942 | '@jridgewell/sourcemap-codec': 1.5.5 1943 | 1944 | mark.js@8.11.1: {} 1945 | 1946 | mdast-util-to-hast@13.2.0: 1947 | dependencies: 1948 | '@types/hast': 3.0.4 1949 | '@types/mdast': 4.0.4 1950 | '@ungap/structured-clone': 1.3.0 1951 | devlop: 1.1.0 1952 | micromark-util-sanitize-uri: 2.0.1 1953 | trim-lines: 3.0.1 1954 | unist-util-position: 5.0.0 1955 | unist-util-visit: 5.0.0 1956 | vfile: 6.0.3 1957 | 1958 | micromark-util-character@2.1.1: 1959 | dependencies: 1960 | micromark-util-symbol: 2.0.1 1961 | micromark-util-types: 2.0.2 1962 | 1963 | micromark-util-encode@2.0.1: {} 1964 | 1965 | micromark-util-sanitize-uri@2.0.1: 1966 | dependencies: 1967 | micromark-util-character: 2.1.1 1968 | micromark-util-encode: 2.0.1 1969 | micromark-util-symbol: 2.0.1 1970 | 1971 | micromark-util-symbol@2.0.1: {} 1972 | 1973 | micromark-util-types@2.0.2: {} 1974 | 1975 | mime@3.0.0: {} 1976 | 1977 | miniflare@4.20251011.0: 1978 | dependencies: 1979 | '@cspotcode/source-map-support': 0.8.1 1980 | acorn: 8.14.0 1981 | acorn-walk: 8.3.2 1982 | exit-hook: 2.2.1 1983 | glob-to-regexp: 0.4.1 1984 | sharp: 0.33.5 1985 | stoppable: 1.1.0 1986 | undici: 7.14.0 1987 | workerd: 1.20251011.0 1988 | ws: 8.18.0 1989 | youch: 4.1.0-beta.10 1990 | zod: 3.22.3 1991 | transitivePeerDependencies: 1992 | - bufferutil 1993 | - utf-8-validate 1994 | 1995 | minisearch@7.2.0: {} 1996 | 1997 | mitt@3.0.1: {} 1998 | 1999 | nanoid@3.3.11: {} 2000 | 2001 | ohash@2.0.11: {} 2002 | 2003 | oniguruma-parser@0.12.1: {} 2004 | 2005 | oniguruma-to-es@4.3.3: 2006 | dependencies: 2007 | oniguruma-parser: 0.12.1 2008 | regex: 6.0.1 2009 | regex-recursion: 6.0.2 2010 | 2011 | path-to-regexp@6.3.0: {} 2012 | 2013 | pathe@2.0.3: {} 2014 | 2015 | perfect-debounce@2.0.0: {} 2016 | 2017 | picocolors@1.1.1: {} 2018 | 2019 | picomatch@4.0.3: {} 2020 | 2021 | postcss@8.5.6: 2022 | dependencies: 2023 | nanoid: 3.3.11 2024 | picocolors: 1.1.1 2025 | source-map-js: 1.2.1 2026 | 2027 | property-information@7.1.0: {} 2028 | 2029 | regex-recursion@6.0.2: 2030 | dependencies: 2031 | regex-utilities: 2.3.0 2032 | 2033 | regex-utilities@2.3.0: {} 2034 | 2035 | regex@6.0.1: 2036 | dependencies: 2037 | regex-utilities: 2.3.0 2038 | 2039 | rfdc@1.4.1: {} 2040 | 2041 | rollup@4.52.5: 2042 | dependencies: 2043 | '@types/estree': 1.0.8 2044 | optionalDependencies: 2045 | '@rollup/rollup-android-arm-eabi': 4.52.5 2046 | '@rollup/rollup-android-arm64': 4.52.5 2047 | '@rollup/rollup-darwin-arm64': 4.52.5 2048 | '@rollup/rollup-darwin-x64': 4.52.5 2049 | '@rollup/rollup-freebsd-arm64': 4.52.5 2050 | '@rollup/rollup-freebsd-x64': 4.52.5 2051 | '@rollup/rollup-linux-arm-gnueabihf': 4.52.5 2052 | '@rollup/rollup-linux-arm-musleabihf': 4.52.5 2053 | '@rollup/rollup-linux-arm64-gnu': 4.52.5 2054 | '@rollup/rollup-linux-arm64-musl': 4.52.5 2055 | '@rollup/rollup-linux-loong64-gnu': 4.52.5 2056 | '@rollup/rollup-linux-ppc64-gnu': 4.52.5 2057 | '@rollup/rollup-linux-riscv64-gnu': 4.52.5 2058 | '@rollup/rollup-linux-riscv64-musl': 4.52.5 2059 | '@rollup/rollup-linux-s390x-gnu': 4.52.5 2060 | '@rollup/rollup-linux-x64-gnu': 4.52.5 2061 | '@rollup/rollup-linux-x64-musl': 4.52.5 2062 | '@rollup/rollup-openharmony-arm64': 4.52.5 2063 | '@rollup/rollup-win32-arm64-msvc': 4.52.5 2064 | '@rollup/rollup-win32-ia32-msvc': 4.52.5 2065 | '@rollup/rollup-win32-x64-gnu': 4.52.5 2066 | '@rollup/rollup-win32-x64-msvc': 4.52.5 2067 | fsevents: 2.3.3 2068 | 2069 | semver@7.7.3: {} 2070 | 2071 | sharp@0.33.5: 2072 | dependencies: 2073 | color: 4.2.3 2074 | detect-libc: 2.1.2 2075 | semver: 7.7.3 2076 | optionalDependencies: 2077 | '@img/sharp-darwin-arm64': 0.33.5 2078 | '@img/sharp-darwin-x64': 0.33.5 2079 | '@img/sharp-libvips-darwin-arm64': 1.0.4 2080 | '@img/sharp-libvips-darwin-x64': 1.0.4 2081 | '@img/sharp-libvips-linux-arm': 1.0.5 2082 | '@img/sharp-libvips-linux-arm64': 1.0.4 2083 | '@img/sharp-libvips-linux-s390x': 1.0.4 2084 | '@img/sharp-libvips-linux-x64': 1.0.4 2085 | '@img/sharp-libvips-linuxmusl-arm64': 1.0.4 2086 | '@img/sharp-libvips-linuxmusl-x64': 1.0.4 2087 | '@img/sharp-linux-arm': 0.33.5 2088 | '@img/sharp-linux-arm64': 0.33.5 2089 | '@img/sharp-linux-s390x': 0.33.5 2090 | '@img/sharp-linux-x64': 0.33.5 2091 | '@img/sharp-linuxmusl-arm64': 0.33.5 2092 | '@img/sharp-linuxmusl-x64': 0.33.5 2093 | '@img/sharp-wasm32': 0.33.5 2094 | '@img/sharp-win32-ia32': 0.33.5 2095 | '@img/sharp-win32-x64': 0.33.5 2096 | 2097 | shiki@3.13.0: 2098 | dependencies: 2099 | '@shikijs/core': 3.13.0 2100 | '@shikijs/engine-javascript': 3.13.0 2101 | '@shikijs/engine-oniguruma': 3.13.0 2102 | '@shikijs/langs': 3.13.0 2103 | '@shikijs/themes': 3.13.0 2104 | '@shikijs/types': 3.13.0 2105 | '@shikijs/vscode-textmate': 10.0.2 2106 | '@types/hast': 3.0.4 2107 | 2108 | simple-swizzle@0.2.4: 2109 | dependencies: 2110 | is-arrayish: 0.3.4 2111 | 2112 | source-map-js@1.2.1: {} 2113 | 2114 | space-separated-tokens@2.0.2: {} 2115 | 2116 | speakingurl@14.0.1: {} 2117 | 2118 | stoppable@1.1.0: {} 2119 | 2120 | stringify-entities@4.0.4: 2121 | dependencies: 2122 | character-entities-html4: 2.1.0 2123 | character-entities-legacy: 3.0.0 2124 | 2125 | superjson@2.2.2: 2126 | dependencies: 2127 | copy-anything: 3.0.5 2128 | 2129 | supports-color@10.2.2: {} 2130 | 2131 | tabbable@6.2.0: {} 2132 | 2133 | tinyglobby@0.2.15: 2134 | dependencies: 2135 | fdir: 6.5.0(picomatch@4.0.3) 2136 | picomatch: 4.0.3 2137 | 2138 | trim-lines@3.0.1: {} 2139 | 2140 | tslib@2.8.1: 2141 | optional: true 2142 | 2143 | ufo@1.6.1: {} 2144 | 2145 | undici@7.14.0: {} 2146 | 2147 | unenv@2.0.0-rc.21: 2148 | dependencies: 2149 | defu: 6.1.4 2150 | exsolve: 1.0.7 2151 | ohash: 2.0.11 2152 | pathe: 2.0.3 2153 | ufo: 1.6.1 2154 | 2155 | unist-util-is@6.0.1: 2156 | dependencies: 2157 | '@types/unist': 3.0.3 2158 | 2159 | unist-util-position@5.0.0: 2160 | dependencies: 2161 | '@types/unist': 3.0.3 2162 | 2163 | unist-util-stringify-position@4.0.0: 2164 | dependencies: 2165 | '@types/unist': 3.0.3 2166 | 2167 | unist-util-visit-parents@6.0.2: 2168 | dependencies: 2169 | '@types/unist': 3.0.3 2170 | unist-util-is: 6.0.1 2171 | 2172 | unist-util-visit@5.0.0: 2173 | dependencies: 2174 | '@types/unist': 3.0.3 2175 | unist-util-is: 6.0.1 2176 | unist-util-visit-parents: 6.0.2 2177 | 2178 | vfile-message@4.0.3: 2179 | dependencies: 2180 | '@types/unist': 3.0.3 2181 | unist-util-stringify-position: 4.0.0 2182 | 2183 | vfile@6.0.3: 2184 | dependencies: 2185 | '@types/unist': 3.0.3 2186 | vfile-message: 4.0.3 2187 | 2188 | vite@7.1.11: 2189 | dependencies: 2190 | esbuild: 0.25.11 2191 | fdir: 6.5.0(picomatch@4.0.3) 2192 | picomatch: 4.0.3 2193 | postcss: 8.5.6 2194 | rollup: 4.52.5 2195 | tinyglobby: 0.2.15 2196 | optionalDependencies: 2197 | fsevents: 2.3.3 2198 | 2199 | vitepress@2.0.0-alpha.12(postcss@8.5.6): 2200 | dependencies: 2201 | '@docsearch/css': 4.2.0 2202 | '@docsearch/js': 4.2.0 2203 | '@iconify-json/simple-icons': 1.2.55 2204 | '@shikijs/core': 3.13.0 2205 | '@shikijs/transformers': 3.13.0 2206 | '@shikijs/types': 3.13.0 2207 | '@types/markdown-it': 14.1.2 2208 | '@vitejs/plugin-vue': 6.0.1(vite@7.1.11)(vue@3.5.22) 2209 | '@vue/devtools-api': 8.0.3 2210 | '@vue/shared': 3.5.22 2211 | '@vueuse/core': 13.9.0(vue@3.5.22) 2212 | '@vueuse/integrations': 13.9.0(focus-trap@7.6.5)(vue@3.5.22) 2213 | focus-trap: 7.6.5 2214 | mark.js: 8.11.1 2215 | minisearch: 7.2.0 2216 | shiki: 3.13.0 2217 | vite: 7.1.11 2218 | vue: 3.5.22 2219 | optionalDependencies: 2220 | postcss: 8.5.6 2221 | transitivePeerDependencies: 2222 | - '@types/node' 2223 | - async-validator 2224 | - axios 2225 | - change-case 2226 | - drauu 2227 | - fuse.js 2228 | - idb-keyval 2229 | - jiti 2230 | - jwt-decode 2231 | - less 2232 | - lightningcss 2233 | - nprogress 2234 | - qrcode 2235 | - sass 2236 | - sass-embedded 2237 | - sortablejs 2238 | - stylus 2239 | - sugarss 2240 | - terser 2241 | - tsx 2242 | - typescript 2243 | - universal-cookie 2244 | - yaml 2245 | 2246 | vue@3.5.22: 2247 | dependencies: 2248 | '@vue/compiler-dom': 3.5.22 2249 | '@vue/compiler-sfc': 3.5.22 2250 | '@vue/runtime-dom': 3.5.22 2251 | '@vue/server-renderer': 3.5.22(vue@3.5.22) 2252 | '@vue/shared': 3.5.22 2253 | 2254 | workerd@1.20251011.0: 2255 | optionalDependencies: 2256 | '@cloudflare/workerd-darwin-64': 1.20251011.0 2257 | '@cloudflare/workerd-darwin-arm64': 1.20251011.0 2258 | '@cloudflare/workerd-linux-64': 1.20251011.0 2259 | '@cloudflare/workerd-linux-arm64': 1.20251011.0 2260 | '@cloudflare/workerd-windows-64': 1.20251011.0 2261 | 2262 | wrangler@4.44.0: 2263 | dependencies: 2264 | '@cloudflare/kv-asset-handler': 0.4.0 2265 | '@cloudflare/unenv-preset': 2.7.8(unenv@2.0.0-rc.21)(workerd@1.20251011.0) 2266 | blake3-wasm: 2.1.5 2267 | esbuild: 0.25.4 2268 | miniflare: 4.20251011.0 2269 | path-to-regexp: 6.3.0 2270 | unenv: 2.0.0-rc.21 2271 | workerd: 1.20251011.0 2272 | optionalDependencies: 2273 | fsevents: 2.3.3 2274 | transitivePeerDependencies: 2275 | - bufferutil 2276 | - utf-8-validate 2277 | 2278 | ws@8.18.0: {} 2279 | 2280 | youch-core@0.3.3: 2281 | dependencies: 2282 | '@poppinss/exception': 1.2.2 2283 | error-stack-parser-es: 1.0.5 2284 | 2285 | youch@4.1.0-beta.10: 2286 | dependencies: 2287 | '@poppinss/colors': 4.1.5 2288 | '@poppinss/dumper': 0.6.4 2289 | '@speed-highlight/core': 1.2.7 2290 | cookie: 1.0.2 2291 | youch-core: 0.3.3 2292 | 2293 | zod@3.22.3: {} 2294 | 2295 | zwitch@2.0.4: {} 2296 | --------------------------------------------------------------------------------