commit fe18ec099afceecbc709c891c79b1cbbc0382481 Author: WildEgo Date: Thu Jun 5 01:08:50 2025 +0100 Initial commit diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..2a3b102 --- /dev/null +++ b/.env.example @@ -0,0 +1,18 @@ +APP_NAME= +APP_URL= +SESSION_KEY= + +DATABASE_URL= + +EMAIL_HOST= +EMAIL_PORT= +EMAIL_USE_SSL= +EMAIL_USERNAME= +EMAIL_PASSWORD= +EMAIL_FROM= + +STORAGE_ENDPOINT= +STORAGE_ACCESS_KEY_ID= +STORAGE_ACCESS_KEY_SECRET= +STORAGE_MALL_BUCKET= +STORAGE_SUPPORT_BUCKET= diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3fac8e0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,23 @@ +node_modules +package-lock.json +yarn.lock + +.DS_Store +.cache +.env +.vercel +.output +.vinxi + +/build/ +/api/ +/server/build +/public/build +.vinxi +# Sentry Config File +.env.sentry-build-plugin +/test-results/ +/playwright-report/ +/blob-report/ +/playwright/.cache/ +/src/db/seed-data diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000..2be5eaa --- /dev/null +++ b/.prettierignore @@ -0,0 +1,4 @@ +**/build +**/public +pnpm-lock.yaml +routeTree.gen.ts \ No newline at end of file diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..116d685 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,5 @@ +{ + "recommendations": [ + "inlang.vs-code-extension" + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..c3086b2 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,17 @@ +{ + "files.watcherExclude": { + "**/routeTree.gen.ts": true + }, + "search.exclude": { + "**/routeTree.gen.ts": true + }, + "files.readonlyInclude": { + "**/routeTree.gen.ts": true + }, + "[typescript]": { + "editor.defaultFormatter": "biomejs.biome", + }, + "[typescriptreact]": { + "editor.defaultFormatter": "biomejs.biome", + } +} diff --git a/README.md b/README.md new file mode 100644 index 0000000..90cba4a --- /dev/null +++ b/README.md @@ -0,0 +1,72 @@ +# Welcome to TanStack.com! + +This site is built with TanStack Router! + +- [TanStack Router Docs](https://tanstack.com/router) + +It's deployed automagically with Netlify! + +- [Netlify](https://netlify.com/) + +## Development + +From your terminal: + +```sh +pnpm install +pnpm dev +``` + +This starts your app in development mode, rebuilding assets on file changes. + +## Editing and previewing the docs of TanStack projects locally + +The documentations for all TanStack projects except for `React Charts` are hosted on [https://tanstack.com](https://tanstack.com), powered by this TanStack Router app. +In production, the markdown doc pages are fetched from the GitHub repos of the projects, but in development they are read from the local file system. + +Follow these steps if you want to edit the doc pages of a project (in these steps we'll assume it's [`TanStack/form`](https://github.com/tanstack/form)) and preview them locally : + +1. Create a new directory called `tanstack`. + +```sh +mkdir tanstack +``` + +2. Enter the directory and clone this repo and the repo of the project there. + +```sh +cd tanstack +git clone git@github.com:TanStack/tanstack.com.git +git clone git@github.com:TanStack/form.git +``` + +> [!NOTE] +> Your `tanstack` directory should look like this: +> +> ``` +> tanstack/ +> | +> +-- form/ +> | +> +-- tanstack.com/ +> ``` + +> [!WARNING] +> Make sure the name of the directory in your local file system matches the name of the project's repo. For example, `tanstack/form` must be cloned into `form` (this is the default) instead of `some-other-name`, because that way, the doc pages won't be found. + +3. Enter the `tanstack/tanstack.com` directory, install the dependencies and run the app in dev mode: + +```sh +cd tanstack.com +pnpm i +# The app will run on https://localhost:3000 by default +pnpm dev +``` + +4. Now you can visit http://localhost:3000/form/latest/docs/overview in the browser and see the changes you make in `tanstack/form/docs`. + +> [!NOTE] +> The updated pages need to be manually reloaded in the browser. + +> [!WARNING] +> You will need to update the `docs/config.json` file (in the project's repo) if you add a new doc page! diff --git a/app.config.ts b/app.config.ts new file mode 100644 index 0000000..b89c49e --- /dev/null +++ b/app.config.ts @@ -0,0 +1,26 @@ +import { defineConfig } from '@tanstack/react-start/config'; +import tsConfigPaths from 'vite-tsconfig-paths'; +import { paraglideVitePlugin as paraglide } from '@inlang/paraglide-js'; + +export default defineConfig({ + tsr: { + appDirectory: 'src', + }, + vite: { + plugins: [ + tsConfigPaths({ + projects: ['./tsconfig.json'], + }), + paraglide({ + project: './project.inlang', + outdir: './src/paraglide', + outputStructure: 'message-modules', + cookieName: 'locale', + strategy: ['cookie', 'preferredLanguage', 'baseLocale'], + }), + ], + }, + server: { + preset: 'bun', + }, +}); diff --git a/biome.json b/biome.json new file mode 100644 index 0000000..b09c4c5 --- /dev/null +++ b/biome.json @@ -0,0 +1,34 @@ +{ + "$schema": "https://biomejs.dev/schemas/1.9.4/schema.json", + "vcs": { + "enabled": false, + "clientKind": "git", + "useIgnoreFile": false + }, + "files": { + "ignoreUnknown": false, + "ignore": ["./src/routeTree.gen.ts", "./.vscode/**", "./src/**/*.css"] + }, + "formatter": { + "enabled": true, + "indentStyle": "space" + }, + "organizeImports": { + "enabled": true + }, + "linter": { + "enabled": true, + "rules": { + "recommended": true, + "correctness": { + "noUnusedImports": "error" + } + } + }, + "javascript": { + "formatter": { + "quoteStyle": "single", + "indentWidth": 2 + } + } +} diff --git a/bun.lock b/bun.lock new file mode 100644 index 0000000..339c723 --- /dev/null +++ b/bun.lock @@ -0,0 +1,3046 @@ +{ + "lockfileVersion": 1, + "workspaces": { + "": { + "name": "tanstack-start-example-basic", + "dependencies": { + "@hookform/resolvers": "^5.0.1", + "@oslojs/crypto": "^1.0.1", + "@oslojs/encoding": "^1.1.0", + "@radix-ui/react-accordion": "^1.2.11", + "@radix-ui/react-alert-dialog": "^1.1.14", + "@radix-ui/react-aspect-ratio": "^1.1.7", + "@radix-ui/react-avatar": "^1.1.10", + "@radix-ui/react-checkbox": "^1.3.2", + "@radix-ui/react-collapsible": "^1.1.11", + "@radix-ui/react-context-menu": "^2.2.15", + "@radix-ui/react-dialog": "^1.1.14", + "@radix-ui/react-dropdown-menu": "^2.1.15", + "@radix-ui/react-hover-card": "^1.1.14", + "@radix-ui/react-label": "^2.1.7", + "@radix-ui/react-menubar": "^1.1.15", + "@radix-ui/react-navigation-menu": "^1.2.13", + "@radix-ui/react-popover": "^1.1.14", + "@radix-ui/react-progress": "^1.1.7", + "@radix-ui/react-radio-group": "^1.3.7", + "@radix-ui/react-scroll-area": "^1.2.9", + "@radix-ui/react-select": "^2.2.5", + "@radix-ui/react-separator": "^1.1.7", + "@radix-ui/react-slider": "^1.3.5", + "@radix-ui/react-slot": "^1.2.3", + "@radix-ui/react-switch": "^1.2.5", + "@radix-ui/react-tabs": "^1.1.12", + "@radix-ui/react-toggle": "^1.1.9", + "@radix-ui/react-toggle-group": "^1.1.10", + "@radix-ui/react-tooltip": "^1.2.7", + "@react-email/components": "0.0.41", + "@tailwindcss/postcss": "^4.1.8", + "@tanstack/react-query": "^5.80.3", + "@tanstack/react-query-devtools": "^5.80.3", + "@tanstack/react-router": "^1.120.15", + "@tanstack/react-router-devtools": "^1.120.15", + "@tanstack/react-start": "^1.120.15", + "@tanstack/react-table": "^8.21.3", + "class-variance-authority": "^0.7.1", + "clsx": "^2.1.1", + "cmdk": "^1.1.1", + "date-fns": "^4.1.0", + "drizzle-orm": "^1.0.0-beta.1-fd5d1e8", + "drizzle-zod": "^0.8.2", + "embla-carousel-react": "^8.6.0", + "input-otp": "^1.4.2", + "lucide-react": "^0.511.0", + "next-themes": "^0.4.6", + "nodemailer": "^7.0.3", + "postgres": "^3.4.7", + "react": "^19.1.0", + "react-day-picker": "8.10.1", + "react-dom": "^19.1.0", + "react-hook-form": "^7.57.0", + "react-resizable-panels": "^3.0.2", + "recharts": "^2.15.3", + "sonner": "^2.0.5", + "tailwind-merge": "^3.3.0", + "vaul": "^1.1.2", + "vinxi": "0.5.3", + "zod": "^3.25.51", + }, + "devDependencies": { + "@biomejs/biome": "1.9.4", + "@inlang/cli": "^3.0.11", + "@inlang/paraglide-js": "^2.0.13", + "@tanstack/eslint-plugin-query": "^5.78.0", + "@types/bun": "^1.2.15", + "@types/nodemailer": "^6.4.17", + "@types/react": "^19.1.6", + "@types/react-dom": "^19.1.6", + "autoprefixer": "^10.4.21", + "drizzle-kit": "^1.0.0-beta.1-fd5d1e8", + "postcss": "^8.5.4", + "react-email": "4.0.15", + "tailwindcss": "^4.1.8", + "tw-animate-css": "^1.3.4", + "typescript": "^5.8.3", + "vite-tsconfig-paths": "^5.1.4", + }, + }, + }, + "trustedDependencies": [ + "@tailwindcss/oxide", + "esbuild", + "sharp", + "@biomejs/biome", + "@parcel/watcher", + ], + "packages": { + "@alloc/quick-lru": ["@alloc/quick-lru@5.2.0", "", {}, "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw=="], + + "@ampproject/remapping": ["@ampproject/remapping@2.3.0", "", { "dependencies": { "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.24" } }, "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw=="], + + "@babel/code-frame": ["@babel/code-frame@7.27.1", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.27.1", "js-tokens": "^4.0.0", "picocolors": "^1.1.1" } }, "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg=="], + + "@babel/compat-data": ["@babel/compat-data@7.27.3", "", {}, "sha512-V42wFfx1ymFte+ecf6iXghnnP8kWTO+ZLXIyZq+1LAXHHvTZdVxicn4yiVYdYMGaCO3tmqub11AorKkv+iodqw=="], + + "@babel/core": ["@babel/core@7.27.3", "", { "dependencies": { "@ampproject/remapping": "^2.2.0", "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.27.3", "@babel/helper-compilation-targets": "^7.27.2", "@babel/helper-module-transforms": "^7.27.3", "@babel/helpers": "^7.27.3", "@babel/parser": "^7.27.3", "@babel/template": "^7.27.2", "@babel/traverse": "^7.27.3", "@babel/types": "^7.27.3", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", "json5": "^2.2.3", "semver": "^6.3.1" } }, "sha512-hyrN8ivxfvJ4i0fIJuV4EOlV0WDMz5Ui4StRTgVaAvWeiRCilXgwVvxJKtFQ3TKtHgJscB2YiXKGNJuVwhQMtA=="], + + "@babel/generator": ["@babel/generator@7.27.3", "", { "dependencies": { "@babel/parser": "^7.27.3", "@babel/types": "^7.27.3", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-xnlJYj5zepml8NXtjkG0WquFUv8RskFqyFcVgTBp5k+NaA/8uw/K+OSVf8AMGw5e9HKP2ETd5xpK5MLZQD6b4Q=="], + + "@babel/helper-compilation-targets": ["@babel/helper-compilation-targets@7.27.2", "", { "dependencies": { "@babel/compat-data": "^7.27.2", "@babel/helper-validator-option": "^7.27.1", "browserslist": "^4.24.0", "lru-cache": "^5.1.1", "semver": "^6.3.1" } }, "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ=="], + + "@babel/helper-module-imports": ["@babel/helper-module-imports@7.27.1", "", { "dependencies": { "@babel/traverse": "^7.27.1", "@babel/types": "^7.27.1" } }, "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w=="], + + "@babel/helper-module-transforms": ["@babel/helper-module-transforms@7.27.3", "", { "dependencies": { "@babel/helper-module-imports": "^7.27.1", "@babel/helper-validator-identifier": "^7.27.1", "@babel/traverse": "^7.27.3" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg=="], + + "@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.27.1", "", {}, "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw=="], + + "@babel/helper-string-parser": ["@babel/helper-string-parser@7.27.1", "", {}, "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA=="], + + "@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.27.1", "", {}, "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow=="], + + "@babel/helper-validator-option": ["@babel/helper-validator-option@7.27.1", "", {}, "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg=="], + + "@babel/helpers": ["@babel/helpers@7.27.3", "", { "dependencies": { "@babel/template": "^7.27.2", "@babel/types": "^7.27.3" } }, "sha512-h/eKy9agOya1IGuLaZ9tEUgz+uIRXcbtOhRtUyyMf8JFmn1iT13vnl/IGVWSkdOCG/pC57U4S1jnAabAavTMwg=="], + + "@babel/parser": ["@babel/parser@7.27.3", "", { "dependencies": { "@babel/types": "^7.27.3" }, "bin": "./bin/babel-parser.js" }, "sha512-xyYxRj6+tLNDTWi0KCBcZ9V7yg3/lwL9DWh9Uwh/RIVlIfFidggcgxKX3GCXwCiswwcGRawBKbEg2LG/Y8eJhw=="], + + "@babel/plugin-syntax-jsx": ["@babel/plugin-syntax-jsx@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w=="], + + "@babel/plugin-syntax-typescript": ["@babel/plugin-syntax-typescript@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ=="], + + "@babel/plugin-transform-react-jsx-self": ["@babel/plugin-transform-react-jsx-self@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw=="], + + "@babel/plugin-transform-react-jsx-source": ["@babel/plugin-transform-react-jsx-source@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw=="], + + "@babel/runtime": ["@babel/runtime@7.27.3", "", {}, "sha512-7EYtGezsdiDMyY80+65EzwiGmcJqpmcZCojSXaRgdrBaGtWTgDZKq69cPIVped6MkIM78cTQ2GOiEYjwOlG4xw=="], + + "@babel/template": ["@babel/template@7.27.2", "", { "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/parser": "^7.27.2", "@babel/types": "^7.27.1" } }, "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw=="], + + "@babel/traverse": ["@babel/traverse@7.27.3", "", { "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.27.3", "@babel/parser": "^7.27.3", "@babel/template": "^7.27.2", "@babel/types": "^7.27.3", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-lId/IfN/Ye1CIu8xG7oKBHXd2iNb2aW1ilPszzGcJug6M8RCKfVNcYhpI5+bMvFYjK7lXIM0R+a+6r8xhHp2FQ=="], + + "@babel/types": ["@babel/types@7.27.3", "", { "dependencies": { "@babel/helper-string-parser": "^7.27.1", "@babel/helper-validator-identifier": "^7.27.1" } }, "sha512-Y1GkI4ktrtvmawoSq+4FCVHNryea6uR+qUQy0AGxLSsjCX0nVmkYQMBLHDkXZuo5hGx7eYdnIaslsdBFm7zbUw=="], + + "@biomejs/biome": ["@biomejs/biome@1.9.4", "", { "optionalDependencies": { "@biomejs/cli-darwin-arm64": "1.9.4", "@biomejs/cli-darwin-x64": "1.9.4", "@biomejs/cli-linux-arm64": "1.9.4", "@biomejs/cli-linux-arm64-musl": "1.9.4", "@biomejs/cli-linux-x64": "1.9.4", "@biomejs/cli-linux-x64-musl": "1.9.4", "@biomejs/cli-win32-arm64": "1.9.4", "@biomejs/cli-win32-x64": "1.9.4" }, "bin": { "biome": "bin/biome" } }, "sha512-1rkd7G70+o9KkTn5KLmDYXihGoTaIGO9PIIN2ZB7UJxFrWw04CZHPYiMRjYsaDvVV7hP1dYNRLxSANLaBFGpog=="], + + "@biomejs/cli-darwin-arm64": ["@biomejs/cli-darwin-arm64@1.9.4", "", { "os": "darwin", "cpu": "arm64" }, "sha512-bFBsPWrNvkdKrNCYeAp+xo2HecOGPAy9WyNyB/jKnnedgzl4W4Hb9ZMzYNbf8dMCGmUdSavlYHiR01QaYR58cw=="], + + "@biomejs/cli-darwin-x64": ["@biomejs/cli-darwin-x64@1.9.4", "", { "os": "darwin", "cpu": "x64" }, "sha512-ngYBh/+bEedqkSevPVhLP4QfVPCpb+4BBe2p7Xs32dBgs7rh9nY2AIYUL6BgLw1JVXV8GlpKmb/hNiuIxfPfZg=="], + + "@biomejs/cli-linux-arm64": ["@biomejs/cli-linux-arm64@1.9.4", "", { "os": "linux", "cpu": "arm64" }, "sha512-fJIW0+LYujdjUgJJuwesP4EjIBl/N/TcOX3IvIHJQNsAqvV2CHIogsmA94BPG6jZATS4Hi+xv4SkBBQSt1N4/g=="], + + "@biomejs/cli-linux-arm64-musl": ["@biomejs/cli-linux-arm64-musl@1.9.4", "", { "os": "linux", "cpu": "arm64" }, "sha512-v665Ct9WCRjGa8+kTr0CzApU0+XXtRgwmzIf1SeKSGAv+2scAlW6JR5PMFo6FzqqZ64Po79cKODKf3/AAmECqA=="], + + "@biomejs/cli-linux-x64": ["@biomejs/cli-linux-x64@1.9.4", "", { "os": "linux", "cpu": "x64" }, "sha512-lRCJv/Vi3Vlwmbd6K+oQ0KhLHMAysN8lXoCI7XeHlxaajk06u7G+UsFSO01NAs5iYuWKmVZjmiOzJ0OJmGsMwg=="], + + "@biomejs/cli-linux-x64-musl": ["@biomejs/cli-linux-x64-musl@1.9.4", "", { "os": "linux", "cpu": "x64" }, "sha512-gEhi/jSBhZ2m6wjV530Yy8+fNqG8PAinM3oV7CyO+6c3CEh16Eizm21uHVsyVBEB6RIM8JHIl6AGYCv6Q6Q9Tg=="], + + "@biomejs/cli-win32-arm64": ["@biomejs/cli-win32-arm64@1.9.4", "", { "os": "win32", "cpu": "arm64" }, "sha512-tlbhLk+WXZmgwoIKwHIHEBZUwxml7bRJgk0X2sPyNR3S93cdRq6XulAZRQJ17FYGGzWne0fgrXBKpl7l4M87Hg=="], + + "@biomejs/cli-win32-x64": ["@biomejs/cli-win32-x64@1.9.4", "", { "os": "win32", "cpu": "x64" }, "sha512-8Y5wMhVIPaWe6jw2H+KlEm4wP/f7EW3810ZLmDlrEEy5KvBsb9ECEfu/kMWD484ijfQ8+nIi0giMgu9g1UAuuA=="], + + "@cloudflare/kv-asset-handler": ["@cloudflare/kv-asset-handler@0.4.0", "", { "dependencies": { "mime": "^3.0.0" } }, "sha512-+tv3z+SPp+gqTIcImN9o0hqE9xyfQjI1XD9pL6NuKjua9B1y7mNYv0S9cP+QEbA4ppVgGZEmKOvHX5G5Ei1CVA=="], + + "@colors/colors": ["@colors/colors@1.6.0", "", {}, "sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA=="], + + "@dabh/diagnostics": ["@dabh/diagnostics@2.0.3", "", { "dependencies": { "colorspace": "1.1.x", "enabled": "2.0.x", "kuler": "^2.0.0" } }, "sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA=="], + + "@deno/shim-deno": ["@deno/shim-deno@0.19.2", "", { "dependencies": { "@deno/shim-deno-test": "^0.5.0", "which": "^4.0.0" } }, "sha512-q3VTHl44ad8T2Tw2SpeAvghdGOjlnLPDNO2cpOxwMrBE/PVas6geWpbpIgrM+czOCH0yejp0yi8OaTuB+NU40Q=="], + + "@deno/shim-deno-test": ["@deno/shim-deno-test@0.5.0", "", {}, "sha512-4nMhecpGlPi0cSzT67L+Tm+GOJqvuk8gqHBziqcUQOarnuIax1z96/gJHCSIz2Z0zhxE6Rzwb3IZXPtFh51j+w=="], + + "@dependents/detective-less": ["@dependents/detective-less@5.0.1", "", { "dependencies": { "gonzales-pe": "^4.3.0", "node-source-walk": "^7.0.1" } }, "sha512-Y6+WUMsTFWE5jb20IFP4YGa5IrGY/+a/FbOSjDF/wz9gepU2hwCYSXRHP/vPwBvwcY3SVMASt4yXxbXNXigmZQ=="], + + "@drizzle-team/brocli": ["@drizzle-team/brocli@0.10.2", "", {}, "sha512-z33Il7l5dKjUgGULTqBsQBQwckHh5AbIuxhdsIxDDiZAzBOrZO6q9ogcWC65kU382AfynTfgNumVcNIjuIua6w=="], + + "@emnapi/runtime": ["@emnapi/runtime@1.4.3", "", { "dependencies": { "tslib": "^2.4.0" } }, "sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ=="], + + "@esbuild-kit/core-utils": ["@esbuild-kit/core-utils@3.3.2", "", { "dependencies": { "esbuild": "~0.18.20", "source-map-support": "^0.5.21" } }, "sha512-sPRAnw9CdSsRmEtnsl2WXWdyquogVpB3yZ3dgwJfe8zrOzTsV7cJvmwrKVa+0ma5BoiGJ+BoqkMvawbayKUsqQ=="], + + "@esbuild-kit/esm-loader": ["@esbuild-kit/esm-loader@2.6.5", "", { "dependencies": { "@esbuild-kit/core-utils": "^3.3.2", "get-tsconfig": "^4.7.0" } }, "sha512-FxEMIkJKnodyA1OaCUoEvbYRkoZlLZ4d/eXFu9Fh8CbBBgP5EmZxrfTRyN0qpXZ4vOvqnE5YdRdcrmUUXuU+dA=="], + + "@esbuild/aix-ppc64": ["@esbuild/aix-ppc64@0.19.12", "", { "os": "aix", "cpu": "ppc64" }, "sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA=="], + + "@esbuild/android-arm": ["@esbuild/android-arm@0.19.12", "", { "os": "android", "cpu": "arm" }, "sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w=="], + + "@esbuild/android-arm64": ["@esbuild/android-arm64@0.19.12", "", { "os": "android", "cpu": "arm64" }, "sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA=="], + + "@esbuild/android-x64": ["@esbuild/android-x64@0.19.12", "", { "os": "android", "cpu": "x64" }, "sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew=="], + + "@esbuild/darwin-arm64": ["@esbuild/darwin-arm64@0.19.12", "", { "os": "darwin", "cpu": "arm64" }, "sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g=="], + + "@esbuild/darwin-x64": ["@esbuild/darwin-x64@0.19.12", "", { "os": "darwin", "cpu": "x64" }, "sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A=="], + + "@esbuild/freebsd-arm64": ["@esbuild/freebsd-arm64@0.19.12", "", { "os": "freebsd", "cpu": "arm64" }, "sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA=="], + + "@esbuild/freebsd-x64": ["@esbuild/freebsd-x64@0.19.12", "", { "os": "freebsd", "cpu": "x64" }, "sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg=="], + + "@esbuild/linux-arm": ["@esbuild/linux-arm@0.19.12", "", { "os": "linux", "cpu": "arm" }, "sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w=="], + + "@esbuild/linux-arm64": ["@esbuild/linux-arm64@0.19.12", "", { "os": "linux", "cpu": "arm64" }, "sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA=="], + + "@esbuild/linux-ia32": ["@esbuild/linux-ia32@0.19.12", "", { "os": "linux", "cpu": "ia32" }, "sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA=="], + + "@esbuild/linux-loong64": ["@esbuild/linux-loong64@0.19.12", "", { "os": "linux", "cpu": "none" }, "sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA=="], + + "@esbuild/linux-mips64el": ["@esbuild/linux-mips64el@0.19.12", "", { "os": "linux", "cpu": "none" }, "sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w=="], + + "@esbuild/linux-ppc64": ["@esbuild/linux-ppc64@0.19.12", "", { "os": "linux", "cpu": "ppc64" }, "sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg=="], + + "@esbuild/linux-riscv64": ["@esbuild/linux-riscv64@0.19.12", "", { "os": "linux", "cpu": "none" }, "sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg=="], + + "@esbuild/linux-s390x": ["@esbuild/linux-s390x@0.19.12", "", { "os": "linux", "cpu": "s390x" }, "sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg=="], + + "@esbuild/linux-x64": ["@esbuild/linux-x64@0.19.12", "", { "os": "linux", "cpu": "x64" }, "sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg=="], + + "@esbuild/netbsd-arm64": ["@esbuild/netbsd-arm64@0.25.5", "", { "os": "none", "cpu": "arm64" }, "sha512-pwHtMP9viAy1oHPvgxtOv+OkduK5ugofNTVDilIzBLpoWAM16r7b/mxBvfpuQDpRQFMfuVr5aLcn4yveGvBZvw=="], + + "@esbuild/netbsd-x64": ["@esbuild/netbsd-x64@0.19.12", "", { "os": "none", "cpu": "x64" }, "sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA=="], + + "@esbuild/openbsd-arm64": ["@esbuild/openbsd-arm64@0.25.5", "", { "os": "openbsd", "cpu": "arm64" }, "sha512-7A208+uQKgTxHd0G0uqZO8UjK2R0DDb4fDmERtARjSHWxqMTye4Erz4zZafx7Di9Cv+lNHYuncAkiGFySoD+Mw=="], + + "@esbuild/openbsd-x64": ["@esbuild/openbsd-x64@0.19.12", "", { "os": "openbsd", "cpu": "x64" }, "sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw=="], + + "@esbuild/sunos-x64": ["@esbuild/sunos-x64@0.19.12", "", { "os": "sunos", "cpu": "x64" }, "sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA=="], + + "@esbuild/win32-arm64": ["@esbuild/win32-arm64@0.19.12", "", { "os": "win32", "cpu": "arm64" }, "sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A=="], + + "@esbuild/win32-ia32": ["@esbuild/win32-ia32@0.19.12", "", { "os": "win32", "cpu": "ia32" }, "sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ=="], + + "@esbuild/win32-x64": ["@esbuild/win32-x64@0.19.12", "", { "os": "win32", "cpu": "x64" }, "sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA=="], + + "@eslint-community/eslint-utils": ["@eslint-community/eslint-utils@4.7.0", "", { "dependencies": { "eslint-visitor-keys": "^3.4.3" }, "peerDependencies": { "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } }, "sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw=="], + + "@eslint-community/regexpp": ["@eslint-community/regexpp@4.12.1", "", {}, "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ=="], + + "@eslint/config-array": ["@eslint/config-array@0.20.0", "", { "dependencies": { "@eslint/object-schema": "^2.1.6", "debug": "^4.3.1", "minimatch": "^3.1.2" } }, "sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ=="], + + "@eslint/config-helpers": ["@eslint/config-helpers@0.2.2", "", {}, "sha512-+GPzk8PlG0sPpzdU5ZvIRMPidzAnZDl/s9L+y13iodqvb8leL53bTannOrQ/Im7UkpsmFU5Ily5U60LWixnmLg=="], + + "@eslint/core": ["@eslint/core@0.14.0", "", { "dependencies": { "@types/json-schema": "^7.0.15" } }, "sha512-qIbV0/JZr7iSDjqAc60IqbLdsj9GDt16xQtWD+B78d/HAlvysGdZZ6rpJHGAc2T0FQx1X6thsSPdnoiGKdNtdg=="], + + "@eslint/eslintrc": ["@eslint/eslintrc@3.3.1", "", { "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", "espree": "^10.0.1", "globals": "^14.0.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", "js-yaml": "^4.1.0", "minimatch": "^3.1.2", "strip-json-comments": "^3.1.1" } }, "sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ=="], + + "@eslint/js": ["@eslint/js@9.27.0", "", {}, "sha512-G5JD9Tu5HJEu4z2Uo4aHY2sLV64B7CDMXxFzqzjl3NKd6RVzSXNoE80jk7Y0lJkTTkjiIhBAqmlYwjuBY3tvpA=="], + + "@eslint/object-schema": ["@eslint/object-schema@2.1.6", "", {}, "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA=="], + + "@eslint/plugin-kit": ["@eslint/plugin-kit@0.3.1", "", { "dependencies": { "@eslint/core": "^0.14.0", "levn": "^0.4.1" } }, "sha512-0J+zgWxHN+xXONWIyPWKFMgVuJoZuGiIFu8yxk7RJjxkzpGmyja5wRFqZIVtjDVOQpV+Rw0iOAjYPE2eQyjr0w=="], + + "@fastify/busboy": ["@fastify/busboy@3.1.1", "", {}, "sha512-5DGmA8FTdB2XbDeEwc/5ZXBl6UbBAyBOOLlPuBnZ/N1SwdH9Ii+cOX3tBROlDgcTXxjOYnLMVoKk9+FXAw0CJw=="], + + "@floating-ui/core": ["@floating-ui/core@1.7.0", "", { "dependencies": { "@floating-ui/utils": "^0.2.9" } }, "sha512-FRdBLykrPPA6P76GGGqlex/e7fbe0F1ykgxHYNXQsH/iTEtjMj/f9bpY5oQqbjt5VgZvgz/uKXbGuROijh3VLA=="], + + "@floating-ui/dom": ["@floating-ui/dom@1.7.0", "", { "dependencies": { "@floating-ui/core": "^1.7.0", "@floating-ui/utils": "^0.2.9" } }, "sha512-lGTor4VlXcesUMh1cupTUTDoCxMb0V6bm3CnxHzQcw8Eaf1jQbgQX4i02fYgT0vJ82tb5MZ4CZk1LRGkktJCzg=="], + + "@floating-ui/react-dom": ["@floating-ui/react-dom@2.1.2", "", { "dependencies": { "@floating-ui/dom": "^1.0.0" }, "peerDependencies": { "react": ">=16.8.0", "react-dom": ">=16.8.0" } }, "sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A=="], + + "@floating-ui/utils": ["@floating-ui/utils@0.2.9", "", {}, "sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg=="], + + "@hookform/resolvers": ["@hookform/resolvers@5.0.1", "", { "dependencies": { "@standard-schema/utils": "^0.3.0" }, "peerDependencies": { "react-hook-form": "^7.55.0" } }, "sha512-u/+Jp83luQNx9AdyW2fIPGY6Y7NG68eN2ZW8FOJYL+M0i4s49+refdJdOp/A9n9HFQtQs3HIDHQvX3ZET2o7YA=="], + + "@humanfs/core": ["@humanfs/core@0.19.1", "", {}, "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA=="], + + "@humanfs/node": ["@humanfs/node@0.16.6", "", { "dependencies": { "@humanfs/core": "^0.19.1", "@humanwhocodes/retry": "^0.3.0" } }, "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw=="], + + "@humanwhocodes/module-importer": ["@humanwhocodes/module-importer@1.0.1", "", {}, "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA=="], + + "@humanwhocodes/retry": ["@humanwhocodes/retry@0.4.3", "", {}, "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ=="], + + "@img/sharp-darwin-arm64": ["@img/sharp-darwin-arm64@0.34.2", "", { "optionalDependencies": { "@img/sharp-libvips-darwin-arm64": "1.1.0" }, "os": "darwin", "cpu": "arm64" }, "sha512-OfXHZPppddivUJnqyKoi5YVeHRkkNE2zUFT2gbpKxp/JZCFYEYubnMg+gOp6lWfasPrTS+KPosKqdI+ELYVDtg=="], + + "@img/sharp-darwin-x64": ["@img/sharp-darwin-x64@0.34.2", "", { "optionalDependencies": { "@img/sharp-libvips-darwin-x64": "1.1.0" }, "os": "darwin", "cpu": "x64" }, "sha512-dYvWqmjU9VxqXmjEtjmvHnGqF8GrVjM2Epj9rJ6BUIXvk8slvNDJbhGFvIoXzkDhrJC2jUxNLz/GUjjvSzfw+g=="], + + "@img/sharp-libvips-darwin-arm64": ["@img/sharp-libvips-darwin-arm64@1.1.0", "", { "os": "darwin", "cpu": "arm64" }, "sha512-HZ/JUmPwrJSoM4DIQPv/BfNh9yrOA8tlBbqbLz4JZ5uew2+o22Ik+tHQJcih7QJuSa0zo5coHTfD5J8inqj9DA=="], + + "@img/sharp-libvips-darwin-x64": ["@img/sharp-libvips-darwin-x64@1.1.0", "", { "os": "darwin", "cpu": "x64" }, "sha512-Xzc2ToEmHN+hfvsl9wja0RlnXEgpKNmftriQp6XzY/RaSfwD9th+MSh0WQKzUreLKKINb3afirxW7A0fz2YWuQ=="], + + "@img/sharp-libvips-linux-arm": ["@img/sharp-libvips-linux-arm@1.1.0", "", { "os": "linux", "cpu": "arm" }, "sha512-s8BAd0lwUIvYCJyRdFqvsj+BJIpDBSxs6ivrOPm/R7piTs5UIwY5OjXrP2bqXC9/moGsyRa37eYWYCOGVXxVrA=="], + + "@img/sharp-libvips-linux-arm64": ["@img/sharp-libvips-linux-arm64@1.1.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-IVfGJa7gjChDET1dK9SekxFFdflarnUB8PwW8aGwEoF3oAsSDuNUTYS+SKDOyOJxQyDC1aPFMuRYLoDInyV9Ew=="], + + "@img/sharp-libvips-linux-ppc64": ["@img/sharp-libvips-linux-ppc64@1.1.0", "", { "os": "linux", "cpu": "ppc64" }, "sha512-tiXxFZFbhnkWE2LA8oQj7KYR+bWBkiV2nilRldT7bqoEZ4HiDOcePr9wVDAZPi/Id5fT1oY9iGnDq20cwUz8lQ=="], + + "@img/sharp-libvips-linux-s390x": ["@img/sharp-libvips-linux-s390x@1.1.0", "", { "os": "linux", "cpu": "s390x" }, "sha512-xukSwvhguw7COyzvmjydRb3x/09+21HykyapcZchiCUkTThEQEOMtBj9UhkaBRLuBrgLFzQ2wbxdeCCJW/jgJA=="], + + "@img/sharp-libvips-linux-x64": ["@img/sharp-libvips-linux-x64@1.1.0", "", { "os": "linux", "cpu": "x64" }, "sha512-yRj2+reB8iMg9W5sULM3S74jVS7zqSzHG3Ol/twnAAkAhnGQnpjj6e4ayUz7V+FpKypwgs82xbRdYtchTTUB+Q=="], + + "@img/sharp-libvips-linuxmusl-arm64": ["@img/sharp-libvips-linuxmusl-arm64@1.1.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-jYZdG+whg0MDK+q2COKbYidaqW/WTz0cc1E+tMAusiDygrM4ypmSCjOJPmFTvHHJ8j/6cAGyeDWZOsK06tP33w=="], + + "@img/sharp-libvips-linuxmusl-x64": ["@img/sharp-libvips-linuxmusl-x64@1.1.0", "", { "os": "linux", "cpu": "x64" }, "sha512-wK7SBdwrAiycjXdkPnGCPLjYb9lD4l6Ze2gSdAGVZrEL05AOUJESWU2lhlC+Ffn5/G+VKuSm6zzbQSzFX/P65A=="], + + "@img/sharp-linux-arm": ["@img/sharp-linux-arm@0.34.2", "", { "optionalDependencies": { "@img/sharp-libvips-linux-arm": "1.1.0" }, "os": "linux", "cpu": "arm" }, "sha512-0DZzkvuEOqQUP9mo2kjjKNok5AmnOr1jB2XYjkaoNRwpAYMDzRmAqUIa1nRi58S2WswqSfPOWLNOr0FDT3H5RQ=="], + + "@img/sharp-linux-arm64": ["@img/sharp-linux-arm64@0.34.2", "", { "optionalDependencies": { "@img/sharp-libvips-linux-arm64": "1.1.0" }, "os": "linux", "cpu": "arm64" }, "sha512-D8n8wgWmPDakc83LORcfJepdOSN6MvWNzzz2ux0MnIbOqdieRZwVYY32zxVx+IFUT8er5KPcyU3XXsn+GzG/0Q=="], + + "@img/sharp-linux-s390x": ["@img/sharp-linux-s390x@0.34.2", "", { "optionalDependencies": { "@img/sharp-libvips-linux-s390x": "1.1.0" }, "os": "linux", "cpu": "s390x" }, "sha512-EGZ1xwhBI7dNISwxjChqBGELCWMGDvmxZXKjQRuqMrakhO8QoMgqCrdjnAqJq/CScxfRn+Bb7suXBElKQpPDiw=="], + + "@img/sharp-linux-x64": ["@img/sharp-linux-x64@0.34.2", "", { "optionalDependencies": { "@img/sharp-libvips-linux-x64": "1.1.0" }, "os": "linux", "cpu": "x64" }, "sha512-sD7J+h5nFLMMmOXYH4DD9UtSNBD05tWSSdWAcEyzqW8Cn5UxXvsHAxmxSesYUsTOBmUnjtxghKDl15EvfqLFbQ=="], + + "@img/sharp-linuxmusl-arm64": ["@img/sharp-linuxmusl-arm64@0.34.2", "", { "optionalDependencies": { "@img/sharp-libvips-linuxmusl-arm64": "1.1.0" }, "os": "linux", "cpu": "arm64" }, "sha512-NEE2vQ6wcxYav1/A22OOxoSOGiKnNmDzCYFOZ949xFmrWZOVII1Bp3NqVVpvj+3UeHMFyN5eP/V5hzViQ5CZNA=="], + + "@img/sharp-linuxmusl-x64": ["@img/sharp-linuxmusl-x64@0.34.2", "", { "optionalDependencies": { "@img/sharp-libvips-linuxmusl-x64": "1.1.0" }, "os": "linux", "cpu": "x64" }, "sha512-DOYMrDm5E6/8bm/yQLCWyuDJwUnlevR8xtF8bs+gjZ7cyUNYXiSf/E8Kp0Ss5xasIaXSHzb888V1BE4i1hFhAA=="], + + "@img/sharp-wasm32": ["@img/sharp-wasm32@0.34.2", "", { "dependencies": { "@emnapi/runtime": "^1.4.3" }, "cpu": "none" }, "sha512-/VI4mdlJ9zkaq53MbIG6rZY+QRN3MLbR6usYlgITEzi4Rpx5S6LFKsycOQjkOGmqTNmkIdLjEvooFKwww6OpdQ=="], + + "@img/sharp-win32-arm64": ["@img/sharp-win32-arm64@0.34.2", "", { "os": "win32", "cpu": "arm64" }, "sha512-cfP/r9FdS63VA5k0xiqaNaEoGxBg9k7uE+RQGzuK9fHt7jib4zAVVseR9LsE4gJcNWgT6APKMNnCcnyOtmSEUQ=="], + + "@img/sharp-win32-ia32": ["@img/sharp-win32-ia32@0.34.2", "", { "os": "win32", "cpu": "ia32" }, "sha512-QLjGGvAbj0X/FXl8n1WbtQ6iVBpWU7JO94u/P2M4a8CFYsvQi4GW2mRy/JqkRx0qpBzaOdKJKw8uc930EX2AHw=="], + + "@img/sharp-win32-x64": ["@img/sharp-win32-x64@0.34.2", "", { "os": "win32", "cpu": "x64" }, "sha512-aUdT6zEYtDKCaxkofmmJDJYGCf0+pJg3eU9/oBuqvEeoB9dKI6ZLc/1iLJCTuJQDO4ptntAlkUmHgGjyuobZbw=="], + + "@inlang/cli": ["@inlang/cli@3.0.11", "", { "dependencies": { "@inlang/sdk": "2.4.8", "esbuild-wasm": "^0.19.2" }, "bin": { "inlang": "bin/run.js" } }, "sha512-JGyDrB7Jy0GRT6Z3QdenoJdxq+2Hob4pm4+wjrUa/bhXCTWAG+vbL+irP6OOS4EO+X8upn94NC39hbC0+72cHg=="], + + "@inlang/paraglide-js": ["@inlang/paraglide-js@2.0.13", "", { "dependencies": { "@inlang/recommend-sherlock": "0.2.1", "@inlang/sdk": "2.4.8", "commander": "11.1.0", "consola": "3.4.0", "json5": "2.2.3", "unplugin": "^2.1.2", "urlpattern-polyfill": "^10.0.0" }, "bin": { "paraglide-js": "bin/run.js" } }, "sha512-8tccsLzGa9uw0rufFqbHSM6GDF8+X1BgfBOyjG7PweBF2zGhN5fMu/nVNbsZiVKpXyR7lcfMxajIBwKhZ/zGKw=="], + + "@inlang/recommend-sherlock": ["@inlang/recommend-sherlock@0.2.1", "", { "dependencies": { "comment-json": "^4.2.3" } }, "sha512-ckv8HvHy/iTqaVAEKrr+gnl+p3XFNwe5D2+6w6wJk2ORV2XkcRkKOJ/XsTUJbPSiyi4PI+p+T3bqbmNx/rDUlg=="], + + "@inlang/sdk": ["@inlang/sdk@2.4.8", "", { "dependencies": { "@lix-js/sdk": "0.4.7", "@sinclair/typebox": "^0.31.17", "kysely": "^0.27.4", "sqlite-wasm-kysely": "0.3.0", "uuid": "^10.0.0" } }, "sha512-tyXNe/5+1Vn/eDt3mVklVjZh5qxFwqdF9+hdB6wRUCexVRw6w/w854TIRFrHuaAwFq/0N/ij/yXzll9oScAB+Q=="], + + "@ioredis/commands": ["@ioredis/commands@1.2.0", "", {}, "sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg=="], + + "@isaacs/cliui": ["@isaacs/cliui@8.0.2", "", { "dependencies": { "string-width": "^5.1.2", "string-width-cjs": "npm:string-width@^4.2.0", "strip-ansi": "^7.0.1", "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", "wrap-ansi": "^8.1.0", "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" } }, "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA=="], + + "@isaacs/fs-minipass": ["@isaacs/fs-minipass@4.0.1", "", { "dependencies": { "minipass": "^7.0.4" } }, "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w=="], + + "@jridgewell/gen-mapping": ["@jridgewell/gen-mapping@0.3.8", "", { "dependencies": { "@jridgewell/set-array": "^1.2.1", "@jridgewell/sourcemap-codec": "^1.4.10", "@jridgewell/trace-mapping": "^0.3.24" } }, "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA=="], + + "@jridgewell/resolve-uri": ["@jridgewell/resolve-uri@3.1.2", "", {}, "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw=="], + + "@jridgewell/set-array": ["@jridgewell/set-array@1.2.1", "", {}, "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A=="], + + "@jridgewell/source-map": ["@jridgewell/source-map@0.3.6", "", { "dependencies": { "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25" } }, "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ=="], + + "@jridgewell/sourcemap-codec": ["@jridgewell/sourcemap-codec@1.5.0", "", {}, "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ=="], + + "@jridgewell/trace-mapping": ["@jridgewell/trace-mapping@0.3.25", "", { "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" } }, "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ=="], + + "@lix-js/sdk": ["@lix-js/sdk@0.4.7", "", { "dependencies": { "@lix-js/server-protocol-schema": "0.1.1", "dedent": "1.5.1", "human-id": "^4.1.1", "js-sha256": "^0.11.0", "kysely": "^0.27.4", "sqlite-wasm-kysely": "0.3.0", "uuid": "^10.0.0" } }, "sha512-pRbW+joG12L0ULfMiWYosIW0plmW4AsUdiPCp+Z8rAsElJ+wJ6in58zhD3UwUcd4BNcpldEGjg6PdA7e0RgsDQ=="], + + "@lix-js/server-protocol-schema": ["@lix-js/server-protocol-schema@0.1.1", "", {}, "sha512-jBeALB6prAbtr5q4vTuxnRZZv1M2rKe8iNqRQhFJ4Tv7150unEa0vKyz0hs8Gl3fUGsWaNJBh3J8++fpbrpRBQ=="], + + "@mapbox/node-pre-gyp": ["@mapbox/node-pre-gyp@2.0.0", "", { "dependencies": { "consola": "^3.2.3", "detect-libc": "^2.0.0", "https-proxy-agent": "^7.0.5", "node-fetch": "^2.6.7", "nopt": "^8.0.0", "semver": "^7.5.3", "tar": "^7.4.0" }, "bin": { "node-pre-gyp": "bin/node-pre-gyp" } }, "sha512-llMXd39jtP0HpQLVI37Bf1m2ADlEb35GYSh1SDSLsBhR+5iCxiNGlT31yqbNtVHygHAtMy6dWFERpU2JgufhPg=="], + + "@netlify/binary-info": ["@netlify/binary-info@1.0.0", "", {}, "sha512-4wMPu9iN3/HL97QblBsBay3E1etIciR84izI3U+4iALY+JHCrI+a2jO0qbAZ/nxKoegypYEaiiqWXylm+/zfrw=="], + + "@netlify/blobs": ["@netlify/blobs@9.1.2", "", { "dependencies": { "@netlify/dev-utils": "2.2.0", "@netlify/runtime-utils": "1.3.1" } }, "sha512-7dMjExSH4zj4ShvLem49mE3mf0K171Tx2pV4WDWhJbRUWW3SJIR2qntz0LvUGS97N5HO1SmnzrgWUhEXCsApiw=="], + + "@netlify/dev-utils": ["@netlify/dev-utils@2.2.0", "", { "dependencies": { "@whatwg-node/server": "^0.9.60", "chokidar": "^4.0.1", "decache": "^4.6.2", "dot-prop": "9.0.0", "env-paths": "^3.0.0", "find-up": "7.0.0", "lodash.debounce": "^4.0.8", "netlify": "^13.3.5", "parse-gitignore": "^2.0.0", "uuid": "^11.1.0", "write-file-atomic": "^6.0.0" } }, "sha512-5XUvZuffe3KetyhbWwd4n2ktd7wraocCYw10tlM+/u/95iAz29GjNiuNxbCD1T6Bn1MyGc4QLVNKOWhzJkVFAw=="], + + "@netlify/functions": ["@netlify/functions@3.1.10", "", { "dependencies": { "@netlify/blobs": "9.1.2", "@netlify/dev-utils": "2.2.0", "@netlify/serverless-functions-api": "1.41.2", "@netlify/zip-it-and-ship-it": "^12.1.0", "cron-parser": "^4.9.0", "decache": "^4.6.2", "extract-zip": "^2.0.1", "is-stream": "^4.0.1", "jwt-decode": "^4.0.0", "lambda-local": "^2.2.0", "read-package-up": "^11.0.0", "source-map-support": "^0.5.21" } }, "sha512-sI93kcJ2cUoMgDRPnrEm0lZhuiDVDqM6ngS/UbHTApIH3+eg3yZM5p/0SDFQQq9Bad0/srFmgBmTdXushzY5kg=="], + + "@netlify/open-api": ["@netlify/open-api@2.37.0", "", {}, "sha512-zXnRFkxgNsalSgU8/vwTWnav3R+8KG8SsqHxqaoJdjjJtnZR7wo3f+qqu4z+WtZ/4V7fly91HFUwZ6Uz2OdW7w=="], + + "@netlify/runtime-utils": ["@netlify/runtime-utils@1.3.1", "", {}, "sha512-7/vIJlMYrPJPlEW84V2yeRuG3QBu66dmlv9neTmZ5nXzwylhBEOhy11ai+34A8mHCSZI4mKns25w3HM9kaDdJg=="], + + "@netlify/serverless-functions-api": ["@netlify/serverless-functions-api@1.41.2", "", {}, "sha512-pfCkH50JV06SGMNsNPjn8t17hOcId4fA881HeYQgMBOrewjsw4csaYgHEnCxCEu24Y5x75E2ULbFpqm9CvRCqw=="], + + "@netlify/zip-it-and-ship-it": ["@netlify/zip-it-and-ship-it@12.1.0", "", { "dependencies": { "@babel/parser": "^7.22.5", "@babel/types": "7.27.1", "@netlify/binary-info": "^1.0.0", "@netlify/serverless-functions-api": "^1.41.2", "@vercel/nft": "0.29.3", "archiver": "^7.0.0", "common-path-prefix": "^3.0.0", "copy-file": "^11.0.0", "es-module-lexer": "^1.0.0", "esbuild": "0.25.4", "execa": "^8.0.0", "fast-glob": "^3.3.2", "filter-obj": "^6.0.0", "find-up": "^7.0.0", "glob": "^8.0.3", "is-builtin-module": "^3.1.0", "is-path-inside": "^4.0.0", "junk": "^4.0.0", "locate-path": "^7.0.0", "merge-options": "^3.0.4", "minimatch": "^9.0.0", "normalize-path": "^3.0.0", "p-map": "^7.0.0", "path-exists": "^5.0.0", "precinct": "^12.0.0", "require-package-name": "^2.0.1", "resolve": "^2.0.0-next.1", "semver": "^7.3.8", "tmp-promise": "^3.0.2", "toml": "^3.0.0", "unixify": "^1.0.0", "urlpattern-polyfill": "8.0.2", "yargs": "^17.0.0", "zod": "^3.23.8" }, "bin": { "zip-it-and-ship-it": "./bin.js" } }, "sha512-+ND2fNnfeOZwnho79aMQ5rreFpI9tu/l4N9/F5H8t9rKYwVHHlv5Zi9o6g/gxZHDLfSbGC9th7Z46CihV8JaZw=="], + + "@next/env": ["@next/env@15.3.3", "", {}, "sha512-OdiMrzCl2Xi0VTjiQQUK0Xh7bJHnOuET2s+3V+Y40WJBAXrJeGA3f+I8MZJ/YQ3mVGi5XGR1L66oFlgqXhQ4Vw=="], + + "@next/swc-darwin-arm64": ["@next/swc-darwin-arm64@15.3.3", "", { "os": "darwin", "cpu": "arm64" }, "sha512-WRJERLuH+O3oYB4yZNVahSVFmtxRNjNF1I1c34tYMoJb0Pve+7/RaLAJJizyYiFhjYNGHRAE1Ri2Fd23zgDqhg=="], + + "@next/swc-darwin-x64": ["@next/swc-darwin-x64@15.3.3", "", { "os": "darwin", "cpu": "x64" }, "sha512-XHdzH/yBc55lu78k/XwtuFR/ZXUTcflpRXcsu0nKmF45U96jt1tsOZhVrn5YH+paw66zOANpOnFQ9i6/j+UYvw=="], + + "@next/swc-linux-arm64-gnu": ["@next/swc-linux-arm64-gnu@15.3.3", "", { "os": "linux", "cpu": "arm64" }, "sha512-VZ3sYL2LXB8znNGcjhocikEkag/8xiLgnvQts41tq6i+wql63SMS1Q6N8RVXHw5pEUjiof+II3HkDd7GFcgkzw=="], + + "@next/swc-linux-arm64-musl": ["@next/swc-linux-arm64-musl@15.3.3", "", { "os": "linux", "cpu": "arm64" }, "sha512-h6Y1fLU4RWAp1HPNJWDYBQ+e3G7sLckyBXhmH9ajn8l/RSMnhbuPBV/fXmy3muMcVwoJdHL+UtzRzs0nXOf9SA=="], + + "@next/swc-linux-x64-gnu": ["@next/swc-linux-x64-gnu@15.3.3", "", { "os": "linux", "cpu": "x64" }, "sha512-jJ8HRiF3N8Zw6hGlytCj5BiHyG/K+fnTKVDEKvUCyiQ/0r5tgwO7OgaRiOjjRoIx2vwLR+Rz8hQoPrnmFbJdfw=="], + + "@next/swc-linux-x64-musl": ["@next/swc-linux-x64-musl@15.3.3", "", { "os": "linux", "cpu": "x64" }, "sha512-HrUcTr4N+RgiiGn3jjeT6Oo208UT/7BuTr7K0mdKRBtTbT4v9zJqCDKO97DUqqoBK1qyzP1RwvrWTvU6EPh/Cw=="], + + "@next/swc-win32-arm64-msvc": ["@next/swc-win32-arm64-msvc@15.3.3", "", { "os": "win32", "cpu": "arm64" }, "sha512-SxorONgi6K7ZUysMtRF3mIeHC5aA3IQLmKFQzU0OuhuUYwpOBc1ypaLJLP5Bf3M9k53KUUUj4vTPwzGvl/NwlQ=="], + + "@next/swc-win32-x64-msvc": ["@next/swc-win32-x64-msvc@15.3.3", "", { "os": "win32", "cpu": "x64" }, "sha512-4QZG6F8enl9/S2+yIiOiju0iCTFd93d8VC1q9LZS4p/Xuk81W2QDjCFeoogmrWWkAD59z8ZxepBQap2dKS5ruw=="], + + "@nodelib/fs.scandir": ["@nodelib/fs.scandir@2.1.5", "", { "dependencies": { "@nodelib/fs.stat": "2.0.5", "run-parallel": "^1.1.9" } }, "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g=="], + + "@nodelib/fs.stat": ["@nodelib/fs.stat@2.0.5", "", {}, "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="], + + "@nodelib/fs.walk": ["@nodelib/fs.walk@1.2.8", "", { "dependencies": { "@nodelib/fs.scandir": "2.1.5", "fastq": "^1.6.0" } }, "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="], + + "@oslojs/asn1": ["@oslojs/asn1@1.0.0", "", { "dependencies": { "@oslojs/binary": "1.0.0" } }, "sha512-zw/wn0sj0j0QKbIXfIlnEcTviaCzYOY3V5rAyjR6YtOByFtJiT574+8p9Wlach0lZH9fddD4yb9laEAIl4vXQA=="], + + "@oslojs/binary": ["@oslojs/binary@1.0.0", "", {}, "sha512-9RCU6OwXU6p67H4NODbuxv2S3eenuQ4/WFLrsq+K/k682xrznH5EVWA7N4VFk9VYVcbFtKqur5YQQZc0ySGhsQ=="], + + "@oslojs/crypto": ["@oslojs/crypto@1.0.1", "", { "dependencies": { "@oslojs/asn1": "1.0.0", "@oslojs/binary": "1.0.0" } }, "sha512-7n08G8nWjAr/Yu3vu9zzrd0L9XnrJfpMioQcvCMxBIiF5orECHe5/3J0jmXRVvgfqMm/+4oxlQ+Sq39COYLcNQ=="], + + "@oslojs/encoding": ["@oslojs/encoding@1.1.0", "", {}, "sha512-70wQhgYmndg4GCPxPPxPGevRKqTIJ2Nh4OkiMWmDAVYsTQ+Ta7Sq+rPevXyXGdzr30/qZBnyOalCszoMxlyldQ=="], + + "@parcel/watcher": ["@parcel/watcher@2.5.1", "", { "dependencies": { "detect-libc": "^1.0.3", "is-glob": "^4.0.3", "micromatch": "^4.0.5", "node-addon-api": "^7.0.0" }, "optionalDependencies": { "@parcel/watcher-android-arm64": "2.5.1", "@parcel/watcher-darwin-arm64": "2.5.1", "@parcel/watcher-darwin-x64": "2.5.1", "@parcel/watcher-freebsd-x64": "2.5.1", "@parcel/watcher-linux-arm-glibc": "2.5.1", "@parcel/watcher-linux-arm-musl": "2.5.1", "@parcel/watcher-linux-arm64-glibc": "2.5.1", "@parcel/watcher-linux-arm64-musl": "2.5.1", "@parcel/watcher-linux-x64-glibc": "2.5.1", "@parcel/watcher-linux-x64-musl": "2.5.1", "@parcel/watcher-win32-arm64": "2.5.1", "@parcel/watcher-win32-ia32": "2.5.1", "@parcel/watcher-win32-x64": "2.5.1" } }, "sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg=="], + + "@parcel/watcher-android-arm64": ["@parcel/watcher-android-arm64@2.5.1", "", { "os": "android", "cpu": "arm64" }, "sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA=="], + + "@parcel/watcher-darwin-arm64": ["@parcel/watcher-darwin-arm64@2.5.1", "", { "os": "darwin", "cpu": "arm64" }, "sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw=="], + + "@parcel/watcher-darwin-x64": ["@parcel/watcher-darwin-x64@2.5.1", "", { "os": "darwin", "cpu": "x64" }, "sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg=="], + + "@parcel/watcher-freebsd-x64": ["@parcel/watcher-freebsd-x64@2.5.1", "", { "os": "freebsd", "cpu": "x64" }, "sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ=="], + + "@parcel/watcher-linux-arm-glibc": ["@parcel/watcher-linux-arm-glibc@2.5.1", "", { "os": "linux", "cpu": "arm" }, "sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA=="], + + "@parcel/watcher-linux-arm-musl": ["@parcel/watcher-linux-arm-musl@2.5.1", "", { "os": "linux", "cpu": "arm" }, "sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q=="], + + "@parcel/watcher-linux-arm64-glibc": ["@parcel/watcher-linux-arm64-glibc@2.5.1", "", { "os": "linux", "cpu": "arm64" }, "sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w=="], + + "@parcel/watcher-linux-arm64-musl": ["@parcel/watcher-linux-arm64-musl@2.5.1", "", { "os": "linux", "cpu": "arm64" }, "sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg=="], + + "@parcel/watcher-linux-x64-glibc": ["@parcel/watcher-linux-x64-glibc@2.5.1", "", { "os": "linux", "cpu": "x64" }, "sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A=="], + + "@parcel/watcher-linux-x64-musl": ["@parcel/watcher-linux-x64-musl@2.5.1", "", { "os": "linux", "cpu": "x64" }, "sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg=="], + + "@parcel/watcher-wasm": ["@parcel/watcher-wasm@2.3.0", "", { "dependencies": { "is-glob": "^4.0.3", "micromatch": "^4.0.5", "napi-wasm": "^1.1.0" } }, "sha512-ejBAX8H0ZGsD8lSICDNyMbSEtPMWgDL0WFCt/0z7hyf5v8Imz4rAM8xY379mBsECkq/Wdqa5WEDLqtjZ+6NxfA=="], + + "@parcel/watcher-win32-arm64": ["@parcel/watcher-win32-arm64@2.5.1", "", { "os": "win32", "cpu": "arm64" }, "sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw=="], + + "@parcel/watcher-win32-ia32": ["@parcel/watcher-win32-ia32@2.5.1", "", { "os": "win32", "cpu": "ia32" }, "sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ=="], + + "@parcel/watcher-win32-x64": ["@parcel/watcher-win32-x64@2.5.1", "", { "os": "win32", "cpu": "x64" }, "sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA=="], + + "@petamoriken/float16": ["@petamoriken/float16@3.9.2", "", {}, "sha512-VgffxawQde93xKxT3qap3OH+meZf7VaSB5Sqd4Rqc+FP5alWbpOyan/7tRbOAvynjpG3GpdtAuGU/NdhQpmrog=="], + + "@pkgjs/parseargs": ["@pkgjs/parseargs@0.11.0", "", {}, "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg=="], + + "@poppinss/colors": ["@poppinss/colors@4.1.4", "", { "dependencies": { "kleur": "^4.1.5" } }, "sha512-FA+nTU8p6OcSH4tLDY5JilGYr1bVWHpNmcLr7xmMEdbWmKHa+3QZ+DqefrXKmdjO/brHTnQZo20lLSjaO7ydog=="], + + "@poppinss/dumper": ["@poppinss/dumper@0.6.3", "", { "dependencies": { "@poppinss/colors": "^4.1.4", "@sindresorhus/is": "^7.0.1", "supports-color": "^10.0.0" } }, "sha512-iombbn8ckOixMtuV1p3f8jN6vqhXefNjJttoPaJDMeIk/yIGhkkL3OrHkEjE9SRsgoAx1vBUU2GtgggjvA5hCA=="], + + "@poppinss/exception": ["@poppinss/exception@1.2.1", "", {}, "sha512-aQypoot0HPSJa6gDPEPTntc1GT6QINrSbgRlRhadGW2WaYqUK3tK4Bw9SBMZXhmxd3GeAlZjVcODHgiu+THY7A=="], + + "@radix-ui/number": ["@radix-ui/number@1.1.1", "", {}, "sha512-MkKCwxlXTgz6CFoJx3pCwn07GKp36+aZyu/u2Ln2VrA5DcdyCZkASEDBTd8x5whTQQL5CiYf4prXKLcgQdv29g=="], + + "@radix-ui/primitive": ["@radix-ui/primitive@1.1.2", "", {}, "sha512-XnbHrrprsNqZKQhStrSwgRUQzoCI1glLzdw79xiZPoofhGICeZRSQ3dIxAKH1gb3OHfNf4d6f+vAv3kil2eggA=="], + + "@radix-ui/react-accordion": ["@radix-ui/react-accordion@1.2.11", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-collapsible": "1.1.11", "@radix-ui/react-collection": "1.1.7", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-controllable-state": "1.2.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-l3W5D54emV2ues7jjeG1xcyN7S3jnK3zE2zHqgn0CmMsy9lNJwmgcrmaxS+7ipw15FAivzKNzH3d5EcGoFKw0A=="], + + "@radix-ui/react-alert-dialog": ["@radix-ui/react-alert-dialog@1.1.14", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-dialog": "1.1.14", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-IOZfZ3nPvN6lXpJTBCunFQPRSvK8MDgSc1FB85xnIpUKOw9en0dJj8JmCAxV7BiZdtYlUpmrQjoTFkVYtdoWzQ=="], + + "@radix-ui/react-arrow": ["@radix-ui/react-arrow@1.1.7", "", { "dependencies": { "@radix-ui/react-primitive": "2.1.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-F+M1tLhO+mlQaOWspE8Wstg+z6PwxwRd8oQ8IXceWz92kfAmalTRf0EjrouQeo7QssEPfCn05B4Ihs1K9WQ/7w=="], + + "@radix-ui/react-aspect-ratio": ["@radix-ui/react-aspect-ratio@1.1.7", "", { "dependencies": { "@radix-ui/react-primitive": "2.1.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-Yq6lvO9HQyPwev1onK1daHCHqXVLzPhSVjmsNjCa2Zcxy2f7uJD2itDtxknv6FzAKCwD1qQkeVDmX/cev13n/g=="], + + "@radix-ui/react-avatar": ["@radix-ui/react-avatar@1.1.10", "", { "dependencies": { "@radix-ui/react-context": "1.1.2", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-callback-ref": "1.1.1", "@radix-ui/react-use-is-hydrated": "0.1.0", "@radix-ui/react-use-layout-effect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-V8piFfWapM5OmNCXTzVQY+E1rDa53zY+MQ4Y7356v4fFz6vqCyUtIz2rUD44ZEdwg78/jKmMJHj07+C/Z/rcog=="], + + "@radix-ui/react-checkbox": ["@radix-ui/react-checkbox@1.3.2", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-controllable-state": "1.2.2", "@radix-ui/react-use-previous": "1.1.1", "@radix-ui/react-use-size": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-yd+dI56KZqawxKZrJ31eENUwqc1QSqg4OZ15rybGjF2ZNwMO+wCyHzAVLRp9qoYJf7kYy0YpZ2b0JCzJ42HZpA=="], + + "@radix-ui/react-collapsible": ["@radix-ui/react-collapsible@1.1.11", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-controllable-state": "1.2.2", "@radix-ui/react-use-layout-effect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-2qrRsVGSCYasSz1RFOorXwl0H7g7J1frQtgpQgYrt+MOidtPAINHn9CPovQXb83r8ahapdx3Tu0fa/pdFFSdPg=="], + + "@radix-ui/react-collection": ["@radix-ui/react-collection@1.1.7", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-Fh9rGN0MoI4ZFUNyfFVNU4y9LUz93u9/0K+yLgA2bwRojxM8JU1DyvvMBabnZPBgMWREAJvU2jjVzq+LrFUglw=="], + + "@radix-ui/react-compose-refs": ["@radix-ui/react-compose-refs@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg=="], + + "@radix-ui/react-context": ["@radix-ui/react-context@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA=="], + + "@radix-ui/react-context-menu": ["@radix-ui/react-context-menu@2.2.15", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-menu": "2.1.15", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-callback-ref": "1.1.1", "@radix-ui/react-use-controllable-state": "1.2.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-UsQUMjcYTsBjTSXw0P3GO0werEQvUY2plgRQuKoCTtkNr45q1DiL51j4m7gxhABzZ0BadoXNsIbg7F3KwiUBbw=="], + + "@radix-ui/react-dialog": ["@radix-ui/react-dialog@1.1.14", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-dismissable-layer": "1.1.10", "@radix-ui/react-focus-guards": "1.1.2", "@radix-ui/react-focus-scope": "1.1.7", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-portal": "1.1.9", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-slot": "1.2.3", "@radix-ui/react-use-controllable-state": "1.2.2", "aria-hidden": "^1.2.4", "react-remove-scroll": "^2.6.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-+CpweKjqpzTmwRwcYECQcNYbI8V9VSQt0SNFKeEBLgfucbsLssU6Ppq7wUdNXEGb573bMjFhVjKVll8rmV6zMw=="], + + "@radix-ui/react-direction": ["@radix-ui/react-direction@1.1.1", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-1UEWRX6jnOA2y4H5WczZ44gOOjTEmlqv1uNW4GAJEO5+bauCBhv8snY65Iw5/VOS/ghKN9gr2KjnLKxrsvoMVw=="], + + "@radix-ui/react-dismissable-layer": ["@radix-ui/react-dismissable-layer@1.1.10", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-callback-ref": "1.1.1", "@radix-ui/react-use-escape-keydown": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-IM1zzRV4W3HtVgftdQiiOmA0AdJlCtMLe00FXaHwgt3rAnNsIyDqshvkIW3hj/iu5hu8ERP7KIYki6NkqDxAwQ=="], + + "@radix-ui/react-dropdown-menu": ["@radix-ui/react-dropdown-menu@2.1.15", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-menu": "2.1.15", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-controllable-state": "1.2.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-mIBnOjgwo9AH3FyKaSWoSu/dYj6VdhJ7frEPiGTeXCdUFHjl9h3mFh2wwhEtINOmYXWhdpf1rY2minFsmaNgVQ=="], + + "@radix-ui/react-focus-guards": ["@radix-ui/react-focus-guards@1.1.2", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-fyjAACV62oPV925xFCrH8DR5xWhg9KYtJT4s3u54jxp+L/hbpTY2kIeEFFbFe+a/HCE94zGQMZLIpVTPVZDhaA=="], + + "@radix-ui/react-focus-scope": ["@radix-ui/react-focus-scope@1.1.7", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-callback-ref": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-t2ODlkXBQyn7jkl6TNaw/MtVEVvIGelJDCG41Okq/KwUsJBwQ4XVZsHAVUkK4mBv3ewiAS3PGuUWuY2BoK4ZUw=="], + + "@radix-ui/react-hover-card": ["@radix-ui/react-hover-card@1.1.14", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-dismissable-layer": "1.1.10", "@radix-ui/react-popper": "1.2.7", "@radix-ui/react-portal": "1.1.9", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-controllable-state": "1.2.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-CPYZ24Mhirm+g6D8jArmLzjYu4Eyg3TTUHswR26QgzXBHBe64BO/RHOJKzmF/Dxb4y4f9PKyJdwm/O/AhNkb+Q=="], + + "@radix-ui/react-id": ["@radix-ui/react-id@1.1.1", "", { "dependencies": { "@radix-ui/react-use-layout-effect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg=="], + + "@radix-ui/react-label": ["@radix-ui/react-label@2.1.7", "", { "dependencies": { "@radix-ui/react-primitive": "2.1.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-YT1GqPSL8kJn20djelMX7/cTRp/Y9w5IZHvfxQTVHrOqa2yMl7i/UfMqKRU5V7mEyKTrUVgJXhNQPVCG8PBLoQ=="], + + "@radix-ui/react-menu": ["@radix-ui/react-menu@2.1.15", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-collection": "1.1.7", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-dismissable-layer": "1.1.10", "@radix-ui/react-focus-guards": "1.1.2", "@radix-ui/react-focus-scope": "1.1.7", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-popper": "1.2.7", "@radix-ui/react-portal": "1.1.9", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-roving-focus": "1.1.10", "@radix-ui/react-slot": "1.2.3", "@radix-ui/react-use-callback-ref": "1.1.1", "aria-hidden": "^1.2.4", "react-remove-scroll": "^2.6.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-tVlmA3Vb9n8SZSd+YSbuFR66l87Wiy4du+YE+0hzKQEANA+7cWKH1WgqcEX4pXqxUFQKrWQGHdvEfw00TjFiew=="], + + "@radix-ui/react-menubar": ["@radix-ui/react-menubar@1.1.15", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-collection": "1.1.7", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-menu": "2.1.15", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-roving-focus": "1.1.10", "@radix-ui/react-use-controllable-state": "1.2.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-Z71C7LGD+YDYo3TV81paUs8f3Zbmkvg6VLRQpKYfzioOE6n7fOhA3ApK/V/2Odolxjoc4ENk8AYCjohCNayd5A=="], + + "@radix-ui/react-navigation-menu": ["@radix-ui/react-navigation-menu@1.2.13", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-collection": "1.1.7", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-dismissable-layer": "1.1.10", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-callback-ref": "1.1.1", "@radix-ui/react-use-controllable-state": "1.2.2", "@radix-ui/react-use-layout-effect": "1.1.1", "@radix-ui/react-use-previous": "1.1.1", "@radix-ui/react-visually-hidden": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-WG8wWfDiJlSF5hELjwfjSGOXcBR/ZMhBFCGYe8vERpC39CQYZeq1PQ2kaYHdye3V95d06H89KGMsVCIE4LWo3g=="], + + "@radix-ui/react-popover": ["@radix-ui/react-popover@1.1.14", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-dismissable-layer": "1.1.10", "@radix-ui/react-focus-guards": "1.1.2", "@radix-ui/react-focus-scope": "1.1.7", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-popper": "1.2.7", "@radix-ui/react-portal": "1.1.9", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-slot": "1.2.3", "@radix-ui/react-use-controllable-state": "1.2.2", "aria-hidden": "^1.2.4", "react-remove-scroll": "^2.6.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-ODz16+1iIbGUfFEfKx2HTPKizg2MN39uIOV8MXeHnmdd3i/N9Wt7vU46wbHsqA0xoaQyXVcs0KIlBdOA2Y95bw=="], + + "@radix-ui/react-popper": ["@radix-ui/react-popper@1.2.7", "", { "dependencies": { "@floating-ui/react-dom": "^2.0.0", "@radix-ui/react-arrow": "1.1.7", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-callback-ref": "1.1.1", "@radix-ui/react-use-layout-effect": "1.1.1", "@radix-ui/react-use-rect": "1.1.1", "@radix-ui/react-use-size": "1.1.1", "@radix-ui/rect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-IUFAccz1JyKcf/RjB552PlWwxjeCJB8/4KxT7EhBHOJM+mN7LdW+B3kacJXILm32xawcMMjb2i0cIZpo+f9kiQ=="], + + "@radix-ui/react-portal": ["@radix-ui/react-portal@1.1.9", "", { "dependencies": { "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-layout-effect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ=="], + + "@radix-ui/react-presence": ["@radix-ui/react-presence@1.1.4", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-use-layout-effect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-ueDqRbdc4/bkaQT3GIpLQssRlFgWaL/U2z/S31qRwwLWoxHLgry3SIfCwhxeQNbirEUXFa+lq3RL3oBYXtcmIA=="], + + "@radix-ui/react-primitive": ["@radix-ui/react-primitive@2.1.3", "", { "dependencies": { "@radix-ui/react-slot": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ=="], + + "@radix-ui/react-progress": ["@radix-ui/react-progress@1.1.7", "", { "dependencies": { "@radix-ui/react-context": "1.1.2", "@radix-ui/react-primitive": "2.1.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-vPdg/tF6YC/ynuBIJlk1mm7Le0VgW6ub6J2UWnTQ7/D23KXcPI1qy+0vBkgKgd38RCMJavBXpB83HPNFMTb0Fg=="], + + "@radix-ui/react-radio-group": ["@radix-ui/react-radio-group@1.3.7", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-roving-focus": "1.1.10", "@radix-ui/react-use-controllable-state": "1.2.2", "@radix-ui/react-use-previous": "1.1.1", "@radix-ui/react-use-size": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-9w5XhD0KPOrm92OTTE0SysH3sYzHsSTHNvZgUBo/VZ80VdYyB5RneDbc0dKpURS24IxkoFRu/hI0i4XyfFwY6g=="], + + "@radix-ui/react-roving-focus": ["@radix-ui/react-roving-focus@1.1.10", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-collection": "1.1.7", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-callback-ref": "1.1.1", "@radix-ui/react-use-controllable-state": "1.2.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-dT9aOXUen9JSsxnMPv/0VqySQf5eDQ6LCk5Sw28kamz8wSOW2bJdlX2Bg5VUIIcV+6XlHpWTIuTPCf/UNIyq8Q=="], + + "@radix-ui/react-scroll-area": ["@radix-ui/react-scroll-area@1.2.9", "", { "dependencies": { "@radix-ui/number": "1.1.1", "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-callback-ref": "1.1.1", "@radix-ui/react-use-layout-effect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-YSjEfBXnhUELsO2VzjdtYYD4CfQjvao+lhhrX5XsHD7/cyUNzljF1FHEbgTPN7LH2MClfwRMIsYlqTYpKTTe2A=="], + + "@radix-ui/react-select": ["@radix-ui/react-select@2.2.5", "", { "dependencies": { "@radix-ui/number": "1.1.1", "@radix-ui/primitive": "1.1.2", "@radix-ui/react-collection": "1.1.7", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-dismissable-layer": "1.1.10", "@radix-ui/react-focus-guards": "1.1.2", "@radix-ui/react-focus-scope": "1.1.7", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-popper": "1.2.7", "@radix-ui/react-portal": "1.1.9", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-slot": "1.2.3", "@radix-ui/react-use-callback-ref": "1.1.1", "@radix-ui/react-use-controllable-state": "1.2.2", "@radix-ui/react-use-layout-effect": "1.1.1", "@radix-ui/react-use-previous": "1.1.1", "@radix-ui/react-visually-hidden": "1.2.3", "aria-hidden": "^1.2.4", "react-remove-scroll": "^2.6.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-HnMTdXEVuuyzx63ME0ut4+sEMYW6oouHWNGUZc7ddvUWIcfCva/AMoqEW/3wnEllriMWBa0RHspCYnfCWJQYmA=="], + + "@radix-ui/react-separator": ["@radix-ui/react-separator@1.1.7", "", { "dependencies": { "@radix-ui/react-primitive": "2.1.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-0HEb8R9E8A+jZjvmFCy/J4xhbXy3TV+9XSnGJ3KvTtjlIUy/YQ/p6UYZvi7YbeoeXdyU9+Y3scizK6hkY37baA=="], + + "@radix-ui/react-slider": ["@radix-ui/react-slider@1.3.5", "", { "dependencies": { "@radix-ui/number": "1.1.1", "@radix-ui/primitive": "1.1.2", "@radix-ui/react-collection": "1.1.7", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-controllable-state": "1.2.2", "@radix-ui/react-use-layout-effect": "1.1.1", "@radix-ui/react-use-previous": "1.1.1", "@radix-ui/react-use-size": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-rkfe2pU2NBAYfGaxa3Mqosi7VZEWX5CxKaanRv0vZd4Zhl9fvQrg0VM93dv3xGLGfrHuoTRF3JXH8nb9g+B3fw=="], + + "@radix-ui/react-slot": ["@radix-ui/react-slot@1.2.3", "", { "dependencies": { "@radix-ui/react-compose-refs": "1.1.2" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A=="], + + "@radix-ui/react-switch": ["@radix-ui/react-switch@1.2.5", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-controllable-state": "1.2.2", "@radix-ui/react-use-previous": "1.1.1", "@radix-ui/react-use-size": "1.1.1" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-5ijLkak6ZMylXsaImpZ8u4Rlf5grRmoc0p0QeX9VJtlrM4f5m3nCTX8tWga/zOA8PZYIR/t0p2Mnvd7InrJ6yQ=="], + + "@radix-ui/react-tabs": ["@radix-ui/react-tabs@1.1.12", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-roving-focus": "1.1.10", "@radix-ui/react-use-controllable-state": "1.2.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-GTVAlRVrQrSw3cEARM0nAx73ixrWDPNZAruETn3oHCNP6SbZ/hNxdxp+u7VkIEv3/sFoLq1PfcHrl7Pnp0CDpw=="], + + "@radix-ui/react-toggle": ["@radix-ui/react-toggle@1.1.9", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-use-controllable-state": "1.2.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-ZoFkBBz9zv9GWer7wIjvdRxmh2wyc2oKWw6C6CseWd6/yq1DK/l5lJ+wnsmFwJZbBYqr02mrf8A2q/CVCuM3ZA=="], + + "@radix-ui/react-toggle-group": ["@radix-ui/react-toggle-group@1.1.10", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-direction": "1.1.1", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-roving-focus": "1.1.10", "@radix-ui/react-toggle": "1.1.9", "@radix-ui/react-use-controllable-state": "1.2.2" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-kiU694Km3WFLTC75DdqgM/3Jauf3rD9wxeS9XtyWFKsBUeZA337lC+6uUazT7I1DhanZ5gyD5Stf8uf2dbQxOQ=="], + + "@radix-ui/react-tooltip": ["@radix-ui/react-tooltip@1.2.7", "", { "dependencies": { "@radix-ui/primitive": "1.1.2", "@radix-ui/react-compose-refs": "1.1.2", "@radix-ui/react-context": "1.1.2", "@radix-ui/react-dismissable-layer": "1.1.10", "@radix-ui/react-id": "1.1.1", "@radix-ui/react-popper": "1.2.7", "@radix-ui/react-portal": "1.1.9", "@radix-ui/react-presence": "1.1.4", "@radix-ui/react-primitive": "2.1.3", "@radix-ui/react-slot": "1.2.3", "@radix-ui/react-use-controllable-state": "1.2.2", "@radix-ui/react-visually-hidden": "1.2.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-Ap+fNYwKTYJ9pzqW+Xe2HtMRbQ/EeWkj2qykZ6SuEV4iS/o1bZI5ssJbk4D2r8XuDuOBVz/tIx2JObtuqU+5Zw=="], + + "@radix-ui/react-use-callback-ref": ["@radix-ui/react-use-callback-ref@1.1.1", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg=="], + + "@radix-ui/react-use-controllable-state": ["@radix-ui/react-use-controllable-state@1.2.2", "", { "dependencies": { "@radix-ui/react-use-effect-event": "0.0.2", "@radix-ui/react-use-layout-effect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-BjasUjixPFdS+NKkypcyyN5Pmg83Olst0+c6vGov0diwTEo6mgdqVR6hxcEgFuh4QrAs7Rc+9KuGJ9TVCj0Zzg=="], + + "@radix-ui/react-use-effect-event": ["@radix-ui/react-use-effect-event@0.0.2", "", { "dependencies": { "@radix-ui/react-use-layout-effect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-Qp8WbZOBe+blgpuUT+lw2xheLP8q0oatc9UpmiemEICxGvFLYmHm9QowVZGHtJlGbS6A6yJ3iViad/2cVjnOiA=="], + + "@radix-ui/react-use-escape-keydown": ["@radix-ui/react-use-escape-keydown@1.1.1", "", { "dependencies": { "@radix-ui/react-use-callback-ref": "1.1.1" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-Il0+boE7w/XebUHyBjroE+DbByORGR9KKmITzbR7MyQ4akpORYP/ZmbhAr0DG7RmmBqoOnZdy2QlvajJ2QA59g=="], + + "@radix-ui/react-use-is-hydrated": ["@radix-ui/react-use-is-hydrated@0.1.0", "", { "dependencies": { "use-sync-external-store": "^1.5.0" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-U+UORVEq+cTnRIaostJv9AGdV3G6Y+zbVd+12e18jQ5A3c0xL03IhnHuiU4UV69wolOQp5GfR58NW/EgdQhwOA=="], + + "@radix-ui/react-use-layout-effect": ["@radix-ui/react-use-layout-effect@1.1.1", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ=="], + + "@radix-ui/react-use-previous": ["@radix-ui/react-use-previous@1.1.1", "", { "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-2dHfToCj/pzca2Ck724OZ5L0EVrr3eHRNsG/b3xQJLA2hZpVCS99bLAX+hm1IHXDEnzU6by5z/5MIY794/a8NQ=="], + + "@radix-ui/react-use-rect": ["@radix-ui/react-use-rect@1.1.1", "", { "dependencies": { "@radix-ui/rect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-QTYuDesS0VtuHNNvMh+CjlKJ4LJickCMUAqjlE3+j8w+RlRpwyX3apEQKGFzbZGdo7XNG1tXa+bQqIE7HIXT2w=="], + + "@radix-ui/react-use-size": ["@radix-ui/react-use-size@1.1.1", "", { "dependencies": { "@radix-ui/react-use-layout-effect": "1.1.1" }, "peerDependencies": { "@types/react": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-ewrXRDTAqAXlkl6t/fkXWNAhFX9I+CkKlw6zjEwk86RSPKwZr3xpBRso655aqYafwtnbpHLj6toFzmd6xdVptQ=="], + + "@radix-ui/react-visually-hidden": ["@radix-ui/react-visually-hidden@1.2.3", "", { "dependencies": { "@radix-ui/react-primitive": "2.1.3" }, "peerDependencies": { "@types/react": "*", "@types/react-dom": "*", "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react", "@types/react-dom"] }, "sha512-pzJq12tEaaIhqjbzpCuv/OypJY/BPavOofm+dbab+MHLajy277+1lLm6JFcGgF5eskJ6mquGirhXY2GD/8u8Ug=="], + + "@radix-ui/rect": ["@radix-ui/rect@1.1.1", "", {}, "sha512-HPwpGIzkl28mWyZqG52jiqDJ12waP11Pa1lGoiyUkIEuMLBP0oeK/C89esbXrxsky5we7dfd8U58nm0SgAWpVw=="], + + "@react-email/body": ["@react-email/body@0.0.11", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-ZSD2SxVSgUjHGrB0Wi+4tu3MEpB4fYSbezsFNEJk2xCWDBkFiOeEsjTmR5dvi+CxTK691hQTQlHv0XWuP7ENTg=="], + + "@react-email/button": ["@react-email/button@0.0.19", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-HYHrhyVGt7rdM/ls6FuuD6XE7fa7bjZTJqB2byn6/oGsfiEZaogY77OtoLL/mrQHjHjZiJadtAMSik9XLcm7+A=="], + + "@react-email/code-block": ["@react-email/code-block@0.0.13", "", { "dependencies": { "prismjs": "^1.30.0" }, "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-4DE4yPSgKEOnZMzcrDvRuD6mxsNxOex0hCYEG9F9q23geYgb2WCCeGBvIUXVzK69l703Dg4Vzrd5qUjl+JfcwA=="], + + "@react-email/code-inline": ["@react-email/code-inline@0.0.5", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-MmAsOzdJpzsnY2cZoPHFPk6uDO/Ncpb4Kh1hAt9UZc1xOW3fIzpe1Pi9y9p6wwUmpaeeDalJxAxH6/fnTquinA=="], + + "@react-email/column": ["@react-email/column@0.0.13", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-Lqq17l7ShzJG/d3b1w/+lVO+gp2FM05ZUo/nW0rjxB8xBICXOVv6PqjDnn3FXKssvhO5qAV20lHM6S+spRhEwQ=="], + + "@react-email/components": ["@react-email/components@0.0.41", "", { "dependencies": { "@react-email/body": "0.0.11", "@react-email/button": "0.0.19", "@react-email/code-block": "0.0.13", "@react-email/code-inline": "0.0.5", "@react-email/column": "0.0.13", "@react-email/container": "0.0.15", "@react-email/font": "0.0.9", "@react-email/head": "0.0.12", "@react-email/heading": "0.0.15", "@react-email/hr": "0.0.11", "@react-email/html": "0.0.11", "@react-email/img": "0.0.11", "@react-email/link": "0.0.12", "@react-email/markdown": "0.0.15", "@react-email/preview": "0.0.13", "@react-email/render": "1.1.2", "@react-email/row": "0.0.12", "@react-email/section": "0.0.16", "@react-email/tailwind": "1.0.5", "@react-email/text": "0.1.4" }, "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-WUI3wHwra3QS0pwrovSU6b0I0f3TvY33ph0y44LuhSYDSQlMRyeOzgoT6HRDY5FXMDF57cHYq9WoKwpwP0yd7Q=="], + + "@react-email/container": ["@react-email/container@0.0.15", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-Qo2IQo0ru2kZq47REmHW3iXjAQaKu4tpeq/M8m1zHIVwKduL2vYOBQWbC2oDnMtWPmkBjej6XxgtZByxM6cCFg=="], + + "@react-email/font": ["@react-email/font@0.0.9", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-4zjq23oT9APXkerqeslPH3OZWuh5X4crHK6nx82mVHV2SrLba8+8dPEnWbaACWTNjOCbcLIzaC9unk7Wq2MIXw=="], + + "@react-email/head": ["@react-email/head@0.0.12", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-X2Ii6dDFMF+D4niNwMAHbTkeCjlYYnMsd7edXOsi0JByxt9wNyZ9EnhFiBoQdqkE+SMDcu8TlNNttMrf5sJeMA=="], + + "@react-email/heading": ["@react-email/heading@0.0.15", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-xF2GqsvBrp/HbRHWEfOgSfRFX+Q8I5KBEIG5+Lv3Vb2R/NYr0s8A5JhHHGf2pWBMJdbP4B2WHgj/VUrhy8dkIg=="], + + "@react-email/hr": ["@react-email/hr@0.0.11", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-S1gZHVhwOsd1Iad5IFhpfICwNPMGPJidG/Uysy1AwmspyoAP5a4Iw3OWEpINFdgh9MHladbxcLKO2AJO+cA9Lw=="], + + "@react-email/html": ["@react-email/html@0.0.11", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-qJhbOQy5VW5qzU74AimjAR9FRFQfrMa7dn4gkEXKMB/S9xZN8e1yC1uA9C15jkXI/PzmJ0muDIWmFwatm5/+VA=="], + + "@react-email/img": ["@react-email/img@0.0.11", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-aGc8Y6U5C3igoMaqAJKsCpkbm1XjguQ09Acd+YcTKwjnC2+0w3yGUJkjWB2vTx4tN8dCqQCXO8FmdJpMfOA9EQ=="], + + "@react-email/link": ["@react-email/link@0.0.12", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-vF+xxQk2fGS1CN7UPQDbzvcBGfffr+GjTPNiWM38fhBfsLv6A/YUfaqxWlmL7zLzVmo0K2cvvV9wxlSyNba1aQ=="], + + "@react-email/markdown": ["@react-email/markdown@0.0.15", "", { "dependencies": { "md-to-react-email": "^5.0.5" }, "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-UQA9pVm5sbflgtg3EX3FquUP4aMBzmLReLbGJ6DZQZnAskBF36aI56cRykDq1o+1jT+CKIK1CducPYziaXliag=="], + + "@react-email/preview": ["@react-email/preview@0.0.13", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-F7j9FJ0JN/A4d7yr+aw28p4uX7VLWs7hTHtLo7WRyw4G+Lit6Zucq4UWKRxJC8lpsUdzVmG7aBJnKOT+urqs/w=="], + + "@react-email/render": ["@react-email/render@1.1.2", "", { "dependencies": { "html-to-text": "^9.0.5", "prettier": "^3.5.3", "react-promise-suspense": "^0.3.4" }, "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc", "react-dom": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-RnRehYN3v9gVlNMehHPHhyp2RQo7+pSkHDtXPvg3s0GbzM9SQMW4Qrf8GRNvtpLC4gsI+Wt0VatNRUFqjvevbw=="], + + "@react-email/row": ["@react-email/row@0.0.12", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-HkCdnEjvK3o+n0y0tZKXYhIXUNPDx+2vq1dJTmqappVHXS5tXS6W5JOPZr5j+eoZ8gY3PShI2LWj5rWF7ZEtIQ=="], + + "@react-email/section": ["@react-email/section@0.0.16", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-FjqF9xQ8FoeUZYKSdt8sMIKvoT9XF8BrzhT3xiFKdEMwYNbsDflcjfErJe3jb7Wj/es/lKTbV5QR1dnLzGpL3w=="], + + "@react-email/tailwind": ["@react-email/tailwind@1.0.5", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-BH00cZSeFfP9HiDASl+sPHi7Hh77W5nzDgdnxtsVr/m3uQD9g180UwxcE3PhOfx0vRdLzQUU8PtmvvDfbztKQg=="], + + "@react-email/text": ["@react-email/text@0.1.4", "", { "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" } }, "sha512-cMNE02y8172DocpNGh97uV5HSTawaS4CKG/zOku8Pu+m6ehBKbAjgtQZDIxhgstw8+TWraFB8ltS1DPjfG8nLA=="], + + "@rolldown/pluginutils": ["@rolldown/pluginutils@1.0.0-beta.9", "", {}, "sha512-e9MeMtVWo186sgvFFJOPGy7/d2j2mZhLJIdVW0C/xDluuOvymEATqz6zKsP0ZmXGzQtqlyjz5sC1sYQUoJG98w=="], + + "@rollup/plugin-alias": ["@rollup/plugin-alias@5.1.1", "", { "peerDependencies": { "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" }, "optionalPeers": ["rollup"] }, "sha512-PR9zDb+rOzkRb2VD+EuKB7UC41vU5DIwZ5qqCpk0KJudcWAyi8rvYOhS7+L5aZCspw1stTViLgN5v6FF1p5cgQ=="], + + "@rollup/plugin-commonjs": ["@rollup/plugin-commonjs@28.0.3", "", { "dependencies": { "@rollup/pluginutils": "^5.0.1", "commondir": "^1.0.1", "estree-walker": "^2.0.2", "fdir": "^6.2.0", "is-reference": "1.2.1", "magic-string": "^0.30.3", "picomatch": "^4.0.2" }, "peerDependencies": { "rollup": "^2.68.0||^3.0.0||^4.0.0" }, "optionalPeers": ["rollup"] }, "sha512-pyltgilam1QPdn+Zd9gaCfOLcnjMEJ9gV+bTw6/r73INdvzf1ah9zLIJBm+kW7R6IUFIQ1YO+VqZtYxZNWFPEQ=="], + + "@rollup/plugin-inject": ["@rollup/plugin-inject@5.0.5", "", { "dependencies": { "@rollup/pluginutils": "^5.0.1", "estree-walker": "^2.0.2", "magic-string": "^0.30.3" }, "peerDependencies": { "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" }, "optionalPeers": ["rollup"] }, "sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg=="], + + "@rollup/plugin-json": ["@rollup/plugin-json@6.1.0", "", { "dependencies": { "@rollup/pluginutils": "^5.1.0" }, "peerDependencies": { "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" }, "optionalPeers": ["rollup"] }, "sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA=="], + + "@rollup/plugin-node-resolve": ["@rollup/plugin-node-resolve@16.0.1", "", { "dependencies": { "@rollup/pluginutils": "^5.0.1", "@types/resolve": "1.20.2", "deepmerge": "^4.2.2", "is-module": "^1.0.0", "resolve": "^1.22.1" }, "peerDependencies": { "rollup": "^2.78.0||^3.0.0||^4.0.0" }, "optionalPeers": ["rollup"] }, "sha512-tk5YCxJWIG81umIvNkSod2qK5KyQW19qcBF/B78n1bjtOON6gzKoVeSzAE8yHCZEDmqkHKkxplExA8KzdJLJpA=="], + + "@rollup/plugin-replace": ["@rollup/plugin-replace@6.0.2", "", { "dependencies": { "@rollup/pluginutils": "^5.0.1", "magic-string": "^0.30.3" }, "peerDependencies": { "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" }, "optionalPeers": ["rollup"] }, "sha512-7QaYCf8bqF04dOy7w/eHmJeNExxTYwvKAmlSAH/EaWWUzbT0h5sbF6bktFoX/0F/0qwng5/dWFMyf3gzaM8DsQ=="], + + "@rollup/plugin-terser": ["@rollup/plugin-terser@0.4.4", "", { "dependencies": { "serialize-javascript": "^6.0.1", "smob": "^1.0.0", "terser": "^5.17.4" }, "peerDependencies": { "rollup": "^2.0.0||^3.0.0||^4.0.0" }, "optionalPeers": ["rollup"] }, "sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A=="], + + "@rollup/pluginutils": ["@rollup/pluginutils@5.1.4", "", { "dependencies": { "@types/estree": "^1.0.0", "estree-walker": "^2.0.2", "picomatch": "^4.0.2" }, "peerDependencies": { "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" }, "optionalPeers": ["rollup"] }, "sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ=="], + + "@rollup/rollup-android-arm-eabi": ["@rollup/rollup-android-arm-eabi@4.41.1", "", { "os": "android", "cpu": "arm" }, "sha512-NELNvyEWZ6R9QMkiytB4/L4zSEaBC03KIXEghptLGLZWJ6VPrL63ooZQCOnlx36aQPGhzuOMwDerC1Eb2VmrLw=="], + + "@rollup/rollup-android-arm64": ["@rollup/rollup-android-arm64@4.41.1", "", { "os": "android", "cpu": "arm64" }, "sha512-DXdQe1BJ6TK47ukAoZLehRHhfKnKg9BjnQYUu9gzhI8Mwa1d2fzxA1aw2JixHVl403bwp1+/o/NhhHtxWJBgEA=="], + + "@rollup/rollup-darwin-arm64": ["@rollup/rollup-darwin-arm64@4.41.1", "", { "os": "darwin", "cpu": "arm64" }, "sha512-5afxvwszzdulsU2w8JKWwY8/sJOLPzf0e1bFuvcW5h9zsEg+RQAojdW0ux2zyYAz7R8HvvzKCjLNJhVq965U7w=="], + + "@rollup/rollup-darwin-x64": ["@rollup/rollup-darwin-x64@4.41.1", "", { "os": "darwin", "cpu": "x64" }, "sha512-egpJACny8QOdHNNMZKf8xY0Is6gIMz+tuqXlusxquWu3F833DcMwmGM7WlvCO9sB3OsPjdC4U0wHw5FabzCGZg=="], + + "@rollup/rollup-freebsd-arm64": ["@rollup/rollup-freebsd-arm64@4.41.1", "", { "os": "freebsd", "cpu": "arm64" }, "sha512-DBVMZH5vbjgRk3r0OzgjS38z+atlupJ7xfKIDJdZZL6sM6wjfDNo64aowcLPKIx7LMQi8vybB56uh1Ftck/Atg=="], + + "@rollup/rollup-freebsd-x64": ["@rollup/rollup-freebsd-x64@4.41.1", "", { "os": "freebsd", "cpu": "x64" }, "sha512-3FkydeohozEskBxNWEIbPfOE0aqQgB6ttTkJ159uWOFn42VLyfAiyD9UK5mhu+ItWzft60DycIN1Xdgiy8o/SA=="], + + "@rollup/rollup-linux-arm-gnueabihf": ["@rollup/rollup-linux-arm-gnueabihf@4.41.1", "", { "os": "linux", "cpu": "arm" }, "sha512-wC53ZNDgt0pqx5xCAgNunkTzFE8GTgdZ9EwYGVcg+jEjJdZGtq9xPjDnFgfFozQI/Xm1mh+D9YlYtl+ueswNEg=="], + + "@rollup/rollup-linux-arm-musleabihf": ["@rollup/rollup-linux-arm-musleabihf@4.41.1", "", { "os": "linux", "cpu": "arm" }, "sha512-jwKCca1gbZkZLhLRtsrka5N8sFAaxrGz/7wRJ8Wwvq3jug7toO21vWlViihG85ei7uJTpzbXZRcORotE+xyrLA=="], + + "@rollup/rollup-linux-arm64-gnu": ["@rollup/rollup-linux-arm64-gnu@4.41.1", "", { "os": "linux", "cpu": "arm64" }, "sha512-g0UBcNknsmmNQ8V2d/zD2P7WWfJKU0F1nu0k5pW4rvdb+BIqMm8ToluW/eeRmxCared5dD76lS04uL4UaNgpNA=="], + + "@rollup/rollup-linux-arm64-musl": ["@rollup/rollup-linux-arm64-musl@4.41.1", "", { "os": "linux", "cpu": "arm64" }, "sha512-XZpeGB5TKEZWzIrj7sXr+BEaSgo/ma/kCgrZgL0oo5qdB1JlTzIYQKel/RmhT6vMAvOdM2teYlAaOGJpJ9lahg=="], + + "@rollup/rollup-linux-loongarch64-gnu": ["@rollup/rollup-linux-loongarch64-gnu@4.41.1", "", { "os": "linux", "cpu": "none" }, "sha512-bkCfDJ4qzWfFRCNt5RVV4DOw6KEgFTUZi2r2RuYhGWC8WhCA8lCAJhDeAmrM/fdiAH54m0mA0Vk2FGRPyzI+tw=="], + + "@rollup/rollup-linux-powerpc64le-gnu": ["@rollup/rollup-linux-powerpc64le-gnu@4.41.1", "", { "os": "linux", "cpu": "ppc64" }, "sha512-3mr3Xm+gvMX+/8EKogIZSIEF0WUu0HL9di+YWlJpO8CQBnoLAEL/roTCxuLncEdgcfJcvA4UMOf+2dnjl4Ut1A=="], + + "@rollup/rollup-linux-riscv64-gnu": ["@rollup/rollup-linux-riscv64-gnu@4.41.1", "", { "os": "linux", "cpu": "none" }, "sha512-3rwCIh6MQ1LGrvKJitQjZFuQnT2wxfU+ivhNBzmxXTXPllewOF7JR1s2vMX/tWtUYFgphygxjqMl76q4aMotGw=="], + + "@rollup/rollup-linux-riscv64-musl": ["@rollup/rollup-linux-riscv64-musl@4.41.1", "", { "os": "linux", "cpu": "none" }, "sha512-LdIUOb3gvfmpkgFZuccNa2uYiqtgZAz3PTzjuM5bH3nvuy9ty6RGc/Q0+HDFrHrizJGVpjnTZ1yS5TNNjFlklw=="], + + "@rollup/rollup-linux-s390x-gnu": ["@rollup/rollup-linux-s390x-gnu@4.41.1", "", { "os": "linux", "cpu": "s390x" }, "sha512-oIE6M8WC9ma6xYqjvPhzZYk6NbobIURvP/lEbh7FWplcMO6gn7MM2yHKA1eC/GvYwzNKK/1LYgqzdkZ8YFxR8g=="], + + "@rollup/rollup-linux-x64-gnu": ["@rollup/rollup-linux-x64-gnu@4.41.1", "", { "os": "linux", "cpu": "x64" }, "sha512-cWBOvayNvA+SyeQMp79BHPK8ws6sHSsYnK5zDcsC3Hsxr1dgTABKjMnMslPq1DvZIp6uO7kIWhiGwaTdR4Og9A=="], + + "@rollup/rollup-linux-x64-musl": ["@rollup/rollup-linux-x64-musl@4.41.1", "", { "os": "linux", "cpu": "x64" }, "sha512-y5CbN44M+pUCdGDlZFzGGBSKCA4A/J2ZH4edTYSSxFg7ce1Xt3GtydbVKWLlzL+INfFIZAEg1ZV6hh9+QQf9YQ=="], + + "@rollup/rollup-win32-arm64-msvc": ["@rollup/rollup-win32-arm64-msvc@4.41.1", "", { "os": "win32", "cpu": "arm64" }, "sha512-lZkCxIrjlJlMt1dLO/FbpZbzt6J/A8p4DnqzSa4PWqPEUUUnzXLeki/iyPLfV0BmHItlYgHUqJe+3KiyydmiNQ=="], + + "@rollup/rollup-win32-ia32-msvc": ["@rollup/rollup-win32-ia32-msvc@4.41.1", "", { "os": "win32", "cpu": "ia32" }, "sha512-+psFT9+pIh2iuGsxFYYa/LhS5MFKmuivRsx9iPJWNSGbh2XVEjk90fmpUEjCnILPEPJnikAU6SFDiEUyOv90Pg=="], + + "@rollup/rollup-win32-x64-msvc": ["@rollup/rollup-win32-x64-msvc@4.41.1", "", { "os": "win32", "cpu": "x64" }, "sha512-Wq2zpapRYLfi4aKxf2Xff0tN+7slj2d4R87WEzqw7ZLsVvO5zwYCIuEGSZYiK41+GlwUo1HiR+GdkLEJnCKTCw=="], + + "@selderee/plugin-htmlparser2": ["@selderee/plugin-htmlparser2@0.11.0", "", { "dependencies": { "domhandler": "^5.0.3", "selderee": "^0.11.0" } }, "sha512-P33hHGdldxGabLFjPPpaTxVolMrzrcegejx+0GxjrIb9Zv48D8yAIA/QTDR2dFl7Uz7urX8aX6+5bCZslr+gWQ=="], + + "@sinclair/typebox": ["@sinclair/typebox@0.31.28", "", {}, "sha512-/s55Jujywdw/Jpan+vsy6JZs1z2ZTGxTmbZTPiuSL2wz9mfzA2gN1zzaqmvfi4pq+uOt7Du85fkiwv5ymW84aQ=="], + + "@sindresorhus/is": ["@sindresorhus/is@7.0.1", "", {}, "sha512-QWLl2P+rsCJeofkDNIT3WFmb6NrRud1SUYW8dIhXK/46XFV8Q/g7Bsvib0Askb0reRLe+WYPeeE+l5cH7SlkuQ=="], + + "@sindresorhus/merge-streams": ["@sindresorhus/merge-streams@2.3.0", "", {}, "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg=="], + + "@socket.io/component-emitter": ["@socket.io/component-emitter@3.1.2", "", {}, "sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA=="], + + "@speed-highlight/core": ["@speed-highlight/core@1.2.7", "", {}, "sha512-0dxmVj4gxg3Jg879kvFS/msl4s9F3T9UXC1InxgOf7t5NvcPD97u/WTA5vL/IxWHMn7qSxBozqrnnE2wvl1m8g=="], + + "@sqlite.org/sqlite-wasm": ["@sqlite.org/sqlite-wasm@3.48.0-build4", "", { "bin": { "sqlite-wasm": "bin/index.js" } }, "sha512-hI6twvUkzOmyGZhQMza1gpfqErZxXRw6JEsiVjUbo7tFanVD+8Oil0Ih3l2nGzHdxPI41zFmfUQG7GHqhciKZQ=="], + + "@standard-schema/utils": ["@standard-schema/utils@0.3.0", "", {}, "sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g=="], + + "@swc/counter": ["@swc/counter@0.1.3", "", {}, "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ=="], + + "@swc/helpers": ["@swc/helpers@0.5.15", "", { "dependencies": { "tslib": "^2.8.0" } }, "sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g=="], + + "@tailwindcss/node": ["@tailwindcss/node@4.1.8", "", { "dependencies": { "@ampproject/remapping": "^2.3.0", "enhanced-resolve": "^5.18.1", "jiti": "^2.4.2", "lightningcss": "1.30.1", "magic-string": "^0.30.17", "source-map-js": "^1.2.1", "tailwindcss": "4.1.8" } }, "sha512-OWwBsbC9BFAJelmnNcrKuf+bka2ZxCE2A4Ft53Tkg4uoiE67r/PMEYwCsourC26E+kmxfwE0hVzMdxqeW+xu7Q=="], + + "@tailwindcss/oxide": ["@tailwindcss/oxide@4.1.8", "", { "dependencies": { "detect-libc": "^2.0.4", "tar": "^7.4.3" }, "optionalDependencies": { "@tailwindcss/oxide-android-arm64": "4.1.8", "@tailwindcss/oxide-darwin-arm64": "4.1.8", "@tailwindcss/oxide-darwin-x64": "4.1.8", "@tailwindcss/oxide-freebsd-x64": "4.1.8", "@tailwindcss/oxide-linux-arm-gnueabihf": "4.1.8", "@tailwindcss/oxide-linux-arm64-gnu": "4.1.8", "@tailwindcss/oxide-linux-arm64-musl": "4.1.8", "@tailwindcss/oxide-linux-x64-gnu": "4.1.8", "@tailwindcss/oxide-linux-x64-musl": "4.1.8", "@tailwindcss/oxide-wasm32-wasi": "4.1.8", "@tailwindcss/oxide-win32-arm64-msvc": "4.1.8", "@tailwindcss/oxide-win32-x64-msvc": "4.1.8" } }, "sha512-d7qvv9PsM5N3VNKhwVUhpK6r4h9wtLkJ6lz9ZY9aeZgrUWk1Z8VPyqyDT9MZlem7GTGseRQHkeB1j3tC7W1P+A=="], + + "@tailwindcss/oxide-android-arm64": ["@tailwindcss/oxide-android-arm64@4.1.8", "", { "os": "android", "cpu": "arm64" }, "sha512-Fbz7qni62uKYceWYvUjRqhGfZKwhZDQhlrJKGtnZfuNtHFqa8wmr+Wn74CTWERiW2hn3mN5gTpOoxWKk0jRxjg=="], + + "@tailwindcss/oxide-darwin-arm64": ["@tailwindcss/oxide-darwin-arm64@4.1.8", "", { "os": "darwin", "cpu": "arm64" }, "sha512-RdRvedGsT0vwVVDztvyXhKpsU2ark/BjgG0huo4+2BluxdXo8NDgzl77qh0T1nUxmM11eXwR8jA39ibvSTbi7A=="], + + "@tailwindcss/oxide-darwin-x64": ["@tailwindcss/oxide-darwin-x64@4.1.8", "", { "os": "darwin", "cpu": "x64" }, "sha512-t6PgxjEMLp5Ovf7uMb2OFmb3kqzVTPPakWpBIFzppk4JE4ix0yEtbtSjPbU8+PZETpaYMtXvss2Sdkx8Vs4XRw=="], + + "@tailwindcss/oxide-freebsd-x64": ["@tailwindcss/oxide-freebsd-x64@4.1.8", "", { "os": "freebsd", "cpu": "x64" }, "sha512-g8C8eGEyhHTqwPStSwZNSrOlyx0bhK/V/+zX0Y+n7DoRUzyS8eMbVshVOLJTDDC+Qn9IJnilYbIKzpB9n4aBsg=="], + + "@tailwindcss/oxide-linux-arm-gnueabihf": ["@tailwindcss/oxide-linux-arm-gnueabihf@4.1.8", "", { "os": "linux", "cpu": "arm" }, "sha512-Jmzr3FA4S2tHhaC6yCjac3rGf7hG9R6Gf2z9i9JFcuyy0u79HfQsh/thifbYTF2ic82KJovKKkIB6Z9TdNhCXQ=="], + + "@tailwindcss/oxide-linux-arm64-gnu": ["@tailwindcss/oxide-linux-arm64-gnu@4.1.8", "", { "os": "linux", "cpu": "arm64" }, "sha512-qq7jXtO1+UEtCmCeBBIRDrPFIVI4ilEQ97qgBGdwXAARrUqSn/L9fUrkb1XP/mvVtoVeR2bt/0L77xx53bPZ/Q=="], + + "@tailwindcss/oxide-linux-arm64-musl": ["@tailwindcss/oxide-linux-arm64-musl@4.1.8", "", { "os": "linux", "cpu": "arm64" }, "sha512-O6b8QesPbJCRshsNApsOIpzKt3ztG35gfX9tEf4arD7mwNinsoCKxkj8TgEE0YRjmjtO3r9FlJnT/ENd9EVefQ=="], + + "@tailwindcss/oxide-linux-x64-gnu": ["@tailwindcss/oxide-linux-x64-gnu@4.1.8", "", { "os": "linux", "cpu": "x64" }, "sha512-32iEXX/pXwikshNOGnERAFwFSfiltmijMIAbUhnNyjFr3tmWmMJWQKU2vNcFX0DACSXJ3ZWcSkzNbaKTdngH6g=="], + + "@tailwindcss/oxide-linux-x64-musl": ["@tailwindcss/oxide-linux-x64-musl@4.1.8", "", { "os": "linux", "cpu": "x64" }, "sha512-s+VSSD+TfZeMEsCaFaHTaY5YNj3Dri8rST09gMvYQKwPphacRG7wbuQ5ZJMIJXN/puxPcg/nU+ucvWguPpvBDg=="], + + "@tailwindcss/oxide-wasm32-wasi": ["@tailwindcss/oxide-wasm32-wasi@4.1.8", "", { "dependencies": { "@emnapi/core": "^1.4.3", "@emnapi/runtime": "^1.4.3", "@emnapi/wasi-threads": "^1.0.2", "@napi-rs/wasm-runtime": "^0.2.10", "@tybys/wasm-util": "^0.9.0", "tslib": "^2.8.0" }, "cpu": "none" }, "sha512-CXBPVFkpDjM67sS1psWohZ6g/2/cd+cq56vPxK4JeawelxwK4YECgl9Y9TjkE2qfF+9/s1tHHJqrC4SS6cVvSg=="], + + "@tailwindcss/oxide-win32-arm64-msvc": ["@tailwindcss/oxide-win32-arm64-msvc@4.1.8", "", { "os": "win32", "cpu": "arm64" }, "sha512-7GmYk1n28teDHUjPlIx4Z6Z4hHEgvP5ZW2QS9ygnDAdI/myh3HTHjDqtSqgu1BpRoI4OiLx+fThAyA1JePoENA=="], + + "@tailwindcss/oxide-win32-x64-msvc": ["@tailwindcss/oxide-win32-x64-msvc@4.1.8", "", { "os": "win32", "cpu": "x64" }, "sha512-fou+U20j+Jl0EHwK92spoWISON2OBnCazIc038Xj2TdweYV33ZRkS9nwqiUi2d/Wba5xg5UoHfvynnb/UB49cQ=="], + + "@tailwindcss/postcss": ["@tailwindcss/postcss@4.1.8", "", { "dependencies": { "@alloc/quick-lru": "^5.2.0", "@tailwindcss/node": "4.1.8", "@tailwindcss/oxide": "4.1.8", "postcss": "^8.4.41", "tailwindcss": "4.1.8" } }, "sha512-vB/vlf7rIky+w94aWMw34bWW1ka6g6C3xIOdICKX2GC0VcLtL6fhlLiafF0DVIwa9V6EHz8kbWMkS2s2QvvNlw=="], + + "@tanstack/directive-functions-plugin": ["@tanstack/directive-functions-plugin@1.119.2", "", { "dependencies": { "@babel/code-frame": "7.26.2", "@babel/core": "^7.26.8", "@babel/plugin-syntax-jsx": "^7.25.9", "@babel/plugin-syntax-typescript": "^7.25.9", "@babel/template": "^7.26.8", "@babel/traverse": "^7.26.8", "@babel/types": "^7.26.8", "@tanstack/router-utils": "^1.115.0", "babel-dead-code-elimination": "^1.0.10", "dedent": "^1.5.3", "tiny-invariant": "^1.3.3", "vite": "6.1.4" } }, "sha512-FsBBDrOQHUA9xCsSgmxJud1NY3PFz8P3LFrz2h+LdyRt/t5jeTvgLRjNZWKMk4izBqyyTYC9X+WF10ZyS9nPMw=="], + + "@tanstack/eslint-plugin-query": ["@tanstack/eslint-plugin-query@5.78.0", "", { "dependencies": { "@typescript-eslint/utils": "^8.18.1" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0" } }, "sha512-hYkhWr3UP0CkAsn/phBVR98UQawbw8CmTSgWtdgEBUjI60/GBaEIkpgi/Bp/2I8eIDK4+vdY7ac6jZx+GR+hEQ=="], + + "@tanstack/history": ["@tanstack/history@1.115.0", "", {}, "sha512-K7JJNrRVvyjAVnbXOH2XLRhFXDkeP54Kt2P4FR1Kl2KDGlIbkua5VqZQD2rot3qaDrpufyUa63nuLai1kOLTsQ=="], + + "@tanstack/query-core": ["@tanstack/query-core@5.80.2", "", {}, "sha512-g2Es97uwFk7omkWiH9JmtLWSA8lTUFVseIyzqbjqJEEx7qN+Hg6jbBdDvelqtakamppaJtGORQ64hEJ5S6ojSg=="], + + "@tanstack/query-devtools": ["@tanstack/query-devtools@5.80.0", "", {}, "sha512-D6gH4asyjaoXrCOt5vG5Og/YSj0D/TxwNQgtLJIgWbhbWCC/emu2E92EFoVHh4ppVWg1qT2gKHvKyQBEFZhCuA=="], + + "@tanstack/react-query": ["@tanstack/react-query@5.80.3", "", { "dependencies": { "@tanstack/query-core": "5.80.2" }, "peerDependencies": { "react": "^18 || ^19" } }, "sha512-psqr/QRzYfqJvgD8F2teMO6mL4hN4gzkOra9BlPplNhwByviZIhHUrWTXQEMmUdPWHNkGjA1SP6xG2+brhmIoQ=="], + + "@tanstack/react-query-devtools": ["@tanstack/react-query-devtools@5.80.3", "", { "dependencies": { "@tanstack/query-devtools": "5.80.0" }, "peerDependencies": { "@tanstack/react-query": "^5.80.3", "react": "^18 || ^19" } }, "sha512-WfoTdSd/SvBL7BJQzr2iQ8XGhMTw9hnKQn96ztG53Hm3AzWyvDrG8FoAPpwIE6c/f9+kmFGCxMvvTVueAy+0Gw=="], + + "@tanstack/react-router": ["@tanstack/react-router@1.120.15", "", { "dependencies": { "@tanstack/history": "1.115.0", "@tanstack/react-store": "^0.7.0", "@tanstack/router-core": "1.120.15", "jsesc": "^3.1.0", "tiny-invariant": "^1.3.3", "tiny-warning": "^1.0.3" }, "peerDependencies": { "react": ">=18.0.0 || >=19.0.0", "react-dom": ">=18.0.0 || >=19.0.0" } }, "sha512-apzBmXh4pHwqUGU3kD8y2FJMi7rVoUbRxh5oV7v8kEb6Aq5Xpdo+OcpThw8h/M2zv7v4Ef8IoY6WFCKKu3HBjQ=="], + + "@tanstack/react-router-devtools": ["@tanstack/react-router-devtools@1.120.15", "", { "dependencies": { "@tanstack/router-devtools-core": "^1.120.15", "solid-js": "^1.9.5" }, "peerDependencies": { "@tanstack/react-router": "^1.120.15", "react": ">=18.0.0 || >=19.0.0", "react-dom": ">=18.0.0 || >=19.0.0" } }, "sha512-5KcUXc3fkiLo/6Y56gOM3JqmYXG1ElIH2iyUWuG5IlcegLrpXhu4OBQ+8Q4+62CD0OKy0ifUDyemrCOAEOfCvw=="], + + "@tanstack/react-start": ["@tanstack/react-start@1.120.15", "", { "dependencies": { "@tanstack/react-start-client": "^1.120.15", "@tanstack/react-start-config": "^1.120.15", "@tanstack/react-start-router-manifest": "^1.120.15", "@tanstack/react-start-server": "^1.120.15", "@tanstack/start-api-routes": "^1.120.15", "@tanstack/start-server-functions-client": "^1.120.15", "@tanstack/start-server-functions-handler": "^1.120.15", "@tanstack/start-server-functions-server": "^1.119.2", "@tanstack/start-server-functions-ssr": "^1.120.15" }, "peerDependencies": { "react": ">=18.0.0 || >=19.0.0", "react-dom": ">=18.0.0 || >=19.0.0", "vite": "^6.0.0" } }, "sha512-xhhhfnC06JaT08k75IdoLjYLgdXCG7KNAAkPVNySImfLKEv0zJHJPbgh719ZDGSFtTNTQs0SfgH/XkzbVM3IKA=="], + + "@tanstack/react-start-client": ["@tanstack/react-start-client@1.120.15", "", { "dependencies": { "@tanstack/react-router": "^1.120.15", "@tanstack/router-core": "^1.120.15", "@tanstack/start-client-core": "^1.120.15", "cookie-es": "^1.2.2", "jsesc": "^3.1.0", "tiny-invariant": "^1.3.3", "tiny-warning": "^1.0.3", "vinxi": "^0.5.3" }, "peerDependencies": { "react": ">=18.0.0 || >=19.0.0", "react-dom": ">=18.0.0 || >=19.0.0" } }, "sha512-UCIRHB2/Es8uZIce/btI218qqsmVTW5NBOlt6A6m3F++s4nrhYlP3E2FEj/RX7rhXrOB4gjj99tAz/jjR/sVXw=="], + + "@tanstack/react-start-config": ["@tanstack/react-start-config@1.120.15", "", { "dependencies": { "@tanstack/react-start-plugin": "^1.115.0", "@tanstack/router-core": "^1.120.15", "@tanstack/router-generator": "^1.120.15", "@tanstack/router-plugin": "^1.120.15", "@tanstack/server-functions-plugin": "^1.119.2", "@tanstack/start-server-functions-handler": "^1.120.15", "@vitejs/plugin-react": "^4.3.4", "import-meta-resolve": "^4.1.0", "nitropack": "^2.10.4", "ofetch": "^1.4.1", "vinxi": "0.5.3", "vite": "^6.1.0", "zod": "^3.24.2" }, "peerDependencies": { "react": ">=18.0.0 || >=19.0.0", "react-dom": ">=18.0.0 || >=19.0.0" } }, "sha512-A9/4IQkFwhR15rb5KbTfUYUpossQM8MpBMTZs5xAoucC8rAsMoBPiiWZN6g/A1YN/xkDn/ghNhAxFfnOUhWDJA=="], + + "@tanstack/react-start-plugin": ["@tanstack/react-start-plugin@1.115.0", "", { "dependencies": { "@babel/code-frame": "7.26.2", "@babel/core": "^7.26.8", "@babel/plugin-syntax-jsx": "^7.25.9", "@babel/plugin-syntax-typescript": "^7.25.9", "@babel/template": "^7.26.8", "@babel/traverse": "^7.26.8", "@babel/types": "^7.26.8", "@tanstack/router-utils": "^1.115.0", "babel-dead-code-elimination": "^1.0.10", "tiny-invariant": "^1.3.3", "vite": "6.1.4" } }, "sha512-5ltCwlAV5XOz7x/IFoOT1992gITfkygd5BdIexN990prNpvjDiOsNwJtrSEg9rge4XCuAbSK3jtxFh4Qy0l0zA=="], + + "@tanstack/react-start-router-manifest": ["@tanstack/react-start-router-manifest@1.120.15", "", { "dependencies": { "@tanstack/router-core": "^1.120.15", "tiny-invariant": "^1.3.3", "vinxi": "0.5.3" } }, "sha512-dyL0cKiihkqIy4IqzRiTAfoB7zvbPpSOM7kzyioD5ovb41ZhQ4ksN1yF/SmaLvEJSmNor4rnnNDJf4Q0VMTz+Q=="], + + "@tanstack/react-start-server": ["@tanstack/react-start-server@1.120.15", "", { "dependencies": { "@tanstack/history": "^1.115.0", "@tanstack/react-router": "^1.120.15", "@tanstack/router-core": "^1.120.15", "@tanstack/start-client-core": "^1.120.15", "@tanstack/start-server-core": "^1.120.15", "h3": "1.13.0", "isbot": "^5.1.22", "jsesc": "^3.1.0", "tiny-warning": "^1.0.3", "unctx": "^2.4.1" }, "peerDependencies": { "react": ">=18.0.0 || >=19.0.0", "react-dom": ">=18.0.0 || >=19.0.0" } }, "sha512-oUeCbbOILfACwgkbp2jDpAXjU7aSQY8WWa2QmH3iv2IjqI+fP11rtpQ3XRG6/A9/+nNXUKPzGOHFP0yuB1fAgw=="], + + "@tanstack/react-store": ["@tanstack/react-store@0.7.0", "", { "dependencies": { "@tanstack/store": "0.7.0", "use-sync-external-store": "^1.4.0" }, "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "sha512-S/Rq17HaGOk+tQHV/yrePMnG1xbsKZIl/VsNWnNXt4XW+tTY8dTlvpJH2ZQ3GRALsusG5K6Q3unAGJ2pd9W/Ng=="], + + "@tanstack/react-table": ["@tanstack/react-table@8.21.3", "", { "dependencies": { "@tanstack/table-core": "8.21.3" }, "peerDependencies": { "react": ">=16.8", "react-dom": ">=16.8" } }, "sha512-5nNMTSETP4ykGegmVkhjcS8tTLW6Vl4axfEGQN3v0zdHYbK4UfoqfPChclTrJ4EoK9QynqAu9oUf8VEmrpZ5Ww=="], + + "@tanstack/router-core": ["@tanstack/router-core@1.120.15", "", { "dependencies": { "@tanstack/history": "1.115.0", "@tanstack/store": "^0.7.0", "tiny-invariant": "^1.3.3" } }, "sha512-soLj+mEuvSxAVFK/3b85IowkkvmSuQL6J0RSIyKJFGFgy0CmUzpcBGEO99+JNWvvvzHgIoY4F4KtLIN+rvFSFA=="], + + "@tanstack/router-devtools-core": ["@tanstack/router-devtools-core@1.120.15", "", { "dependencies": { "clsx": "^2.1.1", "goober": "^2.1.16" }, "peerDependencies": { "@tanstack/router-core": "^1.120.15", "csstype": "^3.0.10", "solid-js": ">=1.9.5", "tiny-invariant": "^1.3.3" }, "optionalPeers": ["csstype"] }, "sha512-AT9obPHKpJqnHMbwshozSy6sApg5LchiAll3blpS3MMDybUCidYHrdhe9MZJLmlC99IQiEGmuZERP3VRcuPNHg=="], + + "@tanstack/router-generator": ["@tanstack/router-generator@1.120.15", "", { "dependencies": { "@tanstack/virtual-file-routes": "^1.115.0", "prettier": "^3.5.0", "tsx": "^4.19.2", "zod": "^3.24.2" }, "peerDependencies": { "@tanstack/react-router": "^1.120.15" }, "optionalPeers": ["@tanstack/react-router"] }, "sha512-QwZ0rNXxzgOEUDRRAEWVjofKxuxSMIYEdYC3z20k6a7jkLC6pnlCORFx41Vf4xVCO6eElqlrUKXWLTleYSsvQw=="], + + "@tanstack/router-plugin": ["@tanstack/router-plugin@1.120.15", "", { "dependencies": { "@babel/core": "^7.26.8", "@babel/plugin-syntax-jsx": "^7.25.9", "@babel/plugin-syntax-typescript": "^7.25.9", "@babel/template": "^7.26.8", "@babel/traverse": "^7.26.8", "@babel/types": "^7.26.8", "@tanstack/router-core": "^1.120.15", "@tanstack/router-generator": "^1.120.15", "@tanstack/router-utils": "^1.115.0", "@tanstack/virtual-file-routes": "^1.115.0", "@types/babel__core": "^7.20.5", "@types/babel__template": "^7.4.4", "@types/babel__traverse": "^7.20.6", "babel-dead-code-elimination": "^1.0.10", "chokidar": "^3.6.0", "unplugin": "^2.1.2", "zod": "^3.24.2" }, "peerDependencies": { "@rsbuild/core": ">=1.0.2", "@tanstack/react-router": "^1.120.15", "vite": ">=5.0.0 || >=6.0.0", "vite-plugin-solid": "^2.11.2", "webpack": ">=5.92.0" }, "optionalPeers": ["@rsbuild/core", "@tanstack/react-router", "vite", "vite-plugin-solid", "webpack"] }, "sha512-ARuuPRKO5HzN3V0LzmkIGm0e447t5VCy2ijbUnzd08KjcJm3lG221ViC2qI+vTom1zp6yeNZHfJW1LBh1yLrTw=="], + + "@tanstack/router-utils": ["@tanstack/router-utils@1.115.0", "", { "dependencies": { "@babel/generator": "^7.26.8", "@babel/parser": "^7.26.8", "ansis": "^3.11.0", "diff": "^7.0.0" } }, "sha512-Dng4y+uLR9b5zPGg7dHReHOTHQa6x+G6nCoZshsDtWrYsrdCcJEtLyhwZ5wG8OyYS6dVr/Cn+E5Bd2b6BhJ89w=="], + + "@tanstack/server-functions-plugin": ["@tanstack/server-functions-plugin@1.119.2", "", { "dependencies": { "@babel/code-frame": "7.26.2", "@babel/core": "^7.26.8", "@babel/plugin-syntax-jsx": "^7.25.9", "@babel/plugin-syntax-typescript": "^7.25.9", "@babel/template": "^7.26.8", "@babel/traverse": "^7.26.8", "@babel/types": "^7.26.8", "@tanstack/directive-functions-plugin": "1.119.2", "babel-dead-code-elimination": "^1.0.9", "dedent": "^1.5.3", "tiny-invariant": "^1.3.3" } }, "sha512-ramMedB4yt+fhFHio3GqRLUQVwKBEBREnHEVetHEYHLe6h+qYEwaVxQrQ75J+dTTWXa14DLadtgR3ygEydtfqA=="], + + "@tanstack/start-api-routes": ["@tanstack/start-api-routes@1.120.15", "", { "dependencies": { "@tanstack/router-core": "^1.120.15", "@tanstack/start-server-core": "^1.120.15", "vinxi": "0.5.3" } }, "sha512-AKxT1he6PstiyfNAP7YHotM1hpQzQfl0WwMO4L4MDi2JG2q8Mm4630xuOe5TkdWMIC38RZeSPE2V33xXiLZ+tA=="], + + "@tanstack/start-client-core": ["@tanstack/start-client-core@1.120.15", "", { "dependencies": { "@tanstack/router-core": "^1.120.15", "cookie-es": "^1.2.2", "tiny-invariant": "^1.3.3", "tiny-warning": "^1.0.3" } }, "sha512-R21uRzjqbds0aMK8ZQ12yIxyyh5pNqtv8/dg9dp44Hl6jfb3wBNfo1kAiJErBDRF50ITJJLQ7sGDIualtcdKbQ=="], + + "@tanstack/start-server-core": ["@tanstack/start-server-core@1.120.15", "", { "dependencies": { "@tanstack/history": "^1.115.0", "@tanstack/router-core": "^1.120.15", "@tanstack/start-client-core": "^1.120.15", "h3": "1.13.0", "isbot": "^5.1.22", "jsesc": "^3.1.0", "tiny-warning": "^1.0.3", "unctx": "^2.4.1" } }, "sha512-om+jDeBEXI2ckrdNNDFahDI2K+mYJhBYNGJd1QLLdO8E5+16kHuOWwi7wTZD8XB6TbZEoqz4weOJF4l0kldRgA=="], + + "@tanstack/start-server-functions-client": ["@tanstack/start-server-functions-client@1.120.15", "", { "dependencies": { "@tanstack/server-functions-plugin": "^1.119.2", "@tanstack/start-server-functions-fetcher": "^1.120.15" } }, "sha512-OG7D8+fUs9kStF1JNmgLSyg9sjSE+hsfH2ly+JqDsBUFYb9pu8vjTxaQNMJxCZcpgbG9NwGqbQQ3Upa1Kb4Oog=="], + + "@tanstack/start-server-functions-fetcher": ["@tanstack/start-server-functions-fetcher@1.120.15", "", { "dependencies": { "@tanstack/router-core": "^1.120.15", "@tanstack/start-client-core": "^1.120.15" } }, "sha512-ZThhU9ya7ACcKy7QXWNE8mQYBeWWKpx7XxncDblzezkMQvAddsldG5ez3K4I1ZdPR49ySjHxlhgLHLdVX86mOg=="], + + "@tanstack/start-server-functions-handler": ["@tanstack/start-server-functions-handler@1.120.15", "", { "dependencies": { "@tanstack/router-core": "^1.120.15", "@tanstack/start-client-core": "^1.120.15", "@tanstack/start-server-core": "^1.120.15", "tiny-invariant": "^1.3.3" } }, "sha512-j61H8JCaVV0TKPMazQKTxtCr9bulQ3oJNYTidOdSgY+CKOZRAfPUINXZl/CDQOTSwAYmMAiroeSR7BwUPq26pg=="], + + "@tanstack/start-server-functions-server": ["@tanstack/start-server-functions-server@1.119.2", "", { "dependencies": { "@tanstack/server-functions-plugin": "^1.119.2", "tiny-invariant": "^1.3.3" } }, "sha512-wosjaLvWhVeNCg+RRl2Q7Wl0TliQUBPlqhoG9BBN5uLNmsW+iKeFuzctaXoCB0sKkloz9gjtoJRxPyFY2LpkxQ=="], + + "@tanstack/start-server-functions-ssr": ["@tanstack/start-server-functions-ssr@1.120.15", "", { "dependencies": { "@tanstack/server-functions-plugin": "^1.119.2", "@tanstack/start-client-core": "^1.120.15", "@tanstack/start-server-core": "^1.120.15", "@tanstack/start-server-functions-fetcher": "^1.120.15", "tiny-invariant": "^1.3.3" } }, "sha512-fjMX84yEcAF+K29jnXCYc5PdrZh1W4vLTooWzBjryPpHlju25/YxpCjV2mMB9yP0Ri8xgQHg5xD7ucn2yw1Dyw=="], + + "@tanstack/store": ["@tanstack/store@0.7.0", "", {}, "sha512-CNIhdoUsmD2NolYuaIs8VfWM467RK6oIBAW4nPEKZhg1smZ+/CwtCdpURgp7nxSqOaV9oKkzdWD80+bC66F/Jg=="], + + "@tanstack/table-core": ["@tanstack/table-core@8.21.3", "", {}, "sha512-ldZXEhOBb8Is7xLs01fR3YEc3DERiz5silj8tnGkFZytt1abEvl/GhUmCE0PMLaMPTa3Jk4HbKmRlHmu+gCftg=="], + + "@tanstack/virtual-file-routes": ["@tanstack/virtual-file-routes@1.115.0", "", {}, "sha512-XLUh1Py3AftcERrxkxC5Y5m5mfllRH3YR6YVlyjFgI2Tc2Ssy2NKmQFQIafoxfW459UJ8Dn81nWKETEIJifE4g=="], + + "@types/babel__core": ["@types/babel__core@7.20.5", "", { "dependencies": { "@babel/parser": "^7.20.7", "@babel/types": "^7.20.7", "@types/babel__generator": "*", "@types/babel__template": "*", "@types/babel__traverse": "*" } }, "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA=="], + + "@types/babel__generator": ["@types/babel__generator@7.27.0", "", { "dependencies": { "@babel/types": "^7.0.0" } }, "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg=="], + + "@types/babel__template": ["@types/babel__template@7.4.4", "", { "dependencies": { "@babel/parser": "^7.1.0", "@babel/types": "^7.0.0" } }, "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A=="], + + "@types/babel__traverse": ["@types/babel__traverse@7.20.7", "", { "dependencies": { "@babel/types": "^7.20.7" } }, "sha512-dkO5fhS7+/oos4ciWxyEyjWe48zmG6wbCheo/G2ZnHx4fs3EU6YC6UM8rk56gAjNJ9P3MTH2jo5jb92/K6wbng=="], + + "@types/braces": ["@types/braces@3.0.5", "", {}, "sha512-SQFof9H+LXeWNz8wDe7oN5zu7ket0qwMu5vZubW4GCJ8Kkeh6nBWUz87+KTz/G3Kqsrp0j/W253XJb3KMEeg3w=="], + + "@types/bun": ["@types/bun@1.2.15", "", { "dependencies": { "bun-types": "1.2.15" } }, "sha512-U1ljPdBEphF0nw1MIk0hI7kPg7dFdPyM7EenHsp6W5loNHl7zqy6JQf/RKCgnUn2KDzUpkBwHPnEJEjII594bA=="], + + "@types/cors": ["@types/cors@2.8.18", "", { "dependencies": { "@types/node": "*" } }, "sha512-nX3d0sxJW41CqQvfOzVG1NCTXfFDrDWIghCZncpHeWlVFd81zxB/DLhg7avFg6eHLCRX7ckBmoIIcqa++upvJA=="], + + "@types/d3-array": ["@types/d3-array@3.2.1", "", {}, "sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg=="], + + "@types/d3-color": ["@types/d3-color@3.1.3", "", {}, "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A=="], + + "@types/d3-ease": ["@types/d3-ease@3.0.2", "", {}, "sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA=="], + + "@types/d3-interpolate": ["@types/d3-interpolate@3.0.4", "", { "dependencies": { "@types/d3-color": "*" } }, "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA=="], + + "@types/d3-path": ["@types/d3-path@3.1.1", "", {}, "sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg=="], + + "@types/d3-scale": ["@types/d3-scale@4.0.9", "", { "dependencies": { "@types/d3-time": "*" } }, "sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw=="], + + "@types/d3-shape": ["@types/d3-shape@3.1.7", "", { "dependencies": { "@types/d3-path": "*" } }, "sha512-VLvUQ33C+3J+8p+Daf+nYSOsjB4GXp19/S/aGo60m9h1v6XaxjiT82lKVWJCfzhtuZ3yD7i/TPeC/fuKLLOSmg=="], + + "@types/d3-time": ["@types/d3-time@3.0.4", "", {}, "sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g=="], + + "@types/d3-timer": ["@types/d3-timer@3.0.2", "", {}, "sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw=="], + + "@types/estree": ["@types/estree@1.0.7", "", {}, "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ=="], + + "@types/json-schema": ["@types/json-schema@7.0.15", "", {}, "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA=="], + + "@types/micromatch": ["@types/micromatch@4.0.9", "", { "dependencies": { "@types/braces": "*" } }, "sha512-7V+8ncr22h4UoYRLnLXSpTxjQrNUXtWHGeMPRJt1nULXI57G9bIcpyrHlmrQ7QK24EyyuXvYcSSWAM8GA9nqCg=="], + + "@types/node": ["@types/node@22.15.21", "", { "dependencies": { "undici-types": "~6.21.0" } }, "sha512-EV/37Td6c+MgKAbkcLG6vqZ2zEYHD7bvSrzqqs2RIhbA6w3x+Dqz8MZM3sP6kGTeLrdoOgKZe+Xja7tUB2DNkQ=="], + + "@types/nodemailer": ["@types/nodemailer@6.4.17", "", { "dependencies": { "@types/node": "*" } }, "sha512-I9CCaIp6DTldEg7vyUTZi8+9Vo0hi1/T8gv3C89yk1rSAAzoKQ8H8ki/jBYJSFoH/BisgLP8tkZMlQ91CIquww=="], + + "@types/normalize-package-data": ["@types/normalize-package-data@2.4.4", "", {}, "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA=="], + + "@types/pg": ["@types/pg@8.15.2", "", { "dependencies": { "@types/node": "*", "pg-protocol": "*", "pg-types": "^4.0.1" } }, "sha512-+BKxo5mM6+/A1soSHBI7ufUglqYXntChLDyTbvcAn1Lawi9J7J9Ok3jt6w7I0+T/UDJ4CyhHk66+GZbwmkYxSg=="], + + "@types/react": ["@types/react@19.1.6", "", { "dependencies": { "csstype": "^3.0.2" } }, "sha512-JeG0rEWak0N6Itr6QUx+X60uQmN+5t3j9r/OVDtWzFXKaj6kD1BwJzOksD0FF6iWxZlbE1kB0q9vtnU2ekqa1Q=="], + + "@types/react-dom": ["@types/react-dom@19.1.6", "", { "peerDependencies": { "@types/react": "^19.0.0" } }, "sha512-4hOiT/dwO8Ko0gV1m/TJZYk3y0KBnY9vzDh7W+DH17b2HFSOGgdj33dhihPeuy3l0q23+4e+hoXHV6hCC4dCXw=="], + + "@types/resolve": ["@types/resolve@1.20.2", "", {}, "sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q=="], + + "@types/triple-beam": ["@types/triple-beam@1.3.5", "", {}, "sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw=="], + + "@types/yauzl": ["@types/yauzl@2.10.3", "", { "dependencies": { "@types/node": "*" } }, "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q=="], + + "@typescript-eslint/project-service": ["@typescript-eslint/project-service@8.33.0", "", { "dependencies": { "@typescript-eslint/tsconfig-utils": "^8.33.0", "@typescript-eslint/types": "^8.33.0", "debug": "^4.3.4" } }, "sha512-d1hz0u9l6N+u/gcrk6s6gYdl7/+pp8yHheRTqP6X5hVDKALEaTn8WfGiit7G511yueBEL3OpOEpD+3/MBdoN+A=="], + + "@typescript-eslint/scope-manager": ["@typescript-eslint/scope-manager@8.33.0", "", { "dependencies": { "@typescript-eslint/types": "8.33.0", "@typescript-eslint/visitor-keys": "8.33.0" } }, "sha512-LMi/oqrzpqxyO72ltP+dBSP6V0xiUb4saY7WLtxSfiNEBI8m321LLVFU9/QDJxjDQG9/tjSqKz/E3380TEqSTw=="], + + "@typescript-eslint/tsconfig-utils": ["@typescript-eslint/tsconfig-utils@8.33.0", "", { "peerDependencies": { "typescript": ">=4.8.4 <5.9.0" } }, "sha512-sTkETlbqhEoiFmGr1gsdq5HyVbSOF0145SYDJ/EQmXHtKViCaGvnyLqWFFHtEXoS0J1yU8Wyou2UGmgW88fEug=="], + + "@typescript-eslint/types": ["@typescript-eslint/types@8.33.0", "", {}, "sha512-DKuXOKpM5IDT1FA2g9x9x1Ug81YuKrzf4mYX8FAVSNu5Wo/LELHWQyM1pQaDkI42bX15PWl0vNPt1uGiIFUOpg=="], + + "@typescript-eslint/typescript-estree": ["@typescript-eslint/typescript-estree@8.33.0", "", { "dependencies": { "@typescript-eslint/project-service": "8.33.0", "@typescript-eslint/tsconfig-utils": "8.33.0", "@typescript-eslint/types": "8.33.0", "@typescript-eslint/visitor-keys": "8.33.0", "debug": "^4.3.4", "fast-glob": "^3.3.2", "is-glob": "^4.0.3", "minimatch": "^9.0.4", "semver": "^7.6.0", "ts-api-utils": "^2.1.0" }, "peerDependencies": { "typescript": ">=4.8.4 <5.9.0" } }, "sha512-vegY4FQoB6jL97Tu/lWRsAiUUp8qJTqzAmENH2k59SJhw0Th1oszb9Idq/FyyONLuNqT1OADJPXfyUNOR8SzAQ=="], + + "@typescript-eslint/utils": ["@typescript-eslint/utils@8.33.0", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.7.0", "@typescript-eslint/scope-manager": "8.33.0", "@typescript-eslint/types": "8.33.0", "@typescript-eslint/typescript-estree": "8.33.0" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <5.9.0" } }, "sha512-lPFuQaLA9aSNa7D5u2EpRiqdAUhzShwGg/nhpBlc4GR6kcTABttCuyjFs8BcEZ8VWrjCBof/bePhP3Q3fS+Yrw=="], + + "@typescript-eslint/visitor-keys": ["@typescript-eslint/visitor-keys@8.33.0", "", { "dependencies": { "@typescript-eslint/types": "8.33.0", "eslint-visitor-keys": "^4.2.0" } }, "sha512-7RW7CMYoskiz5OOGAWjJFxgb7c5UNjTG292gYhWeOAcFmYCtVCSqjqSBj5zMhxbXo2JOW95YYrUWJfU0zrpaGQ=="], + + "@vercel/nft": ["@vercel/nft@0.29.3", "", { "dependencies": { "@mapbox/node-pre-gyp": "^2.0.0", "@rollup/pluginutils": "^5.1.3", "acorn": "^8.6.0", "acorn-import-attributes": "^1.9.5", "async-sema": "^3.1.1", "bindings": "^1.4.0", "estree-walker": "2.0.2", "glob": "^10.4.5", "graceful-fs": "^4.2.9", "node-gyp-build": "^4.2.2", "picomatch": "^4.0.2", "resolve-from": "^5.0.0" }, "bin": { "nft": "out/cli.js" } }, "sha512-aVV0E6vJpuvImiMwU1/5QKkw2N96BRFE7mBYGS7FhXUoS6V7SarQ+8tuj33o7ofECz8JtHpmQ9JW+oVzOoB7MA=="], + + "@vinxi/listhen": ["@vinxi/listhen@1.5.6", "", { "dependencies": { "@parcel/watcher": "^2.3.0", "@parcel/watcher-wasm": "2.3.0", "citty": "^0.1.5", "clipboardy": "^4.0.0", "consola": "^3.2.3", "defu": "^6.1.4", "get-port-please": "^3.1.2", "h3": "^1.10.0", "http-shutdown": "^1.2.2", "jiti": "^1.21.0", "mlly": "^1.5.0", "node-forge": "^1.3.1", "pathe": "^1.1.2", "std-env": "^3.7.0", "ufo": "^1.3.2", "untun": "^0.1.3", "uqr": "^0.1.2" }, "bin": { "listen": "bin/listhen.mjs", "listhen": "bin/listhen.mjs" } }, "sha512-WSN1z931BtasZJlgPp704zJFnQFRg7yzSjkm3MzAWQYe4uXFXlFr1hc5Ac2zae5/HDOz5x1/zDM5Cb54vTCnWw=="], + + "@vitejs/plugin-react": ["@vitejs/plugin-react@4.5.0", "", { "dependencies": { "@babel/core": "^7.26.10", "@babel/plugin-transform-react-jsx-self": "^7.25.9", "@babel/plugin-transform-react-jsx-source": "^7.25.9", "@rolldown/pluginutils": "1.0.0-beta.9", "@types/babel__core": "^7.20.5", "react-refresh": "^0.17.0" }, "peerDependencies": { "vite": "^4.2.0 || ^5.0.0 || ^6.0.0" } }, "sha512-JuLWaEqypaJmOJPLWwO335Ig6jSgC1FTONCWAxnqcQthLTK/Yc9aH6hr9z/87xciejbQcnP3GnA1FWUSWeXaeg=="], + + "@vue/compiler-core": ["@vue/compiler-core@3.5.15", "", { "dependencies": { "@babel/parser": "^7.27.2", "@vue/shared": "3.5.15", "entities": "^4.5.0", "estree-walker": "^2.0.2", "source-map-js": "^1.2.1" } }, "sha512-nGRc6YJg/kxNqbv/7Tg4juirPnjHvuVdhcmDvQWVZXlLHjouq7VsKmV1hIxM/8yKM0VUfwT/Uzc0lO510ltZqw=="], + + "@vue/compiler-dom": ["@vue/compiler-dom@3.5.15", "", { "dependencies": { "@vue/compiler-core": "3.5.15", "@vue/shared": "3.5.15" } }, "sha512-ZelQd9n+O/UCBdL00rlwCrsArSak+YLZpBVuNDio1hN3+wrCshYZEDUO3khSLAzPbF1oQS2duEoMDUHScUlYjA=="], + + "@vue/compiler-sfc": ["@vue/compiler-sfc@3.5.15", "", { "dependencies": { "@babel/parser": "^7.27.2", "@vue/compiler-core": "3.5.15", "@vue/compiler-dom": "3.5.15", "@vue/compiler-ssr": "3.5.15", "@vue/shared": "3.5.15", "estree-walker": "^2.0.2", "magic-string": "^0.30.17", "postcss": "^8.5.3", "source-map-js": "^1.2.1" } }, "sha512-3zndKbxMsOU6afQWer75Zot/aydjtxNj0T2KLg033rAFaQUn2PGuE32ZRe4iMhflbTcAxL0yEYsRWFxtPro8RQ=="], + + "@vue/compiler-ssr": ["@vue/compiler-ssr@3.5.15", "", { "dependencies": { "@vue/compiler-dom": "3.5.15", "@vue/shared": "3.5.15" } }, "sha512-gShn8zRREZbrXqTtmLSCffgZXDWv8nHc/GhsW+mbwBfNZL5pI96e7IWcIq8XGQe1TLtVbu7EV9gFIVSmfyarPg=="], + + "@vue/shared": ["@vue/shared@3.5.15", "", {}, "sha512-bKvgFJJL1ZX9KxMCTQY6xD9Dhe3nusd1OhyOb1cJYGqvAr0Vg8FIjHPMOEVbJ9GDT9HG+Bjdn4oS8ohKP8EvoA=="], + + "@whatwg-node/disposablestack": ["@whatwg-node/disposablestack@0.0.6", "", { "dependencies": { "@whatwg-node/promise-helpers": "^1.0.0", "tslib": "^2.6.3" } }, "sha512-LOtTn+JgJvX8WfBVJtF08TGrdjuFzGJc4mkP8EdDI8ADbvO7kiexYep1o8dwnt0okb0jYclCDXF13xU7Ge4zSw=="], + + "@whatwg-node/fetch": ["@whatwg-node/fetch@0.10.8", "", { "dependencies": { "@whatwg-node/node-fetch": "^0.7.21", "urlpattern-polyfill": "^10.0.0" } }, "sha512-Rw9z3ctmeEj8QIB9MavkNJqekiu9usBCSMZa+uuAvM0lF3v70oQVCXNppMIqaV6OTZbdaHF1M2HLow58DEw+wg=="], + + "@whatwg-node/node-fetch": ["@whatwg-node/node-fetch@0.7.21", "", { "dependencies": { "@fastify/busboy": "^3.1.1", "@whatwg-node/disposablestack": "^0.0.6", "@whatwg-node/promise-helpers": "^1.3.2", "tslib": "^2.6.3" } }, "sha512-QC16IdsEyIW7kZd77aodrMO7zAoDyyqRCTLg+qG4wqtP4JV9AA+p7/lgqMdD29XyiYdVvIdFrfI9yh7B1QvRvw=="], + + "@whatwg-node/promise-helpers": ["@whatwg-node/promise-helpers@1.3.2", "", { "dependencies": { "tslib": "^2.6.3" } }, "sha512-Nst5JdK47VIl9UcGwtv2Rcgyn5lWtZ0/mhRQ4G8NN2isxpq2TO30iqHzmwoJycjWuyUfg3GFXqP/gFHXeV57IA=="], + + "@whatwg-node/server": ["@whatwg-node/server@0.9.71", "", { "dependencies": { "@whatwg-node/disposablestack": "^0.0.6", "@whatwg-node/fetch": "^0.10.5", "@whatwg-node/promise-helpers": "^1.2.2", "tslib": "^2.6.3" } }, "sha512-ueFCcIPaMgtuYDS9u0qlUoEvj6GiSsKrwnOLPp9SshqjtcRaR1IEHRjoReq3sXNydsF5i0ZnmuYgXq9dV53t0g=="], + + "abbrev": ["abbrev@3.0.1", "", {}, "sha512-AO2ac6pjRB3SJmGJo+v5/aK6Omggp6fsLrs6wN9bd35ulu4cCwaAU9+7ZhXjeqHVkaHThLuzH0nZr0YpCDhygg=="], + + "abort-controller": ["abort-controller@3.0.0", "", { "dependencies": { "event-target-shim": "^5.0.0" } }, "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg=="], + + "accepts": ["accepts@1.3.8", "", { "dependencies": { "mime-types": "~2.1.34", "negotiator": "0.6.3" } }, "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw=="], + + "acorn": ["acorn@8.14.1", "", { "bin": { "acorn": "bin/acorn" } }, "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg=="], + + "acorn-import-attributes": ["acorn-import-attributes@1.9.5", "", { "peerDependencies": { "acorn": "^8" } }, "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ=="], + + "acorn-jsx": ["acorn-jsx@5.3.2", "", { "peerDependencies": { "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ=="], + + "agent-base": ["agent-base@7.1.3", "", {}, "sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw=="], + + "ajv": ["ajv@6.12.6", "", { "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" } }, "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="], + + "ansi-align": ["ansi-align@3.0.1", "", { "dependencies": { "string-width": "^4.1.0" } }, "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w=="], + + "ansi-regex": ["ansi-regex@6.1.0", "", {}, "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA=="], + + "ansi-styles": ["ansi-styles@4.3.0", "", { "dependencies": { "color-convert": "^2.0.1" } }, "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="], + + "ansis": ["ansis@3.17.0", "", {}, "sha512-0qWUglt9JEqLFr3w1I1pbrChn1grhaiAR2ocX1PP/flRmxgtwTzPFFFnfIlD6aMOLQZgSuCRlidD70lvx8yhzg=="], + + "anymatch": ["anymatch@3.1.3", "", { "dependencies": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" } }, "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw=="], + + "archiver": ["archiver@7.0.1", "", { "dependencies": { "archiver-utils": "^5.0.2", "async": "^3.2.4", "buffer-crc32": "^1.0.0", "readable-stream": "^4.0.0", "readdir-glob": "^1.1.2", "tar-stream": "^3.0.0", "zip-stream": "^6.0.1" } }, "sha512-ZcbTaIqJOfCc03QwD468Unz/5Ir8ATtvAHsK+FdXbDIbGfihqh9mrvdcYunQzqn4HrvWWaFyaxJhGZagaJJpPQ=="], + + "archiver-utils": ["archiver-utils@5.0.2", "", { "dependencies": { "glob": "^10.0.0", "graceful-fs": "^4.2.0", "is-stream": "^2.0.1", "lazystream": "^1.0.0", "lodash": "^4.17.15", "normalize-path": "^3.0.0", "readable-stream": "^4.0.0" } }, "sha512-wuLJMmIBQYCsGZgYLTy5FIB2pF6Lfb6cXMSF8Qywwk3t20zWnAi7zLcQFdKQmIB8wyZpY5ER38x08GbwtR2cLA=="], + + "argparse": ["argparse@2.0.1", "", {}, "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="], + + "aria-hidden": ["aria-hidden@1.2.6", "", { "dependencies": { "tslib": "^2.0.0" } }, "sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA=="], + + "array-timsort": ["array-timsort@1.0.3", "", {}, "sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ=="], + + "ast-module-types": ["ast-module-types@6.0.1", "", {}, "sha512-WHw67kLXYbZuHTmcdbIrVArCq5wxo6NEuj3hiYAWr8mwJeC+C2mMCIBIWCiDoCye/OF/xelc+teJ1ERoWmnEIA=="], + + "async": ["async@3.2.6", "", {}, "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA=="], + + "async-sema": ["async-sema@3.1.1", "", {}, "sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg=="], + + "autoprefixer": ["autoprefixer@10.4.21", "", { "dependencies": { "browserslist": "^4.24.4", "caniuse-lite": "^1.0.30001702", "fraction.js": "^4.3.7", "normalize-range": "^0.1.2", "picocolors": "^1.1.1", "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "postcss": "^8.1.0" }, "bin": { "autoprefixer": "bin/autoprefixer" } }, "sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ=="], + + "aws-ssl-profiles": ["aws-ssl-profiles@1.1.2", "", {}, "sha512-NZKeq9AfyQvEeNlN0zSYAaWrmBffJh3IELMZfRpJVWgrpEbtEpnjvzqBPf+mxoI287JohRDoa+/nsfqqiZmF6g=="], + + "b4a": ["b4a@1.6.7", "", {}, "sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg=="], + + "babel-dead-code-elimination": ["babel-dead-code-elimination@1.0.10", "", { "dependencies": { "@babel/core": "^7.23.7", "@babel/parser": "^7.23.6", "@babel/traverse": "^7.23.7", "@babel/types": "^7.23.6" } }, "sha512-DV5bdJZTzZ0zn0DC24v3jD7Mnidh6xhKa4GfKCbq3sfW8kaWhDdZjP3i81geA8T33tdYqWKw4D3fVv0CwEgKVA=="], + + "balanced-match": ["balanced-match@1.0.2", "", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="], + + "bare-events": ["bare-events@2.5.4", "", {}, "sha512-+gFfDkR8pj4/TrWCGUGWmJIkBwuxPS5F+a5yWjOHQt2hHvNZd5YLzadjmDUtFmMM4y429bnKLa8bYBMHcYdnQA=="], + + "base64-js": ["base64-js@1.5.1", "", {}, "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="], + + "base64id": ["base64id@2.0.0", "", {}, "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog=="], + + "binary-extensions": ["binary-extensions@2.3.0", "", {}, "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw=="], + + "bindings": ["bindings@1.5.0", "", { "dependencies": { "file-uri-to-path": "1.0.0" } }, "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ=="], + + "boxen": ["boxen@7.1.1", "", { "dependencies": { "ansi-align": "^3.0.1", "camelcase": "^7.0.1", "chalk": "^5.2.0", "cli-boxes": "^3.0.0", "string-width": "^5.1.2", "type-fest": "^2.13.0", "widest-line": "^4.0.1", "wrap-ansi": "^8.1.0" } }, "sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog=="], + + "brace-expansion": ["brace-expansion@1.1.11", "", { "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="], + + "braces": ["braces@3.0.3", "", { "dependencies": { "fill-range": "^7.1.1" } }, "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA=="], + + "browserslist": ["browserslist@4.24.5", "", { "dependencies": { "caniuse-lite": "^1.0.30001716", "electron-to-chromium": "^1.5.149", "node-releases": "^2.0.19", "update-browserslist-db": "^1.1.3" }, "bin": { "browserslist": "cli.js" } }, "sha512-FDToo4Wo82hIdgc1CQ+NQD0hEhmpPjrZ3hiUgwgOG6IuTdlpr8jdjyG24P6cNP1yJpTLzS5OcGgSw0xmDU1/Tw=="], + + "buffer": ["buffer@6.0.3", "", { "dependencies": { "base64-js": "^1.3.1", "ieee754": "^1.2.1" } }, "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA=="], + + "buffer-crc32": ["buffer-crc32@1.0.0", "", {}, "sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w=="], + + "buffer-from": ["buffer-from@1.1.2", "", {}, "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ=="], + + "builtin-modules": ["builtin-modules@3.3.0", "", {}, "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw=="], + + "bun-types": ["bun-types@1.2.15", "", { "dependencies": { "@types/node": "*" } }, "sha512-NarRIaS+iOaQU1JPfyKhZm4AsUOrwUOqRNHY0XxI8GI8jYxiLXLcdjYMG9UKS+fwWasc1uw1htV9AX24dD+p4w=="], + + "busboy": ["busboy@1.6.0", "", { "dependencies": { "streamsearch": "^1.1.0" } }, "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA=="], + + "c12": ["c12@3.0.4", "", { "dependencies": { "chokidar": "^4.0.3", "confbox": "^0.2.2", "defu": "^6.1.4", "dotenv": "^16.5.0", "exsolve": "^1.0.5", "giget": "^2.0.0", "jiti": "^2.4.2", "ohash": "^2.0.11", "pathe": "^2.0.3", "perfect-debounce": "^1.0.0", "pkg-types": "^2.1.0", "rc9": "^2.1.2" }, "peerDependencies": { "magicast": "^0.3.5" }, "optionalPeers": ["magicast"] }, "sha512-t5FaZTYbbCtvxuZq9xxIruYydrAGsJ+8UdP0pZzMiK2xl/gNiSOy0OxhLzHUEEb0m1QXYqfzfvyIFEmz/g9lqg=="], + + "call-bind-apply-helpers": ["call-bind-apply-helpers@1.0.2", "", { "dependencies": { "es-errors": "^1.3.0", "function-bind": "^1.1.2" } }, "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ=="], + + "call-bound": ["call-bound@1.0.4", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.2", "get-intrinsic": "^1.3.0" } }, "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg=="], + + "callsite": ["callsite@1.0.0", "", {}, "sha512-0vdNRFXn5q+dtOqjfFtmtlI9N2eVZ7LMyEV2iKC5mEEFvSg/69Ml6b/WU2qF8W1nLRa0wiSrDT3Y5jOHZCwKPQ=="], + + "callsites": ["callsites@3.1.0", "", {}, "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="], + + "camelcase": ["camelcase@7.0.1", "", {}, "sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw=="], + + "caniuse-lite": ["caniuse-lite@1.0.30001718", "", {}, "sha512-AflseV1ahcSunK53NfEs9gFWgOEmzr0f+kaMFA4xiLZlr9Hzt7HxcSpIFcnNCUkz6R6dWKa54rUz3HUmI3nVcw=="], + + "chalk": ["chalk@5.4.1", "", {}, "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w=="], + + "chokidar": ["chokidar@4.0.3", "", { "dependencies": { "readdirp": "^4.0.1" } }, "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA=="], + + "chownr": ["chownr@3.0.0", "", {}, "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g=="], + + "citty": ["citty@0.1.6", "", { "dependencies": { "consola": "^3.2.3" } }, "sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ=="], + + "class-variance-authority": ["class-variance-authority@0.7.1", "", { "dependencies": { "clsx": "^2.1.1" } }, "sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg=="], + + "cli-boxes": ["cli-boxes@3.0.0", "", {}, "sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g=="], + + "cli-cursor": ["cli-cursor@5.0.0", "", { "dependencies": { "restore-cursor": "^5.0.0" } }, "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw=="], + + "cli-spinners": ["cli-spinners@2.9.2", "", {}, "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg=="], + + "client-only": ["client-only@0.0.1", "", {}, "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA=="], + + "clipboardy": ["clipboardy@4.0.0", "", { "dependencies": { "execa": "^8.0.1", "is-wsl": "^3.1.0", "is64bit": "^2.0.0" } }, "sha512-5mOlNS0mhX0707P2I0aZ2V/cmHUEO/fL7VFLqszkhUsxt7RwnmrInf/eEQKlf5GzvYeHIjT+Ov1HRfNmymlG0w=="], + + "cliui": ["cliui@8.0.1", "", { "dependencies": { "string-width": "^4.2.0", "strip-ansi": "^6.0.1", "wrap-ansi": "^7.0.0" } }, "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ=="], + + "clsx": ["clsx@2.1.1", "", {}, "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA=="], + + "cluster-key-slot": ["cluster-key-slot@1.1.2", "", {}, "sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA=="], + + "cmdk": ["cmdk@1.1.1", "", { "dependencies": { "@radix-ui/react-compose-refs": "^1.1.1", "@radix-ui/react-dialog": "^1.1.6", "@radix-ui/react-id": "^1.1.0", "@radix-ui/react-primitive": "^2.0.2" }, "peerDependencies": { "react": "^18 || ^19 || ^19.0.0-rc", "react-dom": "^18 || ^19 || ^19.0.0-rc" } }, "sha512-Vsv7kFaXm+ptHDMZ7izaRsP70GgrW9NBNGswt9OZaVBLlE0SNpDq8eu/VGXyF9r7M0azK3Wy7OlYXsuyYLFzHg=="], + + "color": ["color@4.2.3", "", { "dependencies": { "color-convert": "^2.0.1", "color-string": "^1.9.0" } }, "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A=="], + + "color-convert": ["color-convert@2.0.1", "", { "dependencies": { "color-name": "~1.1.4" } }, "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="], + + "color-name": ["color-name@1.1.4", "", {}, "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="], + + "color-string": ["color-string@1.9.1", "", { "dependencies": { "color-name": "^1.0.0", "simple-swizzle": "^0.2.2" } }, "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg=="], + + "colorspace": ["colorspace@1.1.4", "", { "dependencies": { "color": "^3.1.3", "text-hex": "1.0.x" } }, "sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w=="], + + "commander": ["commander@11.1.0", "", {}, "sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ=="], + + "comment-json": ["comment-json@4.2.5", "", { "dependencies": { "array-timsort": "^1.0.3", "core-util-is": "^1.0.3", "esprima": "^4.0.1", "has-own-prop": "^2.0.0", "repeat-string": "^1.6.1" } }, "sha512-bKw/r35jR3HGt5PEPm1ljsQQGyCrR8sFGNiN5L+ykDHdpO8Smxkrkla9Yi6NkQyUrb8V54PGhfMs6NrIwtxtdw=="], + + "common-path-prefix": ["common-path-prefix@3.0.0", "", {}, "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w=="], + + "commondir": ["commondir@1.0.1", "", {}, "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg=="], + + "compatx": ["compatx@0.2.0", "", {}, "sha512-6gLRNt4ygsi5NyMVhceOCFv14CIdDFN7fQjX1U4+47qVE/+kjPoXMK65KWK+dWxmFzMTuKazoQ9sch6pM0p5oA=="], + + "compress-commons": ["compress-commons@6.0.2", "", { "dependencies": { "crc-32": "^1.2.0", "crc32-stream": "^6.0.0", "is-stream": "^2.0.1", "normalize-path": "^3.0.0", "readable-stream": "^4.0.0" } }, "sha512-6FqVXeETqWPoGcfzrXb37E50NP0LXT8kAMu5ooZayhWWdgEY4lBEEcbQNXtkuKQsGduxiIcI4gOTsxTmuq/bSg=="], + + "concat-map": ["concat-map@0.0.1", "", {}, "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="], + + "confbox": ["confbox@0.2.2", "", {}, "sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ=="], + + "consola": ["consola@3.4.0", "", {}, "sha512-EiPU8G6dQG0GFHNR8ljnZFki/8a+cQwEQ+7wpxdChl02Q8HXlwEZWD5lqAF8vC2sEC3Tehr8hy7vErz88LHyUA=="], + + "convert-source-map": ["convert-source-map@2.0.0", "", {}, "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg=="], + + "cookie": ["cookie@0.7.2", "", {}, "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w=="], + + "cookie-es": ["cookie-es@1.2.2", "", {}, "sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg=="], + + "copy-file": ["copy-file@11.0.0", "", { "dependencies": { "graceful-fs": "^4.2.11", "p-event": "^6.0.0" } }, "sha512-mFsNh/DIANLqFt5VHZoGirdg7bK5+oTWlhnGu6tgRhzBlnEKWaPX2xrFaLltii/6rmhqFMJqffUgknuRdpYlHw=="], + + "core-util-is": ["core-util-is@1.0.3", "", {}, "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ=="], + + "cors": ["cors@2.8.5", "", { "dependencies": { "object-assign": "^4", "vary": "^1" } }, "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g=="], + + "crc-32": ["crc-32@1.2.2", "", { "bin": { "crc32": "bin/crc32.njs" } }, "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ=="], + + "crc32-stream": ["crc32-stream@6.0.0", "", { "dependencies": { "crc-32": "^1.2.0", "readable-stream": "^4.0.0" } }, "sha512-piICUB6ei4IlTv1+653yq5+KoqfBYmj9bw6LqXoOneTMDXk5nM1qt12mFW1caG3LlJXEKW1Bp0WggEmIfQB34g=="], + + "cron-parser": ["cron-parser@4.9.0", "", { "dependencies": { "luxon": "^3.2.1" } }, "sha512-p0SaNjrHOnQeR8/VnfGbmg9te2kfyYSQ7Sc/j/6DtPL3JQvKxmjO9TSjNFpujqV3vEYYBvNNvXSxzyksBWAx1Q=="], + + "croner": ["croner@9.0.0", "", {}, "sha512-onMB0OkDjkXunhdW9htFjEhqrD54+M94i6ackoUkjHKbRnXdyEyKRelp4nJ1kAz32+s27jP1FsebpJCVl0BsvA=="], + + "cross-spawn": ["cross-spawn@7.0.6", "", { "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", "which": "^2.0.1" } }, "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA=="], + + "crossws": ["crossws@0.3.5", "", { "dependencies": { "uncrypto": "^0.1.3" } }, "sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA=="], + + "csstype": ["csstype@3.1.3", "", {}, "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw=="], + + "d3-array": ["d3-array@3.2.4", "", { "dependencies": { "internmap": "1 - 2" } }, "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg=="], + + "d3-color": ["d3-color@3.1.0", "", {}, "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA=="], + + "d3-ease": ["d3-ease@3.0.1", "", {}, "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w=="], + + "d3-format": ["d3-format@3.1.0", "", {}, "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA=="], + + "d3-interpolate": ["d3-interpolate@3.0.1", "", { "dependencies": { "d3-color": "1 - 3" } }, "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g=="], + + "d3-path": ["d3-path@3.1.0", "", {}, "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ=="], + + "d3-scale": ["d3-scale@4.0.2", "", { "dependencies": { "d3-array": "2.10.0 - 3", "d3-format": "1 - 3", "d3-interpolate": "1.2.0 - 3", "d3-time": "2.1.1 - 3", "d3-time-format": "2 - 4" } }, "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ=="], + + "d3-shape": ["d3-shape@3.2.0", "", { "dependencies": { "d3-path": "^3.1.0" } }, "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA=="], + + "d3-time": ["d3-time@3.1.0", "", { "dependencies": { "d3-array": "2 - 3" } }, "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q=="], + + "d3-time-format": ["d3-time-format@4.1.0", "", { "dependencies": { "d3-time": "1 - 3" } }, "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg=="], + + "d3-timer": ["d3-timer@3.0.1", "", {}, "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA=="], + + "data-uri-to-buffer": ["data-uri-to-buffer@4.0.1", "", {}, "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A=="], + + "date-fns": ["date-fns@4.1.0", "", {}, "sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg=="], + + "dax-sh": ["dax-sh@0.39.2", "", { "dependencies": { "@deno/shim-deno": "~0.19.0", "undici-types": "^5.26" } }, "sha512-gpuGEkBQM+5y6p4cWaw9+ePy5TNon+fdwFVtTI8leU3UhwhsBfPewRxMXGuQNC+M2b/MDGMlfgpqynkcd0C3FQ=="], + + "db0": ["db0@0.3.2", "", { "peerDependencies": { "@electric-sql/pglite": "*", "@libsql/client": "*", "better-sqlite3": "*", "drizzle-orm": "*", "mysql2": "*", "sqlite3": "*" }, "optionalPeers": ["@electric-sql/pglite", "@libsql/client", "better-sqlite3", "drizzle-orm", "mysql2", "sqlite3"] }, "sha512-xzWNQ6jk/+NtdfLyXEipbX55dmDSeteLFt/ayF+wZUU5bzKgmrDOxmInUTbyVRp46YwnJdkDA1KhB7WIXFofJw=="], + + "debounce": ["debounce@2.2.0", "", {}, "sha512-Xks6RUDLZFdz8LIdR6q0MTH44k7FikOmnh5xkSjMig6ch45afc8sjTjRQf3P6ax8dMgcQrYO/AR2RGWURrruqw=="], + + "debug": ["debug@4.4.1", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ=="], + + "decache": ["decache@4.6.2", "", { "dependencies": { "callsite": "^1.0.0" } }, "sha512-2LPqkLeu8XWHU8qNCS3kcF6sCcb5zIzvWaAHYSvPfwhdd7mHuah29NssMzrTYyHN4F5oFy2ko9OBYxegtU0FEw=="], + + "decimal.js-light": ["decimal.js-light@2.5.1", "", {}, "sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg=="], + + "dedent": ["dedent@1.5.1", "", { "peerDependencies": { "babel-plugin-macros": "^3.1.0" }, "optionalPeers": ["babel-plugin-macros"] }, "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg=="], + + "deep-is": ["deep-is@0.1.4", "", {}, "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="], + + "deepmerge": ["deepmerge@4.3.1", "", {}, "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A=="], + + "define-lazy-prop": ["define-lazy-prop@2.0.0", "", {}, "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og=="], + + "defu": ["defu@6.1.4", "", {}, "sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg=="], + + "denque": ["denque@2.1.0", "", {}, "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw=="], + + "depd": ["depd@2.0.0", "", {}, "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw=="], + + "destr": ["destr@2.0.5", "", {}, "sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA=="], + + "destroy": ["destroy@1.2.0", "", {}, "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg=="], + + "detect-libc": ["detect-libc@2.0.4", "", {}, "sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA=="], + + "detect-node-es": ["detect-node-es@1.1.0", "", {}, "sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ=="], + + "detective-amd": ["detective-amd@6.0.1", "", { "dependencies": { "ast-module-types": "^6.0.1", "escodegen": "^2.1.0", "get-amd-module-type": "^6.0.1", "node-source-walk": "^7.0.1" }, "bin": { "detective-amd": "bin/cli.js" } }, "sha512-TtyZ3OhwUoEEIhTFoc1C9IyJIud3y+xYkSRjmvCt65+ycQuc3VcBrPRTMWoO/AnuCyOB8T5gky+xf7Igxtjd3g=="], + + "detective-cjs": ["detective-cjs@6.0.1", "", { "dependencies": { "ast-module-types": "^6.0.1", "node-source-walk": "^7.0.1" } }, "sha512-tLTQsWvd2WMcmn/60T2inEJNhJoi7a//PQ7DwRKEj1yEeiQs4mrONgsUtEJKnZmrGWBBmE0kJ1vqOG/NAxwaJw=="], + + "detective-es6": ["detective-es6@5.0.1", "", { "dependencies": { "node-source-walk": "^7.0.1" } }, "sha512-XusTPuewnSUdoxRSx8OOI6xIA/uld/wMQwYsouvFN2LAg7HgP06NF1lHRV3x6BZxyL2Kkoih4ewcq8hcbGtwew=="], + + "detective-postcss": ["detective-postcss@7.0.1", "", { "dependencies": { "is-url": "^1.2.4", "postcss-values-parser": "^6.0.2" }, "peerDependencies": { "postcss": "^8.4.47" } }, "sha512-bEOVpHU9picRZux5XnwGsmCN4+8oZo7vSW0O0/Enq/TO5R2pIAP2279NsszpJR7ocnQt4WXU0+nnh/0JuK4KHQ=="], + + "detective-sass": ["detective-sass@6.0.1", "", { "dependencies": { "gonzales-pe": "^4.3.0", "node-source-walk": "^7.0.1" } }, "sha512-jSGPO8QDy7K7pztUmGC6aiHkexBQT4GIH+mBAL9ZyBmnUIOFbkfZnO8wPRRJFP/QP83irObgsZHCoDHZ173tRw=="], + + "detective-scss": ["detective-scss@5.0.1", "", { "dependencies": { "gonzales-pe": "^4.3.0", "node-source-walk": "^7.0.1" } }, "sha512-MAyPYRgS6DCiS6n6AoSBJXLGVOydsr9huwXORUlJ37K3YLyiN0vYHpzs3AdJOgHobBfispokoqrEon9rbmKacg=="], + + "detective-stylus": ["detective-stylus@5.0.1", "", {}, "sha512-Dgn0bUqdGbE3oZJ+WCKf8Dmu7VWLcmRJGc6RCzBgG31DLIyai9WAoEhYRgIHpt/BCRMrnXLbGWGPQuBUrnF0TA=="], + + "detective-typescript": ["detective-typescript@14.0.0", "", { "dependencies": { "@typescript-eslint/typescript-estree": "^8.23.0", "ast-module-types": "^6.0.1", "node-source-walk": "^7.0.1" }, "peerDependencies": { "typescript": "^5.4.4" } }, "sha512-pgN43/80MmWVSEi5LUuiVvO/0a9ss5V7fwVfrJ4QzAQRd3cwqU1SfWGXJFcNKUqoD5cS+uIovhw5t/0rSeC5Mw=="], + + "detective-vue2": ["detective-vue2@2.2.0", "", { "dependencies": { "@dependents/detective-less": "^5.0.1", "@vue/compiler-sfc": "^3.5.13", "detective-es6": "^5.0.1", "detective-sass": "^6.0.1", "detective-scss": "^5.0.1", "detective-stylus": "^5.0.1", "detective-typescript": "^14.0.0" }, "peerDependencies": { "typescript": "^5.4.4" } }, "sha512-sVg/t6O2z1zna8a/UIV6xL5KUa2cMTQbdTIIvqNM0NIPswp52fe43Nwmbahzj3ww4D844u/vC2PYfiGLvD3zFA=="], + + "diff": ["diff@7.0.0", "", {}, "sha512-PJWHUb1RFevKCwaFA9RlG5tCd+FO5iRh9A8HEtkmBH2Li03iJriB6m6JIN4rGz3K3JLawI7/veA1xzRKP6ISBw=="], + + "dom-helpers": ["dom-helpers@5.2.1", "", { "dependencies": { "@babel/runtime": "^7.8.7", "csstype": "^3.0.2" } }, "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA=="], + + "dom-serializer": ["dom-serializer@2.0.0", "", { "dependencies": { "domelementtype": "^2.3.0", "domhandler": "^5.0.2", "entities": "^4.2.0" } }, "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg=="], + + "domelementtype": ["domelementtype@2.3.0", "", {}, "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw=="], + + "domhandler": ["domhandler@5.0.3", "", { "dependencies": { "domelementtype": "^2.3.0" } }, "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w=="], + + "domutils": ["domutils@3.2.2", "", { "dependencies": { "dom-serializer": "^2.0.0", "domelementtype": "^2.3.0", "domhandler": "^5.0.3" } }, "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw=="], + + "dot-prop": ["dot-prop@9.0.0", "", { "dependencies": { "type-fest": "^4.18.2" } }, "sha512-1gxPBJpI/pcjQhKgIU91II6Wkay+dLcN3M6rf2uwP8hRur3HtQXjVrdAK3sjC0piaEuxzMwjXChcETiJl47lAQ=="], + + "dotenv": ["dotenv@16.5.0", "", {}, "sha512-m/C+AwOAr9/W1UOIZUo232ejMNnJAJtYQjUbHoNTBNTJSvqzzDh7vnrei3o3r3m9blf6ZoDkvcw0VmozNRFJxg=="], + + "drizzle-kit": ["drizzle-kit@1.0.0-beta.1-fd5d1e8", "", { "dependencies": { "@drizzle-team/brocli": "^0.10.2", "@esbuild-kit/esm-loader": "^2.5.5", "esbuild": "^0.19.7", "esbuild-register": "^3.5.0", "gel": "^2.0.0" }, "bin": { "drizzle-kit": "bin.cjs" } }, "sha512-RuqA0QeixasxRokPdWpkfkP3J4aUQbOOZC/+VW0aeYnF+56TyV1ptvwlNHJ0vKlTcaU4cix5n2Pu7B4Iucm4IA=="], + + "drizzle-orm": ["drizzle-orm@1.0.0-beta.1-fd5d1e8", "", { "peerDependencies": { "@aws-sdk/client-rds-data": ">=3", "@cloudflare/workers-types": ">=4", "@electric-sql/pglite": ">=0.2.0", "@libsql/client": ">=0.10.0", "@libsql/client-wasm": ">=0.10.0", "@neondatabase/serverless": ">=0.10.0", "@op-engineering/op-sqlite": ">=2", "@opentelemetry/api": "^1.4.1", "@planetscale/database": ">=1", "@prisma/client": "*", "@tidbcloud/serverless": "*", "@types/better-sqlite3": "*", "@types/pg": "*", "@types/sql.js": "*", "@vercel/postgres": ">=0.8.0", "@xata.io/client": "*", "better-sqlite3": ">=9.3.0", "bun-types": "*", "expo-sqlite": ">=14.0.0", "gel": ">=2", "knex": "*", "kysely": "*", "mysql2": ">=2", "pg": ">=8", "postgres": ">=3", "sql.js": ">=1", "sqlite3": ">=5" }, "optionalPeers": ["@aws-sdk/client-rds-data", "@cloudflare/workers-types", "@electric-sql/pglite", "@libsql/client", "@libsql/client-wasm", "@neondatabase/serverless", "@op-engineering/op-sqlite", "@opentelemetry/api", "@planetscale/database", "@prisma/client", "@tidbcloud/serverless", "@types/better-sqlite3", "@types/pg", "@types/sql.js", "@vercel/postgres", "@xata.io/client", "better-sqlite3", "bun-types", "expo-sqlite", "gel", "knex", "kysely", "mysql2", "pg", "postgres", "sql.js", "sqlite3"] }, "sha512-p/6rhE/MU3qD61sYOiUW9u6EM3S+GspByTzpgDHwzv9s7JEMSmfcDrFa4eyRSWCczx6/IC2AnB4SJt6uM0xydQ=="], + + "drizzle-zod": ["drizzle-zod@0.8.2", "", { "peerDependencies": { "drizzle-orm": ">=0.36.0", "zod": "^3.25.1" } }, "sha512-9Do/16OjFFNrQDZgvMtxtDDwKWbFOxUAIwNPKX98SfxrP8H18vhN1BvNXbhelLcdgCE7GEaXDJqBjMExSkhpkA=="], + + "dunder-proto": ["dunder-proto@1.0.1", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.1", "es-errors": "^1.3.0", "gopd": "^1.2.0" } }, "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A=="], + + "duplexer": ["duplexer@0.1.2", "", {}, "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg=="], + + "eastasianwidth": ["eastasianwidth@0.2.0", "", {}, "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA=="], + + "ee-first": ["ee-first@1.1.1", "", {}, "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow=="], + + "electron-to-chromium": ["electron-to-chromium@1.5.158", "", {}, "sha512-9vcp2xHhkvraY6AHw2WMi+GDSLPX42qe2xjYaVoZqFRJiOcilVQFq9mZmpuHEQpzlgGDelKlV7ZiGcmMsc8WxQ=="], + + "embla-carousel": ["embla-carousel@8.6.0", "", {}, "sha512-SjWyZBHJPbqxHOzckOfo8lHisEaJWmwd23XppYFYVh10bU66/Pn5tkVkbkCMZVdbUE5eTCI2nD8OyIP4Z+uwkA=="], + + "embla-carousel-react": ["embla-carousel-react@8.6.0", "", { "dependencies": { "embla-carousel": "8.6.0", "embla-carousel-reactive-utils": "8.6.0" }, "peerDependencies": { "react": "^16.8.0 || ^17.0.1 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc" } }, "sha512-0/PjqU7geVmo6F734pmPqpyHqiM99olvyecY7zdweCw+6tKEXnrE90pBiBbMMU8s5tICemzpQ3hi5EpxzGW+JA=="], + + "embla-carousel-reactive-utils": ["embla-carousel-reactive-utils@8.6.0", "", { "peerDependencies": { "embla-carousel": "8.6.0" } }, "sha512-fMVUDUEx0/uIEDM0Mz3dHznDhfX+znCCDCeIophYb1QGVM7YThSWX+wz11zlYwWFOr74b4QLGg0hrGPJeG2s4A=="], + + "emoji-regex": ["emoji-regex@10.4.0", "", {}, "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw=="], + + "enabled": ["enabled@2.0.0", "", {}, "sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ=="], + + "encodeurl": ["encodeurl@2.0.0", "", {}, "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg=="], + + "end-of-stream": ["end-of-stream@1.4.4", "", { "dependencies": { "once": "^1.4.0" } }, "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q=="], + + "engine.io": ["engine.io@6.6.4", "", { "dependencies": { "@types/cors": "^2.8.12", "@types/node": ">=10.0.0", "accepts": "~1.3.4", "base64id": "2.0.0", "cookie": "~0.7.2", "cors": "~2.8.5", "debug": "~4.3.1", "engine.io-parser": "~5.2.1", "ws": "~8.17.1" } }, "sha512-ZCkIjSYNDyGn0R6ewHDtXgns/Zre/NT6Agvq1/WobF7JXgFff4SeDroKiCO3fNJreU9YG429Sc81o4w5ok/W5g=="], + + "engine.io-parser": ["engine.io-parser@5.2.3", "", {}, "sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q=="], + + "enhanced-resolve": ["enhanced-resolve@5.18.1", "", { "dependencies": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" } }, "sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg=="], + + "entities": ["entities@4.5.0", "", {}, "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw=="], + + "env-paths": ["env-paths@3.0.0", "", {}, "sha512-dtJUTepzMW3Lm/NPxRf3wP4642UWhjL2sQxc+ym2YMj1m/H2zDNQOlezafzkHwn6sMstjHTwG6iQQsctDW/b1A=="], + + "error-stack-parser-es": ["error-stack-parser-es@1.0.5", "", {}, "sha512-5qucVt2XcuGMcEGgWI7i+yZpmpByQ8J1lHhcL7PwqCwu9FPP3VUXzT4ltHe5i2z9dePwEHcDVOAfSnHsOlCXRA=="], + + "es-define-property": ["es-define-property@1.0.1", "", {}, "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="], + + "es-errors": ["es-errors@1.3.0", "", {}, "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw=="], + + "es-module-lexer": ["es-module-lexer@1.7.0", "", {}, "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA=="], + + "es-object-atoms": ["es-object-atoms@1.1.1", "", { "dependencies": { "es-errors": "^1.3.0" } }, "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA=="], + + "esbuild": ["esbuild@0.19.12", "", { "optionalDependencies": { "@esbuild/aix-ppc64": "0.19.12", "@esbuild/android-arm": "0.19.12", "@esbuild/android-arm64": "0.19.12", "@esbuild/android-x64": "0.19.12", "@esbuild/darwin-arm64": "0.19.12", "@esbuild/darwin-x64": "0.19.12", "@esbuild/freebsd-arm64": "0.19.12", "@esbuild/freebsd-x64": "0.19.12", "@esbuild/linux-arm": "0.19.12", "@esbuild/linux-arm64": "0.19.12", "@esbuild/linux-ia32": "0.19.12", "@esbuild/linux-loong64": "0.19.12", "@esbuild/linux-mips64el": "0.19.12", "@esbuild/linux-ppc64": "0.19.12", "@esbuild/linux-riscv64": "0.19.12", "@esbuild/linux-s390x": "0.19.12", "@esbuild/linux-x64": "0.19.12", "@esbuild/netbsd-x64": "0.19.12", "@esbuild/openbsd-x64": "0.19.12", "@esbuild/sunos-x64": "0.19.12", "@esbuild/win32-arm64": "0.19.12", "@esbuild/win32-ia32": "0.19.12", "@esbuild/win32-x64": "0.19.12" }, "bin": { "esbuild": "bin/esbuild" } }, "sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg=="], + + "esbuild-register": ["esbuild-register@3.6.0", "", { "dependencies": { "debug": "^4.3.4" }, "peerDependencies": { "esbuild": ">=0.12 <1" } }, "sha512-H2/S7Pm8a9CL1uhp9OvjwrBh5Pvx0H8qVOxNu8Wed9Y7qv56MPtq+GGM8RJpq6glYJn9Wspr8uw7l55uyinNeg=="], + + "esbuild-wasm": ["esbuild-wasm@0.19.12", "", { "bin": { "esbuild": "bin/esbuild" } }, "sha512-Zmc4hk6FibJZBcTx5/8K/4jT3/oG1vkGTEeKJUQFCUQKimD6Q7+adp/bdVQyYJFolMKaXkQnVZdV4O5ZaTYmyQ=="], + + "escalade": ["escalade@3.2.0", "", {}, "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA=="], + + "escape-html": ["escape-html@1.0.3", "", {}, "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow=="], + + "escape-string-regexp": ["escape-string-regexp@4.0.0", "", {}, "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="], + + "escodegen": ["escodegen@2.1.0", "", { "dependencies": { "esprima": "^4.0.1", "estraverse": "^5.2.0", "esutils": "^2.0.2" }, "optionalDependencies": { "source-map": "~0.6.1" }, "bin": { "esgenerate": "bin/esgenerate.js", "escodegen": "bin/escodegen.js" } }, "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w=="], + + "eslint": ["eslint@9.27.0", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.12.1", "@eslint/config-array": "^0.20.0", "@eslint/config-helpers": "^0.2.1", "@eslint/core": "^0.14.0", "@eslint/eslintrc": "^3.3.1", "@eslint/js": "9.27.0", "@eslint/plugin-kit": "^0.3.1", "@humanfs/node": "^0.16.6", "@humanwhocodes/module-importer": "^1.0.1", "@humanwhocodes/retry": "^0.4.2", "@types/estree": "^1.0.6", "@types/json-schema": "^7.0.15", "ajv": "^6.12.4", "chalk": "^4.0.0", "cross-spawn": "^7.0.6", "debug": "^4.3.2", "escape-string-regexp": "^4.0.0", "eslint-scope": "^8.3.0", "eslint-visitor-keys": "^4.2.0", "espree": "^10.3.0", "esquery": "^1.5.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^8.0.0", "find-up": "^5.0.0", "glob-parent": "^6.0.2", "ignore": "^5.2.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "json-stable-stringify-without-jsonify": "^1.0.1", "lodash.merge": "^4.6.2", "minimatch": "^3.1.2", "natural-compare": "^1.4.0", "optionator": "^0.9.3" }, "peerDependencies": { "jiti": "*" }, "optionalPeers": ["jiti"], "bin": { "eslint": "bin/eslint.js" } }, "sha512-ixRawFQuMB9DZ7fjU3iGGganFDp3+45bPOdaRurcFHSXO1e/sYwUX/FtQZpLZJR6SjMoJH8hR2pPEAfDyCoU2Q=="], + + "eslint-scope": ["eslint-scope@8.3.0", "", { "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" } }, "sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ=="], + + "eslint-visitor-keys": ["eslint-visitor-keys@4.2.0", "", {}, "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw=="], + + "espree": ["espree@10.3.0", "", { "dependencies": { "acorn": "^8.14.0", "acorn-jsx": "^5.3.2", "eslint-visitor-keys": "^4.2.0" } }, "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg=="], + + "esprima": ["esprima@4.0.1", "", { "bin": { "esparse": "./bin/esparse.js", "esvalidate": "./bin/esvalidate.js" } }, "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="], + + "esquery": ["esquery@1.6.0", "", { "dependencies": { "estraverse": "^5.1.0" } }, "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg=="], + + "esrecurse": ["esrecurse@4.3.0", "", { "dependencies": { "estraverse": "^5.2.0" } }, "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag=="], + + "estraverse": ["estraverse@5.3.0", "", {}, "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA=="], + + "estree-walker": ["estree-walker@3.0.3", "", { "dependencies": { "@types/estree": "^1.0.0" } }, "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g=="], + + "esutils": ["esutils@2.0.3", "", {}, "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="], + + "etag": ["etag@1.8.1", "", {}, "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg=="], + + "event-target-shim": ["event-target-shim@5.0.1", "", {}, "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ=="], + + "eventemitter3": ["eventemitter3@4.0.7", "", {}, "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw=="], + + "events": ["events@3.3.0", "", {}, "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q=="], + + "execa": ["execa@8.0.1", "", { "dependencies": { "cross-spawn": "^7.0.3", "get-stream": "^8.0.1", "human-signals": "^5.0.0", "is-stream": "^3.0.0", "merge-stream": "^2.0.0", "npm-run-path": "^5.1.0", "onetime": "^6.0.0", "signal-exit": "^4.1.0", "strip-final-newline": "^3.0.0" } }, "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg=="], + + "exsolve": ["exsolve@1.0.5", "", {}, "sha512-pz5dvkYYKQ1AHVrgOzBKWeP4u4FRb3a6DNK2ucr0OoNwYIU4QWsJ+NM36LLzORT+z845MzKHHhpXiUF5nvQoJg=="], + + "extract-zip": ["extract-zip@2.0.1", "", { "dependencies": { "debug": "^4.1.1", "get-stream": "^5.1.0", "yauzl": "^2.10.0" }, "optionalDependencies": { "@types/yauzl": "^2.9.1" }, "bin": { "extract-zip": "cli.js" } }, "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg=="], + + "fast-deep-equal": ["fast-deep-equal@3.1.3", "", {}, "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="], + + "fast-equals": ["fast-equals@5.2.2", "", {}, "sha512-V7/RktU11J3I36Nwq2JnZEM7tNm17eBJz+u25qdxBZeCKiX6BkVSZQjwWIr+IobgnZy+ag73tTZgZi7tr0LrBw=="], + + "fast-fifo": ["fast-fifo@1.3.2", "", {}, "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ=="], + + "fast-glob": ["fast-glob@3.3.3", "", { "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", "glob-parent": "^5.1.2", "merge2": "^1.3.0", "micromatch": "^4.0.8" } }, "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg=="], + + "fast-json-stable-stringify": ["fast-json-stable-stringify@2.1.0", "", {}, "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="], + + "fast-levenshtein": ["fast-levenshtein@2.0.6", "", {}, "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw=="], + + "fastq": ["fastq@1.19.1", "", { "dependencies": { "reusify": "^1.0.4" } }, "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ=="], + + "fd-slicer": ["fd-slicer@1.1.0", "", { "dependencies": { "pend": "~1.2.0" } }, "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g=="], + + "fdir": ["fdir@6.4.4", "", { "peerDependencies": { "picomatch": "^3 || ^4" }, "optionalPeers": ["picomatch"] }, "sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg=="], + + "fecha": ["fecha@4.2.3", "", {}, "sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw=="], + + "fetch-blob": ["fetch-blob@3.2.0", "", { "dependencies": { "node-domexception": "^1.0.0", "web-streams-polyfill": "^3.0.3" } }, "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ=="], + + "file-entry-cache": ["file-entry-cache@8.0.0", "", { "dependencies": { "flat-cache": "^4.0.0" } }, "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ=="], + + "file-uri-to-path": ["file-uri-to-path@1.0.0", "", {}, "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw=="], + + "fill-range": ["fill-range@7.1.1", "", { "dependencies": { "to-regex-range": "^5.0.1" } }, "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg=="], + + "filter-obj": ["filter-obj@6.1.0", "", {}, "sha512-xdMtCAODmPloU9qtmPcdBV9Kd27NtMse+4ayThxqIHUES5Z2S6bGpap5PpdmNM56ub7y3i1eyr+vJJIIgWGKmA=="], + + "find-up": ["find-up@5.0.0", "", { "dependencies": { "locate-path": "^6.0.0", "path-exists": "^4.0.0" } }, "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng=="], + + "find-up-simple": ["find-up-simple@1.0.1", "", {}, "sha512-afd4O7zpqHeRyg4PfDQsXmlDe2PfdHtJt6Akt8jOWaApLOZk5JXs6VMR29lz03pRe9mpykrRCYIYxaJYcfpncQ=="], + + "flat-cache": ["flat-cache@4.0.1", "", { "dependencies": { "flatted": "^3.2.9", "keyv": "^4.5.4" } }, "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw=="], + + "flatted": ["flatted@3.3.3", "", {}, "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg=="], + + "fn.name": ["fn.name@1.1.0", "", {}, "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw=="], + + "follow-redirects": ["follow-redirects@1.15.9", "", {}, "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ=="], + + "foreground-child": ["foreground-child@3.3.1", "", { "dependencies": { "cross-spawn": "^7.0.6", "signal-exit": "^4.0.1" } }, "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw=="], + + "formdata-polyfill": ["formdata-polyfill@4.0.10", "", { "dependencies": { "fetch-blob": "^3.1.2" } }, "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g=="], + + "fraction.js": ["fraction.js@4.3.7", "", {}, "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew=="], + + "fresh": ["fresh@0.5.2", "", {}, "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q=="], + + "fs.realpath": ["fs.realpath@1.0.0", "", {}, "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="], + + "fsevents": ["fsevents@2.3.3", "", { "os": "darwin" }, "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw=="], + + "function-bind": ["function-bind@1.1.2", "", {}, "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA=="], + + "gel": ["gel@2.1.0", "", { "dependencies": { "@petamoriken/float16": "^3.8.7", "debug": "^4.3.4", "env-paths": "^3.0.0", "semver": "^7.6.2", "shell-quote": "^1.8.1", "which": "^4.0.0" }, "bin": { "gel": "dist/cli.mjs" } }, "sha512-HCeRqInCt6BjbMmeghJ6BKeYwOj7WJT5Db6IWWAA3IMUUa7or7zJfTUEkUWCxiOtoXnwnm96sFK9Fr47Yh2hOA=="], + + "generate-function": ["generate-function@2.3.1", "", { "dependencies": { "is-property": "^1.0.2" } }, "sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ=="], + + "gensync": ["gensync@1.0.0-beta.2", "", {}, "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg=="], + + "get-amd-module-type": ["get-amd-module-type@6.0.1", "", { "dependencies": { "ast-module-types": "^6.0.1", "node-source-walk": "^7.0.1" } }, "sha512-MtjsmYiCXcYDDrGqtNbeIYdAl85n+5mSv2r3FbzER/YV3ZILw4HNNIw34HuV5pyl0jzs6GFYU1VHVEefhgcNHQ=="], + + "get-caller-file": ["get-caller-file@2.0.5", "", {}, "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="], + + "get-east-asian-width": ["get-east-asian-width@1.3.0", "", {}, "sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ=="], + + "get-intrinsic": ["get-intrinsic@1.3.0", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.2", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.1.1", "function-bind": "^1.1.2", "get-proto": "^1.0.1", "gopd": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "math-intrinsics": "^1.1.0" } }, "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ=="], + + "get-nonce": ["get-nonce@1.0.1", "", {}, "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q=="], + + "get-port-please": ["get-port-please@3.1.2", "", {}, "sha512-Gxc29eLs1fbn6LQ4jSU4vXjlwyZhF5HsGuMAa7gqBP4Rw4yxxltyDUuF5MBclFzDTXO+ACchGQoeela4DSfzdQ=="], + + "get-proto": ["get-proto@1.0.1", "", { "dependencies": { "dunder-proto": "^1.0.1", "es-object-atoms": "^1.0.0" } }, "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g=="], + + "get-stream": ["get-stream@8.0.1", "", {}, "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA=="], + + "get-tsconfig": ["get-tsconfig@4.10.1", "", { "dependencies": { "resolve-pkg-maps": "^1.0.0" } }, "sha512-auHyJ4AgMz7vgS8Hp3N6HXSmlMdUyhSUrfBF16w153rxtLIEOE+HGqaBppczZvnHLqQJfiHotCYpNhl0lUROFQ=="], + + "giget": ["giget@2.0.0", "", { "dependencies": { "citty": "^0.1.6", "consola": "^3.4.0", "defu": "^6.1.4", "node-fetch-native": "^1.6.6", "nypm": "^0.6.0", "pathe": "^2.0.3" }, "bin": { "giget": "dist/cli.mjs" } }, "sha512-L5bGsVkxJbJgdnwyuheIunkGatUF/zssUoxxjACCseZYAVbaqdh9Tsmmlkl8vYan09H7sbvKt4pS8GqKLBrEzA=="], + + "glob": ["glob@11.0.2", "", { "dependencies": { "foreground-child": "^3.1.0", "jackspeak": "^4.0.1", "minimatch": "^10.0.0", "minipass": "^7.1.2", "package-json-from-dist": "^1.0.0", "path-scurry": "^2.0.0" }, "bin": { "glob": "dist/esm/bin.mjs" } }, "sha512-YT7U7Vye+t5fZ/QMkBFrTJ7ZQxInIUjwyAjVj84CYXqgBdv30MFUPGnBR6sQaVq6Is15wYJUsnzTuWaGRBhBAQ=="], + + "glob-parent": ["glob-parent@6.0.2", "", { "dependencies": { "is-glob": "^4.0.3" } }, "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A=="], + + "globals": ["globals@11.12.0", "", {}, "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="], + + "globby": ["globby@14.1.0", "", { "dependencies": { "@sindresorhus/merge-streams": "^2.1.0", "fast-glob": "^3.3.3", "ignore": "^7.0.3", "path-type": "^6.0.0", "slash": "^5.1.0", "unicorn-magic": "^0.3.0" } }, "sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA=="], + + "globrex": ["globrex@0.1.2", "", {}, "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg=="], + + "gonzales-pe": ["gonzales-pe@4.3.0", "", { "dependencies": { "minimist": "^1.2.5" }, "bin": { "gonzales": "bin/gonzales.js" } }, "sha512-otgSPpUmdWJ43VXyiNgEYE4luzHCL2pz4wQ0OnDluC6Eg4Ko3Vexy/SrSynglw/eR+OhkzmqFCZa/OFa/RgAOQ=="], + + "goober": ["goober@2.1.16", "", { "peerDependencies": { "csstype": "^3.0.10" } }, "sha512-erjk19y1U33+XAMe1VTvIONHYoSqE4iS7BYUZfHaqeohLmnC0FdxEh7rQU+6MZ4OajItzjZFSRtVANrQwNq6/g=="], + + "gopd": ["gopd@1.2.0", "", {}, "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg=="], + + "graceful-fs": ["graceful-fs@4.2.11", "", {}, "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ=="], + + "gzip-size": ["gzip-size@7.0.0", "", { "dependencies": { "duplexer": "^0.1.2" } }, "sha512-O1Ld7Dr+nqPnmGpdhzLmMTQ4vAsD+rHwMm1NLUmoUFFymBOMKxCCrtDxqdBRYXdeEPEi3SyoR4TizJLQrnKBNA=="], + + "h3": ["h3@1.13.0", "", { "dependencies": { "cookie-es": "^1.2.2", "crossws": ">=0.2.0 <0.4.0", "defu": "^6.1.4", "destr": "^2.0.3", "iron-webcrypto": "^1.2.1", "ohash": "^1.1.4", "radix3": "^1.1.2", "ufo": "^1.5.4", "uncrypto": "^0.1.3", "unenv": "^1.10.0" } }, "sha512-vFEAu/yf8UMUcB4s43OaDaigcqpQd14yanmOsn+NcRX3/guSKncyE2rOYhq8RIchgJrPSs/QiIddnTTR1ddiAg=="], + + "has-flag": ["has-flag@4.0.0", "", {}, "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="], + + "has-own-prop": ["has-own-prop@2.0.0", "", {}, "sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ=="], + + "has-symbols": ["has-symbols@1.1.0", "", {}, "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ=="], + + "hasown": ["hasown@2.0.2", "", { "dependencies": { "function-bind": "^1.1.2" } }, "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ=="], + + "hookable": ["hookable@5.5.3", "", {}, "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ=="], + + "hosted-git-info": ["hosted-git-info@7.0.2", "", { "dependencies": { "lru-cache": "^10.0.1" } }, "sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w=="], + + "html-to-text": ["html-to-text@9.0.5", "", { "dependencies": { "@selderee/plugin-htmlparser2": "^0.11.0", "deepmerge": "^4.3.1", "dom-serializer": "^2.0.0", "htmlparser2": "^8.0.2", "selderee": "^0.11.0" } }, "sha512-qY60FjREgVZL03vJU6IfMV4GDjGBIoOyvuFdpBDIX9yTlDw0TjxVBQp+P8NvpdIXNJvfWBTNul7fsAQJq2FNpg=="], + + "htmlparser2": ["htmlparser2@8.0.2", "", { "dependencies": { "domelementtype": "^2.3.0", "domhandler": "^5.0.3", "domutils": "^3.0.1", "entities": "^4.4.0" } }, "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA=="], + + "http-errors": ["http-errors@2.0.0", "", { "dependencies": { "depd": "2.0.0", "inherits": "2.0.4", "setprototypeof": "1.2.0", "statuses": "2.0.1", "toidentifier": "1.0.1" } }, "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ=="], + + "http-proxy": ["http-proxy@1.18.1", "", { "dependencies": { "eventemitter3": "^4.0.0", "follow-redirects": "^1.0.0", "requires-port": "^1.0.0" } }, "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ=="], + + "http-shutdown": ["http-shutdown@1.2.2", "", {}, "sha512-S9wWkJ/VSY9/k4qcjG318bqJNruzE4HySUhFYknwmu6LBP97KLLfwNf+n4V1BHurvFNkSKLFnK/RsuUnRTf9Vw=="], + + "https-proxy-agent": ["https-proxy-agent@7.0.6", "", { "dependencies": { "agent-base": "^7.1.2", "debug": "4" } }, "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw=="], + + "httpxy": ["httpxy@0.1.7", "", {}, "sha512-pXNx8gnANKAndgga5ahefxc++tJvNL87CXoRwxn1cJE2ZkWEojF3tNfQIEhZX/vfpt+wzeAzpUI4qkediX1MLQ=="], + + "human-id": ["human-id@4.1.1", "", { "bin": { "human-id": "dist/cli.js" } }, "sha512-3gKm/gCSUipeLsRYZbbdA1BD83lBoWUkZ7G9VFrhWPAU76KwYo5KR8V28bpoPm/ygy0x5/GCbpRQdY7VLYCoIg=="], + + "human-signals": ["human-signals@5.0.0", "", {}, "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ=="], + + "iconv-lite": ["iconv-lite@0.6.3", "", { "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" } }, "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw=="], + + "ieee754": ["ieee754@1.2.1", "", {}, "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="], + + "ignore": ["ignore@5.3.2", "", {}, "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g=="], + + "import-fresh": ["import-fresh@3.3.1", "", { "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" } }, "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ=="], + + "import-meta-resolve": ["import-meta-resolve@4.1.0", "", {}, "sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw=="], + + "imurmurhash": ["imurmurhash@0.1.4", "", {}, "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA=="], + + "index-to-position": ["index-to-position@1.1.0", "", {}, "sha512-XPdx9Dq4t9Qk1mTMbWONJqU7boCoumEH7fRET37HX5+khDUl3J2W6PdALxhILYlIYx2amlwYcRPp28p0tSiojg=="], + + "inflight": ["inflight@1.0.6", "", { "dependencies": { "once": "^1.3.0", "wrappy": "1" } }, "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA=="], + + "inherits": ["inherits@2.0.4", "", {}, "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="], + + "input-otp": ["input-otp@1.4.2", "", { "peerDependencies": { "react": "^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc" } }, "sha512-l3jWwYNvrEa6NTCt7BECfCm48GvwuZzkoeG3gBL2w4CHeOXW3eKFmf9UNYkNfYc3mxMrthMnxjIE07MT0zLBQA=="], + + "internmap": ["internmap@2.0.3", "", {}, "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg=="], + + "ioredis": ["ioredis@5.6.1", "", { "dependencies": { "@ioredis/commands": "^1.1.1", "cluster-key-slot": "^1.1.0", "debug": "^4.3.4", "denque": "^2.1.0", "lodash.defaults": "^4.2.0", "lodash.isarguments": "^3.1.0", "redis-errors": "^1.2.0", "redis-parser": "^3.0.0", "standard-as-callback": "^2.1.0" } }, "sha512-UxC0Yv1Y4WRJiGQxQkP0hfdL0/5/6YvdfOOClRgJ0qppSarkhneSa6UvkMkms0AkdGimSH3Ikqm+6mkMmX7vGA=="], + + "iron-webcrypto": ["iron-webcrypto@1.2.1", "", {}, "sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg=="], + + "is-arrayish": ["is-arrayish@0.3.2", "", {}, "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ=="], + + "is-binary-path": ["is-binary-path@2.1.0", "", { "dependencies": { "binary-extensions": "^2.0.0" } }, "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw=="], + + "is-builtin-module": ["is-builtin-module@3.2.1", "", { "dependencies": { "builtin-modules": "^3.3.0" } }, "sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A=="], + + "is-core-module": ["is-core-module@2.16.1", "", { "dependencies": { "hasown": "^2.0.2" } }, "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w=="], + + "is-docker": ["is-docker@2.2.1", "", { "bin": { "is-docker": "cli.js" } }, "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ=="], + + "is-extglob": ["is-extglob@2.1.1", "", {}, "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ=="], + + "is-fullwidth-code-point": ["is-fullwidth-code-point@3.0.0", "", {}, "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="], + + "is-glob": ["is-glob@4.0.3", "", { "dependencies": { "is-extglob": "^2.1.1" } }, "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg=="], + + "is-inside-container": ["is-inside-container@1.0.0", "", { "dependencies": { "is-docker": "^3.0.0" }, "bin": { "is-inside-container": "cli.js" } }, "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA=="], + + "is-interactive": ["is-interactive@2.0.0", "", {}, "sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ=="], + + "is-module": ["is-module@1.0.0", "", {}, "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g=="], + + "is-number": ["is-number@7.0.0", "", {}, "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="], + + "is-path-inside": ["is-path-inside@4.0.0", "", {}, "sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA=="], + + "is-plain-obj": ["is-plain-obj@2.1.0", "", {}, "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA=="], + + "is-property": ["is-property@1.0.2", "", {}, "sha512-Ks/IoX00TtClbGQr4TWXemAnktAQvYB7HzcCxDGqEZU6oCmb2INHuOoKxbtR+HFkmYWBKv/dOZtGRiAjDhj92g=="], + + "is-reference": ["is-reference@1.2.1", "", { "dependencies": { "@types/estree": "*" } }, "sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ=="], + + "is-stream": ["is-stream@4.0.1", "", {}, "sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A=="], + + "is-unicode-supported": ["is-unicode-supported@2.1.0", "", {}, "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ=="], + + "is-url": ["is-url@1.2.4", "", {}, "sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww=="], + + "is-url-superb": ["is-url-superb@4.0.0", "", {}, "sha512-GI+WjezhPPcbM+tqE9LnmsY5qqjwHzTvjJ36wxYX5ujNXefSUJ/T17r5bqDV8yLhcgB59KTPNOc9O9cmHTPWsA=="], + + "is-wsl": ["is-wsl@3.1.0", "", { "dependencies": { "is-inside-container": "^1.0.0" } }, "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw=="], + + "is64bit": ["is64bit@2.0.0", "", { "dependencies": { "system-architecture": "^0.1.0" } }, "sha512-jv+8jaWCl0g2lSBkNSVXdzfBA0npK1HGC2KtWM9FumFRoGS94g3NbCCLVnCYHLjp4GrW2KZeeSTMo5ddtznmGw=="], + + "isarray": ["isarray@1.0.0", "", {}, "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ=="], + + "isbot": ["isbot@5.1.28", "", {}, "sha512-qrOp4g3xj8YNse4biorv6O5ZShwsJM0trsoda4y7j/Su7ZtTTfVXFzbKkpgcSoDrHS8FcTuUwcU04YimZlZOxw=="], + + "isexe": ["isexe@3.1.1", "", {}, "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ=="], + + "jackspeak": ["jackspeak@4.1.1", "", { "dependencies": { "@isaacs/cliui": "^8.0.2" } }, "sha512-zptv57P3GpL+O0I7VdMJNBZCu+BPHVQUk55Ft8/QCJjTVxrnJHuVuX/0Bl2A6/+2oyR/ZMEuFKwmzqqZ/U5nPQ=="], + + "jiti": ["jiti@1.21.7", "", { "bin": { "jiti": "bin/jiti.js" } }, "sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A=="], + + "js-sha256": ["js-sha256@0.11.1", "", {}, "sha512-o6WSo/LUvY2uC4j7mO50a2ms7E/EAdbP0swigLV+nzHKTTaYnaLIWJ02VdXrsJX0vGedDESQnLsOekr94ryfjg=="], + + "js-tokens": ["js-tokens@4.0.0", "", {}, "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="], + + "js-yaml": ["js-yaml@4.1.0", "", { "dependencies": { "argparse": "^2.0.1" }, "bin": { "js-yaml": "bin/js-yaml.js" } }, "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA=="], + + "jsesc": ["jsesc@3.1.0", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA=="], + + "json-buffer": ["json-buffer@3.0.1", "", {}, "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ=="], + + "json-schema-traverse": ["json-schema-traverse@0.4.1", "", {}, "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="], + + "json-stable-stringify-without-jsonify": ["json-stable-stringify-without-jsonify@1.0.1", "", {}, "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw=="], + + "json5": ["json5@2.2.3", "", { "bin": { "json5": "lib/cli.js" } }, "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg=="], + + "junk": ["junk@4.0.1", "", {}, "sha512-Qush0uP+G8ZScpGMZvHUiRfI0YBWuB3gVBYlI0v0vvOJt5FLicco+IkP0a50LqTTQhmts/m6tP5SWE+USyIvcQ=="], + + "jwt-decode": ["jwt-decode@4.0.0", "", {}, "sha512-+KJGIyHgkGuIq3IEBNftfhW/LfWhXUIY6OmyVWjliu5KH1y0fw7VQ8YndE2O4qZdMSd9SqbnC8GOcZEy0Om7sA=="], + + "keyv": ["keyv@4.5.4", "", { "dependencies": { "json-buffer": "3.0.1" } }, "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw=="], + + "kleur": ["kleur@4.1.5", "", {}, "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ=="], + + "klona": ["klona@2.0.6", "", {}, "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA=="], + + "knitwork": ["knitwork@1.2.0", "", {}, "sha512-xYSH7AvuQ6nXkq42x0v5S8/Iry+cfulBz/DJQzhIyESdLD7425jXsPy4vn5cCXU+HhRN2kVw51Vd1K6/By4BQg=="], + + "kuler": ["kuler@2.0.0", "", {}, "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A=="], + + "kysely": ["kysely@0.27.6", "", {}, "sha512-FIyV/64EkKhJmjgC0g2hygpBv5RNWVPyNCqSAD7eTCv6eFWNIi4PN1UvdSJGicN/o35bnevgis4Y0UDC0qi8jQ=="], + + "lambda-local": ["lambda-local@2.2.0", "", { "dependencies": { "commander": "^10.0.1", "dotenv": "^16.3.1", "winston": "^3.10.0" }, "bin": { "lambda-local": "build/cli.js" } }, "sha512-bPcgpIXbHnVGfI/omZIlgucDqlf4LrsunwoKue5JdZeGybt8L6KyJz2Zu19ffuZwIwLj2NAI2ZyaqNT6/cetcg=="], + + "lazystream": ["lazystream@1.0.1", "", { "dependencies": { "readable-stream": "^2.0.5" } }, "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw=="], + + "leac": ["leac@0.6.0", "", {}, "sha512-y+SqErxb8h7nE/fiEX07jsbuhrpO9lL8eca7/Y1nuWV2moNlXhyd59iDGcRf6moVyDMbmTNzL40SUyrFU/yDpg=="], + + "levn": ["levn@0.4.1", "", { "dependencies": { "prelude-ls": "^1.2.1", "type-check": "~0.4.0" } }, "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ=="], + + "lightningcss": ["lightningcss@1.30.1", "", { "dependencies": { "detect-libc": "^2.0.3" }, "optionalDependencies": { "lightningcss-darwin-arm64": "1.30.1", "lightningcss-darwin-x64": "1.30.1", "lightningcss-freebsd-x64": "1.30.1", "lightningcss-linux-arm-gnueabihf": "1.30.1", "lightningcss-linux-arm64-gnu": "1.30.1", "lightningcss-linux-arm64-musl": "1.30.1", "lightningcss-linux-x64-gnu": "1.30.1", "lightningcss-linux-x64-musl": "1.30.1", "lightningcss-win32-arm64-msvc": "1.30.1", "lightningcss-win32-x64-msvc": "1.30.1" } }, "sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg=="], + + "lightningcss-darwin-arm64": ["lightningcss-darwin-arm64@1.30.1", "", { "os": "darwin", "cpu": "arm64" }, "sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ=="], + + "lightningcss-darwin-x64": ["lightningcss-darwin-x64@1.30.1", "", { "os": "darwin", "cpu": "x64" }, "sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA=="], + + "lightningcss-freebsd-x64": ["lightningcss-freebsd-x64@1.30.1", "", { "os": "freebsd", "cpu": "x64" }, "sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig=="], + + "lightningcss-linux-arm-gnueabihf": ["lightningcss-linux-arm-gnueabihf@1.30.1", "", { "os": "linux", "cpu": "arm" }, "sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q=="], + + "lightningcss-linux-arm64-gnu": ["lightningcss-linux-arm64-gnu@1.30.1", "", { "os": "linux", "cpu": "arm64" }, "sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw=="], + + "lightningcss-linux-arm64-musl": ["lightningcss-linux-arm64-musl@1.30.1", "", { "os": "linux", "cpu": "arm64" }, "sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ=="], + + "lightningcss-linux-x64-gnu": ["lightningcss-linux-x64-gnu@1.30.1", "", { "os": "linux", "cpu": "x64" }, "sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw=="], + + "lightningcss-linux-x64-musl": ["lightningcss-linux-x64-musl@1.30.1", "", { "os": "linux", "cpu": "x64" }, "sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ=="], + + "lightningcss-win32-arm64-msvc": ["lightningcss-win32-arm64-msvc@1.30.1", "", { "os": "win32", "cpu": "arm64" }, "sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA=="], + + "lightningcss-win32-x64-msvc": ["lightningcss-win32-x64-msvc@1.30.1", "", { "os": "win32", "cpu": "x64" }, "sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg=="], + + "listhen": ["listhen@1.9.0", "", { "dependencies": { "@parcel/watcher": "^2.4.1", "@parcel/watcher-wasm": "^2.4.1", "citty": "^0.1.6", "clipboardy": "^4.0.0", "consola": "^3.2.3", "crossws": ">=0.2.0 <0.4.0", "defu": "^6.1.4", "get-port-please": "^3.1.2", "h3": "^1.12.0", "http-shutdown": "^1.2.2", "jiti": "^2.1.2", "mlly": "^1.7.1", "node-forge": "^1.3.1", "pathe": "^1.1.2", "std-env": "^3.7.0", "ufo": "^1.5.4", "untun": "^0.1.3", "uqr": "^0.1.2" }, "bin": { "listen": "bin/listhen.mjs", "listhen": "bin/listhen.mjs" } }, "sha512-I8oW2+QL5KJo8zXNWX046M134WchxsXC7SawLPvRQpogCbkyQIaFxPE89A2HiwR7vAK2Dm2ERBAmyjTYGYEpBg=="], + + "local-pkg": ["local-pkg@1.1.1", "", { "dependencies": { "mlly": "^1.7.4", "pkg-types": "^2.0.1", "quansync": "^0.2.8" } }, "sha512-WunYko2W1NcdfAFpuLUoucsgULmgDBRkdxHxWQ7mK0cQqwPiy8E1enjuRBrhLtZkB5iScJ1XIPdhVEFK8aOLSg=="], + + "locate-path": ["locate-path@6.0.0", "", { "dependencies": { "p-locate": "^5.0.0" } }, "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw=="], + + "lodash": ["lodash@4.17.21", "", {}, "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="], + + "lodash-es": ["lodash-es@4.17.21", "", {}, "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw=="], + + "lodash.debounce": ["lodash.debounce@4.0.8", "", {}, "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow=="], + + "lodash.defaults": ["lodash.defaults@4.2.0", "", {}, "sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ=="], + + "lodash.isarguments": ["lodash.isarguments@3.1.0", "", {}, "sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg=="], + + "lodash.merge": ["lodash.merge@4.6.2", "", {}, "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="], + + "log-symbols": ["log-symbols@7.0.1", "", { "dependencies": { "is-unicode-supported": "^2.0.0", "yoctocolors": "^2.1.1" } }, "sha512-ja1E3yCr9i/0hmBVaM0bfwDjnGy8I/s6PP4DFp+yP+a+mrHO4Rm7DtmnqROTUkHIkqffC84YY7AeqX6oFk0WFg=="], + + "logform": ["logform@2.7.0", "", { "dependencies": { "@colors/colors": "1.6.0", "@types/triple-beam": "^1.3.2", "fecha": "^4.2.0", "ms": "^2.1.1", "safe-stable-stringify": "^2.3.1", "triple-beam": "^1.3.0" } }, "sha512-TFYA4jnP7PVbmlBIfhlSe+WKxs9dklXMTEGcBCIvLhE/Tn3H6Gk1norupVW7m5Cnd4bLcr08AytbyV/xj7f/kQ=="], + + "long": ["long@5.3.2", "", {}, "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA=="], + + "loose-envify": ["loose-envify@1.4.0", "", { "dependencies": { "js-tokens": "^3.0.0 || ^4.0.0" }, "bin": { "loose-envify": "cli.js" } }, "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q=="], + + "lru-cache": ["lru-cache@10.4.3", "", {}, "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ=="], + + "lru.min": ["lru.min@1.1.2", "", {}, "sha512-Nv9KddBcQSlQopmBHXSsZVY5xsdlZkdH/Iey0BlcBYggMd4two7cZnKOK9vmy3nY0O5RGH99z1PCeTpPqszUYg=="], + + "lucide-react": ["lucide-react@0.511.0", "", { "peerDependencies": { "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "sha512-VK5a2ydJ7xm8GvBeKLS9mu1pVK6ucef9780JVUjw6bAjJL/QXnd4Y0p7SPeOUMC27YhzNCZvm5d/QX0Tp3rc0w=="], + + "luxon": ["luxon@3.6.1", "", {}, "sha512-tJLxrKJhO2ukZ5z0gyjY1zPh3Rh88Ej9P7jNrZiHMUXHae1yvI2imgOZtL1TO8TW6biMMKfTtAOoEJANgtWBMQ=="], + + "magic-string": ["magic-string@0.30.17", "", { "dependencies": { "@jridgewell/sourcemap-codec": "^1.5.0" } }, "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA=="], + + "magicast": ["magicast@0.3.5", "", { "dependencies": { "@babel/parser": "^7.25.4", "@babel/types": "^7.25.4", "source-map-js": "^1.2.0" } }, "sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ=="], + + "marked": ["marked@7.0.4", "", { "bin": { "marked": "bin/marked.js" } }, "sha512-t8eP0dXRJMtMvBojtkcsA7n48BkauktUKzfkPSCq85ZMTJ0v76Rke4DYz01omYpPTUh4p/f7HePgRo3ebG8+QQ=="], + + "math-intrinsics": ["math-intrinsics@1.1.0", "", {}, "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g=="], + + "md-to-react-email": ["md-to-react-email@5.0.5", "", { "dependencies": { "marked": "7.0.4" }, "peerDependencies": { "react": "^18.0 || ^19.0" } }, "sha512-OvAXqwq57uOk+WZqFFNCMZz8yDp8BD3WazW1wAKHUrPbbdr89K9DWS6JXY09vd9xNdPNeurI8DU/X4flcfaD8A=="], + + "merge-options": ["merge-options@3.0.4", "", { "dependencies": { "is-plain-obj": "^2.1.0" } }, "sha512-2Sug1+knBjkaMsMgf1ctR1Ujx+Ayku4EdJN4Z+C2+JzoeF7A3OZ9KM2GY0CpQS51NR61LTurMJrRKPhSs3ZRTQ=="], + + "merge-stream": ["merge-stream@2.0.0", "", {}, "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w=="], + + "merge2": ["merge2@1.4.1", "", {}, "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg=="], + + "micro-api-client": ["micro-api-client@3.3.0", "", {}, "sha512-y0y6CUB9RLVsy3kfgayU28746QrNMpSm9O/AYGNsBgOkJr/X/Jk0VLGoO8Ude7Bpa8adywzF+MzXNZRFRsNPhg=="], + + "micromatch": ["micromatch@4.0.8", "", { "dependencies": { "braces": "^3.0.3", "picomatch": "^2.3.1" } }, "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA=="], + + "mime": ["mime@4.0.7", "", { "bin": { "mime": "bin/cli.js" } }, "sha512-2OfDPL+e03E0LrXaGYOtTFIYhiuzep94NSsuhrNULq+stylcJedcHdzHtz0atMUuGwJfFYs0YL5xeC/Ca2x0eQ=="], + + "mime-db": ["mime-db@1.54.0", "", {}, "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ=="], + + "mime-types": ["mime-types@3.0.1", "", { "dependencies": { "mime-db": "^1.54.0" } }, "sha512-xRc4oEhT6eaBpU1XF7AjpOFD+xQmXNB5OVKwp4tqCuBpHLS/ZbBDrc07mYTDqVMg6PfxUjjNp85O6Cd2Z/5HWA=="], + + "mimic-fn": ["mimic-fn@4.0.0", "", {}, "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw=="], + + "mimic-function": ["mimic-function@5.0.1", "", {}, "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA=="], + + "minimatch": ["minimatch@3.1.2", "", { "dependencies": { "brace-expansion": "^1.1.7" } }, "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw=="], + + "minimist": ["minimist@1.2.8", "", {}, "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA=="], + + "minipass": ["minipass@7.1.2", "", {}, "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw=="], + + "minizlib": ["minizlib@3.0.2", "", { "dependencies": { "minipass": "^7.1.2" } }, "sha512-oG62iEk+CYt5Xj2YqI5Xi9xWUeZhDI8jjQmC5oThVH5JGCTgIjr7ciJDzC7MBzYd//WvR1OTmP5Q38Q8ShQtVA=="], + + "mkdirp": ["mkdirp@3.0.1", "", { "bin": { "mkdirp": "dist/cjs/src/bin.js" } }, "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg=="], + + "mlly": ["mlly@1.7.4", "", { "dependencies": { "acorn": "^8.14.0", "pathe": "^2.0.1", "pkg-types": "^1.3.0", "ufo": "^1.5.4" } }, "sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw=="], + + "module-definition": ["module-definition@6.0.1", "", { "dependencies": { "ast-module-types": "^6.0.1", "node-source-walk": "^7.0.1" }, "bin": { "module-definition": "bin/cli.js" } }, "sha512-FeVc50FTfVVQnolk/WQT8MX+2WVcDnTGiq6Wo+/+lJ2ET1bRVi3HG3YlJUfqagNMc/kUlFSoR96AJkxGpKz13g=="], + + "ms": ["ms@2.1.3", "", {}, "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="], + + "mysql2": ["mysql2@3.14.1", "", { "dependencies": { "aws-ssl-profiles": "^1.1.1", "denque": "^2.1.0", "generate-function": "^2.3.1", "iconv-lite": "^0.6.3", "long": "^5.2.1", "lru.min": "^1.0.0", "named-placeholders": "^1.1.3", "seq-queue": "^0.0.5", "sqlstring": "^2.3.2" } }, "sha512-7ytuPQJjQB8TNAYX/H2yhL+iQOnIBjAMam361R7UAL0lOVXWjtdrmoL9HYKqKoLp/8UUTRcvo1QPvK9KL7wA8w=="], + + "named-placeholders": ["named-placeholders@1.1.3", "", { "dependencies": { "lru-cache": "^7.14.1" } }, "sha512-eLoBxg6wE/rZkJPhU/xRX1WTpkFEwDJEN96oxFrTsqBdbT5ec295Q+CoHrL9IT0DipqKhmGcaZmwOt8OON5x1w=="], + + "nanoid": ["nanoid@3.3.11", "", { "bin": { "nanoid": "bin/nanoid.cjs" } }, "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w=="], + + "natural-compare": ["natural-compare@1.4.0", "", {}, "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw=="], + + "negotiator": ["negotiator@0.6.3", "", {}, "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg=="], + + "netlify": ["netlify@13.3.5", "", { "dependencies": { "@netlify/open-api": "^2.37.0", "lodash-es": "^4.17.21", "micro-api-client": "^3.3.0", "node-fetch": "^3.0.0", "p-wait-for": "^5.0.0", "qs": "^6.9.6" } }, "sha512-Nc3loyVASW59W+8fLDZT1lncpG7llffyZ2o0UQLx/Fr20i7P8oP+lE7+TEcFvXj9IUWU6LjB9P3BH+iFGyp+mg=="], + + "next": ["next@15.3.3", "", { "dependencies": { "@next/env": "15.3.3", "@swc/counter": "0.1.3", "@swc/helpers": "0.5.15", "busboy": "1.6.0", "caniuse-lite": "^1.0.30001579", "postcss": "8.4.31", "styled-jsx": "5.1.6" }, "optionalDependencies": { "@next/swc-darwin-arm64": "15.3.3", "@next/swc-darwin-x64": "15.3.3", "@next/swc-linux-arm64-gnu": "15.3.3", "@next/swc-linux-arm64-musl": "15.3.3", "@next/swc-linux-x64-gnu": "15.3.3", "@next/swc-linux-x64-musl": "15.3.3", "@next/swc-win32-arm64-msvc": "15.3.3", "@next/swc-win32-x64-msvc": "15.3.3", "sharp": "^0.34.1" }, "peerDependencies": { "@opentelemetry/api": "^1.1.0", "@playwright/test": "^1.41.2", "babel-plugin-react-compiler": "*", "react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", "react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", "sass": "^1.3.0" }, "optionalPeers": ["@opentelemetry/api", "@playwright/test", "babel-plugin-react-compiler", "sass"], "bin": { "next": "dist/bin/next" } }, "sha512-JqNj29hHNmCLtNvd090SyRbXJiivQ+58XjCcrC50Crb5g5u2zi7Y2YivbsEfzk6AtVI80akdOQbaMZwWB1Hthw=="], + + "next-themes": ["next-themes@0.4.6", "", { "peerDependencies": { "react": "^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc", "react-dom": "^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc" } }, "sha512-pZvgD5L0IEvX5/9GWyHMf3m8BKiVQwsCMHfoFosXtXBMnaS0ZnIJ9ST4b4NqLVKDEm8QBxoNNGNaBv2JNF6XNA=="], + + "nitropack": ["nitropack@2.11.12", "", { "dependencies": { "@cloudflare/kv-asset-handler": "^0.4.0", "@netlify/functions": "^3.1.8", "@rollup/plugin-alias": "^5.1.1", "@rollup/plugin-commonjs": "^28.0.3", "@rollup/plugin-inject": "^5.0.5", "@rollup/plugin-json": "^6.1.0", "@rollup/plugin-node-resolve": "^16.0.1", "@rollup/plugin-replace": "^6.0.2", "@rollup/plugin-terser": "^0.4.4", "@vercel/nft": "^0.29.2", "archiver": "^7.0.1", "c12": "^3.0.3", "chokidar": "^4.0.3", "citty": "^0.1.6", "compatx": "^0.2.0", "confbox": "^0.2.2", "consola": "^3.4.2", "cookie-es": "^2.0.0", "croner": "^9.0.0", "crossws": "^0.3.5", "db0": "^0.3.2", "defu": "^6.1.4", "destr": "^2.0.5", "dot-prop": "^9.0.0", "esbuild": "^0.25.4", "escape-string-regexp": "^5.0.0", "etag": "^1.8.1", "exsolve": "^1.0.5", "globby": "^14.1.0", "gzip-size": "^7.0.0", "h3": "^1.15.3", "hookable": "^5.5.3", "httpxy": "^0.1.7", "ioredis": "^5.6.1", "jiti": "^2.4.2", "klona": "^2.0.6", "knitwork": "^1.2.0", "listhen": "^1.9.0", "magic-string": "^0.30.17", "magicast": "^0.3.5", "mime": "^4.0.7", "mlly": "^1.7.4", "node-fetch-native": "^1.6.6", "node-mock-http": "^1.0.0", "ofetch": "^1.4.1", "ohash": "^2.0.11", "pathe": "^2.0.3", "perfect-debounce": "^1.0.0", "pkg-types": "^2.1.0", "pretty-bytes": "^6.1.1", "radix3": "^1.1.2", "rollup": "^4.40.2", "rollup-plugin-visualizer": "^5.14.0", "scule": "^1.3.0", "semver": "^7.7.2", "serve-placeholder": "^2.0.2", "serve-static": "^2.2.0", "source-map": "^0.7.4", "std-env": "^3.9.0", "ufo": "^1.6.1", "ultrahtml": "^1.6.0", "uncrypto": "^0.1.3", "unctx": "^2.4.1", "unenv": "^2.0.0-rc.17", "unimport": "^5.0.1", "unplugin-utils": "^0.2.4", "unstorage": "^1.16.0", "untyped": "^2.0.0", "unwasm": "^0.3.9", "youch": "^4.1.0-beta.7", "youch-core": "^0.3.2" }, "peerDependencies": { "xml2js": "^0.6.2" }, "optionalPeers": ["xml2js"], "bin": { "nitro": "dist/cli/index.mjs", "nitropack": "dist/cli/index.mjs" } }, "sha512-e2AdQrEY1IVoNTdyjfEQV93xkqz4SQxAMR0xWF8mZUUHxMLm6S4nPzpscjksmT4OdUxl0N8/DCaGjKQ9ghdodA=="], + + "node-addon-api": ["node-addon-api@7.1.1", "", {}, "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ=="], + + "node-domexception": ["node-domexception@1.0.0", "", {}, "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ=="], + + "node-fetch": ["node-fetch@2.7.0", "", { "dependencies": { "whatwg-url": "^5.0.0" }, "peerDependencies": { "encoding": "^0.1.0" }, "optionalPeers": ["encoding"] }, "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A=="], + + "node-fetch-native": ["node-fetch-native@1.6.6", "", {}, "sha512-8Mc2HhqPdlIfedsuZoc3yioPuzp6b+L5jRCRY1QzuWZh2EGJVQrGppC6V6cF0bLdbW0+O2YpqCA25aF/1lvipQ=="], + + "node-forge": ["node-forge@1.3.1", "", {}, "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA=="], + + "node-gyp-build": ["node-gyp-build@4.8.4", "", { "bin": { "node-gyp-build": "bin.js", "node-gyp-build-optional": "optional.js", "node-gyp-build-test": "build-test.js" } }, "sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ=="], + + "node-mock-http": ["node-mock-http@1.0.0", "", {}, "sha512-0uGYQ1WQL1M5kKvGRXWQ3uZCHtLTO8hln3oBjIusM75WoesZ909uQJs/Hb946i2SS+Gsrhkaa6iAO17jRIv6DQ=="], + + "node-releases": ["node-releases@2.0.19", "", {}, "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw=="], + + "node-source-walk": ["node-source-walk@7.0.1", "", { "dependencies": { "@babel/parser": "^7.26.7" } }, "sha512-3VW/8JpPqPvnJvseXowjZcirPisssnBuDikk6JIZ8jQzF7KJQX52iPFX4RYYxLycYH7IbMRSPUOga/esVjy5Yg=="], + + "nodemailer": ["nodemailer@7.0.3", "", {}, "sha512-Ajq6Sz1x7cIK3pN6KesGTah+1gnwMnx5gKl3piQlQQE/PwyJ4Mbc8is2psWYxK3RJTVeqsDaCv8ZzXLCDHMTZw=="], + + "nopt": ["nopt@8.1.0", "", { "dependencies": { "abbrev": "^3.0.0" }, "bin": { "nopt": "bin/nopt.js" } }, "sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A=="], + + "normalize-package-data": ["normalize-package-data@6.0.2", "", { "dependencies": { "hosted-git-info": "^7.0.0", "semver": "^7.3.5", "validate-npm-package-license": "^3.0.4" } }, "sha512-V6gygoYb/5EmNI+MEGrWkC+e6+Rr7mTmfHrxDbLzxQogBkgzo76rkok0Am6thgSF7Mv2nLOajAJj5vDJZEFn7g=="], + + "normalize-path": ["normalize-path@3.0.0", "", {}, "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="], + + "normalize-range": ["normalize-range@0.1.2", "", {}, "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA=="], + + "npm-run-path": ["npm-run-path@5.3.0", "", { "dependencies": { "path-key": "^4.0.0" } }, "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ=="], + + "nypm": ["nypm@0.6.0", "", { "dependencies": { "citty": "^0.1.6", "consola": "^3.4.0", "pathe": "^2.0.3", "pkg-types": "^2.0.0", "tinyexec": "^0.3.2" }, "bin": { "nypm": "dist/cli.mjs" } }, "sha512-mn8wBFV9G9+UFHIrq+pZ2r2zL4aPau/by3kJb3cM7+5tQHMt6HGQB8FDIeKFYp8o0D2pnH6nVsO88N4AmUxIWg=="], + + "object-assign": ["object-assign@4.1.1", "", {}, "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg=="], + + "object-inspect": ["object-inspect@1.13.4", "", {}, "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew=="], + + "obuf": ["obuf@1.1.2", "", {}, "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg=="], + + "ofetch": ["ofetch@1.4.1", "", { "dependencies": { "destr": "^2.0.3", "node-fetch-native": "^1.6.4", "ufo": "^1.5.4" } }, "sha512-QZj2DfGplQAr2oj9KzceK9Hwz6Whxazmn85yYeVuS3u9XTMOGMRx0kO95MQ+vLsj/S/NwBDMMLU5hpxvI6Tklw=="], + + "ohash": ["ohash@1.1.6", "", {}, "sha512-TBu7PtV8YkAZn0tSxobKY2n2aAQva936lhRrj6957aDaCf9IEtqsKbgMzXE/F/sjqYOwmrukeORHNLe5glk7Cg=="], + + "on-finished": ["on-finished@2.4.1", "", { "dependencies": { "ee-first": "1.1.1" } }, "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg=="], + + "once": ["once@1.4.0", "", { "dependencies": { "wrappy": "1" } }, "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w=="], + + "one-time": ["one-time@1.0.0", "", { "dependencies": { "fn.name": "1.x.x" } }, "sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g=="], + + "onetime": ["onetime@7.0.0", "", { "dependencies": { "mimic-function": "^5.0.0" } }, "sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ=="], + + "open": ["open@8.4.2", "", { "dependencies": { "define-lazy-prop": "^2.0.0", "is-docker": "^2.1.1", "is-wsl": "^2.2.0" } }, "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ=="], + + "optionator": ["optionator@0.9.4", "", { "dependencies": { "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", "levn": "^0.4.1", "prelude-ls": "^1.2.1", "type-check": "^0.4.0", "word-wrap": "^1.2.5" } }, "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g=="], + + "ora": ["ora@8.2.0", "", { "dependencies": { "chalk": "^5.3.0", "cli-cursor": "^5.0.0", "cli-spinners": "^2.9.2", "is-interactive": "^2.0.0", "is-unicode-supported": "^2.0.0", "log-symbols": "^6.0.0", "stdin-discarder": "^0.2.2", "string-width": "^7.2.0", "strip-ansi": "^7.1.0" } }, "sha512-weP+BZ8MVNnlCm8c0Qdc1WSWq4Qn7I+9CJGm7Qali6g44e/PUzbjNqJX5NJ9ljlNMosfJvg1fKEGILklK9cwnw=="], + + "p-event": ["p-event@6.0.1", "", { "dependencies": { "p-timeout": "^6.1.2" } }, "sha512-Q6Bekk5wpzW5qIyUP4gdMEujObYstZl6DMMOSenwBvV0BlE5LkDwkjs5yHbZmdCEq2o4RJx4tE1vwxFVf2FG1w=="], + + "p-limit": ["p-limit@3.1.0", "", { "dependencies": { "yocto-queue": "^0.1.0" } }, "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ=="], + + "p-locate": ["p-locate@5.0.0", "", { "dependencies": { "p-limit": "^3.0.2" } }, "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw=="], + + "p-map": ["p-map@7.0.3", "", {}, "sha512-VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA=="], + + "p-timeout": ["p-timeout@6.1.4", "", {}, "sha512-MyIV3ZA/PmyBN/ud8vV9XzwTrNtR4jFrObymZYnZqMmW0zA8Z17vnT0rBgFE/TlohB+YCHqXMgZzb3Csp49vqg=="], + + "p-wait-for": ["p-wait-for@5.0.2", "", { "dependencies": { "p-timeout": "^6.0.0" } }, "sha512-lwx6u1CotQYPVju77R+D0vFomni/AqRfqLmqQ8hekklqZ6gAY9rONh7lBQ0uxWMkC2AuX9b2DVAl8To0NyP1JA=="], + + "package-json-from-dist": ["package-json-from-dist@1.0.1", "", {}, "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw=="], + + "parent-module": ["parent-module@1.0.1", "", { "dependencies": { "callsites": "^3.0.0" } }, "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g=="], + + "parse-gitignore": ["parse-gitignore@2.0.0", "", {}, "sha512-RmVuCHWsfu0QPNW+mraxh/xjQVw/lhUCUru8Zni3Ctq3AoMhpDTq0OVdKS6iesd6Kqb7viCV3isAL43dciOSog=="], + + "parse-json": ["parse-json@8.3.0", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "index-to-position": "^1.1.0", "type-fest": "^4.39.1" } }, "sha512-ybiGyvspI+fAoRQbIPRddCcSTV9/LsJbf0e/S85VLowVGzRmokfneg2kwVW/KU5rOXrPSbF1qAKPMgNTqqROQQ=="], + + "parseley": ["parseley@0.12.1", "", { "dependencies": { "leac": "^0.6.0", "peberminta": "^0.9.0" } }, "sha512-e6qHKe3a9HWr0oMRVDTRhKce+bRO8VGQR3NyVwcjwrbhMmFCX9KszEV35+rn4AdilFAq9VPxP/Fe1wC9Qjd2lw=="], + + "parseurl": ["parseurl@1.3.3", "", {}, "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ=="], + + "path-exists": ["path-exists@4.0.0", "", {}, "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w=="], + + "path-key": ["path-key@3.1.1", "", {}, "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="], + + "path-parse": ["path-parse@1.0.7", "", {}, "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="], + + "path-scurry": ["path-scurry@2.0.0", "", { "dependencies": { "lru-cache": "^11.0.0", "minipass": "^7.1.2" } }, "sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg=="], + + "path-to-regexp": ["path-to-regexp@6.3.0", "", {}, "sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ=="], + + "path-type": ["path-type@6.0.0", "", {}, "sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ=="], + + "pathe": ["pathe@1.1.2", "", {}, "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ=="], + + "peberminta": ["peberminta@0.9.0", "", {}, "sha512-XIxfHpEuSJbITd1H3EeQwpcZbTLHc+VVr8ANI9t5sit565tsI4/xK3KWTUFE2e6QiangUkh3B0jihzmGnNrRsQ=="], + + "pend": ["pend@1.2.0", "", {}, "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg=="], + + "perfect-debounce": ["perfect-debounce@1.0.0", "", {}, "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA=="], + + "pg": ["pg@8.16.0", "", { "dependencies": { "pg-connection-string": "^2.9.0", "pg-pool": "^3.10.0", "pg-protocol": "^1.10.0", "pg-types": "2.2.0", "pgpass": "1.0.5" }, "optionalDependencies": { "pg-cloudflare": "^1.2.5" }, "peerDependencies": { "pg-native": ">=3.0.1" }, "optionalPeers": ["pg-native"] }, "sha512-7SKfdvP8CTNXjMUzfcVTaI+TDzBEeaUnVwiVGZQD1Hh33Kpev7liQba9uLd4CfN8r9mCVsD0JIpq03+Unpz+kg=="], + + "pg-cloudflare": ["pg-cloudflare@1.2.5", "", {}, "sha512-OOX22Vt0vOSRrdoUPKJ8Wi2OpE/o/h9T8X1s4qSkCedbNah9ei2W2765be8iMVxQUsvgT7zIAT2eIa9fs5+vtg=="], + + "pg-connection-string": ["pg-connection-string@2.9.0", "", {}, "sha512-P2DEBKuvh5RClafLngkAuGe9OUlFV7ebu8w1kmaaOgPcpJd1RIFh7otETfI6hAR8YupOLFTY7nuvvIn7PLciUQ=="], + + "pg-int8": ["pg-int8@1.0.1", "", {}, "sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw=="], + + "pg-numeric": ["pg-numeric@1.0.2", "", {}, "sha512-BM/Thnrw5jm2kKLE5uJkXqqExRUY/toLHda65XgFTBTFYZyopbKjBe29Ii3RbkvlsMoFwD+tHeGaCjjv0gHlyw=="], + + "pg-pool": ["pg-pool@3.10.0", "", { "peerDependencies": { "pg": ">=8.0" } }, "sha512-DzZ26On4sQ0KmqnO34muPcmKbhrjmyiO4lCCR0VwEd7MjmiKf5NTg/6+apUEu0NF7ESa37CGzFxH513CoUmWnA=="], + + "pg-protocol": ["pg-protocol@1.10.0", "", {}, "sha512-IpdytjudNuLv8nhlHs/UrVBhU0e78J0oIS/0AVdTbWxSOkFUVdsHC/NrorO6nXsQNDTT1kzDSOMJubBQviX18Q=="], + + "pg-types": ["pg-types@4.0.2", "", { "dependencies": { "pg-int8": "1.0.1", "pg-numeric": "1.0.2", "postgres-array": "~3.0.1", "postgres-bytea": "~3.0.0", "postgres-date": "~2.1.0", "postgres-interval": "^3.0.0", "postgres-range": "^1.1.1" } }, "sha512-cRL3JpS3lKMGsKaWndugWQoLOCoP+Cic8oseVcbr0qhPzYD5DWXK+RZ9LY9wxRf7RQia4SCwQlXk0q6FCPrVng=="], + + "pgpass": ["pgpass@1.0.5", "", { "dependencies": { "split2": "^4.1.0" } }, "sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug=="], + + "picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="], + + "picomatch": ["picomatch@4.0.2", "", {}, "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg=="], + + "pkg-types": ["pkg-types@2.1.0", "", { "dependencies": { "confbox": "^0.2.1", "exsolve": "^1.0.1", "pathe": "^2.0.3" } }, "sha512-wmJwA+8ihJixSoHKxZJRBQG1oY8Yr9pGLzRmSsNms0iNWyHHAlZCa7mmKiFR10YPZuz/2k169JiS/inOjBCZ2A=="], + + "postcss": ["postcss@8.5.4", "", { "dependencies": { "nanoid": "^3.3.11", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-QSa9EBe+uwlGTFmHsPKokv3B/oEMQZxfqW0QqNCyhpa6mB1afzulwn8hihglqAb2pOw+BJgNlmXQ8la2VeHB7w=="], + + "postcss-value-parser": ["postcss-value-parser@4.2.0", "", {}, "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ=="], + + "postcss-values-parser": ["postcss-values-parser@6.0.2", "", { "dependencies": { "color-name": "^1.1.4", "is-url-superb": "^4.0.0", "quote-unquote": "^1.0.0" }, "peerDependencies": { "postcss": "^8.2.9" } }, "sha512-YLJpK0N1brcNJrs9WatuJFtHaV9q5aAOj+S4DI5S7jgHlRfm0PIbDCAFRYMQD5SHq7Fy6xsDhyutgS0QOAs0qw=="], + + "postgres": ["postgres@3.4.7", "", {}, "sha512-Jtc2612XINuBjIl/QTWsV5UvE8UHuNblcO3vVADSrKsrc6RqGX6lOW1cEo3CM2v0XG4Nat8nI+YM7/f26VxXLw=="], + + "postgres-array": ["postgres-array@3.0.4", "", {}, "sha512-nAUSGfSDGOaOAEGwqsRY27GPOea7CNipJPOA7lPbdEpx5Kg3qzdP0AaWC5MlhTWV9s4hFX39nomVZ+C4tnGOJQ=="], + + "postgres-bytea": ["postgres-bytea@3.0.0", "", { "dependencies": { "obuf": "~1.1.2" } }, "sha512-CNd4jim9RFPkObHSjVHlVrxoVQXz7quwNFpz7RY1okNNme49+sVyiTvTRobiLV548Hx/hb1BG+iE7h9493WzFw=="], + + "postgres-date": ["postgres-date@2.1.0", "", {}, "sha512-K7Juri8gtgXVcDfZttFKVmhglp7epKb1K4pgrkLxehjqkrgPhfG6OO8LHLkfaqkbpjNRnra018XwAr1yQFWGcA=="], + + "postgres-interval": ["postgres-interval@3.0.0", "", {}, "sha512-BSNDnbyZCXSxgA+1f5UU2GmwhoI0aU5yMxRGO8CdFEcY2BQF9xm/7MqKnYoM1nJDk8nONNWDk9WeSmePFhQdlw=="], + + "postgres-range": ["postgres-range@1.1.4", "", {}, "sha512-i/hbxIE9803Alj/6ytL7UHQxRvZkI9O4Sy+J3HGc4F4oo/2eQAjTSNJ0bfxyse3bH0nuVesCk+3IRLaMtG3H6w=="], + + "precinct": ["precinct@12.2.0", "", { "dependencies": { "@dependents/detective-less": "^5.0.1", "commander": "^12.1.0", "detective-amd": "^6.0.1", "detective-cjs": "^6.0.1", "detective-es6": "^5.0.1", "detective-postcss": "^7.0.1", "detective-sass": "^6.0.1", "detective-scss": "^5.0.1", "detective-stylus": "^5.0.1", "detective-typescript": "^14.0.0", "detective-vue2": "^2.2.0", "module-definition": "^6.0.1", "node-source-walk": "^7.0.1", "postcss": "^8.5.1", "typescript": "^5.7.3" }, "bin": { "precinct": "bin/cli.js" } }, "sha512-NFBMuwIfaJ4SocE9YXPU/n4AcNSoFMVFjP72nvl3cx69j/ke61/hPOWFREVxLkFhhEGnA8ZuVfTqJBa+PK3b5w=="], + + "prelude-ls": ["prelude-ls@1.2.1", "", {}, "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g=="], + + "prettier": ["prettier@3.5.3", "", { "bin": { "prettier": "bin/prettier.cjs" } }, "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw=="], + + "pretty-bytes": ["pretty-bytes@6.1.1", "", {}, "sha512-mQUvGU6aUFQ+rNvTIAcZuWGRT9a6f6Yrg9bHs4ImKF+HZCEK+plBvnAZYSIQztknZF2qnzNtr6F8s0+IuptdlQ=="], + + "prismjs": ["prismjs@1.30.0", "", {}, "sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw=="], + + "process": ["process@0.11.10", "", {}, "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A=="], + + "process-nextick-args": ["process-nextick-args@2.0.1", "", {}, "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="], + + "prop-types": ["prop-types@15.8.1", "", { "dependencies": { "loose-envify": "^1.4.0", "object-assign": "^4.1.1", "react-is": "^16.13.1" } }, "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg=="], + + "pump": ["pump@3.0.2", "", { "dependencies": { "end-of-stream": "^1.1.0", "once": "^1.3.1" } }, "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw=="], + + "punycode": ["punycode@2.3.1", "", {}, "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg=="], + + "qs": ["qs@6.14.0", "", { "dependencies": { "side-channel": "^1.1.0" } }, "sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w=="], + + "quansync": ["quansync@0.2.10", "", {}, "sha512-t41VRkMYbkHyCYmOvx/6URnN80H7k4X0lLdBMGsz+maAwrJQYB1djpV6vHrQIBE0WBSGqhtEHrK9U3DWWH8v7A=="], + + "queue-microtask": ["queue-microtask@1.2.3", "", {}, "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A=="], + + "quote-unquote": ["quote-unquote@1.0.0", "", {}, "sha512-twwRO/ilhlG/FIgYeKGFqyHhoEhqgnKVkcmqMKi2r524gz3ZbDTcyFt38E9xjJI2vT+KbRNHVbnJ/e0I25Azwg=="], + + "radix3": ["radix3@1.1.2", "", {}, "sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA=="], + + "randombytes": ["randombytes@2.1.0", "", { "dependencies": { "safe-buffer": "^5.1.0" } }, "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ=="], + + "range-parser": ["range-parser@1.2.1", "", {}, "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg=="], + + "rc9": ["rc9@2.1.2", "", { "dependencies": { "defu": "^6.1.4", "destr": "^2.0.3" } }, "sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg=="], + + "react": ["react@19.1.0", "", {}, "sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg=="], + + "react-day-picker": ["react-day-picker@8.10.1", "", { "peerDependencies": { "date-fns": "^2.28.0 || ^3.0.0", "react": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, "sha512-TMx7fNbhLk15eqcMt+7Z7S2KF7mfTId/XJDjKE8f+IUcFn0l08/kI4FiYTL/0yuOLmEcbR4Fwe3GJf/NiiMnPA=="], + + "react-dom": ["react-dom@19.1.0", "", { "dependencies": { "scheduler": "^0.26.0" }, "peerDependencies": { "react": "^19.1.0" } }, "sha512-Xs1hdnE+DyKgeHJeJznQmYMIBG3TKIHJJT95Q58nHLSrElKlGQqDTR2HQ9fx5CN/Gk6Vh/kupBTDLU11/nDk/g=="], + + "react-email": ["react-email@4.0.15", "", { "dependencies": { "@babel/parser": "^7.27.0", "@babel/traverse": "^7.27.0", "chalk": "^5.0.0", "chokidar": "^4.0.3", "commander": "^13.0.0", "debounce": "^2.0.0", "esbuild": "^0.25.0", "glob": "^11.0.0", "log-symbols": "^7.0.0", "mime-types": "^3.0.0", "next": "^15.3.1", "normalize-path": "^3.0.0", "ora": "^8.0.0", "socket.io": "^4.8.1" }, "bin": { "email": "dist/cli/index.mjs" } }, "sha512-UQR18Toi3TAasqcZal69rYZ9RiIKRvHRW69tN6k7hONJpEPeiC4uBtDwH5VxpllW591D+NOdpBF/V1pTansaKg=="], + + "react-hook-form": ["react-hook-form@7.57.0", "", { "peerDependencies": { "react": "^16.8.0 || ^17 || ^18 || ^19" } }, "sha512-RbEks3+cbvTP84l/VXGUZ+JMrKOS8ykQCRYdm5aYsxnDquL0vspsyNhGRO7pcH6hsZqWlPOjLye7rJqdtdAmlg=="], + + "react-is": ["react-is@18.3.1", "", {}, "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg=="], + + "react-promise-suspense": ["react-promise-suspense@0.3.4", "", { "dependencies": { "fast-deep-equal": "^2.0.1" } }, "sha512-I42jl7L3Ze6kZaq+7zXWSunBa3b1on5yfvUW6Eo/3fFOj6dZ5Bqmcd264nJbTK/gn1HjjILAjSwnZbV4RpSaNQ=="], + + "react-refresh": ["react-refresh@0.17.0", "", {}, "sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ=="], + + "react-remove-scroll": ["react-remove-scroll@2.7.0", "", { "dependencies": { "react-remove-scroll-bar": "^2.3.7", "react-style-singleton": "^2.2.3", "tslib": "^2.1.0", "use-callback-ref": "^1.3.3", "use-sidecar": "^1.1.3" }, "peerDependencies": { "@types/react": "*", "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-sGsQtcjMqdQyijAHytfGEELB8FufGbfXIsvUTe+NLx1GDRJCXtCFLBLUI1eyZCKXXvbEU2C6gai0PZKoIE9Vbg=="], + + "react-remove-scroll-bar": ["react-remove-scroll-bar@2.3.8", "", { "dependencies": { "react-style-singleton": "^2.2.2", "tslib": "^2.0.0" }, "peerDependencies": { "@types/react": "*", "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" }, "optionalPeers": ["@types/react"] }, "sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q=="], + + "react-resizable-panels": ["react-resizable-panels@3.0.2", "", { "peerDependencies": { "react": "^16.14.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc", "react-dom": "^16.14.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc" } }, "sha512-j4RNII75fnHkLnbsTb5G5YsDvJsSEZrJK2XSF2z0Tc2jIonYlIVir/Yh/5LvcUFCfs1HqrMAoiBFmIrRjC4XnA=="], + + "react-smooth": ["react-smooth@4.0.4", "", { "dependencies": { "fast-equals": "^5.0.1", "prop-types": "^15.8.1", "react-transition-group": "^4.4.5" }, "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "sha512-gnGKTpYwqL0Iii09gHobNolvX4Kiq4PKx6eWBCYYix+8cdw+cGo3do906l1NBPKkSWx1DghC1dlWG9L2uGd61Q=="], + + "react-style-singleton": ["react-style-singleton@2.2.3", "", { "dependencies": { "get-nonce": "^1.0.0", "tslib": "^2.0.0" }, "peerDependencies": { "@types/react": "*", "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ=="], + + "react-transition-group": ["react-transition-group@4.4.5", "", { "dependencies": { "@babel/runtime": "^7.5.5", "dom-helpers": "^5.0.1", "loose-envify": "^1.4.0", "prop-types": "^15.6.2" }, "peerDependencies": { "react": ">=16.6.0", "react-dom": ">=16.6.0" } }, "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g=="], + + "read-package-up": ["read-package-up@11.0.0", "", { "dependencies": { "find-up-simple": "^1.0.0", "read-pkg": "^9.0.0", "type-fest": "^4.6.0" } }, "sha512-MbgfoNPANMdb4oRBNg5eqLbB2t2r+o5Ua1pNt8BqGp4I0FJZhuVSOj3PaBPni4azWuSzEdNn2evevzVmEk1ohQ=="], + + "read-pkg": ["read-pkg@9.0.1", "", { "dependencies": { "@types/normalize-package-data": "^2.4.3", "normalize-package-data": "^6.0.0", "parse-json": "^8.0.0", "type-fest": "^4.6.0", "unicorn-magic": "^0.1.0" } }, "sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA=="], + + "readable-stream": ["readable-stream@4.7.0", "", { "dependencies": { "abort-controller": "^3.0.0", "buffer": "^6.0.3", "events": "^3.3.0", "process": "^0.11.10", "string_decoder": "^1.3.0" } }, "sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg=="], + + "readdir-glob": ["readdir-glob@1.1.3", "", { "dependencies": { "minimatch": "^5.1.0" } }, "sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA=="], + + "readdirp": ["readdirp@4.1.2", "", {}, "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg=="], + + "recharts": ["recharts@2.15.3", "", { "dependencies": { "clsx": "^2.0.0", "eventemitter3": "^4.0.1", "lodash": "^4.17.21", "react-is": "^18.3.1", "react-smooth": "^4.0.4", "recharts-scale": "^0.4.4", "tiny-invariant": "^1.3.1", "victory-vendor": "^36.6.8" }, "peerDependencies": { "react": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "sha512-EdOPzTwcFSuqtvkDoaM5ws/Km1+WTAO2eizL7rqiG0V2UVhTnz0m7J2i0CjVPUCdEkZImaWvXLbZDS2H5t6GFQ=="], + + "recharts-scale": ["recharts-scale@0.4.5", "", { "dependencies": { "decimal.js-light": "^2.4.1" } }, "sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w=="], + + "redis-errors": ["redis-errors@1.2.0", "", {}, "sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w=="], + + "redis-parser": ["redis-parser@3.0.0", "", { "dependencies": { "redis-errors": "^1.0.0" } }, "sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A=="], + + "remove-trailing-separator": ["remove-trailing-separator@1.1.0", "", {}, "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw=="], + + "repeat-string": ["repeat-string@1.6.1", "", {}, "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w=="], + + "require-directory": ["require-directory@2.1.1", "", {}, "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q=="], + + "require-package-name": ["require-package-name@2.0.1", "", {}, "sha512-uuoJ1hU/k6M0779t3VMVIYpb2VMJk05cehCaABFhXaibcbvfgR8wKiozLjVFSzJPmQMRqIcO0HMyTFqfV09V6Q=="], + + "requires-port": ["requires-port@1.0.0", "", {}, "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ=="], + + "resolve": ["resolve@1.22.10", "", { "dependencies": { "is-core-module": "^2.16.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { "resolve": "bin/resolve" } }, "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w=="], + + "resolve-from": ["resolve-from@5.0.0", "", {}, "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw=="], + + "resolve-pkg-maps": ["resolve-pkg-maps@1.0.0", "", {}, "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw=="], + + "restore-cursor": ["restore-cursor@5.1.0", "", { "dependencies": { "onetime": "^7.0.0", "signal-exit": "^4.1.0" } }, "sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA=="], + + "reusify": ["reusify@1.1.0", "", {}, "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw=="], + + "rollup": ["rollup@4.41.1", "", { "dependencies": { "@types/estree": "1.0.7" }, "optionalDependencies": { "@rollup/rollup-android-arm-eabi": "4.41.1", "@rollup/rollup-android-arm64": "4.41.1", "@rollup/rollup-darwin-arm64": "4.41.1", "@rollup/rollup-darwin-x64": "4.41.1", "@rollup/rollup-freebsd-arm64": "4.41.1", "@rollup/rollup-freebsd-x64": "4.41.1", "@rollup/rollup-linux-arm-gnueabihf": "4.41.1", "@rollup/rollup-linux-arm-musleabihf": "4.41.1", "@rollup/rollup-linux-arm64-gnu": "4.41.1", "@rollup/rollup-linux-arm64-musl": "4.41.1", "@rollup/rollup-linux-loongarch64-gnu": "4.41.1", "@rollup/rollup-linux-powerpc64le-gnu": "4.41.1", "@rollup/rollup-linux-riscv64-gnu": "4.41.1", "@rollup/rollup-linux-riscv64-musl": "4.41.1", "@rollup/rollup-linux-s390x-gnu": "4.41.1", "@rollup/rollup-linux-x64-gnu": "4.41.1", "@rollup/rollup-linux-x64-musl": "4.41.1", "@rollup/rollup-win32-arm64-msvc": "4.41.1", "@rollup/rollup-win32-ia32-msvc": "4.41.1", "@rollup/rollup-win32-x64-msvc": "4.41.1", "fsevents": "~2.3.2" }, "bin": { "rollup": "dist/bin/rollup" } }, "sha512-cPmwD3FnFv8rKMBc1MxWCwVQFxwf1JEmSX3iQXrRVVG15zerAIXRjMFVWnd5Q5QvgKF7Aj+5ykXFhUl+QGnyOw=="], + + "rollup-plugin-visualizer": ["rollup-plugin-visualizer@5.14.0", "", { "dependencies": { "open": "^8.4.0", "picomatch": "^4.0.2", "source-map": "^0.7.4", "yargs": "^17.5.1" }, "peerDependencies": { "rolldown": "1.x", "rollup": "2.x || 3.x || 4.x" }, "optionalPeers": ["rolldown", "rollup"], "bin": { "rollup-plugin-visualizer": "dist/bin/cli.js" } }, "sha512-VlDXneTDaKsHIw8yzJAFWtrzguoJ/LnQ+lMpoVfYJ3jJF4Ihe5oYLAqLklIK/35lgUY+1yEzCkHyZ1j4A5w5fA=="], + + "run-parallel": ["run-parallel@1.2.0", "", { "dependencies": { "queue-microtask": "^1.2.2" } }, "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA=="], + + "safe-buffer": ["safe-buffer@5.2.1", "", {}, "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="], + + "safe-stable-stringify": ["safe-stable-stringify@2.5.0", "", {}, "sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA=="], + + "safer-buffer": ["safer-buffer@2.1.2", "", {}, "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="], + + "scheduler": ["scheduler@0.26.0", "", {}, "sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA=="], + + "scule": ["scule@1.3.0", "", {}, "sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g=="], + + "selderee": ["selderee@0.11.0", "", { "dependencies": { "parseley": "^0.12.0" } }, "sha512-5TF+l7p4+OsnP8BCCvSyZiSPc4x4//p5uPwK8TCnVPJYRmU2aYKMpOXvw8zM5a5JvuuCGN1jmsMwuU2W02ukfA=="], + + "semver": ["semver@7.7.2", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA=="], + + "send": ["send@0.19.0", "", { "dependencies": { "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "fresh": "0.5.2", "http-errors": "2.0.0", "mime": "1.6.0", "ms": "2.1.3", "on-finished": "2.4.1", "range-parser": "~1.2.1", "statuses": "2.0.1" } }, "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw=="], + + "seq-queue": ["seq-queue@0.0.5", "", {}, "sha512-hr3Wtp/GZIc/6DAGPDcV4/9WoZhjrkXsi5B/07QgX8tsdc6ilr7BFM6PM6rbdAX1kFSDYeZGLipIZZKyQP0O5Q=="], + + "serialize-javascript": ["serialize-javascript@6.0.2", "", { "dependencies": { "randombytes": "^2.1.0" } }, "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g=="], + + "seroval": ["seroval@1.3.2", "", {}, "sha512-RbcPH1n5cfwKrru7v7+zrZvjLurgHhGyso3HTyGtRivGWgYjbOmGuivCQaORNELjNONoK35nj28EoWul9sb1zQ=="], + + "seroval-plugins": ["seroval-plugins@1.3.2", "", { "peerDependencies": { "seroval": "^1.0" } }, "sha512-0QvCV2lM3aj/U3YozDiVwx9zpH0q8A60CTWIv4Jszj/givcudPb48B+rkU5D51NJ0pTpweGMttHjboPa9/zoIQ=="], + + "serve-placeholder": ["serve-placeholder@2.0.2", "", { "dependencies": { "defu": "^6.1.4" } }, "sha512-/TMG8SboeiQbZJWRlfTCqMs2DD3SZgWp0kDQePz9yUuCnDfDh/92gf7/PxGhzXTKBIPASIHxFcZndoNbp6QOLQ=="], + + "serve-static": ["serve-static@1.16.2", "", { "dependencies": { "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "parseurl": "~1.3.3", "send": "0.19.0" } }, "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw=="], + + "setprototypeof": ["setprototypeof@1.2.0", "", {}, "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw=="], + + "sharp": ["sharp@0.34.2", "", { "dependencies": { "color": "^4.2.3", "detect-libc": "^2.0.4", "semver": "^7.7.2" }, "optionalDependencies": { "@img/sharp-darwin-arm64": "0.34.2", "@img/sharp-darwin-x64": "0.34.2", "@img/sharp-libvips-darwin-arm64": "1.1.0", "@img/sharp-libvips-darwin-x64": "1.1.0", "@img/sharp-libvips-linux-arm": "1.1.0", "@img/sharp-libvips-linux-arm64": "1.1.0", "@img/sharp-libvips-linux-ppc64": "1.1.0", "@img/sharp-libvips-linux-s390x": "1.1.0", "@img/sharp-libvips-linux-x64": "1.1.0", "@img/sharp-libvips-linuxmusl-arm64": "1.1.0", "@img/sharp-libvips-linuxmusl-x64": "1.1.0", "@img/sharp-linux-arm": "0.34.2", "@img/sharp-linux-arm64": "0.34.2", "@img/sharp-linux-s390x": "0.34.2", "@img/sharp-linux-x64": "0.34.2", "@img/sharp-linuxmusl-arm64": "0.34.2", "@img/sharp-linuxmusl-x64": "0.34.2", "@img/sharp-wasm32": "0.34.2", "@img/sharp-win32-arm64": "0.34.2", "@img/sharp-win32-ia32": "0.34.2", "@img/sharp-win32-x64": "0.34.2" } }, "sha512-lszvBmB9QURERtyKT2bNmsgxXK0ShJrL/fvqlonCo7e6xBF8nT8xU6pW+PMIbLsz0RxQk3rgH9kd8UmvOzlMJg=="], + + "shebang-command": ["shebang-command@2.0.0", "", { "dependencies": { "shebang-regex": "^3.0.0" } }, "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA=="], + + "shebang-regex": ["shebang-regex@3.0.0", "", {}, "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="], + + "shell-quote": ["shell-quote@1.8.2", "", {}, "sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA=="], + + "side-channel": ["side-channel@1.1.0", "", { "dependencies": { "es-errors": "^1.3.0", "object-inspect": "^1.13.3", "side-channel-list": "^1.0.0", "side-channel-map": "^1.0.1", "side-channel-weakmap": "^1.0.2" } }, "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw=="], + + "side-channel-list": ["side-channel-list@1.0.0", "", { "dependencies": { "es-errors": "^1.3.0", "object-inspect": "^1.13.3" } }, "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA=="], + + "side-channel-map": ["side-channel-map@1.0.1", "", { "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.5", "object-inspect": "^1.13.3" } }, "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA=="], + + "side-channel-weakmap": ["side-channel-weakmap@1.0.2", "", { "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.5", "object-inspect": "^1.13.3", "side-channel-map": "^1.0.1" } }, "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A=="], + + "signal-exit": ["signal-exit@4.1.0", "", {}, "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw=="], + + "simple-swizzle": ["simple-swizzle@0.2.2", "", { "dependencies": { "is-arrayish": "^0.3.1" } }, "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg=="], + + "slash": ["slash@5.1.0", "", {}, "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg=="], + + "smob": ["smob@1.5.0", "", {}, "sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig=="], + + "socket.io": ["socket.io@4.8.1", "", { "dependencies": { "accepts": "~1.3.4", "base64id": "~2.0.0", "cors": "~2.8.5", "debug": "~4.3.2", "engine.io": "~6.6.0", "socket.io-adapter": "~2.5.2", "socket.io-parser": "~4.2.4" } }, "sha512-oZ7iUCxph8WYRHHcjBEc9unw3adt5CmSNlppj/5Q4k2RIrhl8Z5yY2Xr4j9zj0+wzVZ0bxmYoGSzKJnRl6A4yg=="], + + "socket.io-adapter": ["socket.io-adapter@2.5.5", "", { "dependencies": { "debug": "~4.3.4", "ws": "~8.17.1" } }, "sha512-eLDQas5dzPgOWCk9GuuJC2lBqItuhKI4uxGgo9aIV7MYbk2h9Q6uULEh8WBzThoI7l+qU9Ast9fVUmkqPP9wYg=="], + + "socket.io-parser": ["socket.io-parser@4.2.4", "", { "dependencies": { "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.1" } }, "sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew=="], + + "solid-js": ["solid-js@1.9.7", "", { "dependencies": { "csstype": "^3.1.0", "seroval": "~1.3.0", "seroval-plugins": "~1.3.0" } }, "sha512-/saTKi8iWEM233n5OSi1YHCCuh66ZIQ7aK2hsToPe4tqGm7qAejU1SwNuTPivbWAYq7SjuHVVYxxuZQNRbICiw=="], + + "sonner": ["sonner@2.0.5", "", { "peerDependencies": { "react": "^18.0.0 || ^19.0.0 || ^19.0.0-rc", "react-dom": "^18.0.0 || ^19.0.0 || ^19.0.0-rc" } }, "sha512-YwbHQO6cSso3HBXlbCkgrgzDNIhws14r4MO87Ofy+cV2X7ES4pOoAK3+veSmVTvqNx1BWUxlhPmZzP00Crk2aQ=="], + + "source-map": ["source-map@0.7.4", "", {}, "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA=="], + + "source-map-js": ["source-map-js@1.2.1", "", {}, "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA=="], + + "source-map-support": ["source-map-support@0.5.21", "", { "dependencies": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" } }, "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w=="], + + "spdx-correct": ["spdx-correct@3.2.0", "", { "dependencies": { "spdx-expression-parse": "^3.0.0", "spdx-license-ids": "^3.0.0" } }, "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA=="], + + "spdx-exceptions": ["spdx-exceptions@2.5.0", "", {}, "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w=="], + + "spdx-expression-parse": ["spdx-expression-parse@3.0.1", "", { "dependencies": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" } }, "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q=="], + + "spdx-license-ids": ["spdx-license-ids@3.0.21", "", {}, "sha512-Bvg/8F5XephndSK3JffaRqdT+gyhfqIPwDHpX80tJrF8QQRYMo8sNMeaZ2Dp5+jhwKnUmIOyFFQfHRkjJm5nXg=="], + + "split2": ["split2@4.2.0", "", {}, "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg=="], + + "sqlite-wasm-kysely": ["sqlite-wasm-kysely@0.3.0", "", { "dependencies": { "@sqlite.org/sqlite-wasm": "^3.48.0-build2" }, "peerDependencies": { "kysely": "*" } }, "sha512-TzjBNv7KwRw6E3pdKdlRyZiTmUIE0UttT/Sl56MVwVARl/u5gp978KepazCJZewFUnlWHz9i3NQd4kOtP/Afdg=="], + + "sqlstring": ["sqlstring@2.3.3", "", {}, "sha512-qC9iz2FlN7DQl3+wjwn3802RTyjCx7sDvfQEXchwa6CWOx07/WVfh91gBmQ9fahw8snwGEWU3xGzOt4tFyHLxg=="], + + "stack-trace": ["stack-trace@0.0.10", "", {}, "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg=="], + + "standard-as-callback": ["standard-as-callback@2.1.0", "", {}, "sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A=="], + + "statuses": ["statuses@2.0.1", "", {}, "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ=="], + + "std-env": ["std-env@3.9.0", "", {}, "sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw=="], + + "stdin-discarder": ["stdin-discarder@0.2.2", "", {}, "sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ=="], + + "streamsearch": ["streamsearch@1.1.0", "", {}, "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg=="], + + "streamx": ["streamx@2.22.0", "", { "dependencies": { "fast-fifo": "^1.3.2", "text-decoder": "^1.1.0" }, "optionalDependencies": { "bare-events": "^2.2.0" } }, "sha512-sLh1evHOzBy/iWRiR6d1zRcLao4gGZr3C1kzNz4fopCOKJb6xD9ub8Mpi9Mr1R6id5o43S+d93fI48UC5uM9aw=="], + + "string-width": ["string-width@7.2.0", "", { "dependencies": { "emoji-regex": "^10.3.0", "get-east-asian-width": "^1.0.0", "strip-ansi": "^7.1.0" } }, "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ=="], + + "string-width-cjs": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="], + + "string_decoder": ["string_decoder@1.3.0", "", { "dependencies": { "safe-buffer": "~5.2.0" } }, "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA=="], + + "strip-ansi": ["strip-ansi@7.1.0", "", { "dependencies": { "ansi-regex": "^6.0.1" } }, "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ=="], + + "strip-ansi-cjs": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="], + + "strip-final-newline": ["strip-final-newline@3.0.0", "", {}, "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw=="], + + "strip-json-comments": ["strip-json-comments@3.1.1", "", {}, "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig=="], + + "strip-literal": ["strip-literal@3.0.0", "", { "dependencies": { "js-tokens": "^9.0.1" } }, "sha512-TcccoMhJOM3OebGhSBEmp3UZ2SfDMZUEBdRA/9ynfLi8yYajyWX3JiXArcJt4Umh4vISpspkQIY8ZZoCqjbviA=="], + + "styled-jsx": ["styled-jsx@5.1.6", "", { "dependencies": { "client-only": "0.0.1" }, "peerDependencies": { "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0" } }, "sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA=="], + + "supports-color": ["supports-color@7.2.0", "", { "dependencies": { "has-flag": "^4.0.0" } }, "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="], + + "supports-preserve-symlinks-flag": ["supports-preserve-symlinks-flag@1.0.0", "", {}, "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w=="], + + "system-architecture": ["system-architecture@0.1.0", "", {}, "sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA=="], + + "tailwind-merge": ["tailwind-merge@3.3.0", "", {}, "sha512-fyW/pEfcQSiigd5SNn0nApUOxx0zB/dm6UDU/rEwc2c3sX2smWUNbapHv+QRqLGVp9GWX3THIa7MUGPo+YkDzQ=="], + + "tailwindcss": ["tailwindcss@4.1.8", "", {}, "sha512-kjeW8gjdxasbmFKpVGrGd5T4i40mV5J2Rasw48QARfYeQ8YS9x02ON9SFWax3Qf616rt4Cp3nVNIj6Hd1mP3og=="], + + "tapable": ["tapable@2.2.2", "", {}, "sha512-Re10+NauLTMCudc7T5WLFLAwDhQ0JWdrMK+9B2M8zR5hRExKmsRDCBA7/aV/pNJFltmBFO5BAMlQFi/vq3nKOg=="], + + "tar": ["tar@7.4.3", "", { "dependencies": { "@isaacs/fs-minipass": "^4.0.0", "chownr": "^3.0.0", "minipass": "^7.1.2", "minizlib": "^3.0.1", "mkdirp": "^3.0.1", "yallist": "^5.0.0" } }, "sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw=="], + + "tar-stream": ["tar-stream@3.1.7", "", { "dependencies": { "b4a": "^1.6.4", "fast-fifo": "^1.2.0", "streamx": "^2.15.0" } }, "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ=="], + + "terser": ["terser@5.39.2", "", { "dependencies": { "@jridgewell/source-map": "^0.3.3", "acorn": "^8.14.0", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, "bin": { "terser": "bin/terser" } }, "sha512-yEPUmWve+VA78bI71BW70Dh0TuV4HHd+I5SHOAfS1+QBOmvmCiiffgjR8ryyEd3KIfvPGFqoADt8LdQ6XpXIvg=="], + + "text-decoder": ["text-decoder@1.2.3", "", { "dependencies": { "b4a": "^1.6.4" } }, "sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA=="], + + "text-hex": ["text-hex@1.0.0", "", {}, "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg=="], + + "tiny-invariant": ["tiny-invariant@1.3.3", "", {}, "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg=="], + + "tiny-warning": ["tiny-warning@1.0.3", "", {}, "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA=="], + + "tinyexec": ["tinyexec@0.3.2", "", {}, "sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA=="], + + "tinyglobby": ["tinyglobby@0.2.14", "", { "dependencies": { "fdir": "^6.4.4", "picomatch": "^4.0.2" } }, "sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ=="], + + "tmp": ["tmp@0.2.3", "", {}, "sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w=="], + + "tmp-promise": ["tmp-promise@3.0.3", "", { "dependencies": { "tmp": "^0.2.0" } }, "sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ=="], + + "to-regex-range": ["to-regex-range@5.0.1", "", { "dependencies": { "is-number": "^7.0.0" } }, "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ=="], + + "toidentifier": ["toidentifier@1.0.1", "", {}, "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA=="], + + "toml": ["toml@3.0.0", "", {}, "sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w=="], + + "tr46": ["tr46@0.0.3", "", {}, "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw=="], + + "triple-beam": ["triple-beam@1.4.1", "", {}, "sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg=="], + + "ts-api-utils": ["ts-api-utils@2.1.0", "", { "peerDependencies": { "typescript": ">=4.8.4" } }, "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ=="], + + "tsconfck": ["tsconfck@3.1.6", "", { "peerDependencies": { "typescript": "^5.0.0" }, "optionalPeers": ["typescript"], "bin": { "tsconfck": "bin/tsconfck.js" } }, "sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w=="], + + "tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], + + "tsx": ["tsx@4.19.4", "", { "dependencies": { "esbuild": "~0.25.0", "get-tsconfig": "^4.7.5" }, "optionalDependencies": { "fsevents": "~2.3.3" }, "bin": { "tsx": "dist/cli.mjs" } }, "sha512-gK5GVzDkJK1SI1zwHf32Mqxf2tSJkNx+eYcNly5+nHvWqXUJYUkWBQtKauoESz3ymezAI++ZwT855x5p5eop+Q=="], + + "tw-animate-css": ["tw-animate-css@1.3.4", "", {}, "sha512-dd1Ht6/YQHcNbq0znIT6dG8uhO7Ce+VIIhZUhjsryXsMPJQz3bZg7Q2eNzLwipb25bRZslGb2myio5mScd1TFg=="], + + "type-check": ["type-check@0.4.0", "", { "dependencies": { "prelude-ls": "^1.2.1" } }, "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew=="], + + "type-fest": ["type-fest@2.19.0", "", {}, "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA=="], + + "typescript": ["typescript@5.8.3", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ=="], + + "ufo": ["ufo@1.6.1", "", {}, "sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA=="], + + "ultrahtml": ["ultrahtml@1.6.0", "", {}, "sha512-R9fBn90VTJrqqLDwyMph+HGne8eqY1iPfYhPzZrvKpIfwkWZbcYlfpsb8B9dTvBfpy1/hqAD7Wi8EKfP9e8zdw=="], + + "uncrypto": ["uncrypto@0.1.3", "", {}, "sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q=="], + + "unctx": ["unctx@2.4.1", "", { "dependencies": { "acorn": "^8.14.0", "estree-walker": "^3.0.3", "magic-string": "^0.30.17", "unplugin": "^2.1.0" } }, "sha512-AbaYw0Nm4mK4qjhns67C+kgxR2YWiwlDBPzxrN8h8C6VtAdCgditAY5Dezu3IJy4XVqAnbrXt9oQJvsn3fyozg=="], + + "undici-types": ["undici-types@6.21.0", "", {}, "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ=="], + + "unenv": ["unenv@1.10.0", "", { "dependencies": { "consola": "^3.2.3", "defu": "^6.1.4", "mime": "^3.0.0", "node-fetch-native": "^1.6.4", "pathe": "^1.1.2" } }, "sha512-wY5bskBQFL9n3Eca5XnhH6KbUo/tfvkwm9OpcdCvLaeA7piBNbavbOKJySEwQ1V0RH6HvNlSAFRTpvTqgKRQXQ=="], + + "unicorn-magic": ["unicorn-magic@0.3.0", "", {}, "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA=="], + + "unimport": ["unimport@5.0.1", "", { "dependencies": { "acorn": "^8.14.1", "escape-string-regexp": "^5.0.0", "estree-walker": "^3.0.3", "local-pkg": "^1.1.1", "magic-string": "^0.30.17", "mlly": "^1.7.4", "pathe": "^2.0.3", "picomatch": "^4.0.2", "pkg-types": "^2.1.0", "scule": "^1.3.0", "strip-literal": "^3.0.0", "tinyglobby": "^0.2.13", "unplugin": "^2.3.2", "unplugin-utils": "^0.2.4" } }, "sha512-1YWzPj6wYhtwHE+9LxRlyqP4DiRrhGfJxdtH475im8ktyZXO3jHj/3PZ97zDdvkYoovFdi0K4SKl3a7l92v3sQ=="], + + "unixify": ["unixify@1.0.0", "", { "dependencies": { "normalize-path": "^2.1.1" } }, "sha512-6bc58dPYhCMHHuwxldQxO3RRNZ4eCogZ/st++0+fcC1nr0jiGUtAdBJ2qzmLQWSxbtz42pWt4QQMiZ9HvZf5cg=="], + + "unplugin": ["unplugin@2.3.5", "", { "dependencies": { "acorn": "^8.14.1", "picomatch": "^4.0.2", "webpack-virtual-modules": "^0.6.2" } }, "sha512-RyWSb5AHmGtjjNQ6gIlA67sHOsWpsbWpwDokLwTcejVdOjEkJZh7QKu14J00gDDVSh8kGH4KYC/TNBceXFZhtw=="], + + "unplugin-utils": ["unplugin-utils@0.2.4", "", { "dependencies": { "pathe": "^2.0.2", "picomatch": "^4.0.2" } }, "sha512-8U/MtpkPkkk3Atewj1+RcKIjb5WBimZ/WSLhhR3w6SsIj8XJuKTacSP8g+2JhfSGw0Cb125Y+2zA/IzJZDVbhA=="], + + "unstorage": ["unstorage@1.16.0", "", { "dependencies": { "anymatch": "^3.1.3", "chokidar": "^4.0.3", "destr": "^2.0.5", "h3": "^1.15.2", "lru-cache": "^10.4.3", "node-fetch-native": "^1.6.6", "ofetch": "^1.4.1", "ufo": "^1.6.1" }, "peerDependencies": { "@azure/app-configuration": "^1.8.0", "@azure/cosmos": "^4.2.0", "@azure/data-tables": "^13.3.0", "@azure/identity": "^4.6.0", "@azure/keyvault-secrets": "^4.9.0", "@azure/storage-blob": "^12.26.0", "@capacitor/preferences": "^6.0.3 || ^7.0.0", "@deno/kv": ">=0.9.0", "@netlify/blobs": "^6.5.0 || ^7.0.0 || ^8.1.0", "@planetscale/database": "^1.19.0", "@upstash/redis": "^1.34.3", "@vercel/blob": ">=0.27.1", "@vercel/kv": "^1.0.1", "aws4fetch": "^1.0.20", "db0": ">=0.2.1", "idb-keyval": "^6.2.1", "ioredis": "^5.4.2", "uploadthing": "^7.4.4" }, "optionalPeers": ["@azure/app-configuration", "@azure/cosmos", "@azure/data-tables", "@azure/identity", "@azure/keyvault-secrets", "@azure/storage-blob", "@capacitor/preferences", "@deno/kv", "@netlify/blobs", "@planetscale/database", "@upstash/redis", "@vercel/blob", "@vercel/kv", "aws4fetch", "db0", "idb-keyval", "ioredis", "uploadthing"] }, "sha512-WQ37/H5A7LcRPWfYOrDa1Ys02xAbpPJq6q5GkO88FBXVSQzHd7+BjEwfRqyaSWCv9MbsJy058GWjjPjcJ16GGA=="], + + "untun": ["untun@0.1.3", "", { "dependencies": { "citty": "^0.1.5", "consola": "^3.2.3", "pathe": "^1.1.1" }, "bin": { "untun": "bin/untun.mjs" } }, "sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ=="], + + "untyped": ["untyped@2.0.0", "", { "dependencies": { "citty": "^0.1.6", "defu": "^6.1.4", "jiti": "^2.4.2", "knitwork": "^1.2.0", "scule": "^1.3.0" }, "bin": { "untyped": "dist/cli.mjs" } }, "sha512-nwNCjxJTjNuLCgFr42fEak5OcLuB3ecca+9ksPFNvtfYSLpjf+iJqSIaSnIile6ZPbKYxI5k2AfXqeopGudK/g=="], + + "unwasm": ["unwasm@0.3.9", "", { "dependencies": { "knitwork": "^1.0.0", "magic-string": "^0.30.8", "mlly": "^1.6.1", "pathe": "^1.1.2", "pkg-types": "^1.0.3", "unplugin": "^1.10.0" } }, "sha512-LDxTx/2DkFURUd+BU1vUsF/moj0JsoTvl+2tcg2AUOiEzVturhGGx17/IMgGvKUYdZwr33EJHtChCJuhu9Ouvg=="], + + "update-browserslist-db": ["update-browserslist-db@1.1.3", "", { "dependencies": { "escalade": "^3.2.0", "picocolors": "^1.1.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" }, "bin": { "update-browserslist-db": "cli.js" } }, "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw=="], + + "uqr": ["uqr@0.1.2", "", {}, "sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA=="], + + "uri-js": ["uri-js@4.4.1", "", { "dependencies": { "punycode": "^2.1.0" } }, "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg=="], + + "urlpattern-polyfill": ["urlpattern-polyfill@10.1.0", "", {}, "sha512-IGjKp/o0NL3Bso1PymYURCJxMPNAf/ILOpendP9f5B6e1rTJgdgiOvgfoT8VxCAdY+Wisb9uhGaJJf3yZ2V9nw=="], + + "use-callback-ref": ["use-callback-ref@1.3.3", "", { "dependencies": { "tslib": "^2.0.0" }, "peerDependencies": { "@types/react": "*", "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg=="], + + "use-sidecar": ["use-sidecar@1.1.3", "", { "dependencies": { "detect-node-es": "^1.1.0", "tslib": "^2.0.0" }, "peerDependencies": { "@types/react": "*", "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc" }, "optionalPeers": ["@types/react"] }, "sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ=="], + + "use-sync-external-store": ["use-sync-external-store@1.5.0", "", { "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "sha512-Rb46I4cGGVBmjamjphe8L/UnvJD+uPPtTkNvX5mZgqdbavhI4EbgIWJiIHXJ8bc/i9EQGPRh4DwEURJ552Do0A=="], + + "util-deprecate": ["util-deprecate@1.0.2", "", {}, "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="], + + "uuid": ["uuid@10.0.0", "", { "bin": { "uuid": "dist/bin/uuid" } }, "sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ=="], + + "validate-npm-package-license": ["validate-npm-package-license@3.0.4", "", { "dependencies": { "spdx-correct": "^3.0.0", "spdx-expression-parse": "^3.0.0" } }, "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew=="], + + "vary": ["vary@1.1.2", "", {}, "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg=="], + + "vaul": ["vaul@1.1.2", "", { "dependencies": { "@radix-ui/react-dialog": "^1.1.1" }, "peerDependencies": { "react": "^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc", "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc" } }, "sha512-ZFkClGpWyI2WUQjdLJ/BaGuV6AVQiJ3uELGk3OYtP+B6yCO7Cmn9vPFXVJkRaGkOJu3m8bQMgtyzNHixULceQA=="], + + "victory-vendor": ["victory-vendor@36.9.2", "", { "dependencies": { "@types/d3-array": "^3.0.3", "@types/d3-ease": "^3.0.0", "@types/d3-interpolate": "^3.0.1", "@types/d3-scale": "^4.0.2", "@types/d3-shape": "^3.1.0", "@types/d3-time": "^3.0.0", "@types/d3-timer": "^3.0.0", "d3-array": "^3.1.6", "d3-ease": "^3.0.1", "d3-interpolate": "^3.0.1", "d3-scale": "^4.0.2", "d3-shape": "^3.1.0", "d3-time": "^3.0.0", "d3-timer": "^3.0.1" } }, "sha512-PnpQQMuxlwYdocC8fIJqVXvkeViHYzotI+NJrCuav0ZYFoq912ZHBk3mCeuj+5/VpodOjPe1z0Fk2ihgzlXqjQ=="], + + "vinxi": ["vinxi@0.5.3", "", { "dependencies": { "@babel/core": "^7.22.11", "@babel/plugin-syntax-jsx": "^7.22.5", "@babel/plugin-syntax-typescript": "^7.22.5", "@types/micromatch": "^4.0.2", "@vinxi/listhen": "^1.5.6", "boxen": "^7.1.1", "chokidar": "^3.5.3", "citty": "^0.1.4", "consola": "^3.2.3", "crossws": "^0.3.1", "dax-sh": "^0.39.1", "defu": "^6.1.2", "es-module-lexer": "^1.3.0", "esbuild": "^0.20.2", "fast-glob": "^3.3.1", "get-port-please": "^3.1.1", "h3": "1.13.0", "hookable": "^5.5.3", "http-proxy": "^1.18.1", "micromatch": "^4.0.5", "nitropack": "^2.10.4", "node-fetch-native": "^1.4.0", "path-to-regexp": "^6.2.1", "pathe": "^1.1.1", "radix3": "^1.1.0", "resolve": "^1.22.6", "serve-placeholder": "^2.0.1", "serve-static": "^1.15.0", "ufo": "^1.3.0", "unctx": "^2.3.1", "unenv": "^1.9.0", "unstorage": "^1.13.1", "vite": "^6.0.0", "zod": "^3.22.2" }, "bin": { "vinxi": "bin/cli.mjs" } }, "sha512-4sL2SMrRzdzClapP44oXdGjCE1oq7/DagsbjY5A09EibmoIO4LP8ScRVdh03lfXxKRk7nCWK7n7dqKvm+fp/9w=="], + + "vite": ["vite@6.3.5", "", { "dependencies": { "esbuild": "^0.25.0", "fdir": "^6.4.4", "picomatch": "^4.0.2", "postcss": "^8.5.3", "rollup": "^4.34.9", "tinyglobby": "^0.2.13" }, "optionalDependencies": { "fsevents": "~2.3.3" }, "peerDependencies": { "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", "jiti": ">=1.21.0", "less": "*", "lightningcss": "^1.21.0", "sass": "*", "sass-embedded": "*", "stylus": "*", "sugarss": "*", "terser": "^5.16.0", "tsx": "^4.8.1", "yaml": "^2.4.2" }, "optionalPeers": ["@types/node", "jiti", "less", "lightningcss", "sass", "sass-embedded", "stylus", "sugarss", "terser", "tsx", "yaml"], "bin": { "vite": "bin/vite.js" } }, "sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ=="], + + "vite-tsconfig-paths": ["vite-tsconfig-paths@5.1.4", "", { "dependencies": { "debug": "^4.1.1", "globrex": "^0.1.2", "tsconfck": "^3.0.3" }, "peerDependencies": { "vite": "*" }, "optionalPeers": ["vite"] }, "sha512-cYj0LRuLV2c2sMqhqhGpaO3LretdtMn/BVX4cPLanIZuwwrkVl+lK84E/miEXkCHWXuq65rhNN4rXsBcOB3S4w=="], + + "web-streams-polyfill": ["web-streams-polyfill@3.3.3", "", {}, "sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw=="], + + "webidl-conversions": ["webidl-conversions@3.0.1", "", {}, "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ=="], + + "webpack-virtual-modules": ["webpack-virtual-modules@0.6.2", "", {}, "sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ=="], + + "whatwg-url": ["whatwg-url@5.0.0", "", { "dependencies": { "tr46": "~0.0.3", "webidl-conversions": "^3.0.0" } }, "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw=="], + + "which": ["which@4.0.0", "", { "dependencies": { "isexe": "^3.1.1" }, "bin": { "node-which": "bin/which.js" } }, "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg=="], + + "widest-line": ["widest-line@4.0.1", "", { "dependencies": { "string-width": "^5.0.1" } }, "sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig=="], + + "winston": ["winston@3.17.0", "", { "dependencies": { "@colors/colors": "^1.6.0", "@dabh/diagnostics": "^2.0.2", "async": "^3.2.3", "is-stream": "^2.0.0", "logform": "^2.7.0", "one-time": "^1.0.0", "readable-stream": "^3.4.0", "safe-stable-stringify": "^2.3.1", "stack-trace": "0.0.x", "triple-beam": "^1.3.0", "winston-transport": "^4.9.0" } }, "sha512-DLiFIXYC5fMPxaRg832S6F5mJYvePtmO5G9v9IgUFPhXm9/GkXarH/TUrBAVzhTCzAj9anE/+GjrgXp/54nOgw=="], + + "winston-transport": ["winston-transport@4.9.0", "", { "dependencies": { "logform": "^2.7.0", "readable-stream": "^3.6.2", "triple-beam": "^1.3.0" } }, "sha512-8drMJ4rkgaPo1Me4zD/3WLfI/zPdA9o2IipKODunnGDcuqbHwjsbB79ylv04LCGGzU0xQ6vTznOMpQGaLhhm6A=="], + + "word-wrap": ["word-wrap@1.2.5", "", {}, "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA=="], + + "wrap-ansi": ["wrap-ansi@8.1.0", "", { "dependencies": { "ansi-styles": "^6.1.0", "string-width": "^5.0.1", "strip-ansi": "^7.0.1" } }, "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ=="], + + "wrap-ansi-cjs": ["wrap-ansi@7.0.0", "", { "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" } }, "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="], + + "wrappy": ["wrappy@1.0.2", "", {}, "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="], + + "write-file-atomic": ["write-file-atomic@6.0.0", "", { "dependencies": { "imurmurhash": "^0.1.4", "signal-exit": "^4.0.1" } }, "sha512-GmqrO8WJ1NuzJ2DrziEI2o57jKAVIQNf8a18W3nCYU3H7PNWqCCVTeH6/NQE93CIllIgQS98rrmVkYgTX9fFJQ=="], + + "ws": ["ws@8.17.1", "", { "peerDependencies": { "bufferutil": "^4.0.1", "utf-8-validate": ">=5.0.2" }, "optionalPeers": ["bufferutil", "utf-8-validate"] }, "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ=="], + + "xtend": ["xtend@4.0.2", "", {}, "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="], + + "y18n": ["y18n@5.0.8", "", {}, "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA=="], + + "yallist": ["yallist@5.0.0", "", {}, "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw=="], + + "yaml": ["yaml@2.8.0", "", { "bin": { "yaml": "bin.mjs" } }, "sha512-4lLa/EcQCB0cJkyts+FpIRx5G/llPxfP6VQU5KByHEhLxY3IJCH0f0Hy1MHI8sClTvsIb8qwRJ6R/ZdlDJ/leQ=="], + + "yargs": ["yargs@17.7.2", "", { "dependencies": { "cliui": "^8.0.1", "escalade": "^3.1.1", "get-caller-file": "^2.0.5", "require-directory": "^2.1.1", "string-width": "^4.2.3", "y18n": "^5.0.5", "yargs-parser": "^21.1.1" } }, "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w=="], + + "yargs-parser": ["yargs-parser@21.1.1", "", {}, "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw=="], + + "yauzl": ["yauzl@2.10.0", "", { "dependencies": { "buffer-crc32": "~0.2.3", "fd-slicer": "~1.1.0" } }, "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g=="], + + "yocto-queue": ["yocto-queue@0.1.0", "", {}, "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q=="], + + "yoctocolors": ["yoctocolors@2.1.1", "", {}, "sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ=="], + + "youch": ["youch@4.1.0-beta.7", "", { "dependencies": { "@poppinss/dumper": "^0.6.3", "@speed-highlight/core": "^1.2.7", "cookie": "^1.0.2", "youch-core": "^0.3.1" } }, "sha512-HUn0M24AUTMvjdkoMtH8fJz2FEd+k1xvtR9EoTrDUoVUi6o7xl5X+pST/vjk4T3GEQo2mJ9FlAvhWBm8dIdD4g=="], + + "youch-core": ["youch-core@0.3.2", "", { "dependencies": { "@poppinss/exception": "^1.2.0", "error-stack-parser-es": "^1.0.5" } }, "sha512-fusrlIMLeRvTFYLUjJ9KzlGC3N+6MOPJ68HNj/yJv2nz7zq8t4HEviLms2gkdRPUS7F5rZ5n+pYx9r88m6IE1g=="], + + "zip-stream": ["zip-stream@6.0.1", "", { "dependencies": { "archiver-utils": "^5.0.0", "compress-commons": "^6.0.2", "readable-stream": "^4.0.0" } }, "sha512-zK7YHHz4ZXpW89AHXUPbQVGKI7uvkd3hzusTdotCg1UxyaVtg0zFJSTfW/Dq5f7OBBVnq6cZIaC8Ti4hb6dtCA=="], + + "zod": ["zod@3.25.51", "", {}, "sha512-TQSnBldh+XSGL+opiSIq0575wvDPqu09AqWe1F7JhUMKY+M91/aGlK4MhpVNO7MgYfHcVCB1ffwAUTJzllKJqg=="], + + "@babel/core/semver": ["semver@6.3.1", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], + + "@babel/helper-compilation-targets/lru-cache": ["lru-cache@5.1.1", "", { "dependencies": { "yallist": "^3.0.2" } }, "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w=="], + + "@babel/helper-compilation-targets/semver": ["semver@6.3.1", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], + + "@cloudflare/kv-asset-handler/mime": ["mime@3.0.0", "", { "bin": { "mime": "cli.js" } }, "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A=="], + + "@esbuild-kit/core-utils/esbuild": ["esbuild@0.18.20", "", { "optionalDependencies": { "@esbuild/android-arm": "0.18.20", "@esbuild/android-arm64": "0.18.20", "@esbuild/android-x64": "0.18.20", "@esbuild/darwin-arm64": "0.18.20", "@esbuild/darwin-x64": "0.18.20", "@esbuild/freebsd-arm64": "0.18.20", "@esbuild/freebsd-x64": "0.18.20", "@esbuild/linux-arm": "0.18.20", "@esbuild/linux-arm64": "0.18.20", "@esbuild/linux-ia32": "0.18.20", "@esbuild/linux-loong64": "0.18.20", "@esbuild/linux-mips64el": "0.18.20", "@esbuild/linux-ppc64": "0.18.20", "@esbuild/linux-riscv64": "0.18.20", "@esbuild/linux-s390x": "0.18.20", "@esbuild/linux-x64": "0.18.20", "@esbuild/netbsd-x64": "0.18.20", "@esbuild/openbsd-x64": "0.18.20", "@esbuild/sunos-x64": "0.18.20", "@esbuild/win32-arm64": "0.18.20", "@esbuild/win32-ia32": "0.18.20", "@esbuild/win32-x64": "0.18.20" }, "bin": { "esbuild": "bin/esbuild" } }, "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA=="], + + "@eslint-community/eslint-utils/eslint-visitor-keys": ["eslint-visitor-keys@3.4.3", "", {}, "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag=="], + + "@eslint/eslintrc/globals": ["globals@14.0.0", "", {}, "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ=="], + + "@humanfs/node/@humanwhocodes/retry": ["@humanwhocodes/retry@0.3.1", "", {}, "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA=="], + + "@isaacs/cliui/string-width": ["string-width@5.1.2", "", { "dependencies": { "eastasianwidth": "^0.2.0", "emoji-regex": "^9.2.2", "strip-ansi": "^7.0.1" } }, "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA=="], + + "@mapbox/node-pre-gyp/consola": ["consola@3.4.2", "", {}, "sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA=="], + + "@netlify/dev-utils/find-up": ["find-up@7.0.0", "", { "dependencies": { "locate-path": "^7.2.0", "path-exists": "^5.0.0", "unicorn-magic": "^0.1.0" } }, "sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g=="], + + "@netlify/dev-utils/uuid": ["uuid@11.1.0", "", { "bin": { "uuid": "dist/esm/bin/uuid" } }, "sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A=="], + + "@netlify/zip-it-and-ship-it/@babel/types": ["@babel/types@7.27.1", "", { "dependencies": { "@babel/helper-string-parser": "^7.27.1", "@babel/helper-validator-identifier": "^7.27.1" } }, "sha512-+EzkxvLNfiUeKMgy/3luqfsCWFRXLb7U6wNQTk60tovuckwB15B191tJWvpp4HjiQWdJkCxO3Wbvc6jlk3Xb2Q=="], + + "@netlify/zip-it-and-ship-it/esbuild": ["esbuild@0.25.4", "", { "optionalDependencies": { "@esbuild/aix-ppc64": "0.25.4", "@esbuild/android-arm": "0.25.4", "@esbuild/android-arm64": "0.25.4", "@esbuild/android-x64": "0.25.4", "@esbuild/darwin-arm64": "0.25.4", "@esbuild/darwin-x64": "0.25.4", "@esbuild/freebsd-arm64": "0.25.4", "@esbuild/freebsd-x64": "0.25.4", "@esbuild/linux-arm": "0.25.4", "@esbuild/linux-arm64": "0.25.4", "@esbuild/linux-ia32": "0.25.4", "@esbuild/linux-loong64": "0.25.4", "@esbuild/linux-mips64el": "0.25.4", "@esbuild/linux-ppc64": "0.25.4", "@esbuild/linux-riscv64": "0.25.4", "@esbuild/linux-s390x": "0.25.4", "@esbuild/linux-x64": "0.25.4", "@esbuild/netbsd-arm64": "0.25.4", "@esbuild/netbsd-x64": "0.25.4", "@esbuild/openbsd-arm64": "0.25.4", "@esbuild/openbsd-x64": "0.25.4", "@esbuild/sunos-x64": "0.25.4", "@esbuild/win32-arm64": "0.25.4", "@esbuild/win32-ia32": "0.25.4", "@esbuild/win32-x64": "0.25.4" }, "bin": { "esbuild": "bin/esbuild" } }, "sha512-8pgjLUcUjcgDg+2Q4NYXnPbo/vncAY4UmyaCm0jZevERqCHZIaWwdJHkf8XQtu4AxSKCdvrUbT0XUr1IdZzI8Q=="], + + "@netlify/zip-it-and-ship-it/find-up": ["find-up@7.0.0", "", { "dependencies": { "locate-path": "^7.2.0", "path-exists": "^5.0.0", "unicorn-magic": "^0.1.0" } }, "sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g=="], + + "@netlify/zip-it-and-ship-it/glob": ["glob@8.1.0", "", { "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^5.0.1", "once": "^1.3.0" } }, "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ=="], + + "@netlify/zip-it-and-ship-it/locate-path": ["locate-path@7.2.0", "", { "dependencies": { "p-locate": "^6.0.0" } }, "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA=="], + + "@netlify/zip-it-and-ship-it/minimatch": ["minimatch@9.0.5", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow=="], + + "@netlify/zip-it-and-ship-it/path-exists": ["path-exists@5.0.0", "", {}, "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ=="], + + "@netlify/zip-it-and-ship-it/resolve": ["resolve@2.0.0-next.5", "", { "dependencies": { "is-core-module": "^2.13.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { "resolve": "bin/resolve" } }, "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA=="], + + "@netlify/zip-it-and-ship-it/urlpattern-polyfill": ["urlpattern-polyfill@8.0.2", "", {}, "sha512-Qp95D4TPJl1kC9SKigDcqgyM2VDVO4RiJc2d4qe5GrYm+zbIQCWWKAFaJNQ4BhdFeDGwBmAxqJBwWSJDb9T3BQ=="], + + "@netlify/zip-it-and-ship-it/zod": ["zod@3.25.30", "", {}, "sha512-VolhdEtu6TJr/fzGuHA/SZ5ixvXqA6ADOG9VRcQ3rdOKmF5hkmcJbyaQjUH5BgmpA9gej++zYRX7zjSmdReIwA=="], + + "@parcel/watcher/detect-libc": ["detect-libc@1.0.3", "", { "bin": { "detect-libc": "./bin/detect-libc.js" } }, "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg=="], + + "@parcel/watcher-wasm/napi-wasm": ["napi-wasm@1.1.3", "", { "bundled": true }, "sha512-h/4nMGsHjZDCYmQVNODIrYACVJ+I9KItbG+0si6W/jSjdA9JbWDoU4LLeMXVcEQGHjttI2tuXqDrbGF7qkUHHg=="], + + "@poppinss/dumper/supports-color": ["supports-color@10.0.0", "", {}, "sha512-HRVVSbCCMbj7/kdWF9Q+bbckjBHLtHMEoJWlkmYzzdwhYMkjkOwubLM6t7NbWKjgKamGDrWL1++KrjUO1t9oAQ=="], + + "@rollup/plugin-commonjs/estree-walker": ["estree-walker@2.0.2", "", {}, "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w=="], + + "@rollup/plugin-inject/estree-walker": ["estree-walker@2.0.2", "", {}, "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w=="], + + "@rollup/pluginutils/estree-walker": ["estree-walker@2.0.2", "", {}, "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w=="], + + "@tailwindcss/node/jiti": ["jiti@2.4.2", "", { "bin": { "jiti": "lib/jiti-cli.mjs" } }, "sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A=="], + + "@tailwindcss/oxide-wasm32-wasi/@emnapi/core": ["@emnapi/core@1.4.3", "", { "dependencies": { "@emnapi/wasi-threads": "1.0.2", "tslib": "^2.4.0" }, "bundled": true }, "sha512-4m62DuCE07lw01soJwPiBGC0nAww0Q+RY70VZ+n49yDIO13yyinhbWCeNnaob0lakDtWQzSdtNWzJeOJt2ma+g=="], + + "@tailwindcss/oxide-wasm32-wasi/@emnapi/runtime": ["@emnapi/runtime@1.4.3", "", { "dependencies": { "tslib": "^2.4.0" }, "bundled": true }, "sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ=="], + + "@tailwindcss/oxide-wasm32-wasi/@emnapi/wasi-threads": ["@emnapi/wasi-threads@1.0.2", "", { "dependencies": { "tslib": "^2.4.0" }, "bundled": true }, "sha512-5n3nTJblwRi8LlXkJ9eBzu+kZR8Yxcc7ubakyQTFzPMtIhFpUBRbsnc2Dv88IZDIbCDlBiWrknhB4Lsz7mg6BA=="], + + "@tailwindcss/oxide-wasm32-wasi/@napi-rs/wasm-runtime": ["@napi-rs/wasm-runtime@0.2.10", "", { "dependencies": { "@emnapi/core": "^1.4.3", "@emnapi/runtime": "^1.4.3", "@tybys/wasm-util": "^0.9.0" }, "bundled": true }, "sha512-bCsCyeZEwVErsGmyPNSzwfwFn4OdxBj0mmv6hOFucB/k81Ojdu68RbZdxYsRQUPc9l6SU5F/cG+bXgWs3oUgsQ=="], + + "@tailwindcss/oxide-wasm32-wasi/@tybys/wasm-util": ["@tybys/wasm-util@0.9.0", "", { "dependencies": { "tslib": "^2.4.0" }, "bundled": true }, "sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw=="], + + "@tailwindcss/oxide-wasm32-wasi/tslib": ["tslib@2.8.1", "", { "bundled": true }, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], + + "@tailwindcss/postcss/postcss": ["postcss@8.5.3", "", { "dependencies": { "nanoid": "^3.3.8", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A=="], + + "@tanstack/directive-functions-plugin/@babel/code-frame": ["@babel/code-frame@7.26.2", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.25.9", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" } }, "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ=="], + + "@tanstack/directive-functions-plugin/dedent": ["dedent@1.6.0", "", { "peerDependencies": { "babel-plugin-macros": "^3.1.0" }, "optionalPeers": ["babel-plugin-macros"] }, "sha512-F1Z+5UCFpmQUzJa11agbyPVMbpgT/qA3/SKyJ1jyBgm7dUcUEa8v9JwDkerSQXfakBwFljIxhOJqGkjUwZ9FSA=="], + + "@tanstack/directive-functions-plugin/vite": ["vite@6.1.4", "", { "dependencies": { "esbuild": "^0.24.2", "postcss": "^8.5.2", "rollup": "^4.30.1" }, "optionalDependencies": { "fsevents": "~2.3.3" }, "peerDependencies": { "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", "jiti": ">=1.21.0", "less": "*", "lightningcss": "^1.21.0", "sass": "*", "sass-embedded": "*", "stylus": "*", "sugarss": "*", "terser": "^5.16.0", "tsx": "^4.8.1", "yaml": "^2.4.2" }, "optionalPeers": ["@types/node", "jiti", "less", "lightningcss", "sass", "sass-embedded", "stylus", "sugarss", "terser", "tsx", "yaml"], "bin": { "vite": "bin/vite.js" } }, "sha512-VzONrF/qqEg/JBwHXBJdVSmBZBhwiPGinyUb0SQLByqQwi6o8UvX5TWLkpvkq3tvN8Cr273ieZDt36CGwWRMvA=="], + + "@tanstack/react-start-config/zod": ["zod@3.25.49", "", {}, "sha512-JMMPMy9ZBk3XFEdbM3iL1brx4NUSejd6xr3ELrrGEfGb355gjhiAWtG3K5o+AViV/3ZfkIrCzXsZn6SbLwTR8Q=="], + + "@tanstack/react-start-plugin/@babel/code-frame": ["@babel/code-frame@7.26.2", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.25.9", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" } }, "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ=="], + + "@tanstack/react-start-plugin/vite": ["vite@6.1.4", "", { "dependencies": { "esbuild": "^0.24.2", "postcss": "^8.5.2", "rollup": "^4.30.1" }, "optionalDependencies": { "fsevents": "~2.3.3" }, "peerDependencies": { "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", "jiti": ">=1.21.0", "less": "*", "lightningcss": "^1.21.0", "sass": "*", "sass-embedded": "*", "stylus": "*", "sugarss": "*", "terser": "^5.16.0", "tsx": "^4.8.1", "yaml": "^2.4.2" }, "optionalPeers": ["@types/node", "jiti", "less", "lightningcss", "sass", "sass-embedded", "stylus", "sugarss", "terser", "tsx", "yaml"], "bin": { "vite": "bin/vite.js" } }, "sha512-VzONrF/qqEg/JBwHXBJdVSmBZBhwiPGinyUb0SQLByqQwi6o8UvX5TWLkpvkq3tvN8Cr273ieZDt36CGwWRMvA=="], + + "@tanstack/router-generator/zod": ["zod@3.25.49", "", {}, "sha512-JMMPMy9ZBk3XFEdbM3iL1brx4NUSejd6xr3ELrrGEfGb355gjhiAWtG3K5o+AViV/3ZfkIrCzXsZn6SbLwTR8Q=="], + + "@tanstack/router-plugin/chokidar": ["chokidar@3.6.0", "", { "dependencies": { "anymatch": "~3.1.2", "braces": "~3.0.2", "glob-parent": "~5.1.2", "is-binary-path": "~2.1.0", "is-glob": "~4.0.1", "normalize-path": "~3.0.0", "readdirp": "~3.6.0" }, "optionalDependencies": { "fsevents": "~2.3.2" } }, "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw=="], + + "@tanstack/router-plugin/zod": ["zod@3.25.49", "", {}, "sha512-JMMPMy9ZBk3XFEdbM3iL1brx4NUSejd6xr3ELrrGEfGb355gjhiAWtG3K5o+AViV/3ZfkIrCzXsZn6SbLwTR8Q=="], + + "@tanstack/server-functions-plugin/@babel/code-frame": ["@babel/code-frame@7.26.2", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.25.9", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" } }, "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ=="], + + "@tanstack/server-functions-plugin/dedent": ["dedent@1.6.0", "", { "peerDependencies": { "babel-plugin-macros": "^3.1.0" }, "optionalPeers": ["babel-plugin-macros"] }, "sha512-F1Z+5UCFpmQUzJa11agbyPVMbpgT/qA3/SKyJ1jyBgm7dUcUEa8v9JwDkerSQXfakBwFljIxhOJqGkjUwZ9FSA=="], + + "@typescript-eslint/typescript-estree/minimatch": ["minimatch@9.0.5", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow=="], + + "@vercel/nft/estree-walker": ["estree-walker@2.0.2", "", {}, "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w=="], + + "@vercel/nft/glob": ["glob@10.4.5", "", { "dependencies": { "foreground-child": "^3.1.0", "jackspeak": "^3.1.2", "minimatch": "^9.0.4", "minipass": "^7.1.2", "package-json-from-dist": "^1.0.0", "path-scurry": "^1.11.1" }, "bin": { "glob": "dist/esm/bin.mjs" } }, "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg=="], + + "@vinxi/listhen/consola": ["consola@3.4.2", "", {}, "sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA=="], + + "@vinxi/listhen/h3": ["h3@1.15.3", "", { "dependencies": { "cookie-es": "^1.2.2", "crossws": "^0.3.4", "defu": "^6.1.4", "destr": "^2.0.5", "iron-webcrypto": "^1.2.1", "node-mock-http": "^1.0.0", "radix3": "^1.1.2", "ufo": "^1.6.1", "uncrypto": "^0.1.3" } }, "sha512-z6GknHqyX0h9aQaTx22VZDf6QyZn+0Nh+Ym8O/u0SGSkyF5cuTJYKlc8MkzW3Nzf9LE1ivcpmYC3FUGpywhuUQ=="], + + "@vue/compiler-core/estree-walker": ["estree-walker@2.0.2", "", {}, "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w=="], + + "@vue/compiler-sfc/estree-walker": ["estree-walker@2.0.2", "", {}, "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w=="], + + "@vue/compiler-sfc/postcss": ["postcss@8.5.3", "", { "dependencies": { "nanoid": "^3.3.8", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A=="], + + "accepts/mime-types": ["mime-types@2.1.35", "", { "dependencies": { "mime-db": "1.52.0" } }, "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw=="], + + "ansi-align/string-width": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="], + + "anymatch/picomatch": ["picomatch@2.3.1", "", {}, "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="], + + "archiver-utils/glob": ["glob@10.4.5", "", { "dependencies": { "foreground-child": "^3.1.0", "jackspeak": "^3.1.2", "minimatch": "^9.0.4", "minipass": "^7.1.2", "package-json-from-dist": "^1.0.0", "path-scurry": "^1.11.1" }, "bin": { "glob": "dist/esm/bin.mjs" } }, "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg=="], + + "archiver-utils/is-stream": ["is-stream@2.0.1", "", {}, "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg=="], + + "boxen/string-width": ["string-width@5.1.2", "", { "dependencies": { "eastasianwidth": "^0.2.0", "emoji-regex": "^9.2.2", "strip-ansi": "^7.0.1" } }, "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA=="], + + "c12/jiti": ["jiti@2.4.2", "", { "bin": { "jiti": "lib/jiti-cli.mjs" } }, "sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A=="], + + "c12/ohash": ["ohash@2.0.11", "", {}, "sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ=="], + + "c12/pathe": ["pathe@2.0.3", "", {}, "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w=="], + + "citty/consola": ["consola@3.4.2", "", {}, "sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA=="], + + "cliui/string-width": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="], + + "cliui/strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="], + + "cliui/wrap-ansi": ["wrap-ansi@7.0.0", "", { "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" } }, "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="], + + "colorspace/color": ["color@3.2.1", "", { "dependencies": { "color-convert": "^1.9.3", "color-string": "^1.6.0" } }, "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA=="], + + "compress-commons/is-stream": ["is-stream@2.0.1", "", {}, "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg=="], + + "cross-spawn/which": ["which@2.0.2", "", { "dependencies": { "isexe": "^2.0.0" }, "bin": { "node-which": "./bin/node-which" } }, "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA=="], + + "dax-sh/undici-types": ["undici-types@5.28.4", "", {}, "sha512-3OeMF5Lyowe8VW0skf5qaIE7Or3yS9LS7fvMUI0gg4YxpIBVg0L8BxCmROw2CcYhSkpR68Epz7CGc8MPj94Uww=="], + + "detective-typescript/@typescript-eslint/typescript-estree": ["@typescript-eslint/typescript-estree@8.32.1", "", { "dependencies": { "@typescript-eslint/types": "8.32.1", "@typescript-eslint/visitor-keys": "8.32.1", "debug": "^4.3.4", "fast-glob": "^3.3.2", "is-glob": "^4.0.3", "minimatch": "^9.0.4", "semver": "^7.6.0", "ts-api-utils": "^2.1.0" }, "peerDependencies": { "typescript": ">=4.8.4 <5.9.0" } }, "sha512-Y3AP9EIfYwBb4kWGb+simvPaqQoT5oJuzzj9m0i6FCY6SPvlomY2Ei4UEMm7+FXtlNJbor80ximyslzaQF6xhg=="], + + "dot-prop/type-fest": ["type-fest@4.41.0", "", {}, "sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA=="], + + "engine.io/debug": ["debug@4.3.7", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ=="], + + "escodegen/source-map": ["source-map@0.6.1", "", {}, "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="], + + "eslint/chalk": ["chalk@4.1.2", "", { "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="], + + "execa/is-stream": ["is-stream@3.0.0", "", {}, "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA=="], + + "execa/onetime": ["onetime@6.0.0", "", { "dependencies": { "mimic-fn": "^4.0.0" } }, "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ=="], + + "extract-zip/get-stream": ["get-stream@5.2.0", "", { "dependencies": { "pump": "^3.0.0" } }, "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA=="], + + "fast-glob/glob-parent": ["glob-parent@5.1.2", "", { "dependencies": { "is-glob": "^4.0.1" } }, "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="], + + "giget/consola": ["consola@3.4.2", "", {}, "sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA=="], + + "giget/pathe": ["pathe@2.0.3", "", {}, "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w=="], + + "glob/minimatch": ["minimatch@10.0.1", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ=="], + + "globby/ignore": ["ignore@7.0.4", "", {}, "sha512-gJzzk+PQNznz8ysRrC0aOkBNVRBDtE1n53IqyqEf3PXrYwomFs5q4pGMizBMJF+ykh03insJ27hB8gSrD2Hn8A=="], + + "import-fresh/resolve-from": ["resolve-from@4.0.0", "", {}, "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="], + + "is-inside-container/is-docker": ["is-docker@3.0.0", "", { "bin": { "is-docker": "cli.js" } }, "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ=="], + + "lambda-local/commander": ["commander@10.0.1", "", {}, "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug=="], + + "lazystream/readable-stream": ["readable-stream@2.3.8", "", { "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", "isarray": "~1.0.0", "process-nextick-args": "~2.0.0", "safe-buffer": "~5.1.1", "string_decoder": "~1.1.1", "util-deprecate": "~1.0.1" } }, "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA=="], + + "listhen/@parcel/watcher-wasm": ["@parcel/watcher-wasm@2.5.1", "", { "dependencies": { "is-glob": "^4.0.3", "micromatch": "^4.0.5", "napi-wasm": "^1.1.0" } }, "sha512-RJxlQQLkaMMIuWRozy+z2vEqbaQlCuaCgVZIUCzQLYggY22LZbP5Y1+ia+FD724Ids9e+XIyOLXLrLgQSHIthw=="], + + "listhen/consola": ["consola@3.4.2", "", {}, "sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA=="], + + "listhen/h3": ["h3@1.15.3", "", { "dependencies": { "cookie-es": "^1.2.2", "crossws": "^0.3.4", "defu": "^6.1.4", "destr": "^2.0.5", "iron-webcrypto": "^1.2.1", "node-mock-http": "^1.0.0", "radix3": "^1.1.2", "ufo": "^1.6.1", "uncrypto": "^0.1.3" } }, "sha512-z6GknHqyX0h9aQaTx22VZDf6QyZn+0Nh+Ym8O/u0SGSkyF5cuTJYKlc8MkzW3Nzf9LE1ivcpmYC3FUGpywhuUQ=="], + + "listhen/jiti": ["jiti@2.4.2", "", { "bin": { "jiti": "lib/jiti-cli.mjs" } }, "sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A=="], + + "micromatch/picomatch": ["picomatch@2.3.1", "", {}, "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="], + + "mlly/pathe": ["pathe@2.0.3", "", {}, "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w=="], + + "mlly/pkg-types": ["pkg-types@1.3.1", "", { "dependencies": { "confbox": "^0.1.8", "mlly": "^1.7.4", "pathe": "^2.0.1" } }, "sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ=="], + + "named-placeholders/lru-cache": ["lru-cache@7.18.3", "", {}, "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA=="], + + "netlify/node-fetch": ["node-fetch@3.3.2", "", { "dependencies": { "data-uri-to-buffer": "^4.0.0", "fetch-blob": "^3.1.4", "formdata-polyfill": "^4.0.10" } }, "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA=="], + + "next/postcss": ["postcss@8.4.31", "", { "dependencies": { "nanoid": "^3.3.6", "picocolors": "^1.0.0", "source-map-js": "^1.0.2" } }, "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ=="], + + "nitropack/consola": ["consola@3.4.2", "", {}, "sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA=="], + + "nitropack/cookie-es": ["cookie-es@2.0.0", "", {}, "sha512-RAj4E421UYRgqokKUmotqAwuplYw15qtdXfY+hGzgCJ/MBjCVZcSoHK/kH9kocfjRjcDME7IiDWR/1WX1TM2Pg=="], + + "nitropack/esbuild": ["esbuild@0.25.5", "", { "optionalDependencies": { "@esbuild/aix-ppc64": "0.25.5", "@esbuild/android-arm": "0.25.5", "@esbuild/android-arm64": "0.25.5", "@esbuild/android-x64": "0.25.5", "@esbuild/darwin-arm64": "0.25.5", "@esbuild/darwin-x64": "0.25.5", "@esbuild/freebsd-arm64": "0.25.5", "@esbuild/freebsd-x64": "0.25.5", "@esbuild/linux-arm": "0.25.5", "@esbuild/linux-arm64": "0.25.5", "@esbuild/linux-ia32": "0.25.5", "@esbuild/linux-loong64": "0.25.5", "@esbuild/linux-mips64el": "0.25.5", "@esbuild/linux-ppc64": "0.25.5", "@esbuild/linux-riscv64": "0.25.5", "@esbuild/linux-s390x": "0.25.5", "@esbuild/linux-x64": "0.25.5", "@esbuild/netbsd-arm64": "0.25.5", "@esbuild/netbsd-x64": "0.25.5", "@esbuild/openbsd-arm64": "0.25.5", "@esbuild/openbsd-x64": "0.25.5", "@esbuild/sunos-x64": "0.25.5", "@esbuild/win32-arm64": "0.25.5", "@esbuild/win32-ia32": "0.25.5", "@esbuild/win32-x64": "0.25.5" }, "bin": { "esbuild": "bin/esbuild" } }, "sha512-P8OtKZRv/5J5hhz0cUAdu/cLuPIKXpQl1R9pZtvmHWQvrAUVd0UNIPT4IB4W3rNOqVO0rlqHmCIbSwxh/c9yUQ=="], + + "nitropack/escape-string-regexp": ["escape-string-regexp@5.0.0", "", {}, "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw=="], + + "nitropack/h3": ["h3@1.15.3", "", { "dependencies": { "cookie-es": "^1.2.2", "crossws": "^0.3.4", "defu": "^6.1.4", "destr": "^2.0.5", "iron-webcrypto": "^1.2.1", "node-mock-http": "^1.0.0", "radix3": "^1.1.2", "ufo": "^1.6.1", "uncrypto": "^0.1.3" } }, "sha512-z6GknHqyX0h9aQaTx22VZDf6QyZn+0Nh+Ym8O/u0SGSkyF5cuTJYKlc8MkzW3Nzf9LE1ivcpmYC3FUGpywhuUQ=="], + + "nitropack/jiti": ["jiti@2.4.2", "", { "bin": { "jiti": "lib/jiti-cli.mjs" } }, "sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A=="], + + "nitropack/ohash": ["ohash@2.0.11", "", {}, "sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ=="], + + "nitropack/pathe": ["pathe@2.0.3", "", {}, "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w=="], + + "nitropack/serve-static": ["serve-static@2.2.0", "", { "dependencies": { "encodeurl": "^2.0.0", "escape-html": "^1.0.3", "parseurl": "^1.3.3", "send": "^1.2.0" } }, "sha512-61g9pCh0Vnh7IutZjtLGGpTA355+OPn2TyDv/6ivP2h/AdAVX9azsoxmg2/M6nZeQZNYBEwIcsne1mJd9oQItQ=="], + + "nitropack/unenv": ["unenv@2.0.0-rc.17", "", { "dependencies": { "defu": "^6.1.4", "exsolve": "^1.0.4", "ohash": "^2.0.11", "pathe": "^2.0.3", "ufo": "^1.6.1" } }, "sha512-B06u0wXkEd+o5gOCMl/ZHl5cfpYbDZKAT+HWTL+Hws6jWu7dCiqBBXXXzMFcFVJb8D4ytAnYmxJA83uwOQRSsg=="], + + "npm-run-path/path-key": ["path-key@4.0.0", "", {}, "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ=="], + + "nypm/consola": ["consola@3.4.2", "", {}, "sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA=="], + + "nypm/pathe": ["pathe@2.0.3", "", {}, "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w=="], + + "open/is-wsl": ["is-wsl@2.2.0", "", { "dependencies": { "is-docker": "^2.0.0" } }, "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww=="], + + "ora/log-symbols": ["log-symbols@6.0.0", "", { "dependencies": { "chalk": "^5.3.0", "is-unicode-supported": "^1.3.0" } }, "sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw=="], + + "parse-json/type-fest": ["type-fest@4.41.0", "", {}, "sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA=="], + + "path-scurry/lru-cache": ["lru-cache@11.1.0", "", {}, "sha512-QIXZUBJUx+2zHUdQujWejBkcD9+cs94tLn0+YL8UrCh+D5sCXZ4c7LaEH48pNwRY3MLDgqUFyhlCyjJPf1WP0A=="], + + "pg/pg-types": ["pg-types@2.2.0", "", { "dependencies": { "pg-int8": "1.0.1", "postgres-array": "~2.0.0", "postgres-bytea": "~1.0.0", "postgres-date": "~1.0.4", "postgres-interval": "^1.1.0" } }, "sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA=="], + + "pkg-types/pathe": ["pathe@2.0.3", "", {}, "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w=="], + + "precinct/commander": ["commander@12.1.0", "", {}, "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA=="], + + "precinct/postcss": ["postcss@8.5.3", "", { "dependencies": { "nanoid": "^3.3.8", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A=="], + + "prop-types/react-is": ["react-is@16.13.1", "", {}, "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="], + + "react-email/commander": ["commander@13.1.0", "", {}, "sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw=="], + + "react-email/esbuild": ["esbuild@0.25.5", "", { "optionalDependencies": { "@esbuild/aix-ppc64": "0.25.5", "@esbuild/android-arm": "0.25.5", "@esbuild/android-arm64": "0.25.5", "@esbuild/android-x64": "0.25.5", "@esbuild/darwin-arm64": "0.25.5", "@esbuild/darwin-x64": "0.25.5", "@esbuild/freebsd-arm64": "0.25.5", "@esbuild/freebsd-x64": "0.25.5", "@esbuild/linux-arm": "0.25.5", "@esbuild/linux-arm64": "0.25.5", "@esbuild/linux-ia32": "0.25.5", "@esbuild/linux-loong64": "0.25.5", "@esbuild/linux-mips64el": "0.25.5", "@esbuild/linux-ppc64": "0.25.5", "@esbuild/linux-riscv64": "0.25.5", "@esbuild/linux-s390x": "0.25.5", "@esbuild/linux-x64": "0.25.5", "@esbuild/netbsd-arm64": "0.25.5", "@esbuild/netbsd-x64": "0.25.5", "@esbuild/openbsd-arm64": "0.25.5", "@esbuild/openbsd-x64": "0.25.5", "@esbuild/sunos-x64": "0.25.5", "@esbuild/win32-arm64": "0.25.5", "@esbuild/win32-ia32": "0.25.5", "@esbuild/win32-x64": "0.25.5" }, "bin": { "esbuild": "bin/esbuild" } }, "sha512-P8OtKZRv/5J5hhz0cUAdu/cLuPIKXpQl1R9pZtvmHWQvrAUVd0UNIPT4IB4W3rNOqVO0rlqHmCIbSwxh/c9yUQ=="], + + "react-promise-suspense/fast-deep-equal": ["fast-deep-equal@2.0.1", "", {}, "sha512-bCK/2Z4zLidyB4ReuIsvALH6w31YfAQDmXMqMx6FyfHqvBxtjC0eRumeSu4Bs3XtXwpyIywtSTrVT99BxY1f9w=="], + + "read-package-up/type-fest": ["type-fest@4.41.0", "", {}, "sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA=="], + + "read-pkg/type-fest": ["type-fest@4.41.0", "", {}, "sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA=="], + + "read-pkg/unicorn-magic": ["unicorn-magic@0.1.0", "", {}, "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ=="], + + "readdir-glob/minimatch": ["minimatch@5.1.6", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g=="], + + "send/debug": ["debug@2.6.9", "", { "dependencies": { "ms": "2.0.0" } }, "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="], + + "send/encodeurl": ["encodeurl@1.0.2", "", {}, "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w=="], + + "send/mime": ["mime@1.6.0", "", { "bin": { "mime": "cli.js" } }, "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg=="], + + "socket.io/debug": ["debug@4.3.7", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ=="], + + "socket.io-adapter/debug": ["debug@4.3.7", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ=="], + + "socket.io-parser/debug": ["debug@4.3.7", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ=="], + + "source-map-support/source-map": ["source-map@0.6.1", "", {}, "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="], + + "string-width-cjs/emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="], + + "string-width-cjs/strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="], + + "strip-ansi-cjs/ansi-regex": ["ansi-regex@5.0.1", "", {}, "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="], + + "strip-literal/js-tokens": ["js-tokens@9.0.1", "", {}, "sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ=="], + + "terser/commander": ["commander@2.20.3", "", {}, "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="], + + "tsx/esbuild": ["esbuild@0.25.5", "", { "optionalDependencies": { "@esbuild/aix-ppc64": "0.25.5", "@esbuild/android-arm": "0.25.5", "@esbuild/android-arm64": "0.25.5", "@esbuild/android-x64": "0.25.5", "@esbuild/darwin-arm64": "0.25.5", "@esbuild/darwin-x64": "0.25.5", "@esbuild/freebsd-arm64": "0.25.5", "@esbuild/freebsd-x64": "0.25.5", "@esbuild/linux-arm": "0.25.5", "@esbuild/linux-arm64": "0.25.5", "@esbuild/linux-ia32": "0.25.5", "@esbuild/linux-loong64": "0.25.5", "@esbuild/linux-mips64el": "0.25.5", "@esbuild/linux-ppc64": "0.25.5", "@esbuild/linux-riscv64": "0.25.5", "@esbuild/linux-s390x": "0.25.5", "@esbuild/linux-x64": "0.25.5", "@esbuild/netbsd-arm64": "0.25.5", "@esbuild/netbsd-x64": "0.25.5", "@esbuild/openbsd-arm64": "0.25.5", "@esbuild/openbsd-x64": "0.25.5", "@esbuild/sunos-x64": "0.25.5", "@esbuild/win32-arm64": "0.25.5", "@esbuild/win32-ia32": "0.25.5", "@esbuild/win32-x64": "0.25.5" }, "bin": { "esbuild": "bin/esbuild" } }, "sha512-P8OtKZRv/5J5hhz0cUAdu/cLuPIKXpQl1R9pZtvmHWQvrAUVd0UNIPT4IB4W3rNOqVO0rlqHmCIbSwxh/c9yUQ=="], + + "unenv/consola": ["consola@3.4.2", "", {}, "sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA=="], + + "unenv/mime": ["mime@3.0.0", "", { "bin": { "mime": "cli.js" } }, "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A=="], + + "unimport/escape-string-regexp": ["escape-string-regexp@5.0.0", "", {}, "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw=="], + + "unimport/pathe": ["pathe@2.0.3", "", {}, "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w=="], + + "unixify/normalize-path": ["normalize-path@2.1.1", "", { "dependencies": { "remove-trailing-separator": "^1.0.1" } }, "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w=="], + + "unplugin-utils/pathe": ["pathe@2.0.3", "", {}, "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w=="], + + "unstorage/h3": ["h3@1.15.3", "", { "dependencies": { "cookie-es": "^1.2.2", "crossws": "^0.3.4", "defu": "^6.1.4", "destr": "^2.0.5", "iron-webcrypto": "^1.2.1", "node-mock-http": "^1.0.0", "radix3": "^1.1.2", "ufo": "^1.6.1", "uncrypto": "^0.1.3" } }, "sha512-z6GknHqyX0h9aQaTx22VZDf6QyZn+0Nh+Ym8O/u0SGSkyF5cuTJYKlc8MkzW3Nzf9LE1ivcpmYC3FUGpywhuUQ=="], + + "untun/consola": ["consola@3.4.2", "", {}, "sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA=="], + + "untyped/jiti": ["jiti@2.4.2", "", { "bin": { "jiti": "lib/jiti-cli.mjs" } }, "sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A=="], + + "unwasm/pkg-types": ["pkg-types@1.3.1", "", { "dependencies": { "confbox": "^0.1.8", "mlly": "^1.7.4", "pathe": "^2.0.1" } }, "sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ=="], + + "unwasm/unplugin": ["unplugin@1.16.1", "", { "dependencies": { "acorn": "^8.14.0", "webpack-virtual-modules": "^0.6.2" } }, "sha512-4/u/j4FrCKdi17jaxuJA0jClGxB1AvU2hw/IuayPc4ay1XGaJs/rbb4v5WKwAjNifjmXK9PIFyuPiaK8azyR9w=="], + + "vinxi/chokidar": ["chokidar@3.6.0", "", { "dependencies": { "anymatch": "~3.1.2", "braces": "~3.0.2", "glob-parent": "~5.1.2", "is-binary-path": "~2.1.0", "is-glob": "~4.0.1", "normalize-path": "~3.0.0", "readdirp": "~3.6.0" }, "optionalDependencies": { "fsevents": "~2.3.2" } }, "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw=="], + + "vinxi/consola": ["consola@3.4.2", "", {}, "sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA=="], + + "vinxi/esbuild": ["esbuild@0.20.2", "", { "optionalDependencies": { "@esbuild/aix-ppc64": "0.20.2", "@esbuild/android-arm": "0.20.2", "@esbuild/android-arm64": "0.20.2", "@esbuild/android-x64": "0.20.2", "@esbuild/darwin-arm64": "0.20.2", "@esbuild/darwin-x64": "0.20.2", "@esbuild/freebsd-arm64": "0.20.2", "@esbuild/freebsd-x64": "0.20.2", "@esbuild/linux-arm": "0.20.2", "@esbuild/linux-arm64": "0.20.2", "@esbuild/linux-ia32": "0.20.2", "@esbuild/linux-loong64": "0.20.2", "@esbuild/linux-mips64el": "0.20.2", "@esbuild/linux-ppc64": "0.20.2", "@esbuild/linux-riscv64": "0.20.2", "@esbuild/linux-s390x": "0.20.2", "@esbuild/linux-x64": "0.20.2", "@esbuild/netbsd-x64": "0.20.2", "@esbuild/openbsd-x64": "0.20.2", "@esbuild/sunos-x64": "0.20.2", "@esbuild/win32-arm64": "0.20.2", "@esbuild/win32-ia32": "0.20.2", "@esbuild/win32-x64": "0.20.2" }, "bin": { "esbuild": "bin/esbuild" } }, "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g=="], + + "vinxi/zod": ["zod@3.25.30", "", {}, "sha512-VolhdEtu6TJr/fzGuHA/SZ5ixvXqA6ADOG9VRcQ3rdOKmF5hkmcJbyaQjUH5BgmpA9gej++zYRX7zjSmdReIwA=="], + + "vite/esbuild": ["esbuild@0.25.5", "", { "optionalDependencies": { "@esbuild/aix-ppc64": "0.25.5", "@esbuild/android-arm": "0.25.5", "@esbuild/android-arm64": "0.25.5", "@esbuild/android-x64": "0.25.5", "@esbuild/darwin-arm64": "0.25.5", "@esbuild/darwin-x64": "0.25.5", "@esbuild/freebsd-arm64": "0.25.5", "@esbuild/freebsd-x64": "0.25.5", "@esbuild/linux-arm": "0.25.5", "@esbuild/linux-arm64": "0.25.5", "@esbuild/linux-ia32": "0.25.5", "@esbuild/linux-loong64": "0.25.5", "@esbuild/linux-mips64el": "0.25.5", "@esbuild/linux-ppc64": "0.25.5", "@esbuild/linux-riscv64": "0.25.5", "@esbuild/linux-s390x": "0.25.5", "@esbuild/linux-x64": "0.25.5", "@esbuild/netbsd-arm64": "0.25.5", "@esbuild/netbsd-x64": "0.25.5", "@esbuild/openbsd-arm64": "0.25.5", "@esbuild/openbsd-x64": "0.25.5", "@esbuild/sunos-x64": "0.25.5", "@esbuild/win32-arm64": "0.25.5", "@esbuild/win32-ia32": "0.25.5", "@esbuild/win32-x64": "0.25.5" }, "bin": { "esbuild": "bin/esbuild" } }, "sha512-P8OtKZRv/5J5hhz0cUAdu/cLuPIKXpQl1R9pZtvmHWQvrAUVd0UNIPT4IB4W3rNOqVO0rlqHmCIbSwxh/c9yUQ=="], + + "vite/postcss": ["postcss@8.5.3", "", { "dependencies": { "nanoid": "^3.3.8", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A=="], + + "widest-line/string-width": ["string-width@5.1.2", "", { "dependencies": { "eastasianwidth": "^0.2.0", "emoji-regex": "^9.2.2", "strip-ansi": "^7.0.1" } }, "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA=="], + + "winston/is-stream": ["is-stream@2.0.1", "", {}, "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg=="], + + "winston/readable-stream": ["readable-stream@3.6.2", "", { "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", "util-deprecate": "^1.0.1" } }, "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA=="], + + "winston-transport/readable-stream": ["readable-stream@3.6.2", "", { "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", "util-deprecate": "^1.0.1" } }, "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA=="], + + "wrap-ansi/ansi-styles": ["ansi-styles@6.2.1", "", {}, "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug=="], + + "wrap-ansi/string-width": ["string-width@5.1.2", "", { "dependencies": { "eastasianwidth": "^0.2.0", "emoji-regex": "^9.2.2", "strip-ansi": "^7.0.1" } }, "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA=="], + + "wrap-ansi-cjs/string-width": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="], + + "wrap-ansi-cjs/strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="], + + "yargs/string-width": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="], + + "yauzl/buffer-crc32": ["buffer-crc32@0.2.13", "", {}, "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ=="], + + "youch/cookie": ["cookie@1.0.2", "", {}, "sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA=="], + + "@babel/helper-compilation-targets/lru-cache/yallist": ["yallist@3.1.1", "", {}, "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g=="], + + "@esbuild-kit/core-utils/esbuild/@esbuild/android-arm": ["@esbuild/android-arm@0.18.20", "", { "os": "android", "cpu": "arm" }, "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw=="], + + "@esbuild-kit/core-utils/esbuild/@esbuild/android-arm64": ["@esbuild/android-arm64@0.18.20", "", { "os": "android", "cpu": "arm64" }, "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ=="], + + "@esbuild-kit/core-utils/esbuild/@esbuild/android-x64": ["@esbuild/android-x64@0.18.20", "", { "os": "android", "cpu": "x64" }, "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg=="], + + "@esbuild-kit/core-utils/esbuild/@esbuild/darwin-arm64": ["@esbuild/darwin-arm64@0.18.20", "", { "os": "darwin", "cpu": "arm64" }, "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA=="], + + "@esbuild-kit/core-utils/esbuild/@esbuild/darwin-x64": ["@esbuild/darwin-x64@0.18.20", "", { "os": "darwin", "cpu": "x64" }, "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ=="], + + "@esbuild-kit/core-utils/esbuild/@esbuild/freebsd-arm64": ["@esbuild/freebsd-arm64@0.18.20", "", { "os": "freebsd", "cpu": "arm64" }, "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw=="], + + "@esbuild-kit/core-utils/esbuild/@esbuild/freebsd-x64": ["@esbuild/freebsd-x64@0.18.20", "", { "os": "freebsd", "cpu": "x64" }, "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ=="], + + "@esbuild-kit/core-utils/esbuild/@esbuild/linux-arm": ["@esbuild/linux-arm@0.18.20", "", { "os": "linux", "cpu": "arm" }, "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg=="], + + "@esbuild-kit/core-utils/esbuild/@esbuild/linux-arm64": ["@esbuild/linux-arm64@0.18.20", "", { "os": "linux", "cpu": "arm64" }, "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA=="], + + "@esbuild-kit/core-utils/esbuild/@esbuild/linux-ia32": ["@esbuild/linux-ia32@0.18.20", "", { "os": "linux", "cpu": "ia32" }, "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA=="], + + "@esbuild-kit/core-utils/esbuild/@esbuild/linux-loong64": ["@esbuild/linux-loong64@0.18.20", "", { "os": "linux", "cpu": "none" }, "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg=="], + + "@esbuild-kit/core-utils/esbuild/@esbuild/linux-mips64el": ["@esbuild/linux-mips64el@0.18.20", "", { "os": "linux", "cpu": "none" }, "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ=="], + + "@esbuild-kit/core-utils/esbuild/@esbuild/linux-ppc64": ["@esbuild/linux-ppc64@0.18.20", "", { "os": "linux", "cpu": "ppc64" }, "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA=="], + + "@esbuild-kit/core-utils/esbuild/@esbuild/linux-riscv64": ["@esbuild/linux-riscv64@0.18.20", "", { "os": "linux", "cpu": "none" }, "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A=="], + + "@esbuild-kit/core-utils/esbuild/@esbuild/linux-s390x": ["@esbuild/linux-s390x@0.18.20", "", { "os": "linux", "cpu": "s390x" }, "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ=="], + + "@esbuild-kit/core-utils/esbuild/@esbuild/linux-x64": ["@esbuild/linux-x64@0.18.20", "", { "os": "linux", "cpu": "x64" }, "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w=="], + + "@esbuild-kit/core-utils/esbuild/@esbuild/netbsd-x64": ["@esbuild/netbsd-x64@0.18.20", "", { "os": "none", "cpu": "x64" }, "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A=="], + + "@esbuild-kit/core-utils/esbuild/@esbuild/openbsd-x64": ["@esbuild/openbsd-x64@0.18.20", "", { "os": "openbsd", "cpu": "x64" }, "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg=="], + + "@esbuild-kit/core-utils/esbuild/@esbuild/sunos-x64": ["@esbuild/sunos-x64@0.18.20", "", { "os": "sunos", "cpu": "x64" }, "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ=="], + + "@esbuild-kit/core-utils/esbuild/@esbuild/win32-arm64": ["@esbuild/win32-arm64@0.18.20", "", { "os": "win32", "cpu": "arm64" }, "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg=="], + + "@esbuild-kit/core-utils/esbuild/@esbuild/win32-ia32": ["@esbuild/win32-ia32@0.18.20", "", { "os": "win32", "cpu": "ia32" }, "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g=="], + + "@esbuild-kit/core-utils/esbuild/@esbuild/win32-x64": ["@esbuild/win32-x64@0.18.20", "", { "os": "win32", "cpu": "x64" }, "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ=="], + + "@isaacs/cliui/string-width/emoji-regex": ["emoji-regex@9.2.2", "", {}, "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="], + + "@netlify/dev-utils/find-up/locate-path": ["locate-path@7.2.0", "", { "dependencies": { "p-locate": "^6.0.0" } }, "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA=="], + + "@netlify/dev-utils/find-up/path-exists": ["path-exists@5.0.0", "", {}, "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ=="], + + "@netlify/dev-utils/find-up/unicorn-magic": ["unicorn-magic@0.1.0", "", {}, "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ=="], + + "@netlify/zip-it-and-ship-it/esbuild/@esbuild/aix-ppc64": ["@esbuild/aix-ppc64@0.25.4", "", { "os": "aix", "cpu": "ppc64" }, "sha512-1VCICWypeQKhVbE9oW/sJaAmjLxhVqacdkvPLEjwlttjfwENRSClS8EjBz0KzRyFSCPDIkuXW34Je/vk7zdB7Q=="], + + "@netlify/zip-it-and-ship-it/esbuild/@esbuild/android-arm": ["@esbuild/android-arm@0.25.4", "", { "os": "android", "cpu": "arm" }, "sha512-QNdQEps7DfFwE3hXiU4BZeOV68HHzYwGd0Nthhd3uCkkEKK7/R6MTgM0P7H7FAs5pU/DIWsviMmEGxEoxIZ+ZQ=="], + + "@netlify/zip-it-and-ship-it/esbuild/@esbuild/android-arm64": ["@esbuild/android-arm64@0.25.4", "", { "os": "android", "cpu": "arm64" }, "sha512-bBy69pgfhMGtCnwpC/x5QhfxAz/cBgQ9enbtwjf6V9lnPI/hMyT9iWpR1arm0l3kttTr4L0KSLpKmLp/ilKS9A=="], + + "@netlify/zip-it-and-ship-it/esbuild/@esbuild/android-x64": ["@esbuild/android-x64@0.25.4", "", { "os": "android", "cpu": "x64" }, "sha512-TVhdVtQIFuVpIIR282btcGC2oGQoSfZfmBdTip2anCaVYcqWlZXGcdcKIUklfX2wj0JklNYgz39OBqh2cqXvcQ=="], + + "@netlify/zip-it-and-ship-it/esbuild/@esbuild/darwin-arm64": ["@esbuild/darwin-arm64@0.25.4", "", { "os": "darwin", "cpu": "arm64" }, "sha512-Y1giCfM4nlHDWEfSckMzeWNdQS31BQGs9/rouw6Ub91tkK79aIMTH3q9xHvzH8d0wDru5Ci0kWB8b3up/nl16g=="], + + "@netlify/zip-it-and-ship-it/esbuild/@esbuild/darwin-x64": ["@esbuild/darwin-x64@0.25.4", "", { "os": "darwin", "cpu": "x64" }, "sha512-CJsry8ZGM5VFVeyUYB3cdKpd/H69PYez4eJh1W/t38vzutdjEjtP7hB6eLKBoOdxcAlCtEYHzQ/PJ/oU9I4u0A=="], + + "@netlify/zip-it-and-ship-it/esbuild/@esbuild/freebsd-arm64": ["@esbuild/freebsd-arm64@0.25.4", "", { "os": "freebsd", "cpu": "arm64" }, "sha512-yYq+39NlTRzU2XmoPW4l5Ifpl9fqSk0nAJYM/V/WUGPEFfek1epLHJIkTQM6bBs1swApjO5nWgvr843g6TjxuQ=="], + + "@netlify/zip-it-and-ship-it/esbuild/@esbuild/freebsd-x64": ["@esbuild/freebsd-x64@0.25.4", "", { "os": "freebsd", "cpu": "x64" }, "sha512-0FgvOJ6UUMflsHSPLzdfDnnBBVoCDtBTVyn/MrWloUNvq/5SFmh13l3dvgRPkDihRxb77Y17MbqbCAa2strMQQ=="], + + "@netlify/zip-it-and-ship-it/esbuild/@esbuild/linux-arm": ["@esbuild/linux-arm@0.25.4", "", { "os": "linux", "cpu": "arm" }, "sha512-kro4c0P85GMfFYqW4TWOpvmF8rFShbWGnrLqlzp4X1TNWjRY3JMYUfDCtOxPKOIY8B0WC8HN51hGP4I4hz4AaQ=="], + + "@netlify/zip-it-and-ship-it/esbuild/@esbuild/linux-arm64": ["@esbuild/linux-arm64@0.25.4", "", { "os": "linux", "cpu": "arm64" }, "sha512-+89UsQTfXdmjIvZS6nUnOOLoXnkUTB9hR5QAeLrQdzOSWZvNSAXAtcRDHWtqAUtAmv7ZM1WPOOeSxDzzzMogiQ=="], + + "@netlify/zip-it-and-ship-it/esbuild/@esbuild/linux-ia32": ["@esbuild/linux-ia32@0.25.4", "", { "os": "linux", "cpu": "ia32" }, "sha512-yTEjoapy8UP3rv8dB0ip3AfMpRbyhSN3+hY8mo/i4QXFeDxmiYbEKp3ZRjBKcOP862Ua4b1PDfwlvbuwY7hIGQ=="], + + "@netlify/zip-it-and-ship-it/esbuild/@esbuild/linux-loong64": ["@esbuild/linux-loong64@0.25.4", "", { "os": "linux", "cpu": "none" }, "sha512-NeqqYkrcGzFwi6CGRGNMOjWGGSYOpqwCjS9fvaUlX5s3zwOtn1qwg1s2iE2svBe4Q/YOG1q6875lcAoQK/F4VA=="], + + "@netlify/zip-it-and-ship-it/esbuild/@esbuild/linux-mips64el": ["@esbuild/linux-mips64el@0.25.4", "", { "os": "linux", "cpu": "none" }, "sha512-IcvTlF9dtLrfL/M8WgNI/qJYBENP3ekgsHbYUIzEzq5XJzzVEV/fXY9WFPfEEXmu3ck2qJP8LG/p3Q8f7Zc2Xg=="], + + "@netlify/zip-it-and-ship-it/esbuild/@esbuild/linux-ppc64": ["@esbuild/linux-ppc64@0.25.4", "", { "os": "linux", "cpu": "ppc64" }, "sha512-HOy0aLTJTVtoTeGZh4HSXaO6M95qu4k5lJcH4gxv56iaycfz1S8GO/5Jh6X4Y1YiI0h7cRyLi+HixMR+88swag=="], + + "@netlify/zip-it-and-ship-it/esbuild/@esbuild/linux-riscv64": ["@esbuild/linux-riscv64@0.25.4", "", { "os": "linux", "cpu": "none" }, "sha512-i8JUDAufpz9jOzo4yIShCTcXzS07vEgWzyX3NH2G7LEFVgrLEhjwL3ajFE4fZI3I4ZgiM7JH3GQ7ReObROvSUA=="], + + "@netlify/zip-it-and-ship-it/esbuild/@esbuild/linux-s390x": ["@esbuild/linux-s390x@0.25.4", "", { "os": "linux", "cpu": "s390x" }, "sha512-jFnu+6UbLlzIjPQpWCNh5QtrcNfMLjgIavnwPQAfoGx4q17ocOU9MsQ2QVvFxwQoWpZT8DvTLooTvmOQXkO51g=="], + + "@netlify/zip-it-and-ship-it/esbuild/@esbuild/linux-x64": ["@esbuild/linux-x64@0.25.4", "", { "os": "linux", "cpu": "x64" }, "sha512-6e0cvXwzOnVWJHq+mskP8DNSrKBr1bULBvnFLpc1KY+d+irZSgZ02TGse5FsafKS5jg2e4pbvK6TPXaF/A6+CA=="], + + "@netlify/zip-it-and-ship-it/esbuild/@esbuild/netbsd-arm64": ["@esbuild/netbsd-arm64@0.25.4", "", { "os": "none", "cpu": "arm64" }, "sha512-vUnkBYxZW4hL/ie91hSqaSNjulOnYXE1VSLusnvHg2u3jewJBz3YzB9+oCw8DABeVqZGg94t9tyZFoHma8gWZQ=="], + + "@netlify/zip-it-and-ship-it/esbuild/@esbuild/netbsd-x64": ["@esbuild/netbsd-x64@0.25.4", "", { "os": "none", "cpu": "x64" }, "sha512-XAg8pIQn5CzhOB8odIcAm42QsOfa98SBeKUdo4xa8OvX8LbMZqEtgeWE9P/Wxt7MlG2QqvjGths+nq48TrUiKw=="], + + "@netlify/zip-it-and-ship-it/esbuild/@esbuild/openbsd-arm64": ["@esbuild/openbsd-arm64@0.25.4", "", { "os": "openbsd", "cpu": "arm64" }, "sha512-Ct2WcFEANlFDtp1nVAXSNBPDxyU+j7+tId//iHXU2f/lN5AmO4zLyhDcpR5Cz1r08mVxzt3Jpyt4PmXQ1O6+7A=="], + + "@netlify/zip-it-and-ship-it/esbuild/@esbuild/openbsd-x64": ["@esbuild/openbsd-x64@0.25.4", "", { "os": "openbsd", "cpu": "x64" }, "sha512-xAGGhyOQ9Otm1Xu8NT1ifGLnA6M3sJxZ6ixylb+vIUVzvvd6GOALpwQrYrtlPouMqd/vSbgehz6HaVk4+7Afhw=="], + + "@netlify/zip-it-and-ship-it/esbuild/@esbuild/sunos-x64": ["@esbuild/sunos-x64@0.25.4", "", { "os": "sunos", "cpu": "x64" }, "sha512-Mw+tzy4pp6wZEK0+Lwr76pWLjrtjmJyUB23tHKqEDP74R3q95luY/bXqXZeYl4NYlvwOqoRKlInQialgCKy67Q=="], + + "@netlify/zip-it-and-ship-it/esbuild/@esbuild/win32-arm64": ["@esbuild/win32-arm64@0.25.4", "", { "os": "win32", "cpu": "arm64" }, "sha512-AVUP428VQTSddguz9dO9ngb+E5aScyg7nOeJDrF1HPYu555gmza3bDGMPhmVXL8svDSoqPCsCPjb265yG/kLKQ=="], + + "@netlify/zip-it-and-ship-it/esbuild/@esbuild/win32-ia32": ["@esbuild/win32-ia32@0.25.4", "", { "os": "win32", "cpu": "ia32" }, "sha512-i1sW+1i+oWvQzSgfRcxxG2k4I9n3O9NRqy8U+uugaT2Dy7kLO9Y7wI72haOahxceMX8hZAzgGou1FhndRldxRg=="], + + "@netlify/zip-it-and-ship-it/esbuild/@esbuild/win32-x64": ["@esbuild/win32-x64@0.25.4", "", { "os": "win32", "cpu": "x64" }, "sha512-nOT2vZNw6hJ+z43oP1SPea/G/6AbN6X+bGNhNuq8NtRHy4wsMhw765IKLNmnjek7GvjWBYQ8Q5VBoYTFg9y1UQ=="], + + "@netlify/zip-it-and-ship-it/find-up/unicorn-magic": ["unicorn-magic@0.1.0", "", {}, "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ=="], + + "@netlify/zip-it-and-ship-it/glob/minimatch": ["minimatch@5.1.6", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g=="], + + "@netlify/zip-it-and-ship-it/locate-path/p-locate": ["p-locate@6.0.0", "", { "dependencies": { "p-limit": "^4.0.0" } }, "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw=="], + + "@netlify/zip-it-and-ship-it/minimatch/brace-expansion": ["brace-expansion@2.0.1", "", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA=="], + + "@tanstack/directive-functions-plugin/vite/esbuild": ["esbuild@0.24.2", "", { "optionalDependencies": { "@esbuild/aix-ppc64": "0.24.2", "@esbuild/android-arm": "0.24.2", "@esbuild/android-arm64": "0.24.2", "@esbuild/android-x64": "0.24.2", "@esbuild/darwin-arm64": "0.24.2", "@esbuild/darwin-x64": "0.24.2", "@esbuild/freebsd-arm64": "0.24.2", "@esbuild/freebsd-x64": "0.24.2", "@esbuild/linux-arm": "0.24.2", "@esbuild/linux-arm64": "0.24.2", "@esbuild/linux-ia32": "0.24.2", "@esbuild/linux-loong64": "0.24.2", "@esbuild/linux-mips64el": "0.24.2", "@esbuild/linux-ppc64": "0.24.2", "@esbuild/linux-riscv64": "0.24.2", "@esbuild/linux-s390x": "0.24.2", "@esbuild/linux-x64": "0.24.2", "@esbuild/netbsd-arm64": "0.24.2", "@esbuild/netbsd-x64": "0.24.2", "@esbuild/openbsd-arm64": "0.24.2", "@esbuild/openbsd-x64": "0.24.2", "@esbuild/sunos-x64": "0.24.2", "@esbuild/win32-arm64": "0.24.2", "@esbuild/win32-ia32": "0.24.2", "@esbuild/win32-x64": "0.24.2" }, "bin": { "esbuild": "bin/esbuild" } }, "sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA=="], + + "@tanstack/directive-functions-plugin/vite/postcss": ["postcss@8.5.3", "", { "dependencies": { "nanoid": "^3.3.8", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A=="], + + "@tanstack/react-start-plugin/vite/esbuild": ["esbuild@0.24.2", "", { "optionalDependencies": { "@esbuild/aix-ppc64": "0.24.2", "@esbuild/android-arm": "0.24.2", "@esbuild/android-arm64": "0.24.2", "@esbuild/android-x64": "0.24.2", "@esbuild/darwin-arm64": "0.24.2", "@esbuild/darwin-x64": "0.24.2", "@esbuild/freebsd-arm64": "0.24.2", "@esbuild/freebsd-x64": "0.24.2", "@esbuild/linux-arm": "0.24.2", "@esbuild/linux-arm64": "0.24.2", "@esbuild/linux-ia32": "0.24.2", "@esbuild/linux-loong64": "0.24.2", "@esbuild/linux-mips64el": "0.24.2", "@esbuild/linux-ppc64": "0.24.2", "@esbuild/linux-riscv64": "0.24.2", "@esbuild/linux-s390x": "0.24.2", "@esbuild/linux-x64": "0.24.2", "@esbuild/netbsd-arm64": "0.24.2", "@esbuild/netbsd-x64": "0.24.2", "@esbuild/openbsd-arm64": "0.24.2", "@esbuild/openbsd-x64": "0.24.2", "@esbuild/sunos-x64": "0.24.2", "@esbuild/win32-arm64": "0.24.2", "@esbuild/win32-ia32": "0.24.2", "@esbuild/win32-x64": "0.24.2" }, "bin": { "esbuild": "bin/esbuild" } }, "sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA=="], + + "@tanstack/react-start-plugin/vite/postcss": ["postcss@8.5.3", "", { "dependencies": { "nanoid": "^3.3.8", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A=="], + + "@tanstack/router-plugin/chokidar/glob-parent": ["glob-parent@5.1.2", "", { "dependencies": { "is-glob": "^4.0.1" } }, "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="], + + "@tanstack/router-plugin/chokidar/readdirp": ["readdirp@3.6.0", "", { "dependencies": { "picomatch": "^2.2.1" } }, "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA=="], + + "@typescript-eslint/typescript-estree/minimatch/brace-expansion": ["brace-expansion@2.0.1", "", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA=="], + + "@vercel/nft/glob/jackspeak": ["jackspeak@3.4.3", "", { "dependencies": { "@isaacs/cliui": "^8.0.2" }, "optionalDependencies": { "@pkgjs/parseargs": "^0.11.0" } }, "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw=="], + + "@vercel/nft/glob/minimatch": ["minimatch@9.0.5", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow=="], + + "@vercel/nft/glob/path-scurry": ["path-scurry@1.11.1", "", { "dependencies": { "lru-cache": "^10.2.0", "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" } }, "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA=="], + + "accepts/mime-types/mime-db": ["mime-db@1.52.0", "", {}, "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg=="], + + "ansi-align/string-width/emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="], + + "ansi-align/string-width/strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="], + + "archiver-utils/glob/jackspeak": ["jackspeak@3.4.3", "", { "dependencies": { "@isaacs/cliui": "^8.0.2" }, "optionalDependencies": { "@pkgjs/parseargs": "^0.11.0" } }, "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw=="], + + "archiver-utils/glob/minimatch": ["minimatch@9.0.5", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow=="], + + "archiver-utils/glob/path-scurry": ["path-scurry@1.11.1", "", { "dependencies": { "lru-cache": "^10.2.0", "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" } }, "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA=="], + + "boxen/string-width/emoji-regex": ["emoji-regex@9.2.2", "", {}, "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="], + + "cliui/string-width/emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="], + + "cliui/strip-ansi/ansi-regex": ["ansi-regex@5.0.1", "", {}, "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="], + + "colorspace/color/color-convert": ["color-convert@1.9.3", "", { "dependencies": { "color-name": "1.1.3" } }, "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="], + + "cross-spawn/which/isexe": ["isexe@2.0.0", "", {}, "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="], + + "detective-typescript/@typescript-eslint/typescript-estree/@typescript-eslint/types": ["@typescript-eslint/types@8.32.1", "", {}, "sha512-YmybwXUJcgGqgAp6bEsgpPXEg6dcCyPyCSr0CAAueacR/CCBi25G3V8gGQ2kRzQRBNol7VQknxMs9HvVa9Rvfg=="], + + "detective-typescript/@typescript-eslint/typescript-estree/@typescript-eslint/visitor-keys": ["@typescript-eslint/visitor-keys@8.32.1", "", { "dependencies": { "@typescript-eslint/types": "8.32.1", "eslint-visitor-keys": "^4.2.0" } }, "sha512-ar0tjQfObzhSaW3C3QNmTc5ofj0hDoNQ5XWrCy6zDyabdr0TWhCkClp+rywGNj/odAFBVzzJrK4tEq5M4Hmu4w=="], + + "detective-typescript/@typescript-eslint/typescript-estree/minimatch": ["minimatch@9.0.5", "", { "dependencies": { "brace-expansion": "^2.0.1" } }, "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow=="], + + "glob/minimatch/brace-expansion": ["brace-expansion@2.0.1", "", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA=="], + + "lazystream/readable-stream/safe-buffer": ["safe-buffer@5.1.2", "", {}, "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="], + + "lazystream/readable-stream/string_decoder": ["string_decoder@1.1.1", "", { "dependencies": { "safe-buffer": "~5.1.0" } }, "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="], + + "listhen/@parcel/watcher-wasm/napi-wasm": ["napi-wasm@1.1.3", "", { "bundled": true }, "sha512-h/4nMGsHjZDCYmQVNODIrYACVJ+I9KItbG+0si6W/jSjdA9JbWDoU4LLeMXVcEQGHjttI2tuXqDrbGF7qkUHHg=="], + + "mlly/pkg-types/confbox": ["confbox@0.1.8", "", {}, "sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w=="], + + "nitropack/esbuild/@esbuild/aix-ppc64": ["@esbuild/aix-ppc64@0.25.5", "", { "os": "aix", "cpu": "ppc64" }, "sha512-9o3TMmpmftaCMepOdA5k/yDw8SfInyzWWTjYTFCX3kPSDJMROQTb8jg+h9Cnwnmm1vOzvxN7gIfB5V2ewpjtGA=="], + + "nitropack/esbuild/@esbuild/android-arm": ["@esbuild/android-arm@0.25.5", "", { "os": "android", "cpu": "arm" }, "sha512-AdJKSPeEHgi7/ZhuIPtcQKr5RQdo6OO2IL87JkianiMYMPbCtot9fxPbrMiBADOWWm3T2si9stAiVsGbTQFkbA=="], + + "nitropack/esbuild/@esbuild/android-arm64": ["@esbuild/android-arm64@0.25.5", "", { "os": "android", "cpu": "arm64" }, "sha512-VGzGhj4lJO+TVGV1v8ntCZWJktV7SGCs3Pn1GRWI1SBFtRALoomm8k5E9Pmwg3HOAal2VDc2F9+PM/rEY6oIDg=="], + + "nitropack/esbuild/@esbuild/android-x64": ["@esbuild/android-x64@0.25.5", "", { "os": "android", "cpu": "x64" }, "sha512-D2GyJT1kjvO//drbRT3Hib9XPwQeWd9vZoBJn+bu/lVsOZ13cqNdDeqIF/xQ5/VmWvMduP6AmXvylO/PIc2isw=="], + + "nitropack/esbuild/@esbuild/darwin-arm64": ["@esbuild/darwin-arm64@0.25.5", "", { "os": "darwin", "cpu": "arm64" }, "sha512-GtaBgammVvdF7aPIgH2jxMDdivezgFu6iKpmT+48+F8Hhg5J/sfnDieg0aeG/jfSvkYQU2/pceFPDKlqZzwnfQ=="], + + "nitropack/esbuild/@esbuild/darwin-x64": ["@esbuild/darwin-x64@0.25.5", "", { "os": "darwin", "cpu": "x64" }, "sha512-1iT4FVL0dJ76/q1wd7XDsXrSW+oLoquptvh4CLR4kITDtqi2e/xwXwdCVH8hVHU43wgJdsq7Gxuzcs6Iq/7bxQ=="], + + "nitropack/esbuild/@esbuild/freebsd-arm64": ["@esbuild/freebsd-arm64@0.25.5", "", { "os": "freebsd", "cpu": "arm64" }, "sha512-nk4tGP3JThz4La38Uy/gzyXtpkPW8zSAmoUhK9xKKXdBCzKODMc2adkB2+8om9BDYugz+uGV7sLmpTYzvmz6Sw=="], + + "nitropack/esbuild/@esbuild/freebsd-x64": ["@esbuild/freebsd-x64@0.25.5", "", { "os": "freebsd", "cpu": "x64" }, "sha512-PrikaNjiXdR2laW6OIjlbeuCPrPaAl0IwPIaRv+SMV8CiM8i2LqVUHFC1+8eORgWyY7yhQY+2U2fA55mBzReaw=="], + + "nitropack/esbuild/@esbuild/linux-arm": ["@esbuild/linux-arm@0.25.5", "", { "os": "linux", "cpu": "arm" }, "sha512-cPzojwW2okgh7ZlRpcBEtsX7WBuqbLrNXqLU89GxWbNt6uIg78ET82qifUy3W6OVww6ZWobWub5oqZOVtwolfw=="], + + "nitropack/esbuild/@esbuild/linux-arm64": ["@esbuild/linux-arm64@0.25.5", "", { "os": "linux", "cpu": "arm64" }, "sha512-Z9kfb1v6ZlGbWj8EJk9T6czVEjjq2ntSYLY2cw6pAZl4oKtfgQuS4HOq41M/BcoLPzrUbNd+R4BXFyH//nHxVg=="], + + "nitropack/esbuild/@esbuild/linux-ia32": ["@esbuild/linux-ia32@0.25.5", "", { "os": "linux", "cpu": "ia32" }, "sha512-sQ7l00M8bSv36GLV95BVAdhJ2QsIbCuCjh/uYrWiMQSUuV+LpXwIqhgJDcvMTj+VsQmqAHL2yYaasENvJ7CDKA=="], + + "nitropack/esbuild/@esbuild/linux-loong64": ["@esbuild/linux-loong64@0.25.5", "", { "os": "linux", "cpu": "none" }, "sha512-0ur7ae16hDUC4OL5iEnDb0tZHDxYmuQyhKhsPBV8f99f6Z9KQM02g33f93rNH5A30agMS46u2HP6qTdEt6Q1kg=="], + + "nitropack/esbuild/@esbuild/linux-mips64el": ["@esbuild/linux-mips64el@0.25.5", "", { "os": "linux", "cpu": "none" }, "sha512-kB/66P1OsHO5zLz0i6X0RxlQ+3cu0mkxS3TKFvkb5lin6uwZ/ttOkP3Z8lfR9mJOBk14ZwZ9182SIIWFGNmqmg=="], + + "nitropack/esbuild/@esbuild/linux-ppc64": ["@esbuild/linux-ppc64@0.25.5", "", { "os": "linux", "cpu": "ppc64" }, "sha512-UZCmJ7r9X2fe2D6jBmkLBMQetXPXIsZjQJCjgwpVDz+YMcS6oFR27alkgGv3Oqkv07bxdvw7fyB71/olceJhkQ=="], + + "nitropack/esbuild/@esbuild/linux-riscv64": ["@esbuild/linux-riscv64@0.25.5", "", { "os": "linux", "cpu": "none" }, "sha512-kTxwu4mLyeOlsVIFPfQo+fQJAV9mh24xL+y+Bm6ej067sYANjyEw1dNHmvoqxJUCMnkBdKpvOn0Ahql6+4VyeA=="], + + "nitropack/esbuild/@esbuild/linux-s390x": ["@esbuild/linux-s390x@0.25.5", "", { "os": "linux", "cpu": "s390x" }, "sha512-K2dSKTKfmdh78uJ3NcWFiqyRrimfdinS5ErLSn3vluHNeHVnBAFWC8a4X5N+7FgVE1EjXS1QDZbpqZBjfrqMTQ=="], + + "nitropack/esbuild/@esbuild/linux-x64": ["@esbuild/linux-x64@0.25.5", "", { "os": "linux", "cpu": "x64" }, "sha512-uhj8N2obKTE6pSZ+aMUbqq+1nXxNjZIIjCjGLfsWvVpy7gKCOL6rsY1MhRh9zLtUtAI7vpgLMK6DxjO8Qm9lJw=="], + + "nitropack/esbuild/@esbuild/netbsd-x64": ["@esbuild/netbsd-x64@0.25.5", "", { "os": "none", "cpu": "x64" }, "sha512-WOb5fKrvVTRMfWFNCroYWWklbnXH0Q5rZppjq0vQIdlsQKuw6mdSihwSo4RV/YdQ5UCKKvBy7/0ZZYLBZKIbwQ=="], + + "nitropack/esbuild/@esbuild/openbsd-x64": ["@esbuild/openbsd-x64@0.25.5", "", { "os": "openbsd", "cpu": "x64" }, "sha512-G4hE405ErTWraiZ8UiSoesH8DaCsMm0Cay4fsFWOOUcz8b8rC6uCvnagr+gnioEjWn0wC+o1/TAHt+It+MpIMg=="], + + "nitropack/esbuild/@esbuild/sunos-x64": ["@esbuild/sunos-x64@0.25.5", "", { "os": "sunos", "cpu": "x64" }, "sha512-l+azKShMy7FxzY0Rj4RCt5VD/q8mG/e+mDivgspo+yL8zW7qEwctQ6YqKX34DTEleFAvCIUviCFX1SDZRSyMQA=="], + + "nitropack/esbuild/@esbuild/win32-arm64": ["@esbuild/win32-arm64@0.25.5", "", { "os": "win32", "cpu": "arm64" }, "sha512-O2S7SNZzdcFG7eFKgvwUEZ2VG9D/sn/eIiz8XRZ1Q/DO5a3s76Xv0mdBzVM5j5R639lXQmPmSo0iRpHqUUrsxw=="], + + "nitropack/esbuild/@esbuild/win32-ia32": ["@esbuild/win32-ia32@0.25.5", "", { "os": "win32", "cpu": "ia32" }, "sha512-onOJ02pqs9h1iMJ1PQphR+VZv8qBMQ77Klcsqv9CNW2w6yLqoURLcgERAIurY6QE63bbLuqgP9ATqajFLK5AMQ=="], + + "nitropack/esbuild/@esbuild/win32-x64": ["@esbuild/win32-x64@0.25.5", "", { "os": "win32", "cpu": "x64" }, "sha512-TXv6YnJ8ZMVdX+SXWVBo/0p8LTcrUYngpWjvm91TMjjBQii7Oz11Lw5lbDV5Y0TzuhSJHwiH4hEtC1I42mMS0g=="], + + "nitropack/h3/cookie-es": ["cookie-es@1.2.2", "", {}, "sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg=="], + + "nitropack/serve-static/send": ["send@1.2.0", "", { "dependencies": { "debug": "^4.3.5", "encodeurl": "^2.0.0", "escape-html": "^1.0.3", "etag": "^1.8.1", "fresh": "^2.0.0", "http-errors": "^2.0.0", "mime-types": "^3.0.1", "ms": "^2.1.3", "on-finished": "^2.4.1", "range-parser": "^1.2.1", "statuses": "^2.0.1" } }, "sha512-uaW0WwXKpL9blXE2o0bRhoL2EGXIrZxQ2ZQ4mgcfoBxdFmQold+qWsD2jLrfZ0trjKL6vOw0j//eAwcALFjKSw=="], + + "ora/log-symbols/is-unicode-supported": ["is-unicode-supported@1.3.0", "", {}, "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ=="], + + "pg/pg-types/postgres-array": ["postgres-array@2.0.0", "", {}, "sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA=="], + + "pg/pg-types/postgres-bytea": ["postgres-bytea@1.0.0", "", {}, "sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w=="], + + "pg/pg-types/postgres-date": ["postgres-date@1.0.7", "", {}, "sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q=="], + + "pg/pg-types/postgres-interval": ["postgres-interval@1.2.0", "", { "dependencies": { "xtend": "^4.0.0" } }, "sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ=="], + + "react-email/esbuild/@esbuild/aix-ppc64": ["@esbuild/aix-ppc64@0.25.5", "", { "os": "aix", "cpu": "ppc64" }, "sha512-9o3TMmpmftaCMepOdA5k/yDw8SfInyzWWTjYTFCX3kPSDJMROQTb8jg+h9Cnwnmm1vOzvxN7gIfB5V2ewpjtGA=="], + + "react-email/esbuild/@esbuild/android-arm": ["@esbuild/android-arm@0.25.5", "", { "os": "android", "cpu": "arm" }, "sha512-AdJKSPeEHgi7/ZhuIPtcQKr5RQdo6OO2IL87JkianiMYMPbCtot9fxPbrMiBADOWWm3T2si9stAiVsGbTQFkbA=="], + + "react-email/esbuild/@esbuild/android-arm64": ["@esbuild/android-arm64@0.25.5", "", { "os": "android", "cpu": "arm64" }, "sha512-VGzGhj4lJO+TVGV1v8ntCZWJktV7SGCs3Pn1GRWI1SBFtRALoomm8k5E9Pmwg3HOAal2VDc2F9+PM/rEY6oIDg=="], + + "react-email/esbuild/@esbuild/android-x64": ["@esbuild/android-x64@0.25.5", "", { "os": "android", "cpu": "x64" }, "sha512-D2GyJT1kjvO//drbRT3Hib9XPwQeWd9vZoBJn+bu/lVsOZ13cqNdDeqIF/xQ5/VmWvMduP6AmXvylO/PIc2isw=="], + + "react-email/esbuild/@esbuild/darwin-arm64": ["@esbuild/darwin-arm64@0.25.5", "", { "os": "darwin", "cpu": "arm64" }, "sha512-GtaBgammVvdF7aPIgH2jxMDdivezgFu6iKpmT+48+F8Hhg5J/sfnDieg0aeG/jfSvkYQU2/pceFPDKlqZzwnfQ=="], + + "react-email/esbuild/@esbuild/darwin-x64": ["@esbuild/darwin-x64@0.25.5", "", { "os": "darwin", "cpu": "x64" }, "sha512-1iT4FVL0dJ76/q1wd7XDsXrSW+oLoquptvh4CLR4kITDtqi2e/xwXwdCVH8hVHU43wgJdsq7Gxuzcs6Iq/7bxQ=="], + + "react-email/esbuild/@esbuild/freebsd-arm64": ["@esbuild/freebsd-arm64@0.25.5", "", { "os": "freebsd", "cpu": "arm64" }, "sha512-nk4tGP3JThz4La38Uy/gzyXtpkPW8zSAmoUhK9xKKXdBCzKODMc2adkB2+8om9BDYugz+uGV7sLmpTYzvmz6Sw=="], + + "react-email/esbuild/@esbuild/freebsd-x64": ["@esbuild/freebsd-x64@0.25.5", "", { "os": "freebsd", "cpu": "x64" }, "sha512-PrikaNjiXdR2laW6OIjlbeuCPrPaAl0IwPIaRv+SMV8CiM8i2LqVUHFC1+8eORgWyY7yhQY+2U2fA55mBzReaw=="], + + "react-email/esbuild/@esbuild/linux-arm": ["@esbuild/linux-arm@0.25.5", "", { "os": "linux", "cpu": "arm" }, "sha512-cPzojwW2okgh7ZlRpcBEtsX7WBuqbLrNXqLU89GxWbNt6uIg78ET82qifUy3W6OVww6ZWobWub5oqZOVtwolfw=="], + + "react-email/esbuild/@esbuild/linux-arm64": ["@esbuild/linux-arm64@0.25.5", "", { "os": "linux", "cpu": "arm64" }, "sha512-Z9kfb1v6ZlGbWj8EJk9T6czVEjjq2ntSYLY2cw6pAZl4oKtfgQuS4HOq41M/BcoLPzrUbNd+R4BXFyH//nHxVg=="], + + "react-email/esbuild/@esbuild/linux-ia32": ["@esbuild/linux-ia32@0.25.5", "", { "os": "linux", "cpu": "ia32" }, "sha512-sQ7l00M8bSv36GLV95BVAdhJ2QsIbCuCjh/uYrWiMQSUuV+LpXwIqhgJDcvMTj+VsQmqAHL2yYaasENvJ7CDKA=="], + + "react-email/esbuild/@esbuild/linux-loong64": ["@esbuild/linux-loong64@0.25.5", "", { "os": "linux", "cpu": "none" }, "sha512-0ur7ae16hDUC4OL5iEnDb0tZHDxYmuQyhKhsPBV8f99f6Z9KQM02g33f93rNH5A30agMS46u2HP6qTdEt6Q1kg=="], + + "react-email/esbuild/@esbuild/linux-mips64el": ["@esbuild/linux-mips64el@0.25.5", "", { "os": "linux", "cpu": "none" }, "sha512-kB/66P1OsHO5zLz0i6X0RxlQ+3cu0mkxS3TKFvkb5lin6uwZ/ttOkP3Z8lfR9mJOBk14ZwZ9182SIIWFGNmqmg=="], + + "react-email/esbuild/@esbuild/linux-ppc64": ["@esbuild/linux-ppc64@0.25.5", "", { "os": "linux", "cpu": "ppc64" }, "sha512-UZCmJ7r9X2fe2D6jBmkLBMQetXPXIsZjQJCjgwpVDz+YMcS6oFR27alkgGv3Oqkv07bxdvw7fyB71/olceJhkQ=="], + + "react-email/esbuild/@esbuild/linux-riscv64": ["@esbuild/linux-riscv64@0.25.5", "", { "os": "linux", "cpu": "none" }, "sha512-kTxwu4mLyeOlsVIFPfQo+fQJAV9mh24xL+y+Bm6ej067sYANjyEw1dNHmvoqxJUCMnkBdKpvOn0Ahql6+4VyeA=="], + + "react-email/esbuild/@esbuild/linux-s390x": ["@esbuild/linux-s390x@0.25.5", "", { "os": "linux", "cpu": "s390x" }, "sha512-K2dSKTKfmdh78uJ3NcWFiqyRrimfdinS5ErLSn3vluHNeHVnBAFWC8a4X5N+7FgVE1EjXS1QDZbpqZBjfrqMTQ=="], + + "react-email/esbuild/@esbuild/linux-x64": ["@esbuild/linux-x64@0.25.5", "", { "os": "linux", "cpu": "x64" }, "sha512-uhj8N2obKTE6pSZ+aMUbqq+1nXxNjZIIjCjGLfsWvVpy7gKCOL6rsY1MhRh9zLtUtAI7vpgLMK6DxjO8Qm9lJw=="], + + "react-email/esbuild/@esbuild/netbsd-x64": ["@esbuild/netbsd-x64@0.25.5", "", { "os": "none", "cpu": "x64" }, "sha512-WOb5fKrvVTRMfWFNCroYWWklbnXH0Q5rZppjq0vQIdlsQKuw6mdSihwSo4RV/YdQ5UCKKvBy7/0ZZYLBZKIbwQ=="], + + "react-email/esbuild/@esbuild/openbsd-x64": ["@esbuild/openbsd-x64@0.25.5", "", { "os": "openbsd", "cpu": "x64" }, "sha512-G4hE405ErTWraiZ8UiSoesH8DaCsMm0Cay4fsFWOOUcz8b8rC6uCvnagr+gnioEjWn0wC+o1/TAHt+It+MpIMg=="], + + "react-email/esbuild/@esbuild/sunos-x64": ["@esbuild/sunos-x64@0.25.5", "", { "os": "sunos", "cpu": "x64" }, "sha512-l+azKShMy7FxzY0Rj4RCt5VD/q8mG/e+mDivgspo+yL8zW7qEwctQ6YqKX34DTEleFAvCIUviCFX1SDZRSyMQA=="], + + "react-email/esbuild/@esbuild/win32-arm64": ["@esbuild/win32-arm64@0.25.5", "", { "os": "win32", "cpu": "arm64" }, "sha512-O2S7SNZzdcFG7eFKgvwUEZ2VG9D/sn/eIiz8XRZ1Q/DO5a3s76Xv0mdBzVM5j5R639lXQmPmSo0iRpHqUUrsxw=="], + + "react-email/esbuild/@esbuild/win32-ia32": ["@esbuild/win32-ia32@0.25.5", "", { "os": "win32", "cpu": "ia32" }, "sha512-onOJ02pqs9h1iMJ1PQphR+VZv8qBMQ77Klcsqv9CNW2w6yLqoURLcgERAIurY6QE63bbLuqgP9ATqajFLK5AMQ=="], + + "react-email/esbuild/@esbuild/win32-x64": ["@esbuild/win32-x64@0.25.5", "", { "os": "win32", "cpu": "x64" }, "sha512-TXv6YnJ8ZMVdX+SXWVBo/0p8LTcrUYngpWjvm91TMjjBQii7Oz11Lw5lbDV5Y0TzuhSJHwiH4hEtC1I42mMS0g=="], + + "readdir-glob/minimatch/brace-expansion": ["brace-expansion@2.0.1", "", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA=="], + + "send/debug/ms": ["ms@2.0.0", "", {}, "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="], + + "string-width-cjs/strip-ansi/ansi-regex": ["ansi-regex@5.0.1", "", {}, "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="], + + "tsx/esbuild/@esbuild/aix-ppc64": ["@esbuild/aix-ppc64@0.25.5", "", { "os": "aix", "cpu": "ppc64" }, "sha512-9o3TMmpmftaCMepOdA5k/yDw8SfInyzWWTjYTFCX3kPSDJMROQTb8jg+h9Cnwnmm1vOzvxN7gIfB5V2ewpjtGA=="], + + "tsx/esbuild/@esbuild/android-arm": ["@esbuild/android-arm@0.25.5", "", { "os": "android", "cpu": "arm" }, "sha512-AdJKSPeEHgi7/ZhuIPtcQKr5RQdo6OO2IL87JkianiMYMPbCtot9fxPbrMiBADOWWm3T2si9stAiVsGbTQFkbA=="], + + "tsx/esbuild/@esbuild/android-arm64": ["@esbuild/android-arm64@0.25.5", "", { "os": "android", "cpu": "arm64" }, "sha512-VGzGhj4lJO+TVGV1v8ntCZWJktV7SGCs3Pn1GRWI1SBFtRALoomm8k5E9Pmwg3HOAal2VDc2F9+PM/rEY6oIDg=="], + + "tsx/esbuild/@esbuild/android-x64": ["@esbuild/android-x64@0.25.5", "", { "os": "android", "cpu": "x64" }, "sha512-D2GyJT1kjvO//drbRT3Hib9XPwQeWd9vZoBJn+bu/lVsOZ13cqNdDeqIF/xQ5/VmWvMduP6AmXvylO/PIc2isw=="], + + "tsx/esbuild/@esbuild/darwin-arm64": ["@esbuild/darwin-arm64@0.25.5", "", { "os": "darwin", "cpu": "arm64" }, "sha512-GtaBgammVvdF7aPIgH2jxMDdivezgFu6iKpmT+48+F8Hhg5J/sfnDieg0aeG/jfSvkYQU2/pceFPDKlqZzwnfQ=="], + + "tsx/esbuild/@esbuild/darwin-x64": ["@esbuild/darwin-x64@0.25.5", "", { "os": "darwin", "cpu": "x64" }, "sha512-1iT4FVL0dJ76/q1wd7XDsXrSW+oLoquptvh4CLR4kITDtqi2e/xwXwdCVH8hVHU43wgJdsq7Gxuzcs6Iq/7bxQ=="], + + "tsx/esbuild/@esbuild/freebsd-arm64": ["@esbuild/freebsd-arm64@0.25.5", "", { "os": "freebsd", "cpu": "arm64" }, "sha512-nk4tGP3JThz4La38Uy/gzyXtpkPW8zSAmoUhK9xKKXdBCzKODMc2adkB2+8om9BDYugz+uGV7sLmpTYzvmz6Sw=="], + + "tsx/esbuild/@esbuild/freebsd-x64": ["@esbuild/freebsd-x64@0.25.5", "", { "os": "freebsd", "cpu": "x64" }, "sha512-PrikaNjiXdR2laW6OIjlbeuCPrPaAl0IwPIaRv+SMV8CiM8i2LqVUHFC1+8eORgWyY7yhQY+2U2fA55mBzReaw=="], + + "tsx/esbuild/@esbuild/linux-arm": ["@esbuild/linux-arm@0.25.5", "", { "os": "linux", "cpu": "arm" }, "sha512-cPzojwW2okgh7ZlRpcBEtsX7WBuqbLrNXqLU89GxWbNt6uIg78ET82qifUy3W6OVww6ZWobWub5oqZOVtwolfw=="], + + "tsx/esbuild/@esbuild/linux-arm64": ["@esbuild/linux-arm64@0.25.5", "", { "os": "linux", "cpu": "arm64" }, "sha512-Z9kfb1v6ZlGbWj8EJk9T6czVEjjq2ntSYLY2cw6pAZl4oKtfgQuS4HOq41M/BcoLPzrUbNd+R4BXFyH//nHxVg=="], + + "tsx/esbuild/@esbuild/linux-ia32": ["@esbuild/linux-ia32@0.25.5", "", { "os": "linux", "cpu": "ia32" }, "sha512-sQ7l00M8bSv36GLV95BVAdhJ2QsIbCuCjh/uYrWiMQSUuV+LpXwIqhgJDcvMTj+VsQmqAHL2yYaasENvJ7CDKA=="], + + "tsx/esbuild/@esbuild/linux-loong64": ["@esbuild/linux-loong64@0.25.5", "", { "os": "linux", "cpu": "none" }, "sha512-0ur7ae16hDUC4OL5iEnDb0tZHDxYmuQyhKhsPBV8f99f6Z9KQM02g33f93rNH5A30agMS46u2HP6qTdEt6Q1kg=="], + + "tsx/esbuild/@esbuild/linux-mips64el": ["@esbuild/linux-mips64el@0.25.5", "", { "os": "linux", "cpu": "none" }, "sha512-kB/66P1OsHO5zLz0i6X0RxlQ+3cu0mkxS3TKFvkb5lin6uwZ/ttOkP3Z8lfR9mJOBk14ZwZ9182SIIWFGNmqmg=="], + + "tsx/esbuild/@esbuild/linux-ppc64": ["@esbuild/linux-ppc64@0.25.5", "", { "os": "linux", "cpu": "ppc64" }, "sha512-UZCmJ7r9X2fe2D6jBmkLBMQetXPXIsZjQJCjgwpVDz+YMcS6oFR27alkgGv3Oqkv07bxdvw7fyB71/olceJhkQ=="], + + "tsx/esbuild/@esbuild/linux-riscv64": ["@esbuild/linux-riscv64@0.25.5", "", { "os": "linux", "cpu": "none" }, "sha512-kTxwu4mLyeOlsVIFPfQo+fQJAV9mh24xL+y+Bm6ej067sYANjyEw1dNHmvoqxJUCMnkBdKpvOn0Ahql6+4VyeA=="], + + "tsx/esbuild/@esbuild/linux-s390x": ["@esbuild/linux-s390x@0.25.5", "", { "os": "linux", "cpu": "s390x" }, "sha512-K2dSKTKfmdh78uJ3NcWFiqyRrimfdinS5ErLSn3vluHNeHVnBAFWC8a4X5N+7FgVE1EjXS1QDZbpqZBjfrqMTQ=="], + + "tsx/esbuild/@esbuild/linux-x64": ["@esbuild/linux-x64@0.25.5", "", { "os": "linux", "cpu": "x64" }, "sha512-uhj8N2obKTE6pSZ+aMUbqq+1nXxNjZIIjCjGLfsWvVpy7gKCOL6rsY1MhRh9zLtUtAI7vpgLMK6DxjO8Qm9lJw=="], + + "tsx/esbuild/@esbuild/netbsd-x64": ["@esbuild/netbsd-x64@0.25.5", "", { "os": "none", "cpu": "x64" }, "sha512-WOb5fKrvVTRMfWFNCroYWWklbnXH0Q5rZppjq0vQIdlsQKuw6mdSihwSo4RV/YdQ5UCKKvBy7/0ZZYLBZKIbwQ=="], + + "tsx/esbuild/@esbuild/openbsd-x64": ["@esbuild/openbsd-x64@0.25.5", "", { "os": "openbsd", "cpu": "x64" }, "sha512-G4hE405ErTWraiZ8UiSoesH8DaCsMm0Cay4fsFWOOUcz8b8rC6uCvnagr+gnioEjWn0wC+o1/TAHt+It+MpIMg=="], + + "tsx/esbuild/@esbuild/sunos-x64": ["@esbuild/sunos-x64@0.25.5", "", { "os": "sunos", "cpu": "x64" }, "sha512-l+azKShMy7FxzY0Rj4RCt5VD/q8mG/e+mDivgspo+yL8zW7qEwctQ6YqKX34DTEleFAvCIUviCFX1SDZRSyMQA=="], + + "tsx/esbuild/@esbuild/win32-arm64": ["@esbuild/win32-arm64@0.25.5", "", { "os": "win32", "cpu": "arm64" }, "sha512-O2S7SNZzdcFG7eFKgvwUEZ2VG9D/sn/eIiz8XRZ1Q/DO5a3s76Xv0mdBzVM5j5R639lXQmPmSo0iRpHqUUrsxw=="], + + "tsx/esbuild/@esbuild/win32-ia32": ["@esbuild/win32-ia32@0.25.5", "", { "os": "win32", "cpu": "ia32" }, "sha512-onOJ02pqs9h1iMJ1PQphR+VZv8qBMQ77Klcsqv9CNW2w6yLqoURLcgERAIurY6QE63bbLuqgP9ATqajFLK5AMQ=="], + + "tsx/esbuild/@esbuild/win32-x64": ["@esbuild/win32-x64@0.25.5", "", { "os": "win32", "cpu": "x64" }, "sha512-TXv6YnJ8ZMVdX+SXWVBo/0p8LTcrUYngpWjvm91TMjjBQii7Oz11Lw5lbDV5Y0TzuhSJHwiH4hEtC1I42mMS0g=="], + + "unwasm/pkg-types/confbox": ["confbox@0.1.8", "", {}, "sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w=="], + + "unwasm/pkg-types/pathe": ["pathe@2.0.3", "", {}, "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w=="], + + "vinxi/chokidar/glob-parent": ["glob-parent@5.1.2", "", { "dependencies": { "is-glob": "^4.0.1" } }, "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="], + + "vinxi/chokidar/readdirp": ["readdirp@3.6.0", "", { "dependencies": { "picomatch": "^2.2.1" } }, "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA=="], + + "vinxi/esbuild/@esbuild/aix-ppc64": ["@esbuild/aix-ppc64@0.20.2", "", { "os": "aix", "cpu": "ppc64" }, "sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g=="], + + "vinxi/esbuild/@esbuild/android-arm": ["@esbuild/android-arm@0.20.2", "", { "os": "android", "cpu": "arm" }, "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w=="], + + "vinxi/esbuild/@esbuild/android-arm64": ["@esbuild/android-arm64@0.20.2", "", { "os": "android", "cpu": "arm64" }, "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg=="], + + "vinxi/esbuild/@esbuild/android-x64": ["@esbuild/android-x64@0.20.2", "", { "os": "android", "cpu": "x64" }, "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg=="], + + "vinxi/esbuild/@esbuild/darwin-arm64": ["@esbuild/darwin-arm64@0.20.2", "", { "os": "darwin", "cpu": "arm64" }, "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA=="], + + "vinxi/esbuild/@esbuild/darwin-x64": ["@esbuild/darwin-x64@0.20.2", "", { "os": "darwin", "cpu": "x64" }, "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA=="], + + "vinxi/esbuild/@esbuild/freebsd-arm64": ["@esbuild/freebsd-arm64@0.20.2", "", { "os": "freebsd", "cpu": "arm64" }, "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw=="], + + "vinxi/esbuild/@esbuild/freebsd-x64": ["@esbuild/freebsd-x64@0.20.2", "", { "os": "freebsd", "cpu": "x64" }, "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw=="], + + "vinxi/esbuild/@esbuild/linux-arm": ["@esbuild/linux-arm@0.20.2", "", { "os": "linux", "cpu": "arm" }, "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg=="], + + "vinxi/esbuild/@esbuild/linux-arm64": ["@esbuild/linux-arm64@0.20.2", "", { "os": "linux", "cpu": "arm64" }, "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A=="], + + "vinxi/esbuild/@esbuild/linux-ia32": ["@esbuild/linux-ia32@0.20.2", "", { "os": "linux", "cpu": "ia32" }, "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig=="], + + "vinxi/esbuild/@esbuild/linux-loong64": ["@esbuild/linux-loong64@0.20.2", "", { "os": "linux", "cpu": "none" }, "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ=="], + + "vinxi/esbuild/@esbuild/linux-mips64el": ["@esbuild/linux-mips64el@0.20.2", "", { "os": "linux", "cpu": "none" }, "sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA=="], + + "vinxi/esbuild/@esbuild/linux-ppc64": ["@esbuild/linux-ppc64@0.20.2", "", { "os": "linux", "cpu": "ppc64" }, "sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg=="], + + "vinxi/esbuild/@esbuild/linux-riscv64": ["@esbuild/linux-riscv64@0.20.2", "", { "os": "linux", "cpu": "none" }, "sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg=="], + + "vinxi/esbuild/@esbuild/linux-s390x": ["@esbuild/linux-s390x@0.20.2", "", { "os": "linux", "cpu": "s390x" }, "sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ=="], + + "vinxi/esbuild/@esbuild/linux-x64": ["@esbuild/linux-x64@0.20.2", "", { "os": "linux", "cpu": "x64" }, "sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw=="], + + "vinxi/esbuild/@esbuild/netbsd-x64": ["@esbuild/netbsd-x64@0.20.2", "", { "os": "none", "cpu": "x64" }, "sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ=="], + + "vinxi/esbuild/@esbuild/openbsd-x64": ["@esbuild/openbsd-x64@0.20.2", "", { "os": "openbsd", "cpu": "x64" }, "sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ=="], + + "vinxi/esbuild/@esbuild/sunos-x64": ["@esbuild/sunos-x64@0.20.2", "", { "os": "sunos", "cpu": "x64" }, "sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w=="], + + "vinxi/esbuild/@esbuild/win32-arm64": ["@esbuild/win32-arm64@0.20.2", "", { "os": "win32", "cpu": "arm64" }, "sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ=="], + + "vinxi/esbuild/@esbuild/win32-ia32": ["@esbuild/win32-ia32@0.20.2", "", { "os": "win32", "cpu": "ia32" }, "sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ=="], + + "vinxi/esbuild/@esbuild/win32-x64": ["@esbuild/win32-x64@0.20.2", "", { "os": "win32", "cpu": "x64" }, "sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ=="], + + "vite/esbuild/@esbuild/aix-ppc64": ["@esbuild/aix-ppc64@0.25.5", "", { "os": "aix", "cpu": "ppc64" }, "sha512-9o3TMmpmftaCMepOdA5k/yDw8SfInyzWWTjYTFCX3kPSDJMROQTb8jg+h9Cnwnmm1vOzvxN7gIfB5V2ewpjtGA=="], + + "vite/esbuild/@esbuild/android-arm": ["@esbuild/android-arm@0.25.5", "", { "os": "android", "cpu": "arm" }, "sha512-AdJKSPeEHgi7/ZhuIPtcQKr5RQdo6OO2IL87JkianiMYMPbCtot9fxPbrMiBADOWWm3T2si9stAiVsGbTQFkbA=="], + + "vite/esbuild/@esbuild/android-arm64": ["@esbuild/android-arm64@0.25.5", "", { "os": "android", "cpu": "arm64" }, "sha512-VGzGhj4lJO+TVGV1v8ntCZWJktV7SGCs3Pn1GRWI1SBFtRALoomm8k5E9Pmwg3HOAal2VDc2F9+PM/rEY6oIDg=="], + + "vite/esbuild/@esbuild/android-x64": ["@esbuild/android-x64@0.25.5", "", { "os": "android", "cpu": "x64" }, "sha512-D2GyJT1kjvO//drbRT3Hib9XPwQeWd9vZoBJn+bu/lVsOZ13cqNdDeqIF/xQ5/VmWvMduP6AmXvylO/PIc2isw=="], + + "vite/esbuild/@esbuild/darwin-arm64": ["@esbuild/darwin-arm64@0.25.5", "", { "os": "darwin", "cpu": "arm64" }, "sha512-GtaBgammVvdF7aPIgH2jxMDdivezgFu6iKpmT+48+F8Hhg5J/sfnDieg0aeG/jfSvkYQU2/pceFPDKlqZzwnfQ=="], + + "vite/esbuild/@esbuild/darwin-x64": ["@esbuild/darwin-x64@0.25.5", "", { "os": "darwin", "cpu": "x64" }, "sha512-1iT4FVL0dJ76/q1wd7XDsXrSW+oLoquptvh4CLR4kITDtqi2e/xwXwdCVH8hVHU43wgJdsq7Gxuzcs6Iq/7bxQ=="], + + "vite/esbuild/@esbuild/freebsd-arm64": ["@esbuild/freebsd-arm64@0.25.5", "", { "os": "freebsd", "cpu": "arm64" }, "sha512-nk4tGP3JThz4La38Uy/gzyXtpkPW8zSAmoUhK9xKKXdBCzKODMc2adkB2+8om9BDYugz+uGV7sLmpTYzvmz6Sw=="], + + "vite/esbuild/@esbuild/freebsd-x64": ["@esbuild/freebsd-x64@0.25.5", "", { "os": "freebsd", "cpu": "x64" }, "sha512-PrikaNjiXdR2laW6OIjlbeuCPrPaAl0IwPIaRv+SMV8CiM8i2LqVUHFC1+8eORgWyY7yhQY+2U2fA55mBzReaw=="], + + "vite/esbuild/@esbuild/linux-arm": ["@esbuild/linux-arm@0.25.5", "", { "os": "linux", "cpu": "arm" }, "sha512-cPzojwW2okgh7ZlRpcBEtsX7WBuqbLrNXqLU89GxWbNt6uIg78ET82qifUy3W6OVww6ZWobWub5oqZOVtwolfw=="], + + "vite/esbuild/@esbuild/linux-arm64": ["@esbuild/linux-arm64@0.25.5", "", { "os": "linux", "cpu": "arm64" }, "sha512-Z9kfb1v6ZlGbWj8EJk9T6czVEjjq2ntSYLY2cw6pAZl4oKtfgQuS4HOq41M/BcoLPzrUbNd+R4BXFyH//nHxVg=="], + + "vite/esbuild/@esbuild/linux-ia32": ["@esbuild/linux-ia32@0.25.5", "", { "os": "linux", "cpu": "ia32" }, "sha512-sQ7l00M8bSv36GLV95BVAdhJ2QsIbCuCjh/uYrWiMQSUuV+LpXwIqhgJDcvMTj+VsQmqAHL2yYaasENvJ7CDKA=="], + + "vite/esbuild/@esbuild/linux-loong64": ["@esbuild/linux-loong64@0.25.5", "", { "os": "linux", "cpu": "none" }, "sha512-0ur7ae16hDUC4OL5iEnDb0tZHDxYmuQyhKhsPBV8f99f6Z9KQM02g33f93rNH5A30agMS46u2HP6qTdEt6Q1kg=="], + + "vite/esbuild/@esbuild/linux-mips64el": ["@esbuild/linux-mips64el@0.25.5", "", { "os": "linux", "cpu": "none" }, "sha512-kB/66P1OsHO5zLz0i6X0RxlQ+3cu0mkxS3TKFvkb5lin6uwZ/ttOkP3Z8lfR9mJOBk14ZwZ9182SIIWFGNmqmg=="], + + "vite/esbuild/@esbuild/linux-ppc64": ["@esbuild/linux-ppc64@0.25.5", "", { "os": "linux", "cpu": "ppc64" }, "sha512-UZCmJ7r9X2fe2D6jBmkLBMQetXPXIsZjQJCjgwpVDz+YMcS6oFR27alkgGv3Oqkv07bxdvw7fyB71/olceJhkQ=="], + + "vite/esbuild/@esbuild/linux-riscv64": ["@esbuild/linux-riscv64@0.25.5", "", { "os": "linux", "cpu": "none" }, "sha512-kTxwu4mLyeOlsVIFPfQo+fQJAV9mh24xL+y+Bm6ej067sYANjyEw1dNHmvoqxJUCMnkBdKpvOn0Ahql6+4VyeA=="], + + "vite/esbuild/@esbuild/linux-s390x": ["@esbuild/linux-s390x@0.25.5", "", { "os": "linux", "cpu": "s390x" }, "sha512-K2dSKTKfmdh78uJ3NcWFiqyRrimfdinS5ErLSn3vluHNeHVnBAFWC8a4X5N+7FgVE1EjXS1QDZbpqZBjfrqMTQ=="], + + "vite/esbuild/@esbuild/linux-x64": ["@esbuild/linux-x64@0.25.5", "", { "os": "linux", "cpu": "x64" }, "sha512-uhj8N2obKTE6pSZ+aMUbqq+1nXxNjZIIjCjGLfsWvVpy7gKCOL6rsY1MhRh9zLtUtAI7vpgLMK6DxjO8Qm9lJw=="], + + "vite/esbuild/@esbuild/netbsd-x64": ["@esbuild/netbsd-x64@0.25.5", "", { "os": "none", "cpu": "x64" }, "sha512-WOb5fKrvVTRMfWFNCroYWWklbnXH0Q5rZppjq0vQIdlsQKuw6mdSihwSo4RV/YdQ5UCKKvBy7/0ZZYLBZKIbwQ=="], + + "vite/esbuild/@esbuild/openbsd-x64": ["@esbuild/openbsd-x64@0.25.5", "", { "os": "openbsd", "cpu": "x64" }, "sha512-G4hE405ErTWraiZ8UiSoesH8DaCsMm0Cay4fsFWOOUcz8b8rC6uCvnagr+gnioEjWn0wC+o1/TAHt+It+MpIMg=="], + + "vite/esbuild/@esbuild/sunos-x64": ["@esbuild/sunos-x64@0.25.5", "", { "os": "sunos", "cpu": "x64" }, "sha512-l+azKShMy7FxzY0Rj4RCt5VD/q8mG/e+mDivgspo+yL8zW7qEwctQ6YqKX34DTEleFAvCIUviCFX1SDZRSyMQA=="], + + "vite/esbuild/@esbuild/win32-arm64": ["@esbuild/win32-arm64@0.25.5", "", { "os": "win32", "cpu": "arm64" }, "sha512-O2S7SNZzdcFG7eFKgvwUEZ2VG9D/sn/eIiz8XRZ1Q/DO5a3s76Xv0mdBzVM5j5R639lXQmPmSo0iRpHqUUrsxw=="], + + "vite/esbuild/@esbuild/win32-ia32": ["@esbuild/win32-ia32@0.25.5", "", { "os": "win32", "cpu": "ia32" }, "sha512-onOJ02pqs9h1iMJ1PQphR+VZv8qBMQ77Klcsqv9CNW2w6yLqoURLcgERAIurY6QE63bbLuqgP9ATqajFLK5AMQ=="], + + "vite/esbuild/@esbuild/win32-x64": ["@esbuild/win32-x64@0.25.5", "", { "os": "win32", "cpu": "x64" }, "sha512-TXv6YnJ8ZMVdX+SXWVBo/0p8LTcrUYngpWjvm91TMjjBQii7Oz11Lw5lbDV5Y0TzuhSJHwiH4hEtC1I42mMS0g=="], + + "widest-line/string-width/emoji-regex": ["emoji-regex@9.2.2", "", {}, "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="], + + "wrap-ansi-cjs/string-width/emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="], + + "wrap-ansi-cjs/strip-ansi/ansi-regex": ["ansi-regex@5.0.1", "", {}, "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="], + + "wrap-ansi/string-width/emoji-regex": ["emoji-regex@9.2.2", "", {}, "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="], + + "yargs/string-width/emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="], + + "yargs/string-width/strip-ansi": ["strip-ansi@6.0.1", "", { "dependencies": { "ansi-regex": "^5.0.1" } }, "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="], + + "@netlify/dev-utils/find-up/locate-path/p-locate": ["p-locate@6.0.0", "", { "dependencies": { "p-limit": "^4.0.0" } }, "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw=="], + + "@netlify/zip-it-and-ship-it/glob/minimatch/brace-expansion": ["brace-expansion@2.0.1", "", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA=="], + + "@netlify/zip-it-and-ship-it/locate-path/p-locate/p-limit": ["p-limit@4.0.0", "", { "dependencies": { "yocto-queue": "^1.0.0" } }, "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ=="], + + "@tanstack/directive-functions-plugin/vite/esbuild/@esbuild/aix-ppc64": ["@esbuild/aix-ppc64@0.24.2", "", { "os": "aix", "cpu": "ppc64" }, "sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA=="], + + "@tanstack/directive-functions-plugin/vite/esbuild/@esbuild/android-arm": ["@esbuild/android-arm@0.24.2", "", { "os": "android", "cpu": "arm" }, "sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q=="], + + "@tanstack/directive-functions-plugin/vite/esbuild/@esbuild/android-arm64": ["@esbuild/android-arm64@0.24.2", "", { "os": "android", "cpu": "arm64" }, "sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg=="], + + "@tanstack/directive-functions-plugin/vite/esbuild/@esbuild/android-x64": ["@esbuild/android-x64@0.24.2", "", { "os": "android", "cpu": "x64" }, "sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw=="], + + "@tanstack/directive-functions-plugin/vite/esbuild/@esbuild/darwin-arm64": ["@esbuild/darwin-arm64@0.24.2", "", { "os": "darwin", "cpu": "arm64" }, "sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA=="], + + "@tanstack/directive-functions-plugin/vite/esbuild/@esbuild/darwin-x64": ["@esbuild/darwin-x64@0.24.2", "", { "os": "darwin", "cpu": "x64" }, "sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA=="], + + "@tanstack/directive-functions-plugin/vite/esbuild/@esbuild/freebsd-arm64": ["@esbuild/freebsd-arm64@0.24.2", "", { "os": "freebsd", "cpu": "arm64" }, "sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg=="], + + "@tanstack/directive-functions-plugin/vite/esbuild/@esbuild/freebsd-x64": ["@esbuild/freebsd-x64@0.24.2", "", { "os": "freebsd", "cpu": "x64" }, "sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q=="], + + "@tanstack/directive-functions-plugin/vite/esbuild/@esbuild/linux-arm": ["@esbuild/linux-arm@0.24.2", "", { "os": "linux", "cpu": "arm" }, "sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA=="], + + "@tanstack/directive-functions-plugin/vite/esbuild/@esbuild/linux-arm64": ["@esbuild/linux-arm64@0.24.2", "", { "os": "linux", "cpu": "arm64" }, "sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg=="], + + "@tanstack/directive-functions-plugin/vite/esbuild/@esbuild/linux-ia32": ["@esbuild/linux-ia32@0.24.2", "", { "os": "linux", "cpu": "ia32" }, "sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw=="], + + "@tanstack/directive-functions-plugin/vite/esbuild/@esbuild/linux-loong64": ["@esbuild/linux-loong64@0.24.2", "", { "os": "linux", "cpu": "none" }, "sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ=="], + + "@tanstack/directive-functions-plugin/vite/esbuild/@esbuild/linux-mips64el": ["@esbuild/linux-mips64el@0.24.2", "", { "os": "linux", "cpu": "none" }, "sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw=="], + + "@tanstack/directive-functions-plugin/vite/esbuild/@esbuild/linux-ppc64": ["@esbuild/linux-ppc64@0.24.2", "", { "os": "linux", "cpu": "ppc64" }, "sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw=="], + + "@tanstack/directive-functions-plugin/vite/esbuild/@esbuild/linux-riscv64": ["@esbuild/linux-riscv64@0.24.2", "", { "os": "linux", "cpu": "none" }, "sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q=="], + + "@tanstack/directive-functions-plugin/vite/esbuild/@esbuild/linux-s390x": ["@esbuild/linux-s390x@0.24.2", "", { "os": "linux", "cpu": "s390x" }, "sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw=="], + + "@tanstack/directive-functions-plugin/vite/esbuild/@esbuild/linux-x64": ["@esbuild/linux-x64@0.24.2", "", { "os": "linux", "cpu": "x64" }, "sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q=="], + + "@tanstack/directive-functions-plugin/vite/esbuild/@esbuild/netbsd-arm64": ["@esbuild/netbsd-arm64@0.24.2", "", { "os": "none", "cpu": "arm64" }, "sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw=="], + + "@tanstack/directive-functions-plugin/vite/esbuild/@esbuild/netbsd-x64": ["@esbuild/netbsd-x64@0.24.2", "", { "os": "none", "cpu": "x64" }, "sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw=="], + + "@tanstack/directive-functions-plugin/vite/esbuild/@esbuild/openbsd-arm64": ["@esbuild/openbsd-arm64@0.24.2", "", { "os": "openbsd", "cpu": "arm64" }, "sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A=="], + + "@tanstack/directive-functions-plugin/vite/esbuild/@esbuild/openbsd-x64": ["@esbuild/openbsd-x64@0.24.2", "", { "os": "openbsd", "cpu": "x64" }, "sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA=="], + + "@tanstack/directive-functions-plugin/vite/esbuild/@esbuild/sunos-x64": ["@esbuild/sunos-x64@0.24.2", "", { "os": "sunos", "cpu": "x64" }, "sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig=="], + + "@tanstack/directive-functions-plugin/vite/esbuild/@esbuild/win32-arm64": ["@esbuild/win32-arm64@0.24.2", "", { "os": "win32", "cpu": "arm64" }, "sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ=="], + + "@tanstack/directive-functions-plugin/vite/esbuild/@esbuild/win32-ia32": ["@esbuild/win32-ia32@0.24.2", "", { "os": "win32", "cpu": "ia32" }, "sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA=="], + + "@tanstack/directive-functions-plugin/vite/esbuild/@esbuild/win32-x64": ["@esbuild/win32-x64@0.24.2", "", { "os": "win32", "cpu": "x64" }, "sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg=="], + + "@tanstack/react-start-plugin/vite/esbuild/@esbuild/aix-ppc64": ["@esbuild/aix-ppc64@0.24.2", "", { "os": "aix", "cpu": "ppc64" }, "sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA=="], + + "@tanstack/react-start-plugin/vite/esbuild/@esbuild/android-arm": ["@esbuild/android-arm@0.24.2", "", { "os": "android", "cpu": "arm" }, "sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q=="], + + "@tanstack/react-start-plugin/vite/esbuild/@esbuild/android-arm64": ["@esbuild/android-arm64@0.24.2", "", { "os": "android", "cpu": "arm64" }, "sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg=="], + + "@tanstack/react-start-plugin/vite/esbuild/@esbuild/android-x64": ["@esbuild/android-x64@0.24.2", "", { "os": "android", "cpu": "x64" }, "sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw=="], + + "@tanstack/react-start-plugin/vite/esbuild/@esbuild/darwin-arm64": ["@esbuild/darwin-arm64@0.24.2", "", { "os": "darwin", "cpu": "arm64" }, "sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA=="], + + "@tanstack/react-start-plugin/vite/esbuild/@esbuild/darwin-x64": ["@esbuild/darwin-x64@0.24.2", "", { "os": "darwin", "cpu": "x64" }, "sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA=="], + + "@tanstack/react-start-plugin/vite/esbuild/@esbuild/freebsd-arm64": ["@esbuild/freebsd-arm64@0.24.2", "", { "os": "freebsd", "cpu": "arm64" }, "sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg=="], + + "@tanstack/react-start-plugin/vite/esbuild/@esbuild/freebsd-x64": ["@esbuild/freebsd-x64@0.24.2", "", { "os": "freebsd", "cpu": "x64" }, "sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q=="], + + "@tanstack/react-start-plugin/vite/esbuild/@esbuild/linux-arm": ["@esbuild/linux-arm@0.24.2", "", { "os": "linux", "cpu": "arm" }, "sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA=="], + + "@tanstack/react-start-plugin/vite/esbuild/@esbuild/linux-arm64": ["@esbuild/linux-arm64@0.24.2", "", { "os": "linux", "cpu": "arm64" }, "sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg=="], + + "@tanstack/react-start-plugin/vite/esbuild/@esbuild/linux-ia32": ["@esbuild/linux-ia32@0.24.2", "", { "os": "linux", "cpu": "ia32" }, "sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw=="], + + "@tanstack/react-start-plugin/vite/esbuild/@esbuild/linux-loong64": ["@esbuild/linux-loong64@0.24.2", "", { "os": "linux", "cpu": "none" }, "sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ=="], + + "@tanstack/react-start-plugin/vite/esbuild/@esbuild/linux-mips64el": ["@esbuild/linux-mips64el@0.24.2", "", { "os": "linux", "cpu": "none" }, "sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw=="], + + "@tanstack/react-start-plugin/vite/esbuild/@esbuild/linux-ppc64": ["@esbuild/linux-ppc64@0.24.2", "", { "os": "linux", "cpu": "ppc64" }, "sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw=="], + + "@tanstack/react-start-plugin/vite/esbuild/@esbuild/linux-riscv64": ["@esbuild/linux-riscv64@0.24.2", "", { "os": "linux", "cpu": "none" }, "sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q=="], + + "@tanstack/react-start-plugin/vite/esbuild/@esbuild/linux-s390x": ["@esbuild/linux-s390x@0.24.2", "", { "os": "linux", "cpu": "s390x" }, "sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw=="], + + "@tanstack/react-start-plugin/vite/esbuild/@esbuild/linux-x64": ["@esbuild/linux-x64@0.24.2", "", { "os": "linux", "cpu": "x64" }, "sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q=="], + + "@tanstack/react-start-plugin/vite/esbuild/@esbuild/netbsd-arm64": ["@esbuild/netbsd-arm64@0.24.2", "", { "os": "none", "cpu": "arm64" }, "sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw=="], + + "@tanstack/react-start-plugin/vite/esbuild/@esbuild/netbsd-x64": ["@esbuild/netbsd-x64@0.24.2", "", { "os": "none", "cpu": "x64" }, "sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw=="], + + "@tanstack/react-start-plugin/vite/esbuild/@esbuild/openbsd-arm64": ["@esbuild/openbsd-arm64@0.24.2", "", { "os": "openbsd", "cpu": "arm64" }, "sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A=="], + + "@tanstack/react-start-plugin/vite/esbuild/@esbuild/openbsd-x64": ["@esbuild/openbsd-x64@0.24.2", "", { "os": "openbsd", "cpu": "x64" }, "sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA=="], + + "@tanstack/react-start-plugin/vite/esbuild/@esbuild/sunos-x64": ["@esbuild/sunos-x64@0.24.2", "", { "os": "sunos", "cpu": "x64" }, "sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig=="], + + "@tanstack/react-start-plugin/vite/esbuild/@esbuild/win32-arm64": ["@esbuild/win32-arm64@0.24.2", "", { "os": "win32", "cpu": "arm64" }, "sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ=="], + + "@tanstack/react-start-plugin/vite/esbuild/@esbuild/win32-ia32": ["@esbuild/win32-ia32@0.24.2", "", { "os": "win32", "cpu": "ia32" }, "sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA=="], + + "@tanstack/react-start-plugin/vite/esbuild/@esbuild/win32-x64": ["@esbuild/win32-x64@0.24.2", "", { "os": "win32", "cpu": "x64" }, "sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg=="], + + "@tanstack/router-plugin/chokidar/readdirp/picomatch": ["picomatch@2.3.1", "", {}, "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="], + + "@vercel/nft/glob/minimatch/brace-expansion": ["brace-expansion@2.0.1", "", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA=="], + + "ansi-align/string-width/strip-ansi/ansi-regex": ["ansi-regex@5.0.1", "", {}, "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="], + + "archiver-utils/glob/minimatch/brace-expansion": ["brace-expansion@2.0.1", "", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA=="], + + "colorspace/color/color-convert/color-name": ["color-name@1.1.3", "", {}, "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="], + + "detective-typescript/@typescript-eslint/typescript-estree/minimatch/brace-expansion": ["brace-expansion@2.0.1", "", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA=="], + + "nitropack/serve-static/send/fresh": ["fresh@2.0.0", "", {}, "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A=="], + + "vinxi/chokidar/readdirp/picomatch": ["picomatch@2.3.1", "", {}, "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="], + + "yargs/string-width/strip-ansi/ansi-regex": ["ansi-regex@5.0.1", "", {}, "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="], + + "@netlify/dev-utils/find-up/locate-path/p-locate/p-limit": ["p-limit@4.0.0", "", { "dependencies": { "yocto-queue": "^1.0.0" } }, "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ=="], + + "@netlify/zip-it-and-ship-it/locate-path/p-locate/p-limit/yocto-queue": ["yocto-queue@1.2.1", "", {}, "sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg=="], + + "@netlify/dev-utils/find-up/locate-path/p-locate/p-limit/yocto-queue": ["yocto-queue@1.2.1", "", {}, "sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg=="], + } +} diff --git a/components.json b/components.json new file mode 100644 index 0000000..9937314 --- /dev/null +++ b/components.json @@ -0,0 +1,21 @@ +{ + "$schema": "https://ui.shadcn.com/schema.json", + "style": "new-york", + "rsc": false, + "tsx": true, + "tailwind": { + "config": "tailwind.config.mjs", + "css": "src/styles/app.css", + "baseColor": "neutral", + "cssVariables": true, + "prefix": "" + }, + "aliases": { + "components": "@/components", + "utils": "@/lib/utils", + "ui": "@/components/ui", + "lib": "@/lib", + "hooks": "@/hooks" + }, + "iconLibrary": "lucide" +} \ No newline at end of file diff --git a/drizzle.config.ts b/drizzle.config.ts new file mode 100644 index 0000000..9fabc30 --- /dev/null +++ b/drizzle.config.ts @@ -0,0 +1,12 @@ +import 'dotenv/config'; +import { defineConfig } from 'drizzle-kit'; +import env from '@/env'; + +export default defineConfig({ + out: './drizzle', + schema: './src/db/schema/index.ts', + dialect: 'postgresql', + dbCredentials: { + url: env.DATABASE_URL, + }, +}); diff --git a/drizzle/0000_functions.sql b/drizzle/0000_functions.sql new file mode 100644 index 0000000..550fa96 --- /dev/null +++ b/drizzle/0000_functions.sql @@ -0,0 +1,46 @@ +CREATE OR REPLACE FUNCTION enum_array_to_bitmask(anyarray) +RETURNS bigint AS $$ +DECLARE + result bigint := 0; + val text; + enum_vals text[]; + i int; +BEGIN + -- Get all possible values of the enum type + EXECUTE format('SELECT enum_range(NULL::%s)', pg_typeof($1[1])::text) INTO enum_vals; + + -- Loop through input array and compute the bitmask + FOREACH val IN ARRAY $1 LOOP + FOR i IN 1 .. array_length(enum_vals, 1) LOOP + IF enum_vals[i] = val THEN + result := result + (1::bigint << (i - 1)); + EXIT; + END IF; + END LOOP; + END LOOP; + + RETURN result; +END; +$$ LANGUAGE plpgsql IMMUTABLE; +--> statement-breakpoint +CREATE OR REPLACE FUNCTION enum_to_bitmask(anyenum) +RETURNS bigint AS $$ +DECLARE + enum_vals text[]; + val text := $1::text; + i int; +BEGIN + -- Get all possible enum values of the input type + EXECUTE format('SELECT enum_range(NULL::%s)', pg_typeof($1)::text) INTO enum_vals; + + -- Find the position of the value + FOR i IN 1 .. array_length(enum_vals, 1) LOOP + IF enum_vals[i] = val THEN + RETURN i; + END IF; + END LOOP; + + -- If not found return 0 + RETURN 0; +END; +$$ LANGUAGE plpgsql IMMUTABLE; diff --git a/drizzle/0001_init.sql b/drizzle/0001_init.sql new file mode 100644 index 0000000..d9bdca2 --- /dev/null +++ b/drizzle/0001_init.sql @@ -0,0 +1,913 @@ +CREATE SCHEMA "account"; +--> statement-breakpoint +CREATE SCHEMA "common"; +--> statement-breakpoint +CREATE SCHEMA "log"; +--> statement-breakpoint +CREATE SCHEMA "player"; +--> statement-breakpoint +CREATE TYPE "common"."gm_authority" AS ENUM('IMPLEMENTOR', 'HIGH_WIZARD', 'GOD', 'LOW_WIZARD', 'PLAYER');--> statement-breakpoint +CREATE TYPE "common"."spam_type" AS ENUM('GOOD', 'SPAM');--> statement-breakpoint +CREATE TYPE "log"."gold_log_how" AS ENUM('BUY', 'SELL', 'SHOP_SELL', 'SHOP_BUY', 'EXCHANGE_TAKE', 'EXCHANGE_GIVE', 'QUEST');--> statement-breakpoint +CREATE TYPE "log"."log_type" AS ENUM('ITEM', 'CHARACTER');--> statement-breakpoint +CREATE TYPE "log"."login_log_type" AS ENUM('LOGIN', 'LOGOUT');--> statement-breakpoint +CREATE TYPE "log"."money_log_type" AS ENUM('MONSTER', 'SHOP', 'REFINE', 'QUEST', 'GUILD', 'MISC', 'KILL', 'DROP');--> statement-breakpoint +CREATE TYPE "log"."refine_log_set_type" AS ENUM('SOCKET', 'POWER', 'ROD', 'GUILD', 'SCROLL', 'HYUNIRON', 'GOD_SCROLL', 'MUSIN_SCROLL');--> statement-breakpoint +CREATE TYPE "log"."reward_type" AS ENUM('EXP', 'ITEM');--> statement-breakpoint +CREATE TYPE "player"."guild_grade_auth" AS ENUM('ADD_MEMBER', 'REMOVE_MEMEBER', 'NOTICE', 'USE_SKILL');--> statement-breakpoint +CREATE TYPE "player"."item_proto_immune_flag" AS ENUM('PARA', 'CURSE', 'STUN', 'SLEEP', 'SLOW', 'POISON', 'TERROR');--> statement-breakpoint +CREATE TYPE "player"."item_attr_apply" AS ENUM('MAX_HP', 'MAX_SP', 'CON', 'INT', 'STR', 'DEX', 'ATT_SPEED', 'MOV_SPEED', 'CAST_SPEED', 'HP_REGEN', 'SP_REGEN', 'POISON_PCT', 'STUN_PCT', 'SLOW_PCT', 'CRITICAL_PCT', 'PENETRATE_PCT', 'ATTBONUS_HUMAN', 'ATTBONUS_ANIMAL', 'ATTBONUS_ORC', 'ATTBONUS_MILGYO', 'ATTBONUS_UNDEAD', 'ATTBONUS_DEVIL', 'STEAL_HP', 'STEAL_SP', 'MANA_BURN_PCT', 'DAMAGE_SP_RECOVER', 'BLOCK', 'DODGE', 'RESIST_SWORD', 'RESIST_TWOHAND', 'RESIST_DAGGER', 'RESIST_BELL', 'RESIST_FAN', 'RESIST_BOW', 'RESIST_FIRE', 'RESIST_ELEC', 'RESIST_MAGIC', 'RESIST_WIND', 'REFLECT_MELEE', 'REFLECT_CURSE', 'POISON_REDUCE', 'KILL_SP_RECOVER', 'EXP_DOUBLE_BONUS', 'GOLD_DOUBLE_BONUS', 'ITEM_DROP_BONUS', 'POTION_BONUS', 'KILL_HP_RECOVER', 'IMMUNE_STUN', 'IMMUNE_SLOW', 'IMMUNE_FALL', 'SKILL', 'BOW_DISTANCE', 'ATT_GRADE_BONUS', 'DEF_GRADE_BONUS', 'MAGIC_ATT_GRADE', 'MAGIC_DEF_GRADE', 'CURSE_PCT', 'MAX_STAMINA', 'ATTBONUS_WARRIOR', 'ATTBONUS_ASSASSIN', 'ATTBONUS_SURA', 'ATTBONUS_SHAMAN', 'ATTBONUS_MONSTER', 'MALL_ATTBONUS', 'MALL_DEFBONUS', 'MALL_EXPBONUS', 'MALL_ITEMBONUS', 'MALL_GOLDBONUS', 'MAX_HP_PCT', 'MAX_SP_PCT', 'SKILL_DAMAGE_BONUS', 'NORMAL_HIT_DAMAGE_BONUS', 'SKILL_DEFEND_BONUS', 'NORMAL_HIT_DEFEND_BONUS', 'PC_BANG_EXP_BONUS', 'PC_BANG_DROP_BONUS', 'EXTRACT_HP_PCT', 'RESIST_WARRIOR', 'RESIST_ASSASSIN', 'RESIST_SURA', 'RESIST_SHAMAN', 'ENERGY', 'DEF_GRADE', 'COSTUME_ATTR_BONUS', 'MAGIC_ATTBONUS_PER', 'MELEE_MAGIC_ATTBONUS_PER', 'RESIST_ICE', 'RESIST_EARTH', 'RESIST_DARK', 'ANTI_CRITICAL_PCT', 'ANTI_PENETRATE_PCT');--> statement-breakpoint +CREATE TYPE "player"."item_attr_rare_apply" AS ENUM('MAX_HP', 'MAX_SP', 'CON', 'INT', 'STR', 'DEX', 'ATT_SPEED', 'MOV_SPEED', 'CAST_SPEED', 'HP_REGEN', 'SP_REGEN', 'POISON_PCT', 'STUN_PCT', 'SLOW_PCT', 'CRITICAL_PCT', 'PENETRATE_PCT', 'ATTBONUS_HUMAN', 'ATTBONUS_ANIMAL', 'ATTBONUS_ORC', 'ATTBONUS_MILGYO', 'ATTBONUS_UNDEAD', 'ATTBONUS_DEVIL', 'STEAL_HP', 'STEAL_SP', 'MANA_BURN_PCT', 'DAMAGE_SP_RECOVER', 'BLOCK', 'DODGE', 'RESIST_SWORD', 'RESIST_TWOHAND', 'RESIST_DAGGER', 'RESIST_BELL', 'RESIST_FAN', 'RESIST_BOW', 'RESIST_FIRE', 'RESIST_ELEC', 'RESIST_MAGIC', 'RESIST_WIND', 'REFLECT_MELEE', 'REFLECT_CURSE', 'POISON_REDUCE', 'KILL_SP_RECOVER', 'EXP_DOUBLE_BONUS', 'GOLD_DOUBLE_BONUS', 'ITEM_DROP_BONUS', 'POTION_BONUS', 'KILL_HP_RECOVER', 'IMMUNE_STUN', 'IMMUNE_SLOW', 'IMMUNE_FALL', 'SKILL', 'BOW_DISTANCE', 'ATT_GRADE_BONUS', 'DEF_GRADE_BONUS', 'MAGIC_ATT_GRADE', 'MAGIC_DEF_GRADE', 'CURSE_PCT', 'MAX_STAMINA', 'ATT_BONUS_TO_WARRIOR', 'ATT_BONUS_TO_ASSASSIN', 'ATT_BONUS_TO_SURA', 'ATT_BONUS_TO_SHAMAN', 'ATT_BONUS_TO_MONSTER', 'NORMAL_HIT_DEFEND_BONUS', 'SKILL_DEFEND_BONUS', 'NOUSE2''NOUSE3', 'NOUSE4', 'NOUSE5', 'NOUSE6', 'NOUSE7', 'NOUSE8', 'NOUSE9', 'NOUSE10', 'NOUSE11', 'NOUSE12', 'NOUSE13', 'NOUSE14', 'RESIST_WARRIOR', 'RESIST_ASSASSIN', 'RESIST_SURA', 'RESIST_SHAMAN');--> statement-breakpoint +CREATE TYPE "player"."item_window" AS ENUM('INVENTORY', 'EQUIPMENT', 'SAFEBOX', 'MALL', 'DRAGON_SOUL_INVENTORY', 'BELT_INVENTORY');--> statement-breakpoint +CREATE TYPE "player"."mob_ai_flag" AS ENUM('AGGR', 'NOMOVE', 'COWARD', 'NOATTSHINSU', 'NOATTCHUNJO', 'NOATTJINNO', 'ATTMOB', 'BERSERK', 'STONESKIN', 'GODSPEED', 'DEATHBLOW', 'REVIVE');--> statement-breakpoint +CREATE TYPE "player"."mob_set_immune_flag" AS ENUM('STUN', 'SLOW', 'FALL', 'CURSE', 'POISON', 'TERROR');--> statement-breakpoint +CREATE TYPE "player"."mob_set_race_flag" AS ENUM('ANIMAL', 'UNDEAD', 'DEVIL', 'HUMAN', 'ORC', 'MILGYO', 'INSECT', 'FIRE', 'ICE', 'DESERT', 'TREE', 'ATT_ELEC', 'ATT_FIRE', 'ATT_ICE', 'ATT_WIND', 'ATT_EARTH', 'ATT_DARK');--> statement-breakpoint +CREATE TYPE "player"."mob_size" AS ENUM('SMALL', 'MEDIUM', 'BIG');--> statement-breakpoint +CREATE TYPE "player"."skill_proto_set_affect_flag" AS ENUM('YMIR', 'INVISIBILITY', 'SPAWN', 'POISON', 'SLOW', 'STUN', 'DUNGEON_READY', 'FORCE_VISIBLE', 'BUILDING_CONSTRUCTION_SMALL', 'BUILDING_CONSTRUCTION_LARGE', 'BUILDING_UPGRADE', 'MOV_SPEED_POTION', 'ATT_SPEED_POTION', 'FISH_MIDE', 'JEONGWIHON', 'GEOMGYEONG', 'CHEONGEUN', 'GYEONGGONG', 'EUNHYUNG', 'GWIGUM', 'TERROR', 'JUMAGAP', 'HOSIN', 'BOHO', 'KWAESOK', 'MANASHIELD', 'MUYEONG', 'REVIVE_INVISIBLE', 'FIRE', 'GICHEON', 'JEUNGRYEOK');--> statement-breakpoint +CREATE TYPE "player"."skill_proto_set_affect_flag_2" AS ENUM('YMIR', 'INVISIBILITY', 'SPAWN', 'POISON', 'SLOW', 'STUN', 'DUNGEON_READY', 'FORCE_VISIBLE', 'BUILDING_CONSTRUCTION_SMALL', 'BUILDING_CONSTRUCTION_LARGE', 'BUILDING_UPGRADE', 'MOV_SPEED_POTION', 'ATT_SPEED_POTION', 'FISH_MIDE', 'JEONGWIHON', 'GEOMGYEONG', 'CHEONGEUN', 'GYEONGGONG', 'EUNHYUNG', 'GWIGUM', 'TERROR', 'JUMAGAP', 'HOSIN', 'BOHO', 'KWAESOK', 'MANASHIELD');--> statement-breakpoint +CREATE TYPE "player"."skill_proto_set_flag" AS ENUM('ATTACK', 'USE_MELEE_DAMAGE', 'COMPUTE_ATTGRADE', 'SELFONLY', 'USE_MAGIC_DAMAGE', 'USE_HP_AS_COST', 'COMPUTE_MAGIC_DAMAGE', 'SPLASH', 'GIVE_PENALTY', 'USE_ARROW_DAMAGE', 'PENETRATE', 'IGNORE_TARGET_RATING', 'ATTACK_SLOW', 'ATTACK_STUN', 'HP_ABSORB', 'SP_ABSORB', 'ATTACK_FIRE_CONT', 'REMOVE_BAD_AFFECT', 'REMOVE_GOOD_AFFECT', 'CRUSH', 'ATTACK_POISON', 'TOGGLE', 'DISABLE_BY_POINT_UP', 'CRUSH_LONG');--> statement-breakpoint +CREATE TYPE "player"."skill_proto_skill_type" AS ENUM('NORMAL', 'MELEE', 'RANGE', 'MAGIC');--> statement-breakpoint +CREATE TABLE "account"."account" ( + "id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "account"."account_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1), + "login" varchar(30) NOT NULL, + "password" text NOT NULL, + "social_id" varchar(13) NOT NULL, + "email" varchar(64) NOT NULL, + "status" varchar(8) DEFAULT 'OK' NOT NULL, + "security_code" varchar(192), + "available_dt" timestamp DEFAULT now() NOT NULL, + "mileage" integer DEFAULT 0 NOT NULL, + "cash" integer DEFAULT 0 NOT NULL, + "gold_expired_at" timestamp DEFAULT now() NOT NULL, + "silver_expired_at" timestamp DEFAULT now() NOT NULL, + "safebox_expired_at" timestamp DEFAULT now() NOT NULL, + "autoloot_expired_at" timestamp DEFAULT now() NOT NULL, + "fish_mind_expired_at" timestamp DEFAULT now() NOT NULL, + "marriage_fast_expired_at" timestamp DEFAULT now() NOT NULL, + "money_drop_rate_expired_at" timestamp DEFAULT now() NOT NULL, + "ip" varchar(191), + "created_at" timestamp DEFAULT now() NOT NULL, + "last_played_at" timestamp, + CONSTRAINT "account_login" UNIQUE("login"), + CONSTRAINT "account_email" UNIQUE("email") +); +--> statement-breakpoint +CREATE TABLE "common"."gm_host" ( + "ip" varchar(16) NOT NULL +); +--> statement-breakpoint +CREATE TABLE "common"."gm_list" ( + "player_id" integer NOT NULL, + "contact_ip" varchar(16) NOT NULL, + "server_ip" varchar(16) DEFAULT 'ALL' NOT NULL, + "authority" "common"."gm_authority" DEFAULT 'PLAYER' +); +--> statement-breakpoint +CREATE TABLE "common"."locale" ( + "key" varchar(191) NOT NULL, + "value" varchar(191) NOT NULL +); +--> statement-breakpoint +CREATE TABLE "common"."spam_db" ( + "type" "common"."spam_type" DEFAULT 'SPAM' NOT NULL, + "word" varchar(256) NOT NULL, + "score" integer DEFAULT 10 NOT NULL +); +--> statement-breakpoint +CREATE TABLE "log"."boot_log" ( + "id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "log"."boot_log_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1), + "hostname" char(128) DEFAULT 'UNKNOWN' NOT NULL, + "channel" integer DEFAULT 0 NOT NULL, + "created_at" timestamp DEFAULT now() +); +--> statement-breakpoint +CREATE TABLE "log"."change_name" ( + "id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "log"."change_name_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1), + "player_id" integer NOT NULL, + "old_name" varchar(191), + "new_name" varchar(191), + "ip" varchar(20), + "created_at" timestamp DEFAULT now() +); +--> statement-breakpoint +CREATE TABLE "log"."command_log" ( + "id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "log"."command_log_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1), + "player_id" integer NOT NULL, + "server" integer NOT NULL, + "ip" varchar(15) NOT NULL, + "port" integer NOT NULL, + "username" varchar(50) NOT NULL, + "command" text NOT NULL, + "created_at" timestamp DEFAULT now() NOT NULL +); +--> statement-breakpoint +CREATE TABLE "log"."cube_log" ( + "id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "log"."cube_log_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1), + "player_id" integer NOT NULL, + "x" integer DEFAULT 0 NOT NULL, + "y" integer DEFAULT 0 NOT NULL, + "item_vnum" integer DEFAULT 0 NOT NULL, + "item_uid" integer DEFAULT 0 NOT NULL, + "item_count" integer DEFAULT 0 NOT NULL, + "success" boolean NOT NULL, + "created_at" timestamp DEFAULT now() +); +--> statement-breakpoint +CREATE TABLE "log"."dragon_slay_log" ( + "id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "log"."dragon_slay_log_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1), + "guild_id" integer NOT NULL, + "vnum" integer NOT NULL, + "start_time" timestamp DEFAULT now() NOT NULL, + "end_time" timestamp DEFAULT now() NOT NULL +); +--> statement-breakpoint +CREATE TABLE "log"."fish_log" ( + "id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "log"."fish_log_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1), + "player_id" integer NOT NULL, + "map_index" integer DEFAULT 0 NOT NULL, + "fish_id" integer DEFAULT 0 NOT NULL, + "fishing_level" integer DEFAULT 0 NOT NULL, + "waiting_time" integer DEFAULT 0 NOT NULL, + "success" boolean NOT NULL, + "size" integer NOT NULL, + "created_at" timestamp DEFAULT now() +); +--> statement-breakpoint +CREATE TABLE "log"."gold_log" ( + "id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "log"."gold_log_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1), + "player_id" integer NOT NULL, + "what" integer DEFAULT 0 NOT NULL, + "how" "log"."gold_log_how" NOT NULL, + "hint" varchar(50), + "created_at" timestamp DEFAULT now() +); +--> statement-breakpoint +CREATE TABLE "log"."hack_log" ( + "id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "log"."hack_log_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1), + "login" char(16) NOT NULL, + "name" char(24) NOT NULL, + "ip" char(15) NOT NULL, + "server" char(100) NOT NULL, + "why" char(191) NOT NULL, + "created_at" timestamp DEFAULT now() +); +--> statement-breakpoint +CREATE TABLE "log"."level_log" ( + "id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "log"."level_log_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1), + "name" char(24) NOT NULL, + "level" integer DEFAULT 0 NOT NULL, + "playtime" integer DEFAULT 0 NOT NULL, + "player_id" integer NOT NULL, + "created_at" timestamp DEFAULT now() +); +--> statement-breakpoint +CREATE TABLE "log"."log" ( + "id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "log"."log_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1), + "type" "log"."log_type" DEFAULT 'ITEM' NOT NULL, + "who" integer DEFAULT 0 NOT NULL, + "x" integer DEFAULT 0 NOT NULL, + "y" integer DEFAULT 0 NOT NULL, + "what" integer DEFAULT 0 NOT NULL, + "how" varchar(50) NOT NULL, + "hint" varchar(70), + "ip" varchar(20), + "vnum" integer, + "created_at" timestamp DEFAULT now() +); +--> statement-breakpoint +CREATE TABLE "log"."login_log" ( + "id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "log"."login_log_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1), + "type" "log"."login_log_type", + "channel" integer, + "account_id" integer NOT NULL, + "player_id" integer NOT NULL, + "level" integer, + "job" integer, + "playtime" integer, + "created_at" timestamp DEFAULT now() +); +--> statement-breakpoint +CREATE TABLE "log"."login_log_2" ( + "id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "log"."login_log_2_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1), + "type" text, + "is_gm" boolean, + "channel" integer, + "account_id" integer NOT NULL, + "player_id" integer NOT NULL, + "ip" text, + "client_version" text, + "playtime" integer DEFAULT 0 NOT NULL, + "login_at" timestamp, + "logout_at" timestamp +); +--> statement-breakpoint +CREATE TABLE "log"."money_log" ( + "id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "log"."money_log_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1), + "type" "log"."money_log_type", + "vnum" integer DEFAULT 0 NOT NULL, + "gold" integer DEFAULT 0 NOT NULL, + "created_at" timestamp DEFAULT now() +); +--> statement-breakpoint +CREATE TABLE "log"."player_count" ( + "id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "log"."player_count_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1), + "count_red" integer, + "count_yellow" integer, + "count_blue" integer, + "count_total" integer, + "created_at" timestamp DEFAULT now() +); +--> statement-breakpoint +CREATE TABLE "log"."quest_reward_log" ( + "id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "log"."quest_reward_log_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1), + "quest_name" varchar(32), + "player_id" integer NOT NULL, + "player_level" integer, + "reward_type" "log"."reward_type", + "reward_value1" integer, + "reward_value2" integer, + "created_at" timestamp DEFAULT now() +); +--> statement-breakpoint +CREATE TABLE "log"."refine_log" ( + "id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "log"."refine_log_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1), + "player_id" integer NOT NULL, + "item_name" varchar(24) NOT NULL, + "item_id" integer DEFAULT 0 NOT NULL, + "step" varchar(50) NOT NULL, + "is_success" boolean NOT NULL, + "set_type" "log"."refine_log_set_type" NOT NULL, + "created_at" timestamp DEFAULT now() +); +--> statement-breakpoint +CREATE TABLE "log"."shout_log" ( + "id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "log"."shout_log_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1), + "channel" integer, + "empire" integer, + "shout" varchar(350), + "created_at" timestamp DEFAULT now() +); +--> statement-breakpoint +CREATE TABLE "log"."speed_hack_log" ( + "id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "log"."speed_hack_log_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1), + "player_id" integer NOT NULL, + "x" integer, + "y" integer, + "hack_count" integer, + "created_at" timestamp +); +--> statement-breakpoint +CREATE TABLE "player"."affect" ( + "player_id" integer NOT NULL, + "type" integer NOT NULL, + "apply_on" integer DEFAULT 0 NOT NULL, + "apply_value" integer DEFAULT 0 NOT NULL, + "flag" integer DEFAULT 0 NOT NULL, + "duration" integer DEFAULT 0 NOT NULL, + "sp_cost" integer DEFAULT 0 NOT NULL +); +--> statement-breakpoint +CREATE TABLE "player"."banword" ( + "word" text NOT NULL +); +--> statement-breakpoint +CREATE TABLE "player"."change_empire" ( + "account_id" integer NOT NULL, + "change_count" integer, + "created_at" timestamp DEFAULT now() NOT NULL +); +--> statement-breakpoint +CREATE TABLE "player"."guild" ( + "id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "player"."guild_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1), + "name" varchar(12) NOT NULL, + "sp" integer DEFAULT 1000 NOT NULL, + "master" integer DEFAULT 0 NOT NULL, + "level" integer, + "exp" integer, + "skill_point" integer DEFAULT 0 NOT NULL, + "skill" "bytea", + "win" integer DEFAULT 0 NOT NULL, + "draw" integer DEFAULT 0 NOT NULL, + "loss" integer DEFAULT 0 NOT NULL, + "ladder_point" integer DEFAULT 0 NOT NULL, + "gold" integer DEFAULT 0 NOT NULL +); +--> statement-breakpoint +CREATE TABLE "player"."guild_comment" ( + "id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "player"."guild_comment_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1), + "guild_id" integer NOT NULL, + "name" varchar(8), + "notice" integer, + "content" varchar(50), + "created_at" timestamp DEFAULT now() NOT NULL +); +--> statement-breakpoint +CREATE TABLE "player"."guild_grade" ( + "guild_id" integer NOT NULL, + "grade" integer DEFAULT 0 NOT NULL, + "name" varchar(8) NOT NULL, + "auth" "guild_grade_auth"[] DEFAULT '{}' NOT NULL, + "auth_bits" bigint GENERATED ALWAYS AS (enum_array_to_bitmask("player"."guild_grade"."auth")) STORED +); +--> statement-breakpoint +CREATE TABLE "player"."guild_member" ( + "player_id" integer NOT NULL, + "guild_id" integer NOT NULL, + "grade" integer, + "is_general" boolean DEFAULT false NOT NULL, + "offer" integer, + CONSTRAINT "guild_member_player_id_guild_id_pk" PRIMARY KEY("player_id","guild_id"), + CONSTRAINT "player_id" UNIQUE("player_id") +); +--> statement-breakpoint +CREATE TABLE "player"."guild_war_bet" ( + "login" varchar(24) NOT NULL, + "gold" integer DEFAULT 0 NOT NULL, + "guild_id" integer NOT NULL, + "war_id" integer NOT NULL +); +--> statement-breakpoint +CREATE TABLE "player"."guild_war_reservation" ( + "id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "player"."guild_war_reservation_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1), + "guild1" integer NOT NULL, + "guild2" integer NOT NULL, + "type" integer DEFAULT 0 NOT NULL, + "warprice" integer DEFAULT 0 NOT NULL, + "initial_score" integer DEFAULT 0 NOT NULL, + "started" integer DEFAULT 0 NOT NULL, + "bet_from" integer DEFAULT 0 NOT NULL, + "bet_to" integer DEFAULT 0 NOT NULL, + "winner" integer DEFAULT -1 NOT NULL, + "power_from" integer DEFAULT 0 NOT NULL, + "power_to" integer DEFAULT 0 NOT NULL, + "handicap" integer DEFAULT 0 NOT NULL, + "result_1" integer DEFAULT 0 NOT NULL, + "result_2" integer DEFAULT 0 NOT NULL, + "started_at" timestamp DEFAULT now() NOT NULL +); +--> statement-breakpoint +CREATE TABLE "player"."horse_name" ( + "player_id" integer NOT NULL, + "name" varchar(24) DEFAULT 'NONAME' NOT NULL +); +--> statement-breakpoint +CREATE TABLE "player"."item" ( + "id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "player"."item_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1), + "owner_id" integer NOT NULL, + "window" "player"."item_window" DEFAULT 'INVENTORY' NOT NULL, + "position" integer NOT NULL, + "count" integer DEFAULT 0 NOT NULL, + "vnum" integer DEFAULT 0 NOT NULL, + "socket_0" integer DEFAULT 0 NOT NULL, + "socket_1" integer DEFAULT 0 NOT NULL, + "socket_2" integer DEFAULT 0 NOT NULL, + "socket_3" integer DEFAULT 0 NOT NULL, + "socket_4" integer DEFAULT 0 NOT NULL, + "socket_5" integer DEFAULT 0 NOT NULL, + "attr_type_0" integer DEFAULT 0 NOT NULL, + "attr_value_0" integer DEFAULT 0 NOT NULL, + "attr_type_1" integer DEFAULT 0 NOT NULL, + "attr_value_1" integer DEFAULT 0 NOT NULL, + "attr_type_2" integer DEFAULT 0 NOT NULL, + "attr_value_2" integer DEFAULT 0 NOT NULL, + "attr_type_3" integer DEFAULT 0 NOT NULL, + "attr_value_3" integer DEFAULT 0 NOT NULL, + "attr_type_4" integer DEFAULT 0 NOT NULL, + "attr_value_4" integer DEFAULT 0 NOT NULL, + "attr_type_5" integer DEFAULT 0 NOT NULL, + "attr_value_5" integer DEFAULT 0 NOT NULL, + "attr_type_6" integer DEFAULT 0 NOT NULL, + "attr_value_6" integer DEFAULT 0 NOT NULL +); +--> statement-breakpoint +CREATE TABLE "player"."item_attr" ( + "apply" "player"."item_attr_apply" DEFAULT 'MAX_HP' NOT NULL, + "probability" integer NOT NULL, + "lvl_1" integer NOT NULL, + "lvl_2" integer NOT NULL, + "lvl_3" integer NOT NULL, + "lvl_4" integer NOT NULL, + "lvl_5" integer NOT NULL, + "weapon" integer NOT NULL, + "body" integer NOT NULL, + "wrist" integer NOT NULL, + "foots" integer NOT NULL, + "neck" integer NOT NULL, + "head" integer NOT NULL, + "shield" integer NOT NULL, + "ear" integer NOT NULL +); +--> statement-breakpoint +CREATE TABLE "player"."item_attr_rare" ( + "apply" "player"."item_attr_rare_apply" DEFAULT 'MAX_HP' NOT NULL, + "probability" integer NOT NULL, + "lvl_1" integer NOT NULL, + "lvl_2" integer NOT NULL, + "lvl_3" integer NOT NULL, + "lvl_4" integer NOT NULL, + "lvl_5" integer NOT NULL, + "weapon" integer NOT NULL, + "body" integer NOT NULL, + "wrist" integer NOT NULL, + "foots" integer NOT NULL, + "neck" integer NOT NULL, + "head" integer NOT NULL, + "shield" integer NOT NULL, + "ear" integer NOT NULL +); +--> statement-breakpoint +CREATE TABLE "player"."item_award" ( + "id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "player"."item_award_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1), + "player_id" integer NOT NULL, + "login" varchar(30) NOT NULL, + "vnum" integer DEFAULT 0 NOT NULL, + "count" integer DEFAULT 0 NOT NULL, + "give_at" timestamp DEFAULT now() NOT NULL, + "taken_at" timestamp, + "item_id" integer, + "why" varchar(128), + "socket_0" integer DEFAULT 0 NOT NULL, + "socket_1" integer DEFAULT 0 NOT NULL, + "socket_2" integer DEFAULT 0 NOT NULL, + "mall" integer DEFAULT 0 NOT NULL +); +--> statement-breakpoint +CREATE TABLE "player"."item_proto" ( + "vnum" integer DEFAULT 0 NOT NULL, + "name" text NOT NULL, + "locale_name" text NOT NULL, + "type" integer DEFAULT 0 NOT NULL, + "sub_type" integer DEFAULT 0 NOT NULL, + "weight" integer DEFAULT 0, + "size" integer DEFAULT 0, + "anti_flag" integer DEFAULT 0, + "flag" integer DEFAULT 0, + "wear_flag" integer DEFAULT 0, + "immune_flag" "item_proto_immune_flag"[] DEFAULT '{}' NOT NULL, + "gold" integer DEFAULT 0, + "shop_buy_price" integer DEFAULT 0 NOT NULL, + "refined_vnum" integer DEFAULT 0 NOT NULL, + "refine_set" integer NOT NULL, + "refine_set2" integer NOT NULL, + "magic_percentage" integer DEFAULT 0 NOT NULL, + "limit_type_0" integer DEFAULT 0, + "limit_value_0" integer DEFAULT 0, + "limit_type_1" integer DEFAULT 0, + "limit_value_1" integer DEFAULT 0, + "apply_type_0" integer DEFAULT 0, + "apply_value_0" integer DEFAULT 0, + "apply_type_1" integer DEFAULT 0, + "apply_value_1" integer DEFAULT 0, + "apply_type_2" integer DEFAULT 0, + "apply_value_2" integer DEFAULT 0, + "value_0" integer DEFAULT 0, + "value_1" integer DEFAULT 0, + "value_2" integer DEFAULT 0, + "value_3" integer DEFAULT 0, + "value_4" integer DEFAULT 0, + "value_5" integer DEFAULT 0, + "socket_0" integer DEFAULT -1, + "socket_1" integer DEFAULT -1, + "socket_2" integer DEFAULT -1, + "socket_3" integer DEFAULT -1, + "socket_4" integer DEFAULT -1, + "socket_5" integer DEFAULT -1, + "specular" integer DEFAULT 0 NOT NULL, + "socket_percentage" integer DEFAULT 0 NOT NULL, + "addon_type" integer NOT NULL +); +--> statement-breakpoint +CREATE TABLE "player"."land" ( + "id" integer PRIMARY KEY NOT NULL, + "map_index" integer DEFAULT 0 NOT NULL, + "x" integer DEFAULT 0 NOT NULL, + "y" integer DEFAULT 0 NOT NULL, + "width" integer DEFAULT 0 NOT NULL, + "height" integer DEFAULT 0 NOT NULL, + "guild_id" integer DEFAULT 0 NOT NULL, + "guild_level_limit" integer DEFAULT 0 NOT NULL, + "price" integer DEFAULT 0 NOT NULL, + "enabled" boolean DEFAULT false NOT NULL +); +--> statement-breakpoint +CREATE TABLE "player"."lotto_list" ( + "id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "player"."lotto_list_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1), + "server" varchar(20), + "playerId" integer NOT NULL, + "created_at" timestamp DEFAULT now() NOT NULL +); +--> statement-breakpoint +CREATE TABLE "player"."marriage" ( + "is_married" boolean DEFAULT false NOT NULL, + "player_id_1" integer NOT NULL, + "player_id_2" integer NOT NULL, + "love_points" integer, + "created_at" timestamp DEFAULT now() NOT NULL +); +--> statement-breakpoint +CREATE TABLE "player"."messenger_list" ( + "account" varchar(16) NOT NULL, + "companion" varchar(16) NOT NULL +); +--> statement-breakpoint +CREATE TABLE "player"."mob_proto" ( + "vnum" integer DEFAULT 0 NOT NULL, + "name" text NOT NULL, + "locale_name" text NOT NULL, + "rank" integer DEFAULT 0 NOT NULL, + "type" integer DEFAULT 0 NOT NULL, + "battle_type" integer DEFAULT 0 NOT NULL, + "level" integer DEFAULT 1 NOT NULL, + "size" "player"."mob_size" DEFAULT 'SMALL', + "ai_flag" "mob_ai_flag"[] DEFAULT '{}' NOT NULL, + "mount_capacity" integer DEFAULT 0 NOT NULL, + "set_race_flag" "player"."mob_set_race_flag" NOT NULL, + "set_immune_flag" "player"."mob_set_immune_flag", + "empire" integer DEFAULT 0 NOT NULL, + "folder" varchar(100) NOT NULL, + "on_click" integer DEFAULT 0 NOT NULL, + "st" integer NOT NULL, + "dx" integer NOT NULL, + "ht" integer NOT NULL, + "iq" integer NOT NULL, + "damage_min" integer NOT NULL, + "damage_max" integer NOT NULL, + "max_hp" integer DEFAULT 0 NOT NULL, + "regen_cycle" integer DEFAULT 0 NOT NULL, + "regen_percent" integer DEFAULT 0 NOT NULL, + "gold_min" integer DEFAULT 0 NOT NULL, + "gold_max" integer DEFAULT 0 NOT NULL, + "exp" integer DEFAULT 0 NOT NULL, + "def" integer NOT NULL, + "attack_speed" integer DEFAULT 100 NOT NULL, + "move_speed" integer DEFAULT 100 NOT NULL, + "aggressive_hp_percentage" integer DEFAULT 0 NOT NULL, + "aggressive_sight" integer NOT NULL, + "attack_range" integer NOT NULL, + "drop_item" integer DEFAULT 0 NOT NULL, + "resurrection_vnum" integer DEFAULT 0 NOT NULL, + "enchant_curse" integer DEFAULT 0 NOT NULL, + "enchant_slow" integer DEFAULT 0 NOT NULL, + "enchant_poison" integer DEFAULT 0 NOT NULL, + "enchant_stun" integer DEFAULT 0 NOT NULL, + "enchant_critical" integer DEFAULT 0 NOT NULL, + "enchant_penetrate" integer DEFAULT 0 NOT NULL, + "resist_sword" integer DEFAULT 0 NOT NULL, + "resist_twohand" integer DEFAULT 0 NOT NULL, + "resist_dagger" integer DEFAULT 0 NOT NULL, + "resist_bell" integer DEFAULT 0 NOT NULL, + "resist_fan" integer DEFAULT 0 NOT NULL, + "resist_bow" integer DEFAULT 0 NOT NULL, + "resist_fire" integer DEFAULT 0 NOT NULL, + "resist_elect" integer DEFAULT 0 NOT NULL, + "resist_magic" integer DEFAULT 0 NOT NULL, + "resist_wind" integer DEFAULT 0 NOT NULL, + "resist_poison" integer DEFAULT 0 NOT NULL, + "dam_multiply" double precision, + "summon" integer, + "drain_sp" integer, + "mob_color" integer, + "polymorph_item" integer DEFAULT 0 NOT NULL, + "skill_level0" integer, + "skill_vnum0" integer, + "skill_level1" integer, + "skill_vnum1" integer, + "skill_level2" integer, + "skill_vnum2" integer, + "skill_level3" integer, + "skill_vnum3" integer, + "skill_level4" integer, + "skill_vnum4" integer, + "sp_berserk" integer DEFAULT 0 NOT NULL, + "sp_stoneskin" integer DEFAULT 0 NOT NULL, + "sp_godspeed" integer DEFAULT 0 NOT NULL, + "sp_deathblow" integer DEFAULT 0 NOT NULL, + "sp_revive" integer DEFAULT 0 NOT NULL +); +--> statement-breakpoint +CREATE TABLE "player"."monarch" ( + "empire" integer DEFAULT 0 NOT NULL, + "player_id" integer NOT NULL, + "win_at" timestamp, + "money" integer +); +--> statement-breakpoint +CREATE TABLE "player"."monarch_candidacy" ( + "player_id" integer NOT NULL, + "date" timestamp DEFAULT now(), + "name" varchar(16), + "win_at" timestamp +); +--> statement-breakpoint +CREATE TABLE "player"."monarch_election" ( + "player_id" integer NOT NULL, + "selected_player_id" integer NOT NULL, + "election_at" timestamp DEFAULT now() +); +--> statement-breakpoint +CREATE TABLE "player"."myshop_pricelist" ( + "owner_id" integer NOT NULL, + "item_vnum" integer DEFAULT 0 NOT NULL, + "price" integer DEFAULT 0 NOT NULL, + CONSTRAINT "list_id" UNIQUE("owner_id","item_vnum") +); +--> statement-breakpoint +CREATE TABLE "player"."object" ( + "id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "player"."object_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1), + "land_id" integer DEFAULT 0 NOT NULL, + "vnum" integer DEFAULT 0 NOT NULL, + "map_index" integer DEFAULT 0 NOT NULL, + "x" integer DEFAULT 0 NOT NULL, + "y" integer DEFAULT 0 NOT NULL, + "x_rot" double precision NOT NULL, + "y_rot" double precision NOT NULL, + "z_rot" double precision NOT NULL, + "life" integer DEFAULT 0 NOT NULL +); +--> statement-breakpoint +CREATE TABLE "player"."object_proto" ( + "vnum" integer DEFAULT 0 NOT NULL, + "name" varchar(32) NOT NULL, + "price" integer DEFAULT 0 NOT NULL, + "materials" varchar(64) NOT NULL, + "upgrade_vnum" integer DEFAULT 0 NOT NULL, + "upgrade_limit_time" integer DEFAULT 0 NOT NULL, + "life" integer DEFAULT 0 NOT NULL, + "reg_1" integer DEFAULT 0 NOT NULL, + "reg_2" integer DEFAULT 0 NOT NULL, + "reg_3" integer DEFAULT 0 NOT NULL, + "reg_4" integer DEFAULT 0 NOT NULL, + "npc" integer DEFAULT 0 NOT NULL, + "group_vnum" integer DEFAULT 0 NOT NULL, + "dependent_group" integer DEFAULT 0 NOT NULL +); +--> statement-breakpoint +CREATE TABLE "player"."player" ( + "id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "player"."player_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1), + "account_id" integer NOT NULL, + "name" varchar(24) DEFAULT 'NONAME' NOT NULL, + "job" integer DEFAULT 0 NOT NULL, + "voice" integer DEFAULT 0 NOT NULL, + "dir" integer DEFAULT 0 NOT NULL, + "x" integer DEFAULT 0 NOT NULL, + "y" integer DEFAULT 0 NOT NULL, + "z" integer DEFAULT 0 NOT NULL, + "map_index" integer DEFAULT 0 NOT NULL, + "exit_x" integer DEFAULT 0 NOT NULL, + "exit_y" integer DEFAULT 0 NOT NULL, + "exit_map_index" integer DEFAULT 0 NOT NULL, + "hp" integer NOT NULL, + "mp" integer NOT NULL, + "stamina" integer NOT NULL, + "random_hp" integer NOT NULL, + "random_sp" integer NOT NULL, + "playtime" integer DEFAULT 0 NOT NULL, + "level" integer DEFAULT 1 NOT NULL, + "level_step" integer DEFAULT 0 NOT NULL, + "st" integer NOT NULL, + "ht" integer NOT NULL, + "dx" integer NOT NULL, + "iq" integer NOT NULL, + "exp" integer DEFAULT 0 NOT NULL, + "gold" integer DEFAULT 0 NOT NULL, + "stat_point" integer NOT NULL, + "skill_point" integer NOT NULL, + "quick_slot" "bytea", + "ip" varchar(15) DEFAULT '0.0.0.0', + "part_main" integer DEFAULT 0 NOT NULL, + "part_base" integer DEFAULT 0 NOT NULL, + "part_hair" integer DEFAULT 0 NOT NULL, + "skill_group" integer DEFAULT 0 NOT NULL, + "skill_level" integer, + "alignment" integer DEFAULT 0 NOT NULL, + "last_played_at" timestamp DEFAULT now() NOT NULL, + "change_name" integer DEFAULT 0 NOT NULL, + "sub_skill_point" integer NOT NULL, + "stat_reset_count" integer DEFAULT 0 NOT NULL, + "horse_hp" integer NOT NULL, + "horse_stamina" integer NOT NULL, + "horse_level" integer DEFAULT 0 NOT NULL, + "horse_hp_droptime" integer DEFAULT 0 NOT NULL, + "horse_riding" integer DEFAULT 0 NOT NULL, + "horse_skill_point" integer NOT NULL, + "bank_value" integer DEFAULT 0 NOT NULL +); +--> statement-breakpoint +CREATE TABLE "player"."player_deleted" ( + "id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "player"."player_deleted_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1), + "account_id" integer NOT NULL, + "name" varchar(24) DEFAULT 'NONAME' NOT NULL, + "job" integer DEFAULT 0 NOT NULL, + "voice" integer DEFAULT 0 NOT NULL, + "dir" integer DEFAULT 0 NOT NULL, + "x" integer DEFAULT 0 NOT NULL, + "y" integer DEFAULT 0 NOT NULL, + "z" integer DEFAULT 0 NOT NULL, + "map_index" integer DEFAULT 0 NOT NULL, + "exit_x" integer DEFAULT 0 NOT NULL, + "exit_y" integer DEFAULT 0 NOT NULL, + "exit_map_index" integer DEFAULT 0 NOT NULL, + "hp" integer NOT NULL, + "mp" integer NOT NULL, + "stamina" integer NOT NULL, + "random_hp" integer NOT NULL, + "random_sp" integer NOT NULL, + "playtime" integer DEFAULT 0 NOT NULL, + "level" integer DEFAULT 1 NOT NULL, + "level_step" integer DEFAULT 0 NOT NULL, + "st" integer NOT NULL, + "ht" integer NOT NULL, + "dx" integer NOT NULL, + "iq" integer NOT NULL, + "exp" integer DEFAULT 0 NOT NULL, + "gold" integer DEFAULT 0 NOT NULL, + "stat_point" integer NOT NULL, + "skill_point" integer NOT NULL, + "quick_slot" integer, + "ip" varchar(15) DEFAULT '0.0.0.0', + "part_main" integer NOT NULL, + "part_base" integer DEFAULT 0 NOT NULL, + "part_hair" integer NOT NULL, + "skill_group" integer DEFAULT 0 NOT NULL, + "skill_level" integer, + "alignment" integer DEFAULT 0 NOT NULL, + "last_played_at" timestamp DEFAULT now() NOT NULL, + "change_name" integer DEFAULT 0 NOT NULL, + "sub_skill_point" integer NOT NULL, + "stat_reset_count" integer DEFAULT 0 NOT NULL, + "horse_hp" integer NOT NULL, + "horse_stamina" integer NOT NULL, + "horse_level" integer DEFAULT 0 NOT NULL, + "horse_hp_droptime" integer DEFAULT 0 NOT NULL, + "horse_riding" integer DEFAULT 0 NOT NULL, + "horse_skill_point" integer NOT NULL, + "bank_value" integer DEFAULT 0 +); +--> statement-breakpoint +CREATE TABLE "player"."player_index" ( + "account_id" integer NOT NULL, + "player_id" integer NOT NULL, + "empire" integer DEFAULT 0 NOT NULL, + "last_played_at" timestamp, + CONSTRAINT "player_index_account_id_player_id_pk" PRIMARY KEY("account_id","player_id") +); +--> statement-breakpoint +CREATE TABLE "player"."quest" ( + "player_id" integer NOT NULL, + "name" varchar(32) NOT NULL, + "state" varchar(64) NOT NULL, + "value" integer DEFAULT 0 NOT NULL +); +--> statement-breakpoint +CREATE TABLE "player"."refine_proto" ( + "id" integer PRIMARY KEY NOT NULL, + "vnum_0" integer DEFAULT 0 NOT NULL, + "count_0" integer NOT NULL, + "vnum_1" integer DEFAULT 0 NOT NULL, + "count_1" integer NOT NULL, + "vnum_2" integer DEFAULT 0 NOT NULL, + "count_2" integer NOT NULL, + "vnum_3" integer DEFAULT 0 NOT NULL, + "count_3" integer NOT NULL, + "vnum_4" integer DEFAULT 0 NOT NULL, + "count_4" integer NOT NULL, + "cost" integer DEFAULT 0 NOT NULL, + "src_vnum" integer DEFAULT 0 NOT NULL, + "result_vnum" integer DEFAULT 0 NOT NULL, + "probability" integer DEFAULT 100 NOT NULL +); +--> statement-breakpoint +CREATE TABLE "player"."safebox" ( + "account_id" integer NOT NULL, + "size" integer DEFAULT 0 NOT NULL, + "password" varchar(6) NOT NULL, + "gold" integer DEFAULT 0 NOT NULL +); +--> statement-breakpoint +CREATE TABLE "player"."shop" ( + "vnum" integer PRIMARY KEY NOT NULL, + "name" varchar(32) DEFAULT 'NONAME' NOT NULL, + "npc_vnum" integer NOT NULL +); +--> statement-breakpoint +CREATE TABLE "player"."shop_item" ( + "shop_vnum" integer NOT NULL, + "item_vnum" integer NOT NULL, + "count" integer DEFAULT 1 NOT NULL, + CONSTRAINT "shop_vnum_unique" UNIQUE("shop_vnum","item_vnum","count") +); +--> statement-breakpoint +CREATE TABLE "player"."skill_proto" ( + "vnum" integer DEFAULT 0 NOT NULL, + "name" text NOT NULL, + "type" integer DEFAULT 0 NOT NULL, + "level_step" integer DEFAULT 0 NOT NULL, + "max_level" integer DEFAULT 0 NOT NULL, + "level_limit" integer DEFAULT 0 NOT NULL, + "point_on" varchar(100) DEFAULT '0' NOT NULL, + "point_poly" varchar(100) NOT NULL, + "sp_cost_poly" varchar(100) NOT NULL, + "duration_poly" varchar(100) NOT NULL, + "duration_sp_cost_poly" varchar(100) NOT NULL, + "cooldown_poly" varchar(100) NOT NULL, + "master_bonus_poly" varchar(100) NOT NULL, + "attack_grade_poly" varchar(100) NOT NULL, + "set_flag" "skill_proto_set_flag"[] DEFAULT '{}' NOT NULL, + "set_flag_bits" bigint GENERATED ALWAYS AS (enum_array_to_bitmask("player"."skill_proto"."set_flag")) STORED, + "set_affect_flag" "player"."skill_proto_set_affect_flag", + "set_affect_flag_bits" bigint GENERATED ALWAYS AS (enum_to_bitmask("player"."skill_proto"."set_affect_flag")) STORED, + "point_on_2" varchar(100) DEFAULT 'NONE' NOT NULL, + "point_poly_2" varchar(100) NOT NULL, + "duration_poly_2" varchar(100) NOT NULL, + "set_affect_flag_2" "player"."skill_proto_set_affect_flag_2", + "set_affect_flag_2_bits" bigint GENERATED ALWAYS AS (enum_to_bitmask("player"."skill_proto"."set_affect_flag_2")) STORED, + "point_on_3" varchar(100) DEFAULT 'NONE' NOT NULL, + "point_poly_3" varchar(100) NOT NULL, + "duration_poly_3" varchar(100) NOT NULL, + "grand_master_add_sp_cost_poly" varchar(100) NOT NULL, + "prerequisite_skill_vnum" integer DEFAULT 0 NOT NULL, + "prerequisite_skill_level" integer DEFAULT 0 NOT NULL, + "skill_type" "player"."skill_proto_skill_type" DEFAULT 'NORMAL' NOT NULL, + "skill_type_bits" bigint GENERATED ALWAYS AS (enum_to_bitmask("player"."skill_proto"."skill_type")) STORED, + "max_hit" integer DEFAULT 0 NOT NULL, + "splash_around_damage_adjust_poly" varchar(100) DEFAULT '1' NOT NULL, + "target_range" integer DEFAULT 1000 NOT NULL, + "splash_range" integer DEFAULT 0 NOT NULL +); +--> statement-breakpoint +ALTER TABLE "common"."gm_list" ADD CONSTRAINT "gm_list_player_id_player_id_fk" FOREIGN KEY ("player_id") REFERENCES "player"."player"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "log"."change_name" ADD CONSTRAINT "change_name_player_id_player_id_fk" FOREIGN KEY ("player_id") REFERENCES "player"."player"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "log"."command_log" ADD CONSTRAINT "command_log_player_id_player_id_fk" FOREIGN KEY ("player_id") REFERENCES "player"."player"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "log"."fish_log" ADD CONSTRAINT "fish_log_player_id_player_id_fk" FOREIGN KEY ("player_id") REFERENCES "player"."player"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "log"."gold_log" ADD CONSTRAINT "gold_log_player_id_player_id_fk" FOREIGN KEY ("player_id") REFERENCES "player"."player"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "log"."level_log" ADD CONSTRAINT "level_log_player_id_player_id_fk" FOREIGN KEY ("player_id") REFERENCES "player"."player"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "log"."login_log" ADD CONSTRAINT "login_log_account_id_account_id_fk" FOREIGN KEY ("account_id") REFERENCES "account"."account"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "log"."login_log" ADD CONSTRAINT "login_log_player_id_player_id_fk" FOREIGN KEY ("player_id") REFERENCES "player"."player"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "log"."login_log_2" ADD CONSTRAINT "login_log_2_account_id_account_id_fk" FOREIGN KEY ("account_id") REFERENCES "account"."account"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "log"."login_log_2" ADD CONSTRAINT "login_log_2_player_id_player_id_fk" FOREIGN KEY ("player_id") REFERENCES "player"."player"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "log"."refine_log" ADD CONSTRAINT "refine_log_player_id_player_id_fk" FOREIGN KEY ("player_id") REFERENCES "player"."player"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "log"."speed_hack_log" ADD CONSTRAINT "speed_hack_log_player_id_player_id_fk" FOREIGN KEY ("player_id") REFERENCES "player"."player"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "player"."affect" ADD CONSTRAINT "affect_player_id_player_id_fk" FOREIGN KEY ("player_id") REFERENCES "player"."player"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "player"."change_empire" ADD CONSTRAINT "change_empire_account_id_account_id_fk" FOREIGN KEY ("account_id") REFERENCES "account"."account"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "player"."guild_comment" ADD CONSTRAINT "guild_comment_guild_id_guild_id_fk" FOREIGN KEY ("guild_id") REFERENCES "player"."guild"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "player"."guild_grade" ADD CONSTRAINT "guild_grade_guild_id_guild_id_fk" FOREIGN KEY ("guild_id") REFERENCES "player"."guild"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "player"."guild_member" ADD CONSTRAINT "guild_member_player_id_player_id_fk" FOREIGN KEY ("player_id") REFERENCES "player"."player"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "player"."guild_member" ADD CONSTRAINT "guild_member_guild_id_guild_id_fk" FOREIGN KEY ("guild_id") REFERENCES "player"."guild"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "player"."guild_war_bet" ADD CONSTRAINT "guild_war_bet_guild_id_guild_id_fk" FOREIGN KEY ("guild_id") REFERENCES "player"."guild"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "player"."guild_war_bet" ADD CONSTRAINT "guild_war_bet_war_id_guild_war_reservation_id_fk" FOREIGN KEY ("war_id") REFERENCES "player"."guild_war_reservation"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "player"."guild_war_reservation" ADD CONSTRAINT "guild_war_reservation_guild1_guild_id_fk" FOREIGN KEY ("guild1") REFERENCES "player"."guild"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "player"."guild_war_reservation" ADD CONSTRAINT "guild_war_reservation_guild2_guild_id_fk" FOREIGN KEY ("guild2") REFERENCES "player"."guild"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "player"."horse_name" ADD CONSTRAINT "horse_name_player_id_player_id_fk" FOREIGN KEY ("player_id") REFERENCES "player"."player"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "player"."item_award" ADD CONSTRAINT "item_award_player_id_player_id_fk" FOREIGN KEY ("player_id") REFERENCES "player"."player"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "player"."lotto_list" ADD CONSTRAINT "lotto_list_playerId_player_id_fk" FOREIGN KEY ("playerId") REFERENCES "player"."player"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "player"."marriage" ADD CONSTRAINT "marriage_player_id_1_player_id_fk" FOREIGN KEY ("player_id_1") REFERENCES "player"."player"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "player"."marriage" ADD CONSTRAINT "marriage_player_id_2_player_id_fk" FOREIGN KEY ("player_id_2") REFERENCES "player"."player"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "player"."monarch" ADD CONSTRAINT "monarch_player_id_player_id_fk" FOREIGN KEY ("player_id") REFERENCES "player"."player"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "player"."monarch_candidacy" ADD CONSTRAINT "monarch_candidacy_player_id_player_id_fk" FOREIGN KEY ("player_id") REFERENCES "player"."player"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "player"."monarch_election" ADD CONSTRAINT "monarch_election_player_id_player_id_fk" FOREIGN KEY ("player_id") REFERENCES "player"."player"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "player"."monarch_election" ADD CONSTRAINT "monarch_election_selected_player_id_player_id_fk" FOREIGN KEY ("selected_player_id") REFERENCES "player"."player"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "player"."player" ADD CONSTRAINT "player_account_id_account_id_fk" FOREIGN KEY ("account_id") REFERENCES "account"."account"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "player"."player_deleted" ADD CONSTRAINT "player_deleted_account_id_account_id_fk" FOREIGN KEY ("account_id") REFERENCES "account"."account"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "player"."player_index" ADD CONSTRAINT "player_index_account_id_account_id_fk" FOREIGN KEY ("account_id") REFERENCES "account"."account"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "player"."quest" ADD CONSTRAINT "quest_player_id_player_id_fk" FOREIGN KEY ("player_id") REFERENCES "player"."player"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "player"."safebox" ADD CONSTRAINT "safebox_account_id_account_id_fk" FOREIGN KEY ("account_id") REFERENCES "account"."account"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "player"."shop_item" ADD CONSTRAINT "shop_item_shop_vnum_shop_vnum_fk" FOREIGN KEY ("shop_vnum") REFERENCES "player"."shop"("vnum") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +CREATE INDEX "account_social_id" ON "account"."account" USING btree ("social_id");--> statement-breakpoint +CREATE INDEX "locale_key" ON "common"."locale" USING btree ("key");--> statement-breakpoint +CREATE INDEX "cube_log_player_id" ON "log"."cube_log" USING btree ("player_id");--> statement-breakpoint +CREATE INDEX "cube_log_item_vnum" ON "log"."cube_log" USING btree ("item_vnum");--> statement-breakpoint +CREATE INDEX "cube_log_item_uid" ON "log"."cube_log" USING btree ("item_uid");--> statement-breakpoint +CREATE INDEX "gold_log_created_at" ON "log"."gold_log" USING btree ("created_at");--> statement-breakpoint +CREATE INDEX "gold_log_player_id" ON "log"."gold_log" USING btree ("player_id");--> statement-breakpoint +CREATE INDEX "gold_log_what" ON "log"."gold_log" USING btree ("what");--> statement-breakpoint +CREATE INDEX "gold_log_how" ON "log"."gold_log" USING btree ("how");--> statement-breakpoint +CREATE INDEX "log_who" ON "log"."log" USING btree ("who");--> statement-breakpoint +CREATE INDEX "log_what" ON "log"."log" USING btree ("what");--> statement-breakpoint +CREATE INDEX "log_how" ON "log"."log" USING btree ("how");--> statement-breakpoint +CREATE INDEX "login_log_player_id" ON "log"."login_log" USING btree ("player_id","type");--> statement-breakpoint +CREATE INDEX "money_log_type" ON "log"."money_log" USING btree ("type","vnum");--> statement-breakpoint +CREATE INDEX "quest_reward_log_player_id" ON "log"."quest_reward_log" USING btree ("player_id");--> statement-breakpoint +CREATE INDEX "shout_log_created_at" ON "log"."shout_log" USING btree ("created_at");--> statement-breakpoint +CREATE INDEX "aaa" ON "player"."guild_comment" USING btree ("notice","id","guild_id");--> statement-breakpoint +CREATE INDEX "guild_comment_guild_id" ON "player"."guild_comment" USING btree ("guild_id");--> statement-breakpoint +CREATE INDEX "item_owner_id" ON "player"."item" USING btree ("owner_id");--> statement-breakpoint +CREATE INDEX "item_window" ON "player"."item" USING btree ("window");--> statement-breakpoint +CREATE INDEX "item_vnum" ON "player"."item" USING btree ("vnum");--> statement-breakpoint +CREATE INDEX "item_award_player_id" ON "player"."item_award" USING btree ("player_id");--> statement-breakpoint +CREATE INDEX "item_award_given_at" ON "player"."item_award" USING btree ("give_at");--> statement-breakpoint +CREATE INDEX "item_award_taken_at" ON "player"."item_award" USING btree ("taken_at");--> statement-breakpoint +CREATE INDEX "object_proto_vnum" ON "player"."object_proto" USING btree ("vnum");--> statement-breakpoint +CREATE INDEX "object_proto_group_vnum" ON "player"."object_proto" USING btree ("group_vnum");--> statement-breakpoint +CREATE INDEX "object_proto_upgrade_vnum" ON "player"."object_proto" USING btree ("upgrade_vnum");--> statement-breakpoint +CREATE INDEX "player_account_id" ON "player"."player" USING btree ("account_id");--> statement-breakpoint +CREATE INDEX "player_name" ON "player"."player" USING btree ("name");--> statement-breakpoint +CREATE INDEX "player_deleted_account_id" ON "player"."player_deleted" USING btree ("account_id");--> statement-breakpoint +CREATE INDEX "player_deleted_name" ON "player"."player_deleted" USING btree ("name");--> statement-breakpoint +CREATE INDEX "player_index_empire" ON "player"."player_index" USING btree ("empire");--> statement-breakpoint +CREATE INDEX "quest_player_id" ON "player"."quest" USING btree ("player_id");--> statement-breakpoint +CREATE INDEX "quest_name" ON "player"."quest" USING btree ("name");--> statement-breakpoint +CREATE INDEX "quest_state" ON "player"."quest" USING btree ("state");--> statement-breakpoint +CREATE INDEX "refine_proto_src_vnum" ON "player"."refine_proto" USING btree ("src_vnum");--> statement-breakpoint +CREATE INDEX "refine_proto_result_vnum" ON "player"."refine_proto" USING btree ("result_vnum");--> statement-breakpoint +CREATE INDEX "shop_vnum" ON "player"."shop" USING btree ("vnum");--> statement-breakpoint +CREATE INDEX "shop_item_item_vnum" ON "player"."shop_item" USING btree ("item_vnum"); \ No newline at end of file diff --git a/drizzle/0002_seed.sql b/drizzle/0002_seed.sql new file mode 100644 index 0000000..440f7fe --- /dev/null +++ b/drizzle/0002_seed.sql @@ -0,0 +1,19 @@ +insert into "player"."skill_proto" ("vnum", "name", "type", "level_step", "max_level", "level_limit", "point_on", "point_poly", "sp_cost_poly", "duration_poly", "duration_sp_cost_poly", "cooldown_poly", "master_bonus_poly", "attack_grade_poly", "set_flag", "set_affect_flag", "point_on_2", "point_poly_2", "duration_poly_2", "set_affect_flag_2", "point_on_3", "point_poly_3", "duration_poly_3", "grand_master_add_sp_cost_poly", "prerequisite_skill_vnum", "prerequisite_skill_level", "skill_type", "max_hit", "splash_around_damage_adjust_poly", "target_range", "splash_range") values (1, 'u++/rML8', 1, 1, 1, 0, 'HP', '-( 1.1*atk + (0.5*atk + 1.5 * str)*k)', '40+100*k', '', '', '12', '-( 1.1*atk + (0.5*atk + 1.5 * str)*k)', '', '{"ATTACK","USE_MELEE_DAMAGE"}', default, 'NONE', '', '', default, '', '', '', '40+100*k', 0, 0, 'MELEE', 5, '1', 0, 0), (2, 'xsi55sezv+w=', 1, 1, 1, 0, 'HP', '-(3*atk + (0.8*atk + str*5 + dex*3 +con)*k)', '50+130*k', '', '', '15', '-(3*atk + (0.8*atk + str*5 + dex*3 +con)*k)', '', '{"ATTACK","USE_MELEE_DAMAGE"}', default, 'NONE', '', '', default, '', '', '', '50+130*k', 0, 0, 'MELEE', 12, '1', 0, 200), (3, 'wPyxzcil', 1, 1, 1, 0, 'ATT_SPEED', '50*k', '50+140*k', '60+90*k', '', '63+10*k', '50*k', '', '{"SELFONLY"}', 'JEONGWIHON', 'MOV_SPEED', '20*k', '60+90*k', default, '', '', '', '50+140*k', 0, 0, 'NORMAL', 1, '1', 0, 0), (4, 'sMuw5g==', 1, 1, 1, 0, 'ATT_GRADE', '(100 + str + lv * 3)*k', '100+200*k', '30+50*k', '', '30+10*k', '(100 + str + lv * 3)*k', '', '{"SELFONLY"}', 'GEOMGYEONG', 'NONE', '', '', default, '', '', '', '100+200*k', 0, 0, 'NORMAL', 1, '1', 0, 0), (5, 'xbrIr7Dd', 1, 1, 1, 0, 'HP', '-(2*atk + (atk + dex*3 + str*7 + con)*k)', '60+120*k', '', '', '12', '-(2*atk + (atk + dex*3 + str*7 + con)*k)', '', '{"ATTACK","USE_MELEE_DAMAGE","SPLASH","CRUSH"}', default, 'MOV_SPEED', '150', '3', default, '', '', '', '60+120*k', 0, 0, 'MELEE', 4, '1', 0, 200), (16, 'seKw+ML8', 1, 1, 1, 0, 'HP', '-(2.3*atk + (4*atk + str*4 + con)*k)', '60+120*k', '', '', '15', '-(2.3*atk + (4*atk + str*4 + con)*k)', '', '{"ATTACK","USE_MELEE_DAMAGE"}', default, 'NONE', '', '', default, '', '', '', '60+120*k', 0, 0, 'MELEE', 4, '1', 0, 100), (17, 'sN276sW4v+w=', 1, 1, 1, 0, 'HP', '-(2.3*atk + (3*atk + str*4 + con*3)*k)', '60+150*k', '', '', '15', '-(2.3*atk + (3*atk + str*4 + con*3)*k)', '', '{"ATTACK","USE_MELEE_DAMAGE"}', default, 'NONE', '', '', default, '', '', '', '60+150*k', 0, 0, 'MELEE', 8, '1', 0, 200), (18, 'tOvB+LCi', 1, 1, 1, 0, 'HP', '-(2*atk + (2*atk + 2*dex + 2*con + str*4)*k)', '50+140*k', '', '', '25', '-(2*atk + (2*atk + 2*dex + 2*con + str*4)*k)', '', '{"ATTACK","USE_MELEE_DAMAGE","SELFONLY","SPLASH","ATTACK_STUN"}', default, 'NONE', '100+k*1000/6', '2', default, '', '', '', '50+140*k', 0, 0, 'MELEE', 10, '1', 0, 400), (19, 'w7Wx2cPf', 1, 1, 1, 0, 'DEF_GRADE', '(200 + str*0.2 + con*0.5 ) *k', '80+220*k', '60+90*k', '', '63+10*k', '(200 + str*0.2 + con*0.5 ) *k', '', '{"SELFONLY"}', 'CHEONGEUN', 'MOV_SPEED', '-(1+9*k)', '60+90*k', default, '', '', '', '80+220*k', 0, 0, 'NORMAL', 1, '1', 0, 0), (20, 'sMvHsw==', 1, 1, 1, 0, 'HP', '-(2*atk + (atk + dex*3 + str*5 + con)*k)', '40+120*k', '', '', '20', '-(2*atk + (atk + dex*3 + str*5 + con)*k)', '', '{"ATTACK","USE_MELEE_DAMAGE","SPLASH","CRUSH"}', default, 'NONE', '', '', default, '', '', '', '40+120*k', 0, 0, 'MELEE', 10, '0.5', 1200, 200), (31, 'vs+9wA==', 2, 1, 1, 0, 'HP', '-(atk + (1.2 * atk + number(500, 700) + dex*4+ str*4 )*k)', '40+160*k', '', '', '15', '-(atk + (1.2 * atk + number(500, 700) + dex*4+ str*4 )*k)', '', '{"ATTACK","USE_MELEE_DAMAGE"}', default, 'NONE', '', '', default, '', '', '', '40+160*k', 0, 0, 'MELEE', 6, '0.8', 0, 0), (32, 'scO9xcW6v7U=', 2, 1, 1, 0, 'HP', '-(atk + (1.6* atk + number(200,300) + dex*7 + str*7)*k)', '40+160*k', '', '', '20', '-(atk + (1.6* atk + number(200,300) + dex*7 + str*7)*k)', '', '{"ATTACK","USE_MELEE_DAMAGE"}', default, 'NONE', '', '', default, '', '', '', '40+160*k', 0, 0, 'MELEE', 6, '0.8', 800, 0), (33, 'wve3+7vs', 2, 1, 1, 0, 'HP', '-(2*atk + (0.5*atk + dex*9 + str*7)*k)', '50+140*k', '', '', '25', '-(2*atk + (0.5*atk + dex*9 + str*7)*k)', '', '{"ATTACK","USE_MELEE_DAMAGE","ATTACK_POISON"}', default, 'NONE', '40*k', '', default, '', '', '', '50+140*k', 0, 0, 'MELEE', 12, '0.8', 0, 0), (34, 'wLrH/Ln9', 2, 1, 1, 0, 'NONE', '', '30+60*k', '15+30*k', '', '60', '', '', '{"SELFONLY"}', 'EUNHYUNG', 'NONE', '', '', default, '', '', '', '30+60*k', 0, 0, 'NORMAL', 1, '1', 0, 0), (35, 'u+qw+LrQ', 2, 1, 1, 0, 'HP', '-(lv*2+(atk + str*3 + dex*18)*k)', '40+130*k', '', '', '25', '-(lv*2+(atk + str*3 + dex*18)*k)', '', '{"ATTACK","USE_MELEE_DAMAGE","SPLASH","ATTACK_POISON"}', default, 'NONE', '60*k', '5+25*k', default, '', '', '', '40+130*k', 0, 0, 'MAGIC', 0, '0.5', 800, 200), (46, 'v6y75w==', 2, 1, 1, 0, 'HP', '-(atk + 0.3*atk*floor(2+k*6)+ (0.8*atk+dex*8*ar) *k)', '40+130*k', '', '', '15', '-(atk + 0.2*atk*floor(2+k*6)+ (0.8*atk+dex*8*ar) *k)', '', '{"ATTACK","USE_ARROW_DAMAGE"}', default, 'NONE', '', '', default, '', '', '', '40+130*k', 0, 0, 'RANGE', 1, '1', 2500, 0), (47, 'sPyw3bz6', 2, 1, 1, 0, 'HP', '-(atk + (1.9*atk + dex*2+ str*2)*k)', '30+130*k', '', '', '12', '-(atk + (1.7*atk + dex*2+ str*2)*k)', '', '{"ATTACK","USE_ARROW_DAMAGE"}', default, 'NONE', '', '', default, '', '', '', '30+130*k', 0, 0, 'RANGE', 8, '1', 2500, 0), (48, 'yK3BtsbE', 2, 1, 1, 0, 'HP', '-(1.5*atk + (2.8*atk + number(100, 300))*k)', '50+130*k', '', '', '25', '-(1.5*atk + (2.6*atk + number(100, 300))*k)', '', '{"ATTACK","SPLASH","USE_ARROW_DAMAGE"}', default, 'NONE', '', '', default, '', '', '', '50+130*k', 0, 0, 'RANGE', 12, '0.6', 2500, 300), (49, 'sOaw+Lz6', 2, 1, 1, 0, 'MOV_SPEED', '60*k', '30+40*k', '15+30*k', '', '30+30*k', '60*k', '', '{"SELFONLY"}', 'GYEONGGONG', 'NONE', '', '', default, '', '', '', '30+40*k', 0, 0, 'NORMAL', 1, '1', 0, 0), (50, 'tbax4rHD', 2, 1, 1, 0, 'HP', '-(atk + (1.5*atk + number(100, 200)+dex*6+str*2)*k)', '40+160*k', '', '', '25', '-(atk + (1.2*atk + number(100, 200)+dex*6+str*2)*k)', '', '{"ATTACK","SPLASH","USE_ARROW_DAMAGE","CRUSH","ATTACK_POISON"}', default, 'NONE', '80*k', '15+30*k', default, '', '', '', '40+160*k', 0, 0, 'RANGE', 12, '0.5', 2500, 300), (61, 'vOK3ycH2', 3, 1, 1, 0, 'HP', '-(atk + 2*lv + iq*2 + ( 2*atk + str*4 + iq*14) * k)', '30+140*k', '', '', '10', '-(atk + 2*lv + iq*2 + ( 2*atk + str*4 + iq*14) * k)', '', '{"ATTACK","USE_MELEE_DAMAGE","PENETRATE"}', default, 'NONE', '1+k*9', '', default, '', '', '', '30+140*k', 0, 0, 'MELEE', 4, '1', 0, 0), (62, 'v+uxx8bE', 3, 1, 1, 0, 'HP', '-(1.1 * atk + 2*lv + iq*2+(1.5*atk + str + iq*12) * k)', '50+150*k', '', '', '15', '-(1.1 * atk + 2*lv + iq*2+(1.5*atk + str + iq*12) * k)', '', '{"ATTACK","USE_MELEE_DAMAGE","SELFONLY","SPLASH","IGNORE_TARGET_RATING"}', default, 'NONE', '1+k*9', '', default, '', '', '', '50+150*k', 0, 0, 'MELEE', 12, '1', 0, 500), (63, 'sc2wyw==', 3, 1, 1, 0, 'ATT_GRADE', '(3 * iq + 2 * lv)*k', '20+240*k', '50+100*k', '2+23*k', '0', '(3 * iq + 2 * lv)*k', '', '{"SELFONLY","TOGGLE"}', 'GWIGUM', 'HIT_HP_RECOVER', '10*k', '50+80*k', default, '', '', '', '20+240*k', 0, 0, 'NORMAL', 1, '1', 0, 0), (64, 'sPjG9w==', 3, 1, 1, 0, 'DODGE', '1 + 29 * k', '60+120*k', '60+100*k', '', '100', '1 + 29 * k', '', '{"SELFONLY"}', 'TERROR', 'NONE', '', '', default, '', '', '', '60+120*k', 0, 0, 'NORMAL', 1, '1', 0, 0), (65, 'wda4trCp', 3, 1, 1, 0, 'DEF_GRADE', '(iq+30)*k', '70+170*k', '30+120*k', '', '33+140*k', '(iq+30)*k', '', '{"SELFONLY"}', 'JUMAGAP', 'REFLECT_MELEE', '(iq/4+10)*k', '30+120*k', default, '', '', '', '70+170*k', 0, 0, 'NORMAL', 1, '1', 0, 0), (66, 'xsS5/bz6', 3, 1, 1, 0, 'HP', '-(40 +5*lv + 2*iq+(10*iq + 7*mwep + number(50,100) )*ar*k)', '30+120*k', '', '', '12', '-(40 +5*lv + 2*iq+(10*iq + 7*mwep + number(50,100) )*ar*k)', '', '{"ATTACK","COMPUTE_MAGIC_DAMAGE","SPLASH","REMOVE_GOOD_AFFECT"}', default, 'NONE', '10+40*k', '7+23*k', default, '', '', '', '30+120*k', 0, 0, 'NORMAL', 5, '0.6', 1800, 200), (76, 'uLa3yQ==', 3, 1, 1, 0, 'HP', '-(40 +5*lv + 2*iq +(13*iq + 6*mwep + number(50,100) )*ar*k)', '30+140*k', '', '', '7', '-(40 +5*lv + 2*iq +(13*iq + 6*mwep + number(50,100) )*ar*k)', '', '{"ATTACK","COMPUTE_MAGIC_DAMAGE","SPLASH"}', default, 'NONE', '', '', default, '', '', '', '30+140*k', 0, 0, 'MAGIC', 5, '0.6', 1500, 200), (77, 'yK2/sMb4', 3, 1, 1, 0, 'HP', '-(5*lv + 2*iq+(10*iq + 6*mwep + str*4 + con*2 + number(180,200) )*k)', '60+140*k', '', '', '12', '-(5*lv + 2*iq+(10*iq + 6*mwep + str*4 + con*2 + number(180,200) )*k)', '', '{"ATTACK","SELFONLY","COMPUTE_MAGIC_DAMAGE","SPLASH"}', default, 'NONE', '', '', default, '', '', '', '60+140*k', 0, 0, 'MAGIC', 15, '0.8', 0, 500), (78, 'uau/tcH4', 3, 1, 1, 0, 'HP', '-(30+ 2*lv + 2*iq+(7*iq + 6*mwep + number(200,500))*ar*k)', '20+30*k', '40+30*k', '5+40*k', '43+30*k', '-(30+ 2*lv + 2*iq+(7*iq + 6*mwep + number(200,500))*ar*k)', '', '{"ATTACK","COMPUTE_MAGIC_DAMAGE","SPLASH","TOGGLE"}', default, 'NONE', '', '', default, '', '', '', '20+30*k', 0, 0, 'MAGIC', 1, '1', 800, 0), (79, 'yOa9xbz2yKM=', 3, 1, 1, 0, 'DEF_GRADE', '(0.5*iq+15)*k', '20+30*k', '60+120*k', '5+10*k', '63+10*k', '(0.5*iq+15)*k', '', '{"SELFONLY","TOGGLE"}', 'MANASHIELD', 'MANASHIELD', '100-((iq*0.84)*k)', '60+10*k', default, '', '', '', '20+30*k', 0, 0, 'MAGIC', 1, '0.8', 0, 0), (80, 'xfW807i2t8k=', 3, 1, 1, 0, 'HP', '-(40 + 2* lv + 2*iq +(2 * con + 2 * dex + 13*iq + 6*mwep + number(180, 200))*ar*k)', '40+120*k', '', '', '12', '-(40 + 2* lv + 2*iq +(2 * con + 2 * dex + 13*iq + 6*mwep + number(180, 200))*ar*k)', '', '{"ATTACK","COMPUTE_MAGIC_DAMAGE","SPLASH","ATTACK_SLOW"}', default, 'NONE', '333+300*k', '10+10*k', default, '', '', '', '40+120*k', 0, 0, 'MAGIC', 9, '0.8', 1200, 400), (81, 'uLbIr7Dd', 3, 1, 1, 0, 'HP', '-(120 + 6*lv + (5 * con + 5 * dex + 29*iq + 9*mwep)*ar*k)', '80+220*k', '', '', '24', '-(120 + 6*lv + (5 * con + 5 * dex + 29*iq + 9*mwep)*ar*k)', '', '{"ATTACK","COMPUTE_MAGIC_DAMAGE","SPLASH"}', default, 'NONE', '', '', default, '', '', '', '80+220*k', 0, 0, 'MAGIC', 9, '0.4', 1500, 200), (91, 'uvHGxLrO', 4, 1, 1, 0, 'HP', '-(70 + 4*lv + (20*iq+5*mwep+50)*ar*k)', '30+160*k', '', '', '7', '-(70 + 4*lv + (20*iq+5*mwep+50)*ar*k)', '', '{"ATTACK","COMPUTE_MAGIC_DAMAGE","SPLASH"}', default, 'NONE', '', '', default, '', '', '', '30+160*k', 0, 0, 'MAGIC', 5, '0.5', 1800, 201), (92, 'v+vGxLvq', 4, 1, 1, 0, 'HP', '-(60 + 5*lv + (18*iq + 6*mwep + 120)*ar*k)', '50+160*k', '', '', '8', '-(60 + 5*lv + (18*iq + 6*mwep + 120)*ar*k)', '', '{"ATTACK","ATTACK_FIRE_CONT"}', default, 'NONE', 'lv+5*iq *k', 'iq*0.2*k', default, '', '', '', '50+160*k', 0, 0, 'MAGIC', 10, '0.8', 0, 0), (93, 'xtC35sb4', 4, 1, 1, 0, 'HP', '-(80 + 6*lv + (20*iq+14*mwep+120)*ar*k)', '50+160*k', '', '', '20', '-(80 + 6*lv + (20*iq+14*mwep+120)*ar*k)', '', '{"ATTACK","SELFONLY","SPLASH","ATTACK_FIRE_CONT"}', default, 'NONE', 'lv+5*iq *k', 'iq*0.2*k', default, '', '', '', '50+160*k', 0, 0, 'MAGIC', 15, '0.8', 0, 500), (94, 'yKO9xQ==', 4, 1, 1, 0, 'RESIST_NORMAL', '(iq*0.3+5)*(2*k+0.5)/(k+1.5)', '40+160*k', '60+200*k', '', '10', '(iq*0.3+5)*(2*k+0.5)/(k+1.5)', '', '{}', 'HOSIN', 'NONE', '', '', default, '', '', '', '40+160*k', 0, 0, 'NORMAL', 1, '1', 800, 0), (95, 'ud275w==', 4, 1, 1, 0, 'REFLECT_MELEE', '5+(iq*0.3 + 5)*k', '40+160*k', '60+200*k', '', '10', '5+(iq*0.3 + 5)*k', '', '{}', 'BOHO', 'NONE', '', '', default, '', '', '', '40+160*k', 0, 0, 'NORMAL', 1, '1', 1000, 0), (96, 'seLDtbTrsPg=', 4, 1, 1, 0, 'CRITICAL', '(iq*0.3+5)*(2*k+0.5)/(k+1.5)', '40+160*k', '60+100*k', '', '10', '(iq*0.3+5)*(2*k+0.5)/(k+1.5)', '', '{}', 'GICHEON', 'NONE', '', '', default, '', '', '', '40+160*k', 0, 0, 'NORMAL', 1, '1', 1000, 0), (106, 's/rA/LfJ', 4, 1, 1, 0, 'HP', '-(60 + 4*lv + (7*iq+8*mwep+number(iq*5,iq*15))*ar*k)', '30+150*k', '', '', '7', '-(60 + 4*lv + (7*iq+8*mwep+number(iq*5,iq*15))*ar*k)', '', '{"ATTACK","SPLASH"}', default, 'NONE', '', '', default, '', '', '', '30+150*k', 0, 0, 'MAGIC', 5, '0.6', 1800, 200), (107, 'uq229A==', 4, 1, 1, 0, 'HP', '-(40 + 4*lv + (13*iq+7*mwep+number(iq*5,iq*16))*ar*k)', '50+150*k', '', '', '15', '-(40 + 4*lv + (13*iq+7*mwep+number(iq*5,iq*16))*ar*k)', '', '{"ATTACK","SPLASH","ATTACK_STUN"}', default, 'NONE', '50+1000*k/6', '5', default, '', '', '', '50+150*k', 0, 0, 'MAGIC', 15, '0.8', 1500, 400), (108, 'xvi32rDd', 4, 1, 1, 0, 'HP', '-(50 + 5*lv + (6*iq+6*mwep+number(1,800))*ar*k) * (1-chain*0.13)', '40+180*k', '', '', '10', '-(50 + 5*lv + (6*iq+6*mwep+number(1,800))*ar*k) * (1-chain*0.13)', '', '{"ATTACK"}', default, 'NONE', '', '', default, '', '', '', '40+180*k', 0, 0, 'MAGIC', 7, '0.8', 2500, 0), (109, 'waS+98DO', 4, 1, 1, 0, 'HP', '200+7*lv+(30*iq+6*mwep+600)*k', '40+200*k', '', '', '10', '200+7*lv+(30*iq+6*mwep+600)*k', '', '{"REMOVE_BAD_AFFECT"}', default, 'NONE', '20+80*k', '0', default, '', '', '', '40+200*k', 0, 0, 'NORMAL', 1, '1', 1000, 0), (110, 'xOi80w==', 4, 1, 1, 0, 'MOV_SPEED', '5 + 35*k', '60+120*k', '60+100*k', '', '10', '5 + 35*k', '', '{}', 'KWAESOK', 'CASTING_SPEED', '3+33*k', '60+100*k', default, '', '', '', '60+120*k', 0, 0, 'NORMAL', 1, '1', 1000, 0), (111, 'wfW3wrz6', 4, 1, 1, 0, 'ATT_GRADE', '10+(iq*0.4 +20)*k', '60+120*k', '60+100*k', '', '10', '10+(iq*0.4 +30)*k', '', '{}', 'JEUNGRYEOK', 'NONE', '', '', default, '', '', '', '60+120*k', 0, 0, 'NORMAL', 1, '1', 1000, 0), (121, 'xeu81rfC', 0, 1, 40, 0, 'NONE', '', '', '', '', '', '', '', '{"DISABLE_BY_POINT_UP"}', default, 'NONE', '', '', default, '', '', '', '', 0, 0, 'NORMAL', 0, '1', 0, 0), (122, 'v6yw6LHi', 0, 1, 2, 0, 'NONE', '', '', '', '', '', '', '', '{"DISABLE_BY_POINT_UP"}', default, 'NONE', '', '', default, '', '', '', '', 0, 0, 'NORMAL', 0, '1', 0, 0), (124, 'w6SxpLz6', 0, 1, 40, 0, 'NONE', '', '', '', '', '', '', '', '{"DISABLE_BY_POINT_UP"}', default, 'NONE', '', '', default, '', '', '', '', 0, 0, 'NORMAL', 0, '1', 0, 0), (125, 'uq+9xQ==', 0, 1, 40, 0, 'NONE', '', '', '10+1000*k', '', '', '', '', '{"DISABLE_BY_POINT_UP"}', 'YMIR', 'NONE', '', '', 'YMIR', '', '', '', '', 0, 0, 'NORMAL', 0, '1', 1000, 0), (126, 'vcW89r7u', 0, 1, 20, 0, 'NONE', '', '', '', '', '', '', '', '{"DISABLE_BY_POINT_UP"}', default, 'NONE', '', '', default, '', '', '', '', 0, 0, 'NORMAL', 0, '1', 0, 0), (127, 'w7XBtr7u', 0, 1, 20, 0, 'NONE', '', '', '', '', '', '', '', '{"DISABLE_BY_POINT_UP"}', default, 'NONE', '', '', default, '', '', '', '', 0, 0, 'NORMAL', 0, '1', 0, 0), (128, 'wfiz677u', 0, 1, 20, 0, 'NONE', '', '', '', '', '', '', '', '{"DISABLE_BY_POINT_UP"}', default, 'NONE', '', '', default, '', '', '', '', 0, 0, 'NORMAL', 0, '1', 0, 0), (129, 'tdCwqbz6', 0, 1, 40, 0, 'NONE', '', '', '', '', '', '', '', '{"DISABLE_BY_POINT_UP"}', default, 'NONE', '', '', default, 'NONE', '', '', '', 0, 0, 'NORMAL', 0, '1', 0, 0), (130, 'vcK4tg==', 0, 1, 1, 0, 'NONE', '', '', '', '', '', '', '', '{"DISABLE_BY_POINT_UP"}', default, 'NONE', '', '', default, '', '', '', '', 0, 0, 'NORMAL', 0, '1', 0, 0), (131, 'uLu80siv', 0, 1, 10, 0, 'NONE', '', '', '', '', '', '', '', '{"DISABLE_BY_POINT_UP"}', default, 'NONE', '', '', default, '', '', '', '', 0, 0, 'NORMAL', 0, '1', 0, 0), (137, 's625qw==', 5, 1, 1, 50, 'HP', '-(atk+(2*atk*k))', '60+80*k', '', '', '5-(4*k)', '', '', '{"ATTACK","USE_MELEE_DAMAGE","CRUSH"}', default, 'NONE', '', '', default, '', '', '', '', 0, 0, 'MELEE', 10, '1', 300, 0), (138, 'tbmw3Q==', 5, 1, 1, 52, 'HP', '-(2.4*(200+1.5*lv)+(3*200*k))', '60+120*k', '', '', '15', '', '', '{"ATTACK","USE_MELEE_DAMAGE","SPLASH","CRUSH_LONG"}', default, 'MOV_SPEED', '50', '5', default, '', '', '', '', 0, 0, 'MELEE', 6, '1', 400, 100), (139, 'xbvD4g==', 5, 1, 1, 55, 'HP', '-(2*(200+1.5*lv)+(3*200*k))', '60+160*k', '', '', '20', '', '', '{"ATTACK","USE_MELEE_DAMAGE","SELFONLY","SPLASH","CRUSH"}', default, 'NONE', '', '', default, '', '', '', '', 0, 0, 'MELEE', 12, '1', 400, 250), (140, 's625qyjIsCk=', 5, 1, 1, 50, 'HP', '-(atk+(2*atk*k))', '60+80*k', '', '', '10', '', '', '{"ATTACK","USE_ARROW_DAMAGE","CRUSH"}', default, 'NONE', '', '', default, '', '', '', '', 0, 0, default, 5, '1', 2500, 0), (151, 'v+u+yA==', 0, 1, 7, 0, 'NONE', '', '', '', '', '', '', '', '{}', default, 'NONE', '', '', default, '', '', '', '', 0, 0, 'NORMAL', 0, '1', 0, 0), (152, 'v+u9xcDHx8c=', 0, 1, 7, 0, 'MAX_HP', 'maxhp*0.2*k', '150+150*k', '300', '', '600', '', '', '{}', default, 'NONE', '', '', default, '', '', '', '', 0, 0, 'NORMAL', 0, '1', 0, 0), (153, 'v+u9xcDHw+C6uQ==', 0, 1, 7, 0, 'MAX_SP', 'maxsp*0.2*k', '150+150*k', '300', '', '600', '', '', '{}', default, 'NONE', '', '', default, '', '', '', '', 0, 0, 'NORMAL', 0, '1', 0, 0), (154, 'vLrI1rCp', 0, 1, 7, 0, 'DEF_GRADE', 'odef*0.1*k', '150+150*k', '180', '', '480', '', '', '{}', default, 'NONE', '', '', default, '', '', '', '', 0, 0, 'NORMAL', 0, '1', 0, 0), (155, 'sKG808it', 0, 1, 7, 0, 'MOV_SPEED', '15*k', '150+150*k', '180', '', '480', '', '', '{}', default, 'ATT_SPEED', '15*k', '180', default, '', '', '', '', 0, 0, 'NORMAL', 0, '1', 0, 0), (156, 'v+u9xcDHutCz6w==', 0, 1, 7, 0, 'CRITICAL', '50*k', '150+150*k', '180', '', '480', '', '', '{"SELFONLY"}', default, 'NONE', '', '', default, '', '', '', '', 0, 0, 'NORMAL', 0, '1', 0, 0), (157, 'wda5rrz6', 0, 1, 7, 0, 'CASTING_SPEED', '50*k', '150+150*k', '180', '', '480', '', '', '{"SELFONLY"}', default, 'NONE', '', '', default, '', '', '', '', 0, 0, 'NORMAL', 0, '1', 0, 0), (158, 'sea15cDMtb8=', 0, 1, 3, 0, 'NONE', '', '', '', '', '', '', '', '{"SELFONLY"}', default, 'NONE', '', '', default, '', '', '', '', 0, 0, 'NORMAL', 0, '1', 0, 0), (159, 'sPiwo8DHua4=', 0, 1, 5, 0, 'NONE', '', '', '', '', '', '', '', '{"SELFONLY"}', default, 'NONE', '', '', default, '', '', '', '', 0, 0, 'NORMAL', 0, '1', 0, 0), (160, 'sKG808it', 0, 1, 5, 0, 'NONE', '3*k', '80-12*k', '300', '', '', '', '', '{"SELFONLY"}', default, 'NONE', '', '', default, '', '', '', '', 0, 0, 'NORMAL', 0, '1', 0, 0), (161, 'sPiwo8DHua4=', 0, 1, 2, 0, 'NONE', '', '50', '', '', '', '', '', '{}', default, 'NONE', '', '', default, '', '', '', '', 0, 0, 'NORMAL', 0, '1', 0, 0), (162, 'sPiwo8DMtb8=', 0, 1, 2, 0, 'NONE', '', '20', '', '', '', '', '', '{}', default, 'NONE', '', '', default, '', '', '', '', 0, 0, 'NORMAL', 0, '1', 0, 0), (256, 'Q1JVU0gyMDC9usWz', 0, 1, 1, 0, 'HP', '-5*k*atk', '', '', '', '4', '', '', '{"ATTACK","USE_MELEE_DAMAGE","SPLASH","CRUSH"}', default, 'NONE', '', '', default, '', '', '', '', 0, 0, 'MELEE', 0, '1', 0, 300), (257, 'wM+53bn8wKczNTC9usWz', 0, 1, 1, 0, 'HP', '-5*k*atk', '', '', '', '6', '', '', '{"ATTACK","USE_MELEE_DAMAGE","SPLASH"}', default, 'NONE', '', '', default, '', '', '', '', 0, 0, 'MELEE', 0, '1', 0, 525), (258, 'Q1JVU0gzMDC9usWz', 0, 1, 1, 0, 'HP', '-5*k*atk', '', '', '', '8', '', '', '{"ATTACK","USE_MELEE_DAMAGE","SPLASH","CRUSH"}', default, 'NONE', '', '', default, '', '', '', '', 0, 0, 'MELEE', 0, '1', 0, 450), (259, 'wM+53bn8wKcyMDC9usWz', 0, 1, 1, 0, 'HP', '-5*k*atk', '', '', '', '10', '', '', '{"ATTACK","USE_MELEE_DAMAGE","SPLASH"}', default, 'NONE', '', '', default, '', '', '', '', 0, 0, 'MELEE', 0, '1', 0, 300), (260, 'Q1VSU0g0MDC9usWz', 0, 1, 1, 0, 'HP', '-5*k*atk', '', '', '', '12', '', '', '{"ATTACK","USE_MELEE_DAMAGE","SPLASH","CRUSH"}', default, 'NONE', '', '', default, '', '', '', '', 0, 0, 'MELEE', 0, '1', 0, 600), (261, 'tbYyNTC9usWz', 0, 1, 1, 0, 'HP', '-5*k*atk', '', '', '', '10', '', '', '{"ATTACK","USE_MELEE_DAMAGE","SPLASH","ATTACK_POISON"}', default, 'NONE', '80', '', default, '', '', '', '', 0, 0, 'MELEE', 0, '1', 0, 375), (262, 'U0xPVzMwML26xbM=', 0, 1, 1, 0, 'HP', '-5*k*atk', '', '', '', '14', '', '', '{"ATTACK","USE_MELEE_DAMAGE","SPLASH"}', default, 'MOV_SPEED', '-20', '10', default, '', '', '', '', 0, 0, 'MELEE', 0, '1', 0, 450); +--> statement-breakpoint +insert into "player"."shop" ("vnum", "name", "npc_vnum") values (1, 'Weapon Shop Dealer', 9001), (2, 'Fisherman', 9009), (3, 'General Store Saleswoman', 9003), (4, 'Armour Shop Dealer', 9002), (5, 'Weapon Shop Dealer 2', 9007), (6, 'Armour Shop Dealer 2', 9008), (7, 'gold_bar_shop', 9005), (8, 'firework_shop', 9004), (9, 'Peddler', 20042), (10, 'pick_shop', 20015), (11, 'Stable Boy', 20349), (1001, 'all_sword', 0), (1002, 'all_dualhand_sword', 0), (1003, 'all_bow', 0), (1004, 'all_twohand_sword', 0), (1005, 'all_bell', 0), (1006, 'all_fan', 0), (1007, 'all_warrior_armour', 0), (1008, 'all_assassin_armour', 0), (1009, 'all_sura_armour', 0), (1010, 'all_shaman_armour', 0), (1011, 'all_warrior_helmet', 0), (1012, 'all_assassin_helmet', 0), (1013, 'all_sura_helmet', 0), (1014, 'all_shaman_helmet', 0), (1015, 'all_shield', 0), (1016, 'all_bracelet', 0), (1017, 'all_shoe', 0), (1018, 'all_necklace', 0), (1019, 'all_ring', 0), (13, 'Alchemist', 20001); +--> statement-breakpoint +insert into "player"."shop_item" ("shop_vnum", "item_vnum", "count") values (1, 20, 1), (1, 40, 1), (1, 60, 1), (1, 80, 1), (1, 1040, 1), (1, 2010, 1), (1, 2030, 1), (1, 2050, 1), (1, 2070, 1), (1, 3010, 1), (1, 3030, 1), (1, 3050, 1), (1, 3070, 1), (1, 4000, 1), (1, 4010, 1), (1, 4020, 1), (1, 5010, 1), (1, 5030, 1), (1, 7010, 1), (1, 7030, 1), (1, 7050, 1), (1, 8000, 100), (1, 8000, 200), (2, 27400, 1), (2, 27600, 1), (2, 27610, 1), (2, 27800, 5), (2, 27800, 50), (2, 27801, 5), (2, 27801, 50), (3, 14000, 1), (3, 15000, 1), (3, 16000, 1), (3, 17000, 1), (3, 27001, 5), (3, 27001, 20), (3, 27001, 200), (3, 27002, 5), (3, 27002, 20), (3, 27002, 200), (3, 27003, 5), (3, 27003, 20), (3, 27003, 200), (3, 27004, 5), (3, 27004, 20), (3, 27004, 200), (3, 27005, 5), (3, 27005, 20), (3, 27005, 200), (3, 27006, 5), (3, 27006, 20), (3, 27006, 200), (3, 50200, 1), (3, 50901, 10), (4, 11200, 1), (4, 11220, 1), (4, 11230, 1), (4, 11400, 1), (4, 11420, 1), (4, 11430, 1), (4, 11600, 1), (4, 11620, 1), (4, 11630, 1), (4, 11800, 1), (4, 11820, 1), (4, 11830, 1), (4, 12200, 1), (4, 12340, 1), (4, 12480, 1), (4, 12620, 1), (4, 13000, 1), (5, 3100, 1), (5, 5020, 1), (5, 5030, 1), (5, 5040, 1), (5, 5050, 1), (5, 5070, 1), (5, 5080, 1), (5, 7020, 1), (5, 7050, 1), (5, 7060, 1), (5, 7090, 1), (5, 7100, 1), (6, 14000, 1), (6, 14020, 1), (6, 14040, 1), (6, 14060, 1), (6, 14080, 1), (6, 14140, 1), (6, 15000, 1), (6, 15020, 1), (6, 15040, 1), (6, 15060, 1), (6, 15080, 1), (6, 15160, 1), (6, 16000, 1), (6, 16020, 1), (6, 16040, 1), (6, 16060, 1), (6, 16080, 1), (6, 16180, 1), (6, 17000, 1), (6, 17020, 1), (6, 17040, 1), (6, 17060, 1), (6, 17080, 1), (6, 17180, 1), (7, 80003, 1), (7, 80004, 1), (7, 80005, 1), (7, 80006, 1), (7, 80007, 1), (8, 50100, 100), (8, 50101, 100), (8, 50102, 100), (8, 50103, 100), (8, 50104, 100), (8, 50105, 100), (9, 11901, 1), (9, 11903, 1), (9, 50201, 1), (10, 29101, 1), (11, 50054, 1), (11, 50055, 1), (11, 50056, 1), (13, 100100, 1), (13, 100200, 1), (1001, 10, 1), (1001, 20, 1), (1001, 30, 1), (1001, 40, 1), (1001, 50, 1), (1001, 60, 1), (1001, 70, 1), (1001, 80, 1), (1001, 90, 1), (1001, 100, 1), (1001, 110, 1), (1001, 120, 1), (1001, 130, 1), (1002, 1000, 1), (1002, 1010, 1), (1002, 1020, 1), (1002, 1030, 1), (1002, 1040, 1), (1002, 1050, 1), (1002, 1060, 1), (1002, 1070, 1), (1002, 1080, 1), (1002, 1090, 1), (1002, 4000, 1), (1002, 4010, 1), (1002, 4020, 1), (1003, 2000, 1), (1003, 2010, 1), (1003, 2020, 1), (1003, 2030, 1), (1003, 2040, 1), (1003, 2050, 1), (1003, 2060, 1), (1003, 2070, 1), (1003, 2080, 1), (1003, 2090, 1), (1003, 2100, 1), (1003, 2110, 1), (1003, 2120, 1), (1003, 8000, 50), (1003, 8000, 200), (1004, 3000, 1), (1004, 3010, 1), (1004, 3020, 1), (1004, 3030, 1), (1004, 3040, 1), (1004, 3050, 1), (1004, 3060, 1), (1004, 3070, 1), (1004, 3080, 1), (1004, 3090, 1), (1004, 3100, 1), (1004, 3110, 1), (1004, 3120, 1), (1005, 5000, 1), (1005, 5010, 1), (1005, 5020, 1), (1005, 5030, 1), (1005, 5040, 1), (1005, 5050, 1), (1005, 5060, 1), (1005, 5070, 1), (1005, 5080, 1), (1006, 7000, 1), (1006, 7010, 1), (1006, 7020, 1), (1006, 7030, 1), (1006, 7040, 1), (1006, 7050, 1), (1006, 7060, 1), (1006, 7070, 1), (1006, 7080, 1), (1006, 7090, 1), (1006, 7100, 1), (1006, 7110, 1), (1006, 7120, 1), (1007, 11200, 1), (1007, 11210, 1), (1007, 11220, 1), (1007, 11230, 1), (1007, 11240, 1), (1007, 11250, 1), (1007, 11260, 1), (1008, 11400, 1), (1008, 11410, 1), (1008, 11420, 1), (1008, 11430, 1), (1008, 11440, 1), (1008, 11450, 1), (1008, 11460, 1), (1009, 11600, 1), (1009, 11610, 1), (1009, 11620, 1), (1009, 11630, 1), (1009, 11640, 1), (1009, 11650, 1), (1009, 11660, 1), (1010, 11800, 1), (1010, 11810, 1), (1010, 11820, 1), (1010, 11830, 1), (1010, 11840, 1), (1010, 11850, 1), (1010, 11860, 1), (1011, 12200, 1), (1011, 12220, 1), (1011, 12240, 1), (1012, 12340, 1), (1012, 12360, 1), (1012, 12380, 1), (1013, 12480, 1), (1013, 12500, 1), (1013, 12520, 1), (1014, 12620, 1), (1014, 12640, 1), (1014, 12660, 1), (1015, 13000, 1), (1015, 13040, 1), (1016, 14000, 1), (1016, 14020, 1), (1016, 14040, 1), (1016, 14060, 1), (1016, 14080, 1), (1016, 14100, 1), (1016, 14120, 1), (1016, 14140, 1), (1016, 14160, 1), (1016, 14180, 1), (1016, 14200, 1), (1017, 15000, 1), (1017, 15020, 1), (1017, 15040, 1), (1017, 15060, 1), (1017, 15080, 1), (1017, 15100, 1), (1017, 15120, 1), (1017, 15140, 1), (1017, 15160, 1), (1017, 15180, 1), (1017, 15200, 1), (1017, 15220, 1), (1018, 16000, 1), (1018, 16020, 1), (1018, 16040, 1), (1018, 16060, 1), (1018, 16080, 1), (1018, 16100, 1), (1018, 16120, 1), (1018, 16140, 1), (1018, 16160, 1), (1018, 16180, 1), (1018, 16200, 1), (1019, 17000, 1), (1019, 17020, 1), (1019, 17040, 1), (1019, 17060, 1), (1019, 17080, 1), (1019, 17100, 1), (1019, 17120, 1), (1019, 17140, 1), (1019, 17160, 1), (1019, 17180, 1), (1019, 17200, 1); +--> statement-breakpoint +insert into "player"."refine_proto" ("id", "vnum_0", "count_0", "vnum_1", "count_1", "vnum_2", "count_2", "vnum_3", "count_3", "vnum_4", "count_4", "cost", "src_vnum", "result_vnum", "probability") values (1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 600, 0, 0, default), (2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1200, 0, 0, default), (3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2500, 0, 0, default), (4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5000, 0, 0, default), (5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10000, 0, 0, default), (6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (7, 30053, 1, 0, 0, 0, 0, 0, 0, 0, 0, 30000, 0, 0, default), (8, 30073, 2, 0, 0, 0, 0, 0, 0, 0, 0, 45000, 0, 0, default), (9, 30033, 2, 0, 0, 0, 0, 0, 0, 0, 0, 75000, 0, 0, default), (10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 0, 0, default), (11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2000, 0, 0, default), (12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4000, 0, 0, default), (13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8000, 0, 0, default), (14, 30030, 2, 0, 0, 0, 0, 0, 0, 0, 0, 13000, 0, 0, default), (15, 30075, 2, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (16, 30056, 2, 27799, 1, 0, 0, 0, 0, 0, 0, 40000, 0, 0, default), (17, 30022, 2, 27987, 1, 0, 0, 0, 0, 0, 0, 70000, 0, 0, default), (18, 30067, 2, 27987, 1, 0, 0, 0, 0, 0, 0, 120000, 0, 0, default), (19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1200, 0, 0, default), (20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2500, 0, 0, default), (21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5000, 0, 0, default), (22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10000, 0, 0, default), (23, 30079, 1, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (24, 30015, 1, 0, 0, 0, 0, 0, 0, 0, 0, 30000, 0, 0, default), (25, 30016, 2, 27992, 1, 0, 0, 0, 0, 0, 0, 45000, 0, 0, default), (26, 30089, 2, 27993, 1, 0, 0, 0, 0, 0, 0, 90000, 0, 0, default), (27, 30091, 2, 27994, 1, 0, 0, 0, 0, 0, 0, 150000, 0, 0, default), (28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 600, 0, 0, default), (29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1200, 0, 0, default), (30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2500, 0, 0, default), (31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5000, 0, 0, default), (32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10000, 0, 0, default), (33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (34, 30034, 2, 0, 0, 0, 0, 0, 0, 0, 0, 30000, 0, 0, default), (35, 30011, 2, 0, 0, 0, 0, 0, 0, 0, 0, 45000, 0, 0, default), (36, 30035, 2, 0, 0, 0, 0, 0, 0, 0, 0, 75000, 0, 0, default), (37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 0, 0, default), (38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2000, 0, 0, default), (39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4000, 0, 0, default), (40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8000, 0, 0, default), (41, 30052, 2, 0, 0, 0, 0, 0, 0, 0, 0, 13000, 0, 0, default), (42, 30046, 2, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (43, 30045, 2, 27799, 1, 0, 0, 0, 0, 0, 0, 40000, 0, 0, default), (44, 30025, 2, 27987, 1, 0, 0, 0, 0, 0, 0, 70000, 0, 0, default), (45, 30058, 2, 27987, 1, 0, 0, 0, 0, 0, 0, 120000, 0, 0, default), (46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1200, 0, 0, default), (47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2500, 0, 0, default), (48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5000, 0, 0, default), (49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10000, 0, 0, default), (50, 30083, 2, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (51, 30060, 2, 0, 0, 0, 0, 0, 0, 0, 0, 30000, 0, 0, default), (52, 30061, 2, 27992, 1, 0, 0, 0, 0, 0, 0, 45000, 0, 0, default), (53, 30088, 2, 27993, 1, 0, 0, 0, 0, 0, 0, 90000, 0, 0, default), (54, 30019, 2, 27994, 1, 0, 0, 0, 0, 0, 0, 150000, 0, 0, default), (55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 600, 0, 0, default), (56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1200, 0, 0, default), (57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2500, 0, 0, default), (58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5000, 0, 0, default), (59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10000, 0, 0, default), (60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (61, 30070, 2, 0, 0, 0, 0, 0, 0, 0, 0, 30000, 0, 0, default), (62, 30072, 2, 0, 0, 0, 0, 0, 0, 0, 0, 45000, 0, 0, default), (63, 30017, 2, 0, 0, 0, 0, 0, 0, 0, 0, 75000, 0, 0, default), (64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 0, 0, default), (65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2000, 0, 0, default), (66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4000, 0, 0, default), (67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8000, 0, 0, default), (68, 30041, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13000, 0, 0, default), (69, 30008, 2, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (70, 30057, 1, 27799, 1, 0, 0, 0, 0, 0, 0, 40000, 0, 0, default), (71, 30081, 1, 27987, 1, 0, 0, 0, 0, 0, 0, 70000, 0, 0, default), (72, 30077, 2, 27987, 1, 0, 0, 0, 0, 0, 0, 120000, 0, 0, default), (73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1200, 0, 0, default), (74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2500, 0, 0, default), (75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5000, 0, 0, default), (76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10000, 0, 0, default), (77, 30009, 2, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (78, 30039, 2, 0, 0, 0, 0, 0, 0, 0, 0, 30000, 0, 0, default), (79, 30040, 2, 27992, 1, 0, 0, 0, 0, 0, 0, 45000, 0, 0, default), (80, 30048, 2, 27993, 1, 0, 0, 0, 0, 0, 0, 90000, 0, 0, default), (81, 30090, 2, 27994, 1, 0, 0, 0, 0, 0, 0, 150000, 0, 0, default), (82, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 600, 0, 0, default), (83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1200, 0, 0, default), (84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2500, 0, 0, default), (85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5000, 0, 0, default), (86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10000, 0, 0, default), (87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (88, 30031, 1, 0, 0, 0, 0, 0, 0, 0, 0, 30000, 0, 0, default), (89, 30032, 2, 0, 0, 0, 0, 0, 0, 0, 0, 45000, 0, 0, default), (90, 30033, 2, 0, 0, 0, 0, 0, 0, 0, 0, 75000, 0, 0, default), (91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 0, 0, default), (92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2000, 0, 0, default), (93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4000, 0, 0, default), (94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8000, 0, 0, default), (95, 30008, 2, 0, 0, 0, 0, 0, 0, 0, 0, 13000, 0, 0, default), (96, 30075, 2, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (97, 30006, 2, 27799, 1, 0, 0, 0, 0, 0, 0, 40000, 0, 0, default), (98, 30022, 1, 27987, 1, 0, 0, 0, 0, 0, 0, 70000, 0, 0, default), (99, 30067, 2, 27987, 1, 0, 0, 0, 0, 0, 0, 120000, 0, 0, default), (100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1200, 0, 0, default), (101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2500, 0, 0, default), (102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5000, 0, 0, default), (103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10000, 0, 0, default), (104, 30079, 1, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (105, 30015, 1, 0, 0, 0, 0, 0, 0, 0, 0, 30000, 0, 0, default), (106, 30086, 2, 27992, 1, 0, 0, 0, 0, 0, 0, 45000, 0, 0, default), (107, 30050, 2, 27993, 1, 0, 0, 0, 0, 0, 0, 90000, 0, 0, default), (108, 30091, 2, 27994, 1, 0, 0, 0, 0, 0, 0, 150000, 0, 0, default), (109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 600, 0, 0, default), (110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1200, 0, 0, default), (111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2500, 0, 0, default), (112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5000, 0, 0, default), (113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10000, 0, 0, default), (114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (115, 30071, 2, 0, 0, 0, 0, 0, 0, 0, 0, 30000, 0, 0, default), (116, 30018, 2, 0, 0, 0, 0, 0, 0, 0, 0, 45000, 0, 0, default), (117, 30017, 2, 0, 0, 0, 0, 0, 0, 0, 0, 75000, 0, 0, default), (118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 0, 0, default), (119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2000, 0, 0, default), (120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4000, 0, 0, default), (121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8000, 0, 0, default), (122, 30005, 2, 0, 0, 0, 0, 0, 0, 0, 0, 13000, 0, 0, default), (123, 30076, 2, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (124, 30051, 1, 27799, 1, 0, 0, 0, 0, 0, 0, 40000, 0, 0, default), (125, 30081, 1, 27987, 1, 0, 0, 0, 0, 0, 0, 70000, 0, 0, default), (126, 30047, 2, 27987, 1, 0, 0, 0, 0, 0, 0, 120000, 0, 0, default), (127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1200, 0, 0, default), (128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2500, 0, 0, default), (129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5000, 0, 0, default), (130, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10000, 0, 0, default), (131, 30009, 1, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (132, 30080, 1, 0, 0, 0, 0, 0, 0, 0, 0, 30000, 0, 0, default), (133, 30040, 2, 27992, 1, 0, 0, 0, 0, 0, 0, 45000, 0, 0, default), (134, 30049, 2, 27993, 1, 0, 0, 0, 0, 0, 0, 90000, 0, 0, default), (135, 30090, 2, 27994, 1, 0, 0, 0, 0, 0, 0, 150000, 0, 0, default), (136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 600, 0, 0, default), (137, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1200, 0, 0, default), (138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2500, 0, 0, default), (139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5000, 0, 0, default), (140, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10000, 0, 0, default), (141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (142, 30038, 1, 0, 0, 0, 0, 0, 0, 0, 0, 30000, 0, 0, default), (143, 30023, 2, 0, 0, 0, 0, 0, 0, 0, 0, 45000, 0, 0, default), (144, 30074, 2, 0, 0, 0, 0, 0, 0, 0, 0, 75000, 0, 0, default), (145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 0, 0, default), (146, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2000, 0, 0, default), (147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4000, 0, 0, default), (148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8000, 0, 0, default), (149, 30007, 2, 0, 0, 0, 0, 0, 0, 0, 0, 13000, 0, 0, default), (150, 30078, 2, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (151, 30045, 2, 27799, 1, 0, 0, 0, 0, 0, 0, 40000, 0, 0, default), (152, 30055, 2, 27987, 1, 0, 0, 0, 0, 0, 0, 70000, 0, 0, default), (153, 30047, 2, 27987, 1, 0, 0, 0, 0, 0, 0, 120000, 0, 0, default), (154, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1200, 0, 0, default), (155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2500, 0, 0, default), (156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5000, 0, 0, default), (157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10000, 0, 0, default), (158, 30059, 2, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (159, 30080, 2, 0, 0, 0, 0, 0, 0, 0, 0, 30000, 0, 0, default), (160, 30085, 2, 27992, 1, 0, 0, 0, 0, 0, 0, 45000, 0, 0, default), (161, 30014, 2, 27993, 1, 0, 0, 0, 0, 0, 0, 90000, 0, 0, default), (162, 30042, 2, 27994, 1, 0, 0, 0, 0, 0, 0, 150000, 0, 0, default), (163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 600, 0, 0, default), (164, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1200, 0, 0, default), (165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2500, 0, 0, default), (166, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5000, 0, 0, default), (167, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10000, 0, 0, default), (168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (169, 30010, 2, 0, 0, 0, 0, 0, 0, 0, 0, 30000, 0, 0, default), (170, 30031, 1, 0, 0, 0, 0, 0, 0, 0, 0, 45000, 0, 0, default), (171, 30032, 2, 0, 0, 0, 0, 0, 0, 0, 0, 75000, 0, 0, default), (172, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 0, 0, default), (173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2000, 0, 0, default), (174, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4000, 0, 0, default), (175, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8000, 0, 0, default), (176, 30021, 2, 0, 0, 0, 0, 0, 0, 0, 0, 13000, 0, 0, default), (177, 30008, 2, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (178, 30057, 2, 27799, 1, 0, 0, 0, 0, 0, 0, 40000, 0, 0, default), (179, 30006, 2, 27987, 1, 0, 0, 0, 0, 0, 0, 70000, 0, 0, default), (180, 30022, 2, 27987, 1, 0, 0, 0, 0, 0, 0, 120000, 0, 0, default), (181, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1200, 0, 0, default), (182, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2500, 0, 0, default), (183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5000, 0, 0, default), (184, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10000, 0, 0, default), (185, 30082, 2, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (186, 30079, 2, 0, 0, 0, 0, 0, 0, 0, 0, 30000, 0, 0, default), (187, 30087, 2, 27992, 1, 0, 0, 0, 0, 0, 0, 45000, 0, 0, default), (188, 30086, 2, 27993, 1, 0, 0, 0, 0, 0, 0, 90000, 0, 0, default), (189, 30050, 2, 27994, 1, 0, 0, 0, 0, 0, 0, 150000, 0, 0, default), (190, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 600, 0, 0, default), (191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1200, 0, 0, default), (192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2500, 0, 0, default), (193, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5000, 0, 0, default), (194, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10000, 0, 0, default), (195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (196, 30038, 2, 0, 0, 0, 0, 0, 0, 0, 0, 30000, 0, 0, default), (197, 30011, 2, 0, 0, 0, 0, 0, 0, 0, 0, 45000, 0, 0, default), (198, 30074, 1, 0, 0, 0, 0, 0, 0, 0, 0, 75000, 0, 0, default), (199, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 0, 0, default), (200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2000, 0, 0, default), (201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4000, 0, 0, default), (202, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8000, 0, 0, default), (203, 30007, 2, 0, 0, 0, 0, 0, 0, 0, 0, 13000, 0, 0, default), (204, 30046, 2, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (205, 30045, 2, 27799, 1, 0, 0, 0, 0, 0, 0, 40000, 0, 0, default), (206, 30055, 2, 27987, 1, 0, 0, 0, 0, 0, 0, 70000, 0, 0, default), (207, 30058, 2, 27987, 1, 0, 0, 0, 0, 0, 0, 120000, 0, 0, default), (208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1200, 0, 0, default), (209, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2500, 0, 0, default), (210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5000, 0, 0, default), (211, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10000, 0, 0, default), (212, 30059, 2, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (213, 30060, 2, 0, 0, 0, 0, 0, 0, 0, 0, 30000, 0, 0, default), (214, 30061, 2, 27992, 1, 0, 0, 0, 0, 0, 0, 45000, 0, 0, default), (215, 30014, 2, 27993, 1, 0, 0, 0, 0, 0, 0, 90000, 0, 0, default), (216, 30042, 2, 27994, 1, 0, 0, 0, 0, 0, 0, 150000, 0, 0, default), (217, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 600, 0, 0, default), (218, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1200, 0, 0, default), (219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2500, 0, 0, default), (220, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5000, 0, 0, default), (221, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10000, 0, 0, default), (222, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (223, 30071, 2, 0, 0, 0, 0, 0, 0, 0, 0, 30000, 0, 0, default), (224, 30023, 1, 0, 0, 0, 0, 0, 0, 0, 0, 45000, 0, 0, default), (225, 30074, 2, 0, 0, 0, 0, 0, 0, 0, 0, 75000, 0, 0, default), (226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 0, 0, default), (227, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2000, 0, 0, default), (228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4000, 0, 0, default), (229, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8000, 0, 0, default), (230, 30005, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13000, 0, 0, default), (231, 30078, 1, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (232, 30051, 1, 27799, 1, 0, 0, 0, 0, 0, 0, 40000, 0, 0, default), (233, 30055, 2, 27987, 1, 0, 0, 0, 0, 0, 0, 70000, 0, 0, default), (234, 30047, 2, 27987, 1, 0, 0, 0, 0, 0, 0, 120000, 0, 0, default), (235, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1200, 0, 0, default), (236, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2500, 0, 0, default), (237, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5000, 0, 0, default), (238, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10000, 0, 0, default), (239, 30059, 2, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (240, 30080, 2, 0, 0, 0, 0, 0, 0, 0, 0, 30000, 0, 0, default), (241, 30085, 2, 27992, 1, 0, 0, 0, 0, 0, 0, 45000, 0, 0, default), (242, 30049, 2, 27993, 1, 0, 0, 0, 0, 0, 0, 90000, 0, 0, default), (243, 30042, 2, 27994, 1, 0, 0, 0, 0, 0, 0, 150000, 0, 0, default), (244, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 600, 0, 0, default), (245, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1200, 0, 0, default), (246, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2500, 0, 0, default), (247, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5000, 0, 0, default), (248, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10000, 0, 0, default), (249, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (250, 30070, 2, 0, 0, 0, 0, 0, 0, 0, 0, 30000, 0, 0, default), (251, 30018, 2, 0, 0, 0, 0, 0, 0, 0, 0, 45000, 0, 0, default), (252, 30017, 2, 0, 0, 0, 0, 0, 0, 0, 0, 75000, 0, 0, default), (253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 0, 0, default), (254, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2000, 0, 0, default), (255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4000, 0, 0, default), (256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8000, 0, 0, default), (257, 30041, 2, 0, 0, 0, 0, 0, 0, 0, 0, 13000, 0, 0, default), (258, 30076, 2, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (259, 30051, 2, 27799, 1, 0, 0, 0, 0, 0, 0, 40000, 0, 0, default), (260, 30081, 2, 27987, 1, 0, 0, 0, 0, 0, 0, 70000, 0, 0, default), (261, 30077, 2, 27987, 1, 0, 0, 0, 0, 0, 0, 120000, 0, 0, default), (262, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1200, 0, 0, default), (263, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2500, 0, 0, default), (264, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5000, 0, 0, default), (265, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10000, 0, 0, default), (266, 30009, 2, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (267, 30039, 2, 0, 0, 0, 0, 0, 0, 0, 0, 30000, 0, 0, default), (268, 30040, 2, 27992, 1, 0, 0, 0, 0, 0, 0, 45000, 0, 0, default), (269, 30048, 2, 27993, 1, 0, 0, 0, 0, 0, 0, 90000, 0, 0, default), (270, 30090, 2, 27994, 1, 0, 0, 0, 0, 0, 0, 150000, 0, 0, default), (271, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 600, 0, 0, default), (272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1200, 0, 0, default), (273, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2500, 0, 0, default), (274, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5000, 0, 0, default), (275, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10000, 0, 0, default), (276, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (277, 30010, 1, 0, 0, 0, 0, 0, 0, 0, 0, 30000, 0, 0, default), (278, 30072, 2, 0, 0, 0, 0, 0, 0, 0, 0, 45000, 0, 0, default), (279, 30032, 1, 0, 0, 0, 0, 0, 0, 0, 0, 75000, 0, 0, default), (280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 0, 0, default), (281, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2000, 0, 0, default), (282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4000, 0, 0, default), (283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8000, 0, 0, default), (284, 30021, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13000, 0, 0, default), (285, 30008, 1, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (286, 30057, 1, 27799, 1, 0, 0, 0, 0, 0, 0, 40000, 0, 0, default), (287, 30006, 2, 27987, 1, 0, 0, 0, 0, 0, 0, 70000, 0, 0, default), (288, 30077, 2, 27987, 1, 0, 0, 0, 0, 0, 0, 120000, 0, 0, default), (289, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1200, 0, 0, default), (290, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2500, 0, 0, default), (291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5000, 0, 0, default), (292, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10000, 0, 0, default), (293, 30082, 2, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (294, 30039, 2, 0, 0, 0, 0, 0, 0, 0, 0, 30000, 0, 0, default), (295, 30087, 2, 27992, 1, 0, 0, 0, 0, 0, 0, 45000, 0, 0, default), (296, 30086, 2, 27993, 1, 0, 0, 0, 0, 0, 0, 90000, 0, 0, default), (297, 30050, 2, 27994, 1, 0, 0, 0, 0, 0, 0, 150000, 0, 0, default), (298, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 600, 0, 0, default), (299, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1200, 0, 0, default), (300, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2500, 0, 0, default), (301, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5000, 0, 0, default), (302, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10000, 0, 0, default), (303, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (304, 30053, 1, 0, 0, 0, 0, 0, 0, 0, 0, 30000, 0, 0, default), (305, 30073, 1, 0, 0, 0, 0, 0, 0, 0, 0, 45000, 0, 0, default), (306, 30035, 2, 0, 0, 0, 0, 0, 0, 0, 0, 75000, 0, 0, default), (307, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 0, 0, default), (308, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2000, 0, 0, default), (309, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4000, 0, 0, default), (310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8000, 0, 0, default), (311, 30030, 2, 0, 0, 0, 0, 0, 0, 0, 0, 13000, 0, 0, default), (312, 30075, 2, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (313, 30056, 2, 27799, 1, 0, 0, 0, 0, 0, 0, 40000, 0, 0, default), (314, 30025, 2, 27987, 1, 0, 0, 0, 0, 0, 0, 70000, 0, 0, default), (315, 30067, 2, 27987, 1, 0, 0, 0, 0, 0, 0, 120000, 0, 0, default), (316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1200, 0, 0, default), (317, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2500, 0, 0, default), (318, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5000, 0, 0, default), (319, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10000, 0, 0, default), (320, 30083, 2, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (321, 30015, 2, 0, 0, 0, 0, 0, 0, 0, 0, 30000, 0, 0, default), (322, 30016, 2, 27992, 1, 0, 0, 0, 0, 0, 0, 45000, 0, 0, default), (323, 30089, 2, 27993, 1, 0, 0, 0, 0, 0, 0, 90000, 0, 0, default), (324, 30019, 2, 27994, 1, 0, 0, 0, 0, 0, 0, 150000, 0, 0, default), (325, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 600, 0, 0, default), (326, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1200, 0, 0, default), (327, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2500, 0, 0, default), (328, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5000, 0, 0, default), (329, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10000, 0, 0, default), (330, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (331, 30034, 2, 0, 0, 0, 0, 0, 0, 0, 0, 30000, 0, 0, default), (332, 30073, 2, 0, 0, 0, 0, 0, 0, 0, 0, 45000, 0, 0, default), (333, 30035, 2, 0, 0, 0, 0, 0, 0, 0, 0, 75000, 0, 0, default), (334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 0, 0, default), (335, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2000, 0, 0, default), (336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4000, 0, 0, default), (337, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8000, 0, 0, default), (338, 30052, 2, 0, 0, 0, 0, 0, 0, 0, 0, 13000, 0, 0, default), (339, 30046, 2, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (340, 30056, 2, 27799, 1, 0, 0, 0, 0, 0, 0, 40000, 0, 0, default), (341, 30025, 2, 27987, 1, 0, 0, 0, 0, 0, 0, 70000, 0, 0, default), (342, 30058, 2, 27987, 1, 0, 0, 0, 0, 0, 0, 120000, 0, 0, default), (343, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1200, 0, 0, default), (344, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2500, 0, 0, default), (345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5000, 0, 0, default), (346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10000, 0, 0, default), (347, 30083, 2, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (348, 30060, 2, 0, 0, 0, 0, 0, 0, 0, 0, 30000, 0, 0, default), (349, 30061, 2, 30193, 2, 0, 0, 0, 0, 0, 0, 45000, 0, 0, default), (350, 30088, 2, 30193, 4, 0, 0, 0, 0, 0, 0, 90000, 0, 0, default), (351, 30019, 2, 30193, 6, 0, 0, 0, 0, 0, 0, 150000, 0, 0, default), (352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3000, 0, 0, default), (353, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6000, 0, 0, default), (354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12000, 0, 0, default), (355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25000, 0, 0, default), (356, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40000, 0, 0, default), (357, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60000, 0, 0, default), (358, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90000, 0, 0, default), (359, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 120000, 0, 0, default), (360, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 150000, 0, 0, default), (400, 30192, 2, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (401, 30194, 2, 0, 0, 0, 0, 0, 0, 0, 0, 30000, 0, 0, default), (402, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5000, 0, 0, default), (403, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10000, 0, 0, default), (404, 30083, 2, 0, 0, 0, 0, 0, 0, 0, 0, 20000, 0, 0, default), (405, 30060, 2, 0, 0, 0, 0, 0, 0, 0, 0, 30000, 0, 0, default), (406, 30061, 2, 30193, 2, 0, 0, 0, 0, 0, 0, 45000, 0, 0, default), (407, 30088, 2, 30193, 4, 0, 0, 0, 0, 0, 0, 90000, 0, 0, default), (408, 30019, 2, 30193, 6, 0, 0, 0, 0, 0, 0, 150000, 0, 0, default), (501, 25040, 2, 70031, 1, 0, 0, 0, 0, 0, 0, 100000, 0, 0, default), (502, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 120000, 0, 0, default), (503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 140000, 0, 0, default), (504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 170000, 0, 0, default), (505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 200000, 0, 0, default), (506, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 240000, 0, 0, default), (507, 30050, 2, 0, 0, 0, 0, 0, 0, 0, 0, 290000, 0, 0, default), (508, 30083, 2, 27992, 1, 0, 0, 0, 0, 0, 0, 340000, 0, 0, default), (509, 30040, 2, 27993, 1, 0, 0, 0, 0, 0, 0, 410000, 0, 0, default), (510, 30089, 2, 27994, 1, 0, 0, 0, 0, 0, 0, 500000, 0, 0, default), (531, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7500, 0, 0, default), (532, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15000, 0, 0, default), (533, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25000, 0, 0, default), (534, 30196, 2, 0, 0, 0, 0, 0, 0, 0, 0, 40000, 0, 0, default), (535, 30090, 3, 0, 0, 0, 0, 0, 0, 0, 0, 65000, 0, 0, default), (536, 30195, 2, 0, 0, 0, 0, 0, 0, 0, 0, 90000, 0, 0, default), (537, 30197, 4, 27992, 1, 0, 0, 0, 0, 0, 0, 120000, 0, 0, default), (538, 30198, 2, 27993, 1, 0, 0, 0, 0, 0, 0, 150000, 0, 0, default), (539, 30199, 2, 27994, 1, 0, 0, 0, 0, 0, 0, 200000, 0, 0, default), (701, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 500000, 0, 0, default), (702, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2000000, 0, 0, default), (703, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, default), (751, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100000, 0, 0, default), (752, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 500000, 0, 0, default), (753, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2000000, 0, 0, default), (758, 71123, 2, 71129, 3, 0, 0, 0, 0, 0, 0, 125000, 0, 0, default), (759, 71123, 3, 71129, 4, 0, 0, 0, 0, 0, 0, 200000, 0, 0, default), (530, 71129, 3, 71123, 3, 0, 0, 0, 0, 0, 0, 200000, 0, 0, default), (610, 25040, 2, 70031, 3, 51001, 200, 0, 0, 0, 0, 50000000, 0, 0, default), (601, 51001, 10, 70031, 3, 0, 0, 0, 0, 0, 0, 10000000, 0, 0, default), (602, 51001, 15, 70031, 3, 0, 0, 0, 0, 0, 0, 12000000, 0, 0, default), (603, 51001, 20, 70031, 3, 0, 0, 0, 0, 0, 0, 14000000, 0, 0, default), (604, 51001, 30, 70031, 3, 0, 0, 0, 0, 0, 0, 16000000, 0, 0, default), (605, 51001, 45, 70031, 3, 0, 0, 0, 0, 0, 0, 18000000, 0, 0, default), (606, 51001, 65, 70031, 3, 0, 0, 0, 0, 0, 0, 20000000, 0, 0, default), (607, 51001, 95, 70031, 3, 0, 0, 0, 0, 0, 0, 22000000, 0, 0, default), (608, 51001, 145, 70031, 3, 0, 0, 0, 0, 0, 0, 24000000, 0, 0, default), (609, 51001, 200, 70031, 3, 0, 0, 0, 0, 0, 0, 26000000, 0, 0, default); +--> statement-breakpoint +insert into "player"."object_proto" ("vnum", "name", "price", "materials", "upgrade_vnum", "upgrade_limit_time", "life", "reg_1", "reg_2", "reg_3", "reg_4", "npc", "group_vnum", "dependent_group") values (14013, 'weapons factory', 20000000, '90010,20/90011,30/90012,20', 0, 0, 0, -213, -213, 213, 213, 20044, 2, 1), (14014, 'Armour blacksmith', 20000000, '90010,20/90011,30/90012,20', 0, 0, 0, -213, -213, 213, 213, 20045, 2, 1), (14015, 'accessory factory', 20000000, '90010,20/90011,30/90012,20', 0, 0, 0, -213, -213, 213, 213, 20046, 2, 1), (14043, 'diamond smelter', 20000000, '90010,15/90011,20/90012,25', 0, 0, 0, -90, -100, 90, 100, 20060, 3, 1), (14045, 'fossil wood smelter', 20000000, '90010,15/90011,20/90012,25', 0, 0, 0, -90, -100, 90, 100, 20062, 3, 1), (14046, 'copper smelter', 20000000, '90010,15/90011,20/90012,25', 0, 0, 0, -90, -100, 90, 100, 20063, 3, 1), (14047, 'silver smelter', 20000000, '90010,15/90011,20/90012,25', 0, 0, 0, -90, -100, 90, 100, 20064, 3, 1), (14048, 'gold smelter', 20000000, '90010,15/90011,20/90012,25', 0, 0, 0, -90, -100, 90, 100, 20065, 3, 1), (14049, 'jade smelter', 20000000, '90010,15/90011,20/90012,25', 0, 0, 0, -90, -100, 90, 100, 20066, 3, 1), (14050, 'ebony stone smelter', 20000000, '90010,15/90011,20/90012,25', 0, 0, 0, -90, -100, 90, 100, 20067, 3, 1), (14051, 'pearl smelter', 20000000, '90010,15/90011,20/90012,25', 0, 0, 0, -90, -100, 90, 100, 20068, 3, 1), (14052, 'platinum smelter', 20000000, '90010,15/90011,20/90012,25', 0, 0, 0, -90, -100, 90, 100, 20069, 3, 1), (14053, 'crystal smelter', 20000000, '90010,15/90011,20/90012,25', 0, 0, 0, -90, -100, 90, 100, 20070, 3, 1), (14054, 'amethyst smelter', 20000000, '90010,15/90011,20/90012,25', 0, 0, 0, -90, -100, 90, 100, 20071, 3, 1), (14055, 'Heavens tear smelter', 20000000, '90010,15/90011,20/90012,25', 0, 0, 0, -90, -100, 90, 100, 20072, 3, 1), (14061, 'Altar of Power', 25000000, '90010,25/90011,25/90012,25', 0, 0, 0, -112, -298, 114, 225, 20077, 4, 1), (14062, 'Altar of Power', 500000000, '90010,50/90011,50/90012,50', 0, 0, 0, -112, -298, 114, 225, 20078, 4, 4), (14063, 'Altar of Power', 750000000, '90010,75/90011,75/90012,75', 0, 0, 0, -112, -298, 114, 225, 20079, 4, 4), (14100, 'house(1)', 20000000, '90010,20/90011,30/90012,25', 0, 0, 0, -279, -347, 294, 325, 0, 1, 0), (14110, 'house(2)', 20000000, '90010,20/90011,30/90012,25', 0, 0, 0, -279, -347, 294, 325, 0, 1, 0), (14120, 'house(3)', 20000000, '90010,20/90011,30/90012,25', 0, 0, 0, -279, -347, 294, 325, 0, 1, 0), (14141, 'Wooden Wall 1', 800000, '90010,5/90011,15/90012,15', 0, 0, 0, -2, -40, 174, 40, 0, 0, 0), (14142, 'Wooden Wall 2', 500000, '90010,5/90011,15/90012,15', 0, 0, 0, -36, -36, 36, 36, 0, 0, 0), (14143, 'Wooden Wall 3', 800000, '90010,5/90011,15/90012,15', 0, 0, 0, -195, -52, 2, 52, 0, 0, 0), (14144, 'Wooden Gate', 500000, '90010,5/90011,20/90012,20', 0, 0, 0, -1, -96, 348, 96, 0, 0, 0), (14200, 'guild insignia', 3000000, '90011,5/90012,5', 0, 0, 0, -23, -5, 21, 20, 0, 0, 1), (14300, 'stone1', 300000, '90010,5', 0, 0, 0, -58, -59, 58, 59, 0, 0, 0), (14301, 'stone2', 300000, '90010,5', 0, 0, 0, -59, -66, 59, 66, 0, 0, 0), (14302, 'stone3', 300000, '90010,7', 0, 0, 0, -67, -51, 67, 51, 0, 0, 0), (14303, 'stone4', 300000, '90010,7', 0, 0, 0, -52, -59, 52, 59, 0, 0, 0), (14304, 'stone5', 300000, '90010,7', 0, 0, 0, -86, -73, 86, 73, 0, 0, 0), (14305, 'stone6', 300000, '90010,8', 0, 0, 0, -96, -101, 96, 101, 0, 0, 0), (14306, 'stone7', 300000, '90010,8', 0, 0, 0, -92, -92, 92, 92, 0, 0, 0), (14307, 'stone8', 300000, '90010,8', 0, 0, 0, -33, -28, 33, 28, 0, 0, 0), (14308, 'stone9', 300000, '90010,9', 0, 0, 0, -33, -27, 33, 27, 0, 0, 0), (14309, 'stone10', 300000, '90010,9', 0, 0, 0, -91, -62, 91, 62, 0, 0, 0), (14400, 'wood1', 2000000, '90011,5', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (14401, 'wood2', 2000000, '90011,5', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (14402, 'wood3', 2000000, '90011,7', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (14403, 'wood4', 2000000, '90011,7', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (14404, 'wood5', 2000000, '90011,7', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (14405, 'wood6', 2000000, '90011,9', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (14406, 'wood7', 2000000, '90011,9', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (14407, 'wood8', 2000000, '90011,9', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (14408, 'wood9', 2000000, '90011,9', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), (26992, 'Soul Crystal tear smelter', 20000000, '90010,15/90011,20/90012,25', 0, 0, 0, -90, -100, 90, 100, 33009, 3, 1), (26993, 'Rubin tear smelter', 20000000, '90010,15/90011,20/90012,25', 0, 0, 0, -90, -100, 90, 100, 33010, 3, 1), (26994, 'Garnet tear smelter', 20000000, '90010,15/90011,20/90012,25', 0, 0, 0, -90, -100, 90, 100, 33011, 3, 1), (26995, 'Smaragd tear smelter', 20000000, '90010,15/90011,20/90012,25', 0, 0, 0, -90, -100, 90, 100, 33012, 3, 1), (26996, 'Sapphire tear smelter', 20000000, '90010,15/90011,20/90012,25', 0, 0, 0, -90, -100, 90, 100, 33013, 3, 1); +--> statement-breakpoint +insert into "player"."banword" ("word") values ('aryan'), ('asshole'), ('bastard'), ('bastards'), ('bitch'), ('bitches'), ('bitching'), ('bitchy'), ('boob'), ('boobie'), ('boobies'), ('boobs'), ('booby'), ('boobys'), ('bullshit'), ('bullshitter'), ('bullshitters'), ('bullshitting'), ('chickenshit'), ('chickenshits'), ('clit'), ('cock'), ('cockhead'), ('cocks'), ('cocksuck'), ('cocksucker'), ('cocksucking'), ('cumming'), ('cunt'), ('cuntree'), ('cuntry'), ('cunts'), ('dipshit'), ('dipshits'), ('dumbfuck'), ('dumbfucks'), ('dumbshit'), ('dumbshits'), ('fag'), ('faggot'), ('faggots'), ('faggy'), ('fags'), ('fuck'), ('fucka'), ('fucke'), ('fucked'), ('fucken'), ('fucker'), ('fuckers'), ('fuckface'), ('fuckhead'), ('fuckheads'), ('fuckhed'), ('fuckin'), ('fucking'), ('fucks'), ('fuckup'), ('fuckups'), ('fukk'), ('fukka'), ('goniff'), ('heb'), ('hebe'), ('hebes'), ('kike'), ('kikes'), ('kunt'), ('kuntree'), ('kuntry'), ('kunts'), ('motherfuck'), ('motherfucken'), ('motherfucker'), ('motherfuckers'), ('motherfuckin'), ('motherfucking'), ('nazi'), ('nigga'), ('niggah'), ('niggahs'), ('niggard'), ('niggardly'), ('niggas'), ('niggaz'), ('nigger'), ('niggers'), ('penis'), ('piss'), ('porn'), ('porno'), ('pornography'), ('pussy'), ('schlimazel'), ('schlimiel'), ('shit'), ('shitface'), ('shitfaced'), ('shithead'), ('shitheads'), ('shithed'), ('shits'), ('shitting'), ('shitty'), ('slut'), ('sluts'), ('slutty'), ('titties'), ('titty'), ('vagina'), ('vaginal'), ('whore'), ('whores'), ('whoring'); +--> statement-breakpoint +insert into "common"."locale" ("key", "value") values ('LANGUAGE', 'en'), ('DB_NAME_COLUMN', 'locale_name'), ('SKILL_POWER_BY_LEVEL_TYPE0', '0 5 6 8 10 12 14 16 18 20 22 24 26 28 30 32 34 36 38 40 50 52 54 56 58 60 63 66 69 72 82 85 88 91 94 98 102 106 110 115 125 125 125 125 125'), ('SKILL_POWER_BY_LEVEL_TYPE1', '0 5 6 8 10 12 14 16 18 20 22 24 26 28 30 32 34 36 38 40 50 52 54 56 58 60 63 66 69 72 82 85 88 91 94 98 102 106 110 115 125 125 125 125 125'), ('SKILL_POWER_BY_LEVEL_TYPE2', '0 5 6 8 10 12 14 16 18 20 22 24 26 28 30 32 34 36 38 40 50 52 54 56 58 60 63 66 69 72 82 85 88 91 94 98 102 106 110 115 125 125 125 125 125'), ('SKILL_POWER_BY_LEVEL_TYPE3', '0 5 6 8 10 12 14 16 18 20 22 24 26 28 30 32 34 36 38 40 50 52 54 56 58 60 63 66 69 72 82 85 88 91 94 98 102 106 110 115 125 125 125 125 125'), ('SKILL_POWER_BY_LEVEL_TYPE4', '0 5 6 8 10 12 14 16 18 20 22 24 26 28 30 32 34 36 38 40 50 52 54 56 58 60 63 66 69 72 82 85 88 91 94 98 102 106 110 115 125 125 125 125 125'), ('SKILL_POWER_BY_LEVEL_TYPE5', '0 5 6 8 10 12 14 16 18 20 22 24 26 28 30 32 34 36 38 40 50 52 54 56 58 60 63 66 69 72 82 85 88 91 94 98 102 106 110 115 125 125 125 125 125'), ('SKILL_POWER_BY_LEVEL_TYPE6', '0 5 6 8 10 12 14 16 18 20 22 24 26 28 30 32 34 36 38 40 50 52 54 56 58 60 63 66 69 72 82 85 88 91 94 98 102 106 110 115 125 125 125 125 125'), ('SKILL_POWER_BY_LEVEL_TYPE7', '0 5 6 8 10 12 14 16 18 20 22 24 26 28 30 32 34 36 38 40 50 52 54 56 58 60 63 66 69 72 82 85 88 91 94 98 102 106 110 115 125 125 125 125 125'), ('SKILL_DAMAGE_BY_LEVEL_UNDER_90', '0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0'), ('SKILL_DAMAGE_BY_LEVEL_UNDER_45', '0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0'), ('SKILL_POWER_BY_LEVEL', '0 5 6 8 10 12 14 16 18 20 22 24 26 28 30 32 34 36 38 40 50 52 54 56 58 60 63 66 69 72 82 85 88 91 94 98 102 106 110 115 125 125 125 125 125'); +--> statement-breakpoint +insert into "player"."land" ("id", "map_index", "x", "y", "width", "height", "guild_id", "guild_level_limit", "price", "enabled") values (1, 1, 20200, 10000, 3000, 3000, 0, 10, 65000000, TRUE), (2, 1, 23500, 13600, 3000, 3000, 0, 10, 65000000, TRUE), (3, 1, 27600, 10900, 3000, 3000, 0, 10, 65000000, TRUE), (4, 1, 55600, 9600, 3000, 3000, 0, 10, 65000000, TRUE), (5, 1, 57100, 3800, 3000, 3000, 0, 10, 65000000, TRUE), (6, 1, 60900, 5200, 3000, 3000, 0, 10, 65000000, TRUE), (7, 1, 66100, 7900, 3000, 3000, 0, 10, 65000000, TRUE), (8, 1, 81400, 16800, 3000, 3000, 0, 10, 65000000, TRUE), (9, 1, 90700, 20400, 3000, 3000, 0, 10, 50000000, TRUE), (10, 1, 94300, 23700, 3000, 3000, 0, 10, 50000000, TRUE), (11, 1, 10800, 108500, 3000, 3000, 0, 10, 40000000, TRUE), (12, 1, 5900, 108500, 3000, 3000, 0, 10, 40000000, TRUE), (13, 1, 7700, 104300, 3000, 3000, 0, 10, 40000000, TRUE), (14, 1, 23400, 46200, 3000, 3000, 0, 10, 70000000, TRUE), (15, 1, 17200, 44400, 3000, 3000, 0, 10, 70000000, TRUE), (16, 1, 20000, 40100, 3000, 3000, 0, 10, 70000000, TRUE), (17, 1, 25800, 36900, 3000, 3000, 0, 10, 70000000, TRUE), (18, 1, 16900, 35800, 3000, 3000, 0, 10, 70000000, TRUE), (101, 21, 29400, 11400, 3000, 3000, 0, 10, 50000000, TRUE), (102, 21, 33600, 12700, 3000, 3000, 0, 10, 50000000, TRUE), (103, 21, 36300, 16300, 3000, 3000, 0, 10, 50000000, TRUE), (104, 21, 55900, 17200, 3000, 3000, 0, 10, 50000000, TRUE), (105, 21, 72800, 8500, 3000, 3000, 0, 10, 65000000, TRUE), (106, 21, 76300, 5400, 3000, 3000, 0, 10, 65000000, TRUE), (107, 21, 77600, 10200, 3000, 3000, 0, 10, 65000000, TRUE), (108, 21, 84200, 47200, 3000, 3000, 0, 10, 70000000, TRUE), (109, 21, 87800, 61000, 3000, 3000, 0, 10, 70000000, TRUE), (110, 21, 32100, 113800, 3000, 3000, 0, 10, 45000000, TRUE), (111, 21, 28800, 117200, 3000, 3000, 0, 10, 45000000, TRUE), (112, 21, 24400, 118700, 3000, 3000, 0, 10, 45000000, TRUE), (113, 21, 22600, 114400, 3000, 3000, 0, 10, 45000000, TRUE), (114, 21, 34800, 92300, 3000, 3000, 0, 10, 70000000, TRUE), (115, 21, 37500, 89000, 3000, 3000, 0, 10, 70000000, TRUE), (116, 21, 35100, 73600, 3000, 3000, 0, 10, 70000000, TRUE), (117, 21, 35400, 69200, 3000, 3000, 0, 10, 70000000, TRUE), (118, 21, 35400, 55600, 3000, 3000, 0, 10, 70000000, TRUE), (201, 41, 66100, 9400, 3000, 3000, 0, 10, 45000000, TRUE), (202, 41, 70300, 7900, 3000, 3000, 0, 10, 45000000, TRUE), (203, 41, 73600, 11500, 3000, 3000, 0, 10, 45000000, TRUE), (204, 41, 70900, 15100, 3000, 3000, 0, 10, 45000000, TRUE), (205, 41, 71800, 61900, 3000, 3000, 0, 10, 65000000, TRUE), (206, 41, 77000, 64100, 3000, 3000, 0, 10, 65000000, TRUE), (207, 41, 60700, 66800, 3000, 3000, 0, 10, 65000000, TRUE), (208, 41, 74500, 68200, 3000, 3000, 0, 10, 65000000, TRUE), (209, 41, 67900, 110800, 3000, 3000, 0, 10, 40000000, TRUE), (210, 41, 67900, 115700, 3000, 3000, 0, 10, 40000000, TRUE), (211, 41, 62800, 114800, 3000, 3000, 0, 10, 40000000, TRUE), (212, 41, 16600, 95300, 3000, 3000, 0, 10, 65000000, TRUE), (213, 41, 5400, 94100, 3000, 3000, 0, 10, 50000000, TRUE), (214, 41, 18600, 89300, 3000, 3000, 0, 10, 65000000, TRUE), (215, 41, 4600, 89800, 3000, 3000, 0, 10, 50000000, TRUE), (216, 41, 11200, 36000, 3000, 3000, 0, 10, 70000000, TRUE), (217, 41, 8200, 31800, 3000, 3000, 0, 10, 70000000, TRUE), (218, 41, 12000, 29200, 3000, 3000, 0, 10, 70000000, TRUE), (75, 4, 9600, 13100, 3000, 3000, 0, 10, 70000000, TRUE), (76, 4, 16100, 15600, 3000, 3000, 0, 10, 70000000, TRUE), (77, 4, 9100, 19500, 3000, 3000, 0, 10, 70000000, TRUE), (78, 4, 14900, 19500, 3000, 3000, 0, 10, 70000000, TRUE), (79, 4, 27700, 19500, 3000, 3000, 0, 10, 65000000, TRUE), (80, 4, 23600, 23000, 3000, 3000, 0, 10, 65000000, TRUE), (81, 4, 31800, 24200, 3000, 3000, 0, 10, 65000000, TRUE), (82, 4, 27900, 27300, 3000, 3000, 0, 10, 65000000, TRUE), (83, 4, 35500, 35400, 3000, 3000, 0, 10, 40000000, TRUE), (84, 4, 32800, 39300, 3000, 3000, 0, 10, 40000000, TRUE), (85, 4, 39700, 39600, 3000, 3000, 0, 10, 40000000, TRUE), (86, 4, 36100, 42700, 3000, 3000, 0, 10, 40000000, TRUE), (87, 4, 24400, 39000, 3000, 3000, 0, 10, 50000000, TRUE), (88, 4, 19900, 41600, 3000, 3000, 0, 10, 50000000, TRUE), (89, 4, 14400, 41700, 3000, 3000, 0, 10, 50000000, TRUE), (90, 4, 10200, 39100, 3000, 3000, 0, 10, 50000000, TRUE), (91, 4, 7700, 34600, 3000, 3000, 0, 10, 50000000, TRUE), (92, 4, 8400, 29500, 3000, 3000, 0, 10, 50000000, TRUE), (175, 24, 7100, 5200, 3000, 3000, 0, 10, 40000000, TRUE), (176, 24, 12800, 4800, 3000, 3000, 0, 10, 40000000, TRUE), (177, 24, 9700, 9900, 3000, 3000, 0, 10, 40000000, TRUE), (178, 24, 14500, 13300, 3000, 3000, 0, 10, 40000000, TRUE), (179, 24, 36900, 26000, 3000, 3000, 0, 10, 50000000, TRUE), (180, 24, 38600, 29800, 3000, 3000, 0, 10, 50000000, TRUE), (181, 24, 36500, 33900, 3000, 3000, 0, 10, 50000000, TRUE), (182, 24, 33600, 38600, 3000, 3000, 0, 10, 50000000, TRUE), (183, 24, 30900, 33500, 3000, 3000, 0, 10, 50000000, TRUE), (184, 24, 25700, 33500, 3000, 3000, 0, 10, 70000000, TRUE), (185, 24, 25600, 37800, 3000, 3000, 0, 10, 70000000, TRUE), (186, 24, 20900, 37800, 3000, 3000, 0, 10, 70000000, TRUE), (187, 24, 20900, 33700, 3000, 3000, 0, 10, 70000000, TRUE), (188, 24, 14200, 33700, 3000, 3000, 0, 10, 65000000, TRUE), (189, 24, 10000, 37100, 3000, 3000, 0, 10, 65000000, TRUE), (190, 24, 5800, 34800, 3000, 3000, 0, 10, 65000000, TRUE), (191, 24, 8800, 29800, 3000, 3000, 0, 10, 65000000, TRUE), (192, 24, 10500, 26100, 3000, 3000, 0, 10, 65000000, TRUE), (275, 44, 5400, 7700, 3000, 3000, 0, 10, 40000000, TRUE), (276, 44, 9700, 7300, 3000, 3000, 0, 10, 40000000, TRUE), (277, 44, 5500, 11500, 3000, 3000, 0, 10, 40000000, TRUE), (278, 44, 5100, 15500, 3000, 3000, 0, 10, 40000000, TRUE), (279, 44, 8900, 17900, 3000, 3000, 0, 10, 40000000, TRUE), (280, 44, 22200, 15600, 3000, 3000, 0, 10, 50000000, TRUE), (281, 44, 43000, 3700, 3000, 3000, 0, 10, 70000000, TRUE), (282, 44, 38900, 27200, 3000, 3000, 0, 10, 50000000, TRUE), (283, 44, 30200, 29900, 3000, 3000, 0, 10, 50000000, TRUE), (284, 44, 40000, 34500, 3000, 3000, 0, 10, 50000000, TRUE), (285, 44, 32800, 37000, 3000, 3000, 0, 10, 50000000, TRUE), (286, 44, 40600, 39300, 3000, 3000, 0, 10, 50000000, TRUE), (287, 44, 35600, 40600, 3000, 3000, 0, 10, 50000000, TRUE), (288, 44, 18500, 33600, 3000, 3000, 0, 10, 70000000, TRUE), (289, 44, 17300, 38500, 3000, 3000, 0, 10, 70000000, TRUE), (290, 44, 13500, 39400, 3000, 3000, 0, 10, 70000000, TRUE), (291, 44, 9100, 38700, 3000, 3000, 0, 10, 65000000, TRUE), (292, 44, 5000, 36300, 3000, 3000, 0, 10, 65000000, TRUE), (293, 6, 25700, 9100, 3000, 3000, 0, 10, 65000000, TRUE), (294, 6, 31000, 9400, 3000, 3000, 0, 10, 65000000, TRUE), (295, 6, 36900, 9500, 3000, 3000, 0, 10, 65000000, TRUE), (296, 6, 35300, 14300, 3000, 3000, 0, 10, 65000000, TRUE), (297, 6, 35700, 24600, 3000, 3000, 0, 10, 65000000, TRUE), (298, 6, 38500, 31800, 3000, 3000, 0, 10, 65000000, TRUE), (299, 6, 32600, 31200, 3000, 3000, 0, 10, 65000000, TRUE), (300, 6, 28500, 36500, 3000, 3000, 0, 10, 65000000, TRUE), (301, 6, 15500, 38000, 3000, 3000, 0, 10, 65000000, TRUE), (302, 6, 15000, 31800, 3000, 3000, 0, 10, 65000000, TRUE), (303, 6, 10200, 36700, 3000, 3000, 0, 10, 65000000, TRUE), (304, 6, 9200, 27500, 3000, 3000, 0, 10, 65000000, TRUE), (305, 6, 11200, 19200, 3000, 3000, 0, 10, 65000000, TRUE), (306, 6, 8500, 14700, 3000, 3000, 0, 10, 65000000, TRUE), (307, 6, 10700, 10000, 3000, 3000, 0, 10, 65000000, TRUE), (308, 6, 15200, 10100, 3000, 3000, 0, 10, 65000000, TRUE), (309, 6, 18300, 14700, 3000, 3000, 0, 10, 65000000, TRUE), (310, 26, 25700, 9100, 3000, 3000, 0, 10, 65000000, TRUE), (311, 26, 31000, 9400, 3000, 3000, 0, 10, 65000000, TRUE), (312, 26, 36900, 9500, 3000, 3000, 0, 10, 65000000, TRUE), (313, 26, 35300, 14300, 3000, 3000, 0, 10, 65000000, TRUE), (314, 26, 35700, 24600, 3000, 3000, 0, 10, 65000000, TRUE), (315, 26, 38500, 31800, 3000, 3000, 0, 10, 65000000, TRUE), (316, 26, 32600, 31200, 3000, 3000, 0, 10, 65000000, TRUE), (317, 26, 28500, 36500, 3000, 3000, 0, 10, 65000000, TRUE), (318, 26, 15500, 38000, 3000, 3000, 0, 10, 65000000, TRUE), (319, 26, 15000, 31800, 3000, 3000, 0, 10, 65000000, TRUE), (320, 26, 10200, 36700, 3000, 3000, 0, 10, 65000000, TRUE), (321, 26, 9200, 27500, 3000, 3000, 0, 10, 65000000, TRUE), (322, 26, 11200, 19200, 3000, 3000, 0, 10, 65000000, TRUE), (323, 26, 8500, 14700, 3000, 3000, 0, 10, 65000000, TRUE), (324, 26, 10700, 10000, 3000, 3000, 0, 10, 65000000, TRUE), (325, 26, 15200, 10100, 3000, 3000, 0, 10, 65000000, TRUE), (326, 26, 18300, 14700, 3000, 3000, 0, 10, 65000000, TRUE), (327, 46, 25700, 9100, 3000, 3000, 0, 10, 65000000, TRUE), (328, 46, 31000, 9400, 3000, 3000, 0, 10, 65000000, TRUE), (329, 46, 36900, 9500, 3000, 3000, 0, 10, 65000000, TRUE), (330, 46, 35300, 14300, 3000, 3000, 0, 10, 65000000, TRUE), (331, 46, 35700, 24600, 3000, 3000, 0, 10, 65000000, TRUE), (332, 46, 38500, 31800, 3000, 3000, 0, 10, 65000000, TRUE), (333, 46, 32600, 31200, 3000, 3000, 0, 10, 65000000, TRUE), (334, 46, 28500, 36500, 3000, 3000, 0, 10, 65000000, TRUE), (335, 46, 15500, 38000, 3000, 3000, 0, 10, 65000000, TRUE), (336, 46, 15000, 31800, 3000, 3000, 0, 10, 65000000, TRUE), (337, 46, 10200, 36700, 3000, 3000, 0, 10, 65000000, TRUE), (338, 46, 9200, 27500, 3000, 3000, 0, 10, 65000000, TRUE), (339, 46, 11200, 19200, 3000, 3000, 0, 10, 65000000, TRUE), (340, 46, 8500, 14700, 3000, 3000, 0, 10, 65000000, TRUE), (341, 46, 10700, 10000, 3000, 3000, 0, 10, 65000000, TRUE), (342, 46, 15200, 10100, 3000, 3000, 0, 10, 65000000, TRUE), (343, 46, 18300, 14700, 3000, 3000, 0, 10, 65000000, TRUE), (344, 6, 35500, 38500, 3000, 3000, 0, 10, 65000000, TRUE), (345, 26, 35500, 38500, 3000, 3000, 0, 10, 65000000, TRUE), (346, 46, 35500, 38500, 3000, 3000, 0, 10, 65000000, TRUE); +--> statement-breakpoint +insert into "player"."item_attr" ("apply", "probability", "lvl_1", "lvl_2", "lvl_3", "lvl_4", "lvl_5", "weapon", "body", "wrist", "foots", "neck", "head", "shield", "ear") values ('MAX_HP', 35, 500, 500, 1000, 1500, 2000, 0, 5, 5, 5, 5, 0, 0, 0), ('MAX_SP', 35, 10, 20, 30, 50, 80, 0, 0, 5, 5, 5, 0, 0, 0), ('CON', 11, 2, 4, 6, 8, 12, 5, 0, 0, 0, 0, 0, 5, 0), ('INT', 11, 2, 4, 6, 8, 12, 5, 0, 0, 0, 0, 0, 5, 0), ('STR', 11, 2, 4, 6, 8, 12, 5, 0, 0, 0, 0, 0, 5, 0), ('DEX', 11, 2, 4, 6, 8, 12, 5, 0, 0, 0, 0, 0, 5, 0), ('ATT_SPEED', 8, 1, 2, 3, 5, 8, 0, 0, 0, 5, 0, 5, 0, 0), ('MOV_SPEED', 18, 2, 4, 6, 10, 20, 0, 0, 0, 5, 0, 0, 0, 5), ('CAST_SPEED', 8, 2, 4, 6, 10, 20, 5, 5, 0, 0, 0, 0, 0, 0), ('HP_REGEN', 60, 4, 8, 12, 20, 30, 0, 0, 0, 0, 5, 5, 0, 0), ('SP_REGEN', 60, 4, 8, 12, 20, 30, 0, 0, 0, 0, 5, 5, 0, 0), ('POISON_PCT', 8, 1, 2, 3, 5, 8, 5, 0, 0, 0, 0, 5, 0, 0), ('STUN_PCT', 18, 1, 2, 3, 5, 8, 5, 0, 0, 5, 5, 0, 0, 0), ('SLOW_PCT', 35, 1, 2, 3, 5, 8, 5, 0, 0, 5, 0, 0, 0, 0), ('CRITICAL_PCT', 18, 1, 2, 3, 5, 10, 5, 0, 0, 5, 5, 0, 0, 0), ('PENETRATE_PCT', 30, 1, 2, 3, 5, 10, 5, 0, 5, 0, 5, 0, 0, 0), ('ATTBONUS_HUMAN', 15, 1, 2, 3, 5, 10, 5, 0, 5, 0, 0, 5, 5, 5), ('ATTBONUS_ANIMAL', 35, 2, 4, 6, 10, 20, 5, 0, 5, 0, 0, 5, 5, 5), ('ATTBONUS_ORC', 35, 2, 4, 6, 10, 20, 5, 0, 5, 0, 0, 5, 5, 5), ('ATTBONUS_MILGYO', 35, 2, 4, 6, 10, 20, 5, 0, 5, 0, 0, 5, 5, 5), ('ATTBONUS_UNDEAD', 35, 2, 4, 6, 10, 20, 5, 0, 5, 0, 0, 5, 5, 5), ('ATTBONUS_DEVIL', 35, 2, 4, 6, 10, 20, 5, 0, 5, 0, 0, 5, 5, 5), ('STEAL_HP', 50, 1, 2, 3, 5, 10, 0, 5, 5, 0, 0, 0, 0, 0), ('STEAL_SP', 50, 1, 2, 3, 5, 10, 0, 5, 0, 0, 5, 5, 0, 0), ('MANA_BURN_PCT', 18, 1, 2, 3, 5, 10, 0, 0, 5, 0, 0, 0, 0, 5), ('BLOCK', 10, 2, 4, 6, 10, 15, 0, 0, 0, 0, 0, 0, 5, 0), ('DODGE', 10, 2, 4, 6, 10, 15, 0, 0, 0, 5, 0, 5, 0, 0), ('RESIST_SWORD', 18, 2, 4, 6, 10, 15, 0, 5, 0, 5, 5, 0, 0, 5), ('RESIST_TWOHAND', 18, 2, 4, 6, 10, 15, 0, 5, 0, 5, 5, 0, 0, 5), ('RESIST_DAGGER', 18, 2, 4, 6, 10, 15, 0, 5, 0, 5, 5, 0, 0, 5), ('RESIST_BELL', 18, 2, 4, 6, 10, 15, 0, 5, 0, 5, 5, 0, 0, 5), ('RESIST_FAN', 18, 2, 4, 6, 10, 15, 0, 5, 0, 5, 5, 0, 0, 5), ('RESIST_BOW', 18, 2, 4, 6, 10, 15, 0, 5, 0, 5, 5, 0, 0, 5), ('RESIST_FIRE', 18, 2, 4, 6, 10, 15, 0, 5, 5, 0, 0, 5, 0, 0), ('RESIST_ELEC', 18, 2, 4, 6, 10, 15, 0, 5, 5, 0, 0, 5, 0, 0), ('RESIST_MAGIC', 25, 2, 4, 6, 10, 15, 0, 5, 5, 0, 0, 5, 0, 0), ('RESIST_WIND', 18, 2, 4, 6, 10, 15, 0, 5, 5, 0, 0, 5, 0, 0), ('REFLECT_MELEE', 18, 1, 2, 3, 6, 10, 0, 5, 0, 0, 0, 0, 5, 0), ('POISON_REDUCE', 18, 1, 2, 3, 4, 5, 0, 0, 0, 0, 0, 0, 0, 5), ('EXP_DOUBLE_BONUS', 10, 2, 4, 6, 8, 20, 0, 0, 0, 5, 5, 0, 5, 0), ('GOLD_DOUBLE_BONUS', 10, 2, 4, 6, 8, 20, 0, 0, 0, 5, 5, 0, 5, 0), ('ITEM_DROP_BONUS', 7, 2, 4, 6, 8, 20, 0, 0, 5, 0, 0, 0, 0, 5), ('IMMUNE_STUN', 3, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0), ('IMMUNE_SLOW', 3, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0), ('ATT_GRADE_BONUS', 9, 5, 10, 15, 30, 50, 0, 5, 0, 0, 0, 0, 0, 0), ('RESIST_ICE', 18, 6, 8, 10, 12, 15, 0, 5, 5, 0, 0, 5, 0, 0), ('RESIST_EARTH', 18, 6, 8, 10, 12, 15, 0, 5, 5, 0, 0, 5, 0, 0), ('RESIST_DARK', 18, 6, 8, 10, 12, 15, 0, 5, 5, 0, 0, 5, 0, 0); +--> statement-breakpoint +insert into "player"."item_attr_rare" ("apply", "probability", "lvl_1", "lvl_2", "lvl_3", "lvl_4", "lvl_5", "weapon", "body", "wrist", "foots", "neck", "head", "shield", "ear") values ('MAX_HP', 1, 500, 500, 500, 500, 500, 5, 5, 5, 5, 5, 5, 5, 5), ('MAX_SP', 1, 50, 50, 50, 50, 50, 5, 5, 5, 5, 5, 5, 5, 5), ('CON', 1, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5), ('INT', 1, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5), ('STR', 1, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5), ('DEX', 1, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5), ('CRITICAL_PCT', 1, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5), ('PENETRATE_PCT', 1, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5), ('ATT_GRADE_BONUS', 1, 50, 50, 50, 50, 50, 5, 5, 5, 5, 5, 5, 5, 5), ('ATT_BONUS_TO_MONSTER', 1, 10, 10, 10, 10, 10, 5, 5, 5, 5, 5, 5, 5, 5), ('ATT_BONUS_TO_WARRIOR', 1, 10, 10, 10, 10, 10, 5, 5, 5, 5, 5, 5, 5, 5), ('ATT_BONUS_TO_ASSASSIN', 1, 10, 10, 10, 10, 10, 5, 5, 5, 5, 5, 5, 5, 5), ('ATT_BONUS_TO_SURA', 1, 10, 10, 10, 10, 10, 5, 5, 5, 5, 5, 5, 5, 5), ('ATT_BONUS_TO_SHAMAN', 1, 10, 10, 10, 10, 10, 5, 5, 5, 5, 5, 5, 5, 5), ('RESIST_WARRIOR', 1, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5), ('RESIST_ASSASSIN', 1, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5), ('RESIST_SURA', 1, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5), ('RESIST_SHAMAN', 1, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5), ('ATT_SPEED', 1, 2, 2, 2, 2, 2, 5, 5, 5, 5, 5, 5, 5, 5), ('MOV_SPEED', 1, 8, 8, 8, 8, 8, 5, 5, 5, 5, 5, 5, 5, 5); diff --git a/drizzle/0003_worried_hex.sql b/drizzle/0003_worried_hex.sql new file mode 100644 index 0000000..95dfeb4 --- /dev/null +++ b/drizzle/0003_worried_hex.sql @@ -0,0 +1,30 @@ +CREATE SCHEMA "web"; +--> statement-breakpoint +CREATE TABLE "web"."password_reset_session" ( + "id" text PRIMARY KEY NOT NULL, + "user_id" integer NOT NULL, + "email" text NOT NULL, + "code" text NOT NULL, + "expires_at" timestamp NOT NULL +); +--> statement-breakpoint +CREATE TABLE "web"."session" ( + "id" text PRIMARY KEY NOT NULL, + "user_id" integer NOT NULL, + "ip" varchar(16) DEFAULT '0.0.0.0' NOT NULL, + "expires_at" timestamp NOT NULL +); +--> statement-breakpoint +ALTER TABLE "account"."account" ALTER COLUMN "email" SET DATA TYPE text;--> statement-breakpoint +ALTER TABLE "account"."account" ALTER COLUMN "ip" SET DATA TYPE varchar(16);--> statement-breakpoint +ALTER TABLE "log"."change_name" ALTER COLUMN "ip" SET DATA TYPE varchar(16);--> statement-breakpoint +ALTER TABLE "log"."command_log" ALTER COLUMN "ip" SET DATA TYPE varchar(16);--> statement-breakpoint +ALTER TABLE "log"."log" ALTER COLUMN "ip" SET DATA TYPE varchar(16);--> statement-breakpoint +ALTER TABLE "player"."player" ALTER COLUMN "ip" SET DATA TYPE varchar(16);--> statement-breakpoint +ALTER TABLE "player"."player_deleted" ALTER COLUMN "ip" SET DATA TYPE varchar(16);--> statement-breakpoint +ALTER TABLE "web"."password_reset_session" ADD CONSTRAINT "password_reset_session_user_id_account_id_fk" FOREIGN KEY ("user_id") REFERENCES "account"."account"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "web"."session" ADD CONSTRAINT "session_user_id_account_id_fk" FOREIGN KEY ("user_id") REFERENCES "account"."account"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "player"."item_attr_rare" ALTER COLUMN "apply" SET DATA TYPE text;--> statement-breakpoint +DROP TYPE "player"."item_attr_rare_apply";--> statement-breakpoint +CREATE TYPE "player"."item_attr_rare_apply" AS ENUM('MAX_HP', 'MAX_SP', 'CON', 'INT', 'STR', 'DEX', 'ATT_SPEED', 'MOV_SPEED', 'CAST_SPEED', 'HP_REGEN', 'SP_REGEN', 'POISON_PCT', 'STUN_PCT', 'SLOW_PCT', 'CRITICAL_PCT', 'PENETRATE_PCT', 'ATTBONUS_HUMAN', 'ATTBONUS_ANIMAL', 'ATTBONUS_ORC', 'ATTBONUS_MILGYO', 'ATTBONUS_UNDEAD', 'ATTBONUS_DEVIL', 'STEAL_HP', 'STEAL_SP', 'MANA_BURN_PCT', 'DAMAGE_SP_RECOVER', 'BLOCK', 'DODGE', 'RESIST_SWORD', 'RESIST_TWOHAND', 'RESIST_DAGGER', 'RESIST_BELL', 'RESIST_FAN', 'RESIST_BOW', 'RESIST_FIRE', 'RESIST_ELEC', 'RESIST_MAGIC', 'RESIST_WIND', 'REFLECT_MELEE', 'REFLECT_CURSE', 'POISON_REDUCE', 'KILL_SP_RECOVER', 'EXP_DOUBLE_BONUS', 'GOLD_DOUBLE_BONUS', 'ITEM_DROP_BONUS', 'POTION_BONUS', 'KILL_HP_RECOVER', 'IMMUNE_STUN', 'IMMUNE_SLOW', 'IMMUNE_FALL', 'SKILL', 'BOW_DISTANCE', 'ATT_GRADE_BONUS', 'DEF_GRADE_BONUS', 'MAGIC_ATT_GRADE', 'MAGIC_DEF_GRADE', 'CURSE_PCT', 'MAX_STAMINA', 'ATT_BONUS_TO_WARRIOR', 'ATT_BONUS_TO_ASSASSIN', 'ATT_BONUS_TO_SURA', 'ATT_BONUS_TO_SHAMAN', 'ATT_BONUS_TO_MONSTER', 'NORMAL_HIT_DEFEND_BONUS', 'SKILL_DEFEND_BONUS', 'NOUSE2', 'NOUSE3', 'NOUSE4', 'NOUSE5', 'NOUSE6', 'NOUSE7', 'NOUSE8', 'NOUSE9', 'NOUSE10', 'NOUSE11', 'NOUSE12', 'NOUSE13', 'NOUSE14', 'RESIST_WARRIOR', 'RESIST_ASSASSIN', 'RESIST_SURA', 'RESIST_SHAMAN');--> statement-breakpoint +ALTER TABLE "player"."item_attr_rare" ALTER COLUMN "apply" SET DATA TYPE "player"."item_attr_rare_apply" USING "apply"::"player"."item_attr_rare_apply"; \ No newline at end of file diff --git a/drizzle/0004_mysterious_wallop.sql b/drizzle/0004_mysterious_wallop.sql new file mode 100644 index 0000000..baceaf4 --- /dev/null +++ b/drizzle/0004_mysterious_wallop.sql @@ -0,0 +1,2 @@ +ALTER TABLE "web"."password_reset_session" ALTER COLUMN "expires_at" SET DATA TYPE timestamp with time zone;--> statement-breakpoint +ALTER TABLE "web"."session" ALTER COLUMN "expires_at" SET DATA TYPE timestamp with time zone; \ No newline at end of file diff --git a/drizzle/meta/0000_snapshot.json b/drizzle/meta/0000_snapshot.json new file mode 100644 index 0000000..b7ca025 --- /dev/null +++ b/drizzle/meta/0000_snapshot.json @@ -0,0 +1,18 @@ +{ + "id": "7ae5f261-ddfc-44f3-a43d-41fb2f5e8eaa", + "prevId": "00000000-0000-0000-0000-000000000000", + "version": "7", + "dialect": "postgresql", + "tables": {}, + "enums": {}, + "schemas": {}, + "views": {}, + "sequences": {}, + "roles": {}, + "policies": {}, + "_meta": { + "columns": {}, + "schemas": {}, + "tables": {} + } +} \ No newline at end of file diff --git a/drizzle/meta/0001_snapshot.json b/drizzle/meta/0001_snapshot.json new file mode 100644 index 0000000..cecefd5 --- /dev/null +++ b/drizzle/meta/0001_snapshot.json @@ -0,0 +1,6919 @@ +{ + "id": "6b50e692-daa7-452f-a179-1d487e2e5538", + "prevId": "7ae5f261-ddfc-44f3-a43d-41fb2f5e8eaa", + "version": "7", + "dialect": "postgresql", + "tables": { + "account.account": { + "name": "account", + "schema": "account", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "account_id_seq", + "schema": "account", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "login": { + "name": "login", + "type": "varchar(30)", + "primaryKey": false, + "notNull": true + }, + "password": { + "name": "password", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "social_id": { + "name": "social_id", + "type": "varchar(13)", + "primaryKey": false, + "notNull": true + }, + "email": { + "name": "email", + "type": "varchar(64)", + "primaryKey": false, + "notNull": true + }, + "status": { + "name": "status", + "type": "varchar(8)", + "primaryKey": false, + "notNull": true, + "default": "'OK'" + }, + "security_code": { + "name": "security_code", + "type": "varchar(192)", + "primaryKey": false, + "notNull": false + }, + "available_dt": { + "name": "available_dt", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "mileage": { + "name": "mileage", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "cash": { + "name": "cash", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "gold_expired_at": { + "name": "gold_expired_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "silver_expired_at": { + "name": "silver_expired_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "safebox_expired_at": { + "name": "safebox_expired_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "autoloot_expired_at": { + "name": "autoloot_expired_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "fish_mind_expired_at": { + "name": "fish_mind_expired_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "marriage_fast_expired_at": { + "name": "marriage_fast_expired_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "money_drop_rate_expired_at": { + "name": "money_drop_rate_expired_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "ip": { + "name": "ip", + "type": "varchar(191)", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "last_played_at": { + "name": "last_played_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "account_social_id": { + "name": "account_social_id", + "columns": [ + { + "expression": "social_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "account_login": { + "name": "account_login", + "nullsNotDistinct": false, + "columns": [ + "login" + ] + }, + "account_email": { + "name": "account_email", + "nullsNotDistinct": false, + "columns": [ + "email" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "common.gm_host": { + "name": "gm_host", + "schema": "common", + "columns": { + "ip": { + "name": "ip", + "type": "varchar(16)", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "common.gm_list": { + "name": "gm_list", + "schema": "common", + "columns": { + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "contact_ip": { + "name": "contact_ip", + "type": "varchar(16)", + "primaryKey": false, + "notNull": true + }, + "server_ip": { + "name": "server_ip", + "type": "varchar(16)", + "primaryKey": false, + "notNull": true, + "default": "'ALL'" + }, + "authority": { + "name": "authority", + "type": "gm_authority", + "typeSchema": "common", + "primaryKey": false, + "notNull": false, + "default": "'PLAYER'" + } + }, + "indexes": {}, + "foreignKeys": { + "gm_list_player_id_player_id_fk": { + "name": "gm_list_player_id_player_id_fk", + "tableFrom": "gm_list", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "common.locale": { + "name": "locale", + "schema": "common", + "columns": { + "key": { + "name": "key", + "type": "varchar(191)", + "primaryKey": false, + "notNull": true + }, + "value": { + "name": "value", + "type": "varchar(191)", + "primaryKey": false, + "notNull": true + } + }, + "indexes": { + "locale_key": { + "name": "locale_key", + "columns": [ + { + "expression": "key", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "common.spam_db": { + "name": "spam_db", + "schema": "common", + "columns": { + "type": { + "name": "type", + "type": "spam_type", + "typeSchema": "common", + "primaryKey": false, + "notNull": true, + "default": "'SPAM'" + }, + "word": { + "name": "word", + "type": "varchar(256)", + "primaryKey": false, + "notNull": true + }, + "score": { + "name": "score", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 10 + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.boot_log": { + "name": "boot_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "boot_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "hostname": { + "name": "hostname", + "type": "char(128)", + "primaryKey": false, + "notNull": true, + "default": "'UNKNOWN'" + }, + "channel": { + "name": "channel", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.change_name": { + "name": "change_name", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "change_name_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "old_name": { + "name": "old_name", + "type": "varchar(191)", + "primaryKey": false, + "notNull": false + }, + "new_name": { + "name": "new_name", + "type": "varchar(191)", + "primaryKey": false, + "notNull": false + }, + "ip": { + "name": "ip", + "type": "varchar(20)", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "change_name_player_id_player_id_fk": { + "name": "change_name_player_id_player_id_fk", + "tableFrom": "change_name", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.command_log": { + "name": "command_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "command_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "server": { + "name": "server", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "ip": { + "name": "ip", + "type": "varchar(15)", + "primaryKey": false, + "notNull": true + }, + "port": { + "name": "port", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "username": { + "name": "username", + "type": "varchar(50)", + "primaryKey": false, + "notNull": true + }, + "command": { + "name": "command", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "command_log_player_id_player_id_fk": { + "name": "command_log_player_id_player_id_fk", + "tableFrom": "command_log", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.cube_log": { + "name": "cube_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "cube_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "x": { + "name": "x", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "y": { + "name": "y", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "item_vnum": { + "name": "item_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "item_uid": { + "name": "item_uid", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "item_count": { + "name": "item_count", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "success": { + "name": "success", + "type": "boolean", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": { + "cube_log_player_id": { + "name": "cube_log_player_id", + "columns": [ + { + "expression": "player_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "cube_log_item_vnum": { + "name": "cube_log_item_vnum", + "columns": [ + { + "expression": "item_vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "cube_log_item_uid": { + "name": "cube_log_item_uid", + "columns": [ + { + "expression": "item_uid", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.dragon_slay_log": { + "name": "dragon_slay_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "dragon_slay_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "guild_id": { + "name": "guild_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "start_time": { + "name": "start_time", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "end_time": { + "name": "end_time", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.fish_log": { + "name": "fish_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "fish_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "map_index": { + "name": "map_index", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "fish_id": { + "name": "fish_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "fishing_level": { + "name": "fishing_level", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "waiting_time": { + "name": "waiting_time", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "success": { + "name": "success", + "type": "boolean", + "primaryKey": false, + "notNull": true + }, + "size": { + "name": "size", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "fish_log_player_id_player_id_fk": { + "name": "fish_log_player_id_player_id_fk", + "tableFrom": "fish_log", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.gold_log": { + "name": "gold_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "gold_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "what": { + "name": "what", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "how": { + "name": "how", + "type": "gold_log_how", + "typeSchema": "log", + "primaryKey": false, + "notNull": true + }, + "hint": { + "name": "hint", + "type": "varchar(50)", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": { + "gold_log_created_at": { + "name": "gold_log_created_at", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "gold_log_player_id": { + "name": "gold_log_player_id", + "columns": [ + { + "expression": "player_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "gold_log_what": { + "name": "gold_log_what", + "columns": [ + { + "expression": "what", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "gold_log_how": { + "name": "gold_log_how", + "columns": [ + { + "expression": "how", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "gold_log_player_id_player_id_fk": { + "name": "gold_log_player_id_player_id_fk", + "tableFrom": "gold_log", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.hack_log": { + "name": "hack_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "hack_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "login": { + "name": "login", + "type": "char(16)", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "char(24)", + "primaryKey": false, + "notNull": true + }, + "ip": { + "name": "ip", + "type": "char(15)", + "primaryKey": false, + "notNull": true + }, + "server": { + "name": "server", + "type": "char(100)", + "primaryKey": false, + "notNull": true + }, + "why": { + "name": "why", + "type": "char(191)", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.level_log": { + "name": "level_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "level_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "name": { + "name": "name", + "type": "char(24)", + "primaryKey": false, + "notNull": true + }, + "level": { + "name": "level", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "playtime": { + "name": "playtime", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "level_log_player_id_player_id_fk": { + "name": "level_log_player_id_player_id_fk", + "tableFrom": "level_log", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.log": { + "name": "log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "type": { + "name": "type", + "type": "log_type", + "typeSchema": "log", + "primaryKey": false, + "notNull": true, + "default": "'ITEM'" + }, + "who": { + "name": "who", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "x": { + "name": "x", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "y": { + "name": "y", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "what": { + "name": "what", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "how": { + "name": "how", + "type": "varchar(50)", + "primaryKey": false, + "notNull": true + }, + "hint": { + "name": "hint", + "type": "varchar(70)", + "primaryKey": false, + "notNull": false + }, + "ip": { + "name": "ip", + "type": "varchar(20)", + "primaryKey": false, + "notNull": false + }, + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": { + "log_who": { + "name": "log_who", + "columns": [ + { + "expression": "who", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "log_what": { + "name": "log_what", + "columns": [ + { + "expression": "what", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "log_how": { + "name": "log_how", + "columns": [ + { + "expression": "how", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.login_log": { + "name": "login_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "login_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "type": { + "name": "type", + "type": "login_log_type", + "typeSchema": "log", + "primaryKey": false, + "notNull": false + }, + "channel": { + "name": "channel", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "account_id": { + "name": "account_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "level": { + "name": "level", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "job": { + "name": "job", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "playtime": { + "name": "playtime", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": { + "login_log_player_id": { + "name": "login_log_player_id", + "columns": [ + { + "expression": "player_id", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "type", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "login_log_account_id_account_id_fk": { + "name": "login_log_account_id_account_id_fk", + "tableFrom": "login_log", + "tableTo": "account", + "schemaTo": "account", + "columnsFrom": [ + "account_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "login_log_player_id_player_id_fk": { + "name": "login_log_player_id_player_id_fk", + "tableFrom": "login_log", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.login_log_2": { + "name": "login_log_2", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "login_log_2_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "type": { + "name": "type", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "is_gm": { + "name": "is_gm", + "type": "boolean", + "primaryKey": false, + "notNull": false + }, + "channel": { + "name": "channel", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "account_id": { + "name": "account_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "ip": { + "name": "ip", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "client_version": { + "name": "client_version", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "playtime": { + "name": "playtime", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "login_at": { + "name": "login_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "logout_at": { + "name": "logout_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "login_log_2_account_id_account_id_fk": { + "name": "login_log_2_account_id_account_id_fk", + "tableFrom": "login_log_2", + "tableTo": "account", + "schemaTo": "account", + "columnsFrom": [ + "account_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "login_log_2_player_id_player_id_fk": { + "name": "login_log_2_player_id_player_id_fk", + "tableFrom": "login_log_2", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.money_log": { + "name": "money_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "money_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "type": { + "name": "type", + "type": "money_log_type", + "typeSchema": "log", + "primaryKey": false, + "notNull": false + }, + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "gold": { + "name": "gold", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": { + "money_log_type": { + "name": "money_log_type", + "columns": [ + { + "expression": "type", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.player_count": { + "name": "player_count", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "player_count_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "count_red": { + "name": "count_red", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "count_yellow": { + "name": "count_yellow", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "count_blue": { + "name": "count_blue", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "count_total": { + "name": "count_total", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.quest_reward_log": { + "name": "quest_reward_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "quest_reward_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "quest_name": { + "name": "quest_name", + "type": "varchar(32)", + "primaryKey": false, + "notNull": false + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "player_level": { + "name": "player_level", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "reward_type": { + "name": "reward_type", + "type": "reward_type", + "typeSchema": "log", + "primaryKey": false, + "notNull": false + }, + "reward_value1": { + "name": "reward_value1", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "reward_value2": { + "name": "reward_value2", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": { + "quest_reward_log_player_id": { + "name": "quest_reward_log_player_id", + "columns": [ + { + "expression": "player_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.refine_log": { + "name": "refine_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "refine_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "item_name": { + "name": "item_name", + "type": "varchar(24)", + "primaryKey": false, + "notNull": true + }, + "item_id": { + "name": "item_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "step": { + "name": "step", + "type": "varchar(50)", + "primaryKey": false, + "notNull": true + }, + "is_success": { + "name": "is_success", + "type": "boolean", + "primaryKey": false, + "notNull": true + }, + "set_type": { + "name": "set_type", + "type": "refine_log_set_type", + "typeSchema": "log", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "refine_log_player_id_player_id_fk": { + "name": "refine_log_player_id_player_id_fk", + "tableFrom": "refine_log", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.shout_log": { + "name": "shout_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "shout_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "channel": { + "name": "channel", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "empire": { + "name": "empire", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "shout": { + "name": "shout", + "type": "varchar(350)", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": { + "shout_log_created_at": { + "name": "shout_log_created_at", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.speed_hack_log": { + "name": "speed_hack_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "speed_hack_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "x": { + "name": "x", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "y": { + "name": "y", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "hack_count": { + "name": "hack_count", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "speed_hack_log_player_id_player_id_fk": { + "name": "speed_hack_log_player_id_player_id_fk", + "tableFrom": "speed_hack_log", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.affect": { + "name": "affect", + "schema": "player", + "columns": { + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "type": { + "name": "type", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "apply_on": { + "name": "apply_on", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "apply_value": { + "name": "apply_value", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "flag": { + "name": "flag", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "duration": { + "name": "duration", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "sp_cost": { + "name": "sp_cost", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": {}, + "foreignKeys": { + "affect_player_id_player_id_fk": { + "name": "affect_player_id_player_id_fk", + "tableFrom": "affect", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.banword": { + "name": "banword", + "schema": "player", + "columns": { + "word": { + "name": "word", + "type": "text", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.change_empire": { + "name": "change_empire", + "schema": "player", + "columns": { + "account_id": { + "name": "account_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "change_count": { + "name": "change_count", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "change_empire_account_id_account_id_fk": { + "name": "change_empire_account_id_account_id_fk", + "tableFrom": "change_empire", + "tableTo": "account", + "schemaTo": "account", + "columnsFrom": [ + "account_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.guild": { + "name": "guild", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "guild_id_seq", + "schema": "player", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "name": { + "name": "name", + "type": "varchar(12)", + "primaryKey": false, + "notNull": true + }, + "sp": { + "name": "sp", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 1000 + }, + "master": { + "name": "master", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "level": { + "name": "level", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "exp": { + "name": "exp", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_point": { + "name": "skill_point", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "skill": { + "name": "skill", + "type": "bytea", + "primaryKey": false, + "notNull": false + }, + "win": { + "name": "win", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "draw": { + "name": "draw", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "loss": { + "name": "loss", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "ladder_point": { + "name": "ladder_point", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "gold": { + "name": "gold", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.guild_comment": { + "name": "guild_comment", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "guild_comment_id_seq", + "schema": "player", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "guild_id": { + "name": "guild_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(8)", + "primaryKey": false, + "notNull": false + }, + "notice": { + "name": "notice", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "content": { + "name": "content", + "type": "varchar(50)", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": { + "aaa": { + "name": "aaa", + "columns": [ + { + "expression": "notice", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "id", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "guild_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "guild_comment_guild_id": { + "name": "guild_comment_guild_id", + "columns": [ + { + "expression": "guild_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "guild_comment_guild_id_guild_id_fk": { + "name": "guild_comment_guild_id_guild_id_fk", + "tableFrom": "guild_comment", + "tableTo": "guild", + "schemaTo": "player", + "columnsFrom": [ + "guild_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.guild_grade": { + "name": "guild_grade", + "schema": "player", + "columns": { + "guild_id": { + "name": "guild_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "grade": { + "name": "grade", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "name": { + "name": "name", + "type": "varchar(8)", + "primaryKey": false, + "notNull": true + }, + "auth": { + "name": "auth", + "type": "guild_grade_auth[]", + "primaryKey": false, + "notNull": true, + "default": "'{}'" + }, + "auth_bits": { + "name": "auth_bits", + "type": "bigint", + "primaryKey": false, + "notNull": false, + "generated": { + "as": "enum_array_to_bitmask(\"player\".\"guild_grade\".\"auth\")", + "type": "stored" + } + } + }, + "indexes": {}, + "foreignKeys": { + "guild_grade_guild_id_guild_id_fk": { + "name": "guild_grade_guild_id_guild_id_fk", + "tableFrom": "guild_grade", + "tableTo": "guild", + "schemaTo": "player", + "columnsFrom": [ + "guild_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.guild_member": { + "name": "guild_member", + "schema": "player", + "columns": { + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "guild_id": { + "name": "guild_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "grade": { + "name": "grade", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "is_general": { + "name": "is_general", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "offer": { + "name": "offer", + "type": "integer", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "guild_member_player_id_player_id_fk": { + "name": "guild_member_player_id_player_id_fk", + "tableFrom": "guild_member", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "guild_member_guild_id_guild_id_fk": { + "name": "guild_member_guild_id_guild_id_fk", + "tableFrom": "guild_member", + "tableTo": "guild", + "schemaTo": "player", + "columnsFrom": [ + "guild_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "guild_member_player_id_guild_id_pk": { + "name": "guild_member_player_id_guild_id_pk", + "columns": [ + "player_id", + "guild_id" + ] + } + }, + "uniqueConstraints": { + "player_id": { + "name": "player_id", + "nullsNotDistinct": false, + "columns": [ + "player_id" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.guild_war_bet": { + "name": "guild_war_bet", + "schema": "player", + "columns": { + "login": { + "name": "login", + "type": "varchar(24)", + "primaryKey": false, + "notNull": true + }, + "gold": { + "name": "gold", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "guild_id": { + "name": "guild_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "war_id": { + "name": "war_id", + "type": "integer", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": { + "guild_war_bet_guild_id_guild_id_fk": { + "name": "guild_war_bet_guild_id_guild_id_fk", + "tableFrom": "guild_war_bet", + "tableTo": "guild", + "schemaTo": "player", + "columnsFrom": [ + "guild_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "guild_war_bet_war_id_guild_war_reservation_id_fk": { + "name": "guild_war_bet_war_id_guild_war_reservation_id_fk", + "tableFrom": "guild_war_bet", + "tableTo": "guild_war_reservation", + "schemaTo": "player", + "columnsFrom": [ + "war_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.guild_war_reservation": { + "name": "guild_war_reservation", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "guild_war_reservation_id_seq", + "schema": "player", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "guild1": { + "name": "guild1", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "guild2": { + "name": "guild2", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "type": { + "name": "type", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "warprice": { + "name": "warprice", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "initial_score": { + "name": "initial_score", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "started": { + "name": "started", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "bet_from": { + "name": "bet_from", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "bet_to": { + "name": "bet_to", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "winner": { + "name": "winner", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": -1 + }, + "power_from": { + "name": "power_from", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "power_to": { + "name": "power_to", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "handicap": { + "name": "handicap", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "result_1": { + "name": "result_1", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "result_2": { + "name": "result_2", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "started_at": { + "name": "started_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "guild_war_reservation_guild1_guild_id_fk": { + "name": "guild_war_reservation_guild1_guild_id_fk", + "tableFrom": "guild_war_reservation", + "tableTo": "guild", + "schemaTo": "player", + "columnsFrom": [ + "guild1" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "guild_war_reservation_guild2_guild_id_fk": { + "name": "guild_war_reservation_guild2_guild_id_fk", + "tableFrom": "guild_war_reservation", + "tableTo": "guild", + "schemaTo": "player", + "columnsFrom": [ + "guild2" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.horse_name": { + "name": "horse_name", + "schema": "player", + "columns": { + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(24)", + "primaryKey": false, + "notNull": true, + "default": "'NONAME'" + } + }, + "indexes": {}, + "foreignKeys": { + "horse_name_player_id_player_id_fk": { + "name": "horse_name_player_id_player_id_fk", + "tableFrom": "horse_name", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.item": { + "name": "item", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "item_id_seq", + "schema": "player", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "owner_id": { + "name": "owner_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "window": { + "name": "window", + "type": "item_window", + "typeSchema": "player", + "primaryKey": false, + "notNull": true, + "default": "'INVENTORY'" + }, + "position": { + "name": "position", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "count": { + "name": "count", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "socket_0": { + "name": "socket_0", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "socket_1": { + "name": "socket_1", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "socket_2": { + "name": "socket_2", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "socket_3": { + "name": "socket_3", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "socket_4": { + "name": "socket_4", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "socket_5": { + "name": "socket_5", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_type_0": { + "name": "attr_type_0", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_value_0": { + "name": "attr_value_0", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_type_1": { + "name": "attr_type_1", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_value_1": { + "name": "attr_value_1", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_type_2": { + "name": "attr_type_2", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_value_2": { + "name": "attr_value_2", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_type_3": { + "name": "attr_type_3", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_value_3": { + "name": "attr_value_3", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_type_4": { + "name": "attr_type_4", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_value_4": { + "name": "attr_value_4", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_type_5": { + "name": "attr_type_5", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_value_5": { + "name": "attr_value_5", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_type_6": { + "name": "attr_type_6", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_value_6": { + "name": "attr_value_6", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": { + "item_owner_id": { + "name": "item_owner_id", + "columns": [ + { + "expression": "owner_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "item_window": { + "name": "item_window", + "columns": [ + { + "expression": "window", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "item_vnum": { + "name": "item_vnum", + "columns": [ + { + "expression": "vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.item_attr": { + "name": "item_attr", + "schema": "player", + "columns": { + "apply": { + "name": "apply", + "type": "item_attr_apply", + "typeSchema": "player", + "primaryKey": false, + "notNull": true, + "default": "'MAX_HP'" + }, + "probability": { + "name": "probability", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_1": { + "name": "lvl_1", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_2": { + "name": "lvl_2", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_3": { + "name": "lvl_3", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_4": { + "name": "lvl_4", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_5": { + "name": "lvl_5", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "weapon": { + "name": "weapon", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "body": { + "name": "body", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "wrist": { + "name": "wrist", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "foots": { + "name": "foots", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "neck": { + "name": "neck", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "head": { + "name": "head", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "shield": { + "name": "shield", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "ear": { + "name": "ear", + "type": "integer", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.item_attr_rare": { + "name": "item_attr_rare", + "schema": "player", + "columns": { + "apply": { + "name": "apply", + "type": "item_attr_rare_apply", + "typeSchema": "player", + "primaryKey": false, + "notNull": true, + "default": "'MAX_HP'" + }, + "probability": { + "name": "probability", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_1": { + "name": "lvl_1", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_2": { + "name": "lvl_2", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_3": { + "name": "lvl_3", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_4": { + "name": "lvl_4", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_5": { + "name": "lvl_5", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "weapon": { + "name": "weapon", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "body": { + "name": "body", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "wrist": { + "name": "wrist", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "foots": { + "name": "foots", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "neck": { + "name": "neck", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "head": { + "name": "head", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "shield": { + "name": "shield", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "ear": { + "name": "ear", + "type": "integer", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.item_award": { + "name": "item_award", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "item_award_id_seq", + "schema": "player", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "login": { + "name": "login", + "type": "varchar(30)", + "primaryKey": false, + "notNull": true + }, + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "count": { + "name": "count", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "give_at": { + "name": "give_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "taken_at": { + "name": "taken_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "item_id": { + "name": "item_id", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "why": { + "name": "why", + "type": "varchar(128)", + "primaryKey": false, + "notNull": false + }, + "socket_0": { + "name": "socket_0", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "socket_1": { + "name": "socket_1", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "socket_2": { + "name": "socket_2", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "mall": { + "name": "mall", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": { + "item_award_player_id": { + "name": "item_award_player_id", + "columns": [ + { + "expression": "player_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "item_award_given_at": { + "name": "item_award_given_at", + "columns": [ + { + "expression": "give_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "item_award_taken_at": { + "name": "item_award_taken_at", + "columns": [ + { + "expression": "taken_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "item_award_player_id_player_id_fk": { + "name": "item_award_player_id_player_id_fk", + "tableFrom": "item_award", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.item_proto": { + "name": "item_proto", + "schema": "player", + "columns": { + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "locale_name": { + "name": "locale_name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "type": { + "name": "type", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "sub_type": { + "name": "sub_type", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "weight": { + "name": "weight", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "size": { + "name": "size", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "anti_flag": { + "name": "anti_flag", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "flag": { + "name": "flag", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "wear_flag": { + "name": "wear_flag", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "immune_flag": { + "name": "immune_flag", + "type": "item_proto_immune_flag[]", + "primaryKey": false, + "notNull": true, + "default": "'{}'" + }, + "gold": { + "name": "gold", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "shop_buy_price": { + "name": "shop_buy_price", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "refined_vnum": { + "name": "refined_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "refine_set": { + "name": "refine_set", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "refine_set2": { + "name": "refine_set2", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "magic_percentage": { + "name": "magic_percentage", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "limit_type_0": { + "name": "limit_type_0", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "limit_value_0": { + "name": "limit_value_0", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "limit_type_1": { + "name": "limit_type_1", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "limit_value_1": { + "name": "limit_value_1", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "apply_type_0": { + "name": "apply_type_0", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "apply_value_0": { + "name": "apply_value_0", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "apply_type_1": { + "name": "apply_type_1", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "apply_value_1": { + "name": "apply_value_1", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "apply_type_2": { + "name": "apply_type_2", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "apply_value_2": { + "name": "apply_value_2", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "value_0": { + "name": "value_0", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "value_1": { + "name": "value_1", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "value_2": { + "name": "value_2", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "value_3": { + "name": "value_3", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "value_4": { + "name": "value_4", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "value_5": { + "name": "value_5", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "socket_0": { + "name": "socket_0", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": -1 + }, + "socket_1": { + "name": "socket_1", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": -1 + }, + "socket_2": { + "name": "socket_2", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": -1 + }, + "socket_3": { + "name": "socket_3", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": -1 + }, + "socket_4": { + "name": "socket_4", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": -1 + }, + "socket_5": { + "name": "socket_5", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": -1 + }, + "specular": { + "name": "specular", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "socket_percentage": { + "name": "socket_percentage", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "addon_type": { + "name": "addon_type", + "type": "integer", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.land": { + "name": "land", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true + }, + "map_index": { + "name": "map_index", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "x": { + "name": "x", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "y": { + "name": "y", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "width": { + "name": "width", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "height": { + "name": "height", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "guild_id": { + "name": "guild_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "guild_level_limit": { + "name": "guild_level_limit", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "price": { + "name": "price", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "enabled": { + "name": "enabled", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.lotto_list": { + "name": "lotto_list", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "lotto_list_id_seq", + "schema": "player", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "server": { + "name": "server", + "type": "varchar(20)", + "primaryKey": false, + "notNull": false + }, + "playerId": { + "name": "playerId", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "lotto_list_playerId_player_id_fk": { + "name": "lotto_list_playerId_player_id_fk", + "tableFrom": "lotto_list", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "playerId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.marriage": { + "name": "marriage", + "schema": "player", + "columns": { + "is_married": { + "name": "is_married", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "player_id_1": { + "name": "player_id_1", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "player_id_2": { + "name": "player_id_2", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "love_points": { + "name": "love_points", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "marriage_player_id_1_player_id_fk": { + "name": "marriage_player_id_1_player_id_fk", + "tableFrom": "marriage", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id_1" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "marriage_player_id_2_player_id_fk": { + "name": "marriage_player_id_2_player_id_fk", + "tableFrom": "marriage", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id_2" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.messenger_list": { + "name": "messenger_list", + "schema": "player", + "columns": { + "account": { + "name": "account", + "type": "varchar(16)", + "primaryKey": false, + "notNull": true + }, + "companion": { + "name": "companion", + "type": "varchar(16)", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.mob_proto": { + "name": "mob_proto", + "schema": "player", + "columns": { + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "locale_name": { + "name": "locale_name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "rank": { + "name": "rank", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "type": { + "name": "type", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "battle_type": { + "name": "battle_type", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "level": { + "name": "level", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 1 + }, + "size": { + "name": "size", + "type": "mob_size", + "typeSchema": "player", + "primaryKey": false, + "notNull": false, + "default": "'SMALL'" + }, + "ai_flag": { + "name": "ai_flag", + "type": "mob_ai_flag[]", + "primaryKey": false, + "notNull": true, + "default": "'{}'" + }, + "mount_capacity": { + "name": "mount_capacity", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "set_race_flag": { + "name": "set_race_flag", + "type": "mob_set_race_flag", + "typeSchema": "player", + "primaryKey": false, + "notNull": true + }, + "set_immune_flag": { + "name": "set_immune_flag", + "type": "mob_set_immune_flag", + "typeSchema": "player", + "primaryKey": false, + "notNull": false + }, + "empire": { + "name": "empire", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "folder": { + "name": "folder", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "on_click": { + "name": "on_click", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "st": { + "name": "st", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "dx": { + "name": "dx", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "ht": { + "name": "ht", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "iq": { + "name": "iq", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "damage_min": { + "name": "damage_min", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "damage_max": { + "name": "damage_max", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "max_hp": { + "name": "max_hp", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "regen_cycle": { + "name": "regen_cycle", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "regen_percent": { + "name": "regen_percent", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "gold_min": { + "name": "gold_min", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "gold_max": { + "name": "gold_max", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "exp": { + "name": "exp", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "def": { + "name": "def", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "attack_speed": { + "name": "attack_speed", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 100 + }, + "move_speed": { + "name": "move_speed", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 100 + }, + "aggressive_hp_percentage": { + "name": "aggressive_hp_percentage", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "aggressive_sight": { + "name": "aggressive_sight", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "attack_range": { + "name": "attack_range", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "drop_item": { + "name": "drop_item", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resurrection_vnum": { + "name": "resurrection_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "enchant_curse": { + "name": "enchant_curse", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "enchant_slow": { + "name": "enchant_slow", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "enchant_poison": { + "name": "enchant_poison", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "enchant_stun": { + "name": "enchant_stun", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "enchant_critical": { + "name": "enchant_critical", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "enchant_penetrate": { + "name": "enchant_penetrate", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_sword": { + "name": "resist_sword", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_twohand": { + "name": "resist_twohand", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_dagger": { + "name": "resist_dagger", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_bell": { + "name": "resist_bell", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_fan": { + "name": "resist_fan", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_bow": { + "name": "resist_bow", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_fire": { + "name": "resist_fire", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_elect": { + "name": "resist_elect", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_magic": { + "name": "resist_magic", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_wind": { + "name": "resist_wind", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_poison": { + "name": "resist_poison", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "dam_multiply": { + "name": "dam_multiply", + "type": "double precision", + "primaryKey": false, + "notNull": false + }, + "summon": { + "name": "summon", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "drain_sp": { + "name": "drain_sp", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "mob_color": { + "name": "mob_color", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "polymorph_item": { + "name": "polymorph_item", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "skill_level0": { + "name": "skill_level0", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_vnum0": { + "name": "skill_vnum0", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_level1": { + "name": "skill_level1", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_vnum1": { + "name": "skill_vnum1", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_level2": { + "name": "skill_level2", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_vnum2": { + "name": "skill_vnum2", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_level3": { + "name": "skill_level3", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_vnum3": { + "name": "skill_vnum3", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_level4": { + "name": "skill_level4", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_vnum4": { + "name": "skill_vnum4", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "sp_berserk": { + "name": "sp_berserk", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "sp_stoneskin": { + "name": "sp_stoneskin", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "sp_godspeed": { + "name": "sp_godspeed", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "sp_deathblow": { + "name": "sp_deathblow", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "sp_revive": { + "name": "sp_revive", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.monarch": { + "name": "monarch", + "schema": "player", + "columns": { + "empire": { + "name": "empire", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "win_at": { + "name": "win_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "money": { + "name": "money", + "type": "integer", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "monarch_player_id_player_id_fk": { + "name": "monarch_player_id_player_id_fk", + "tableFrom": "monarch", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.monarch_candidacy": { + "name": "monarch_candidacy", + "schema": "player", + "columns": { + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "date": { + "name": "date", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + }, + "name": { + "name": "name", + "type": "varchar(16)", + "primaryKey": false, + "notNull": false + }, + "win_at": { + "name": "win_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "monarch_candidacy_player_id_player_id_fk": { + "name": "monarch_candidacy_player_id_player_id_fk", + "tableFrom": "monarch_candidacy", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.monarch_election": { + "name": "monarch_election", + "schema": "player", + "columns": { + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "selected_player_id": { + "name": "selected_player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "election_at": { + "name": "election_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "monarch_election_player_id_player_id_fk": { + "name": "monarch_election_player_id_player_id_fk", + "tableFrom": "monarch_election", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "monarch_election_selected_player_id_player_id_fk": { + "name": "monarch_election_selected_player_id_player_id_fk", + "tableFrom": "monarch_election", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "selected_player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.myshop_pricelist": { + "name": "myshop_pricelist", + "schema": "player", + "columns": { + "owner_id": { + "name": "owner_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "item_vnum": { + "name": "item_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "price": { + "name": "price", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "list_id": { + "name": "list_id", + "nullsNotDistinct": false, + "columns": [ + "owner_id", + "item_vnum" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.object": { + "name": "object", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "object_id_seq", + "schema": "player", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "land_id": { + "name": "land_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "map_index": { + "name": "map_index", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "x": { + "name": "x", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "y": { + "name": "y", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "x_rot": { + "name": "x_rot", + "type": "double precision", + "primaryKey": false, + "notNull": true + }, + "y_rot": { + "name": "y_rot", + "type": "double precision", + "primaryKey": false, + "notNull": true + }, + "z_rot": { + "name": "z_rot", + "type": "double precision", + "primaryKey": false, + "notNull": true + }, + "life": { + "name": "life", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.object_proto": { + "name": "object_proto", + "schema": "player", + "columns": { + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "name": { + "name": "name", + "type": "varchar(32)", + "primaryKey": false, + "notNull": true + }, + "price": { + "name": "price", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "materials": { + "name": "materials", + "type": "varchar(64)", + "primaryKey": false, + "notNull": true + }, + "upgrade_vnum": { + "name": "upgrade_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "upgrade_limit_time": { + "name": "upgrade_limit_time", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "life": { + "name": "life", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "reg_1": { + "name": "reg_1", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "reg_2": { + "name": "reg_2", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "reg_3": { + "name": "reg_3", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "reg_4": { + "name": "reg_4", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "npc": { + "name": "npc", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "group_vnum": { + "name": "group_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "dependent_group": { + "name": "dependent_group", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": { + "object_proto_vnum": { + "name": "object_proto_vnum", + "columns": [ + { + "expression": "vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "object_proto_group_vnum": { + "name": "object_proto_group_vnum", + "columns": [ + { + "expression": "group_vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "object_proto_upgrade_vnum": { + "name": "object_proto_upgrade_vnum", + "columns": [ + { + "expression": "upgrade_vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.player": { + "name": "player", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "player_id_seq", + "schema": "player", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "account_id": { + "name": "account_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(24)", + "primaryKey": false, + "notNull": true, + "default": "'NONAME'" + }, + "job": { + "name": "job", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "voice": { + "name": "voice", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "dir": { + "name": "dir", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "x": { + "name": "x", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "y": { + "name": "y", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "z": { + "name": "z", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "map_index": { + "name": "map_index", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "exit_x": { + "name": "exit_x", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "exit_y": { + "name": "exit_y", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "exit_map_index": { + "name": "exit_map_index", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "hp": { + "name": "hp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "mp": { + "name": "mp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "stamina": { + "name": "stamina", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "random_hp": { + "name": "random_hp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "random_sp": { + "name": "random_sp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "playtime": { + "name": "playtime", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "level": { + "name": "level", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 1 + }, + "level_step": { + "name": "level_step", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "st": { + "name": "st", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "ht": { + "name": "ht", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "dx": { + "name": "dx", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "iq": { + "name": "iq", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "exp": { + "name": "exp", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "gold": { + "name": "gold", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "stat_point": { + "name": "stat_point", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "skill_point": { + "name": "skill_point", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "quick_slot": { + "name": "quick_slot", + "type": "bytea", + "primaryKey": false, + "notNull": false + }, + "ip": { + "name": "ip", + "type": "varchar(15)", + "primaryKey": false, + "notNull": false, + "default": "'0.0.0.0'" + }, + "part_main": { + "name": "part_main", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "part_base": { + "name": "part_base", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "part_hair": { + "name": "part_hair", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "skill_group": { + "name": "skill_group", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "skill_level": { + "name": "skill_level", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "alignment": { + "name": "alignment", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "last_played_at": { + "name": "last_played_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "change_name": { + "name": "change_name", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "sub_skill_point": { + "name": "sub_skill_point", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "stat_reset_count": { + "name": "stat_reset_count", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "horse_hp": { + "name": "horse_hp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "horse_stamina": { + "name": "horse_stamina", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "horse_level": { + "name": "horse_level", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "horse_hp_droptime": { + "name": "horse_hp_droptime", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "horse_riding": { + "name": "horse_riding", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "horse_skill_point": { + "name": "horse_skill_point", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "bank_value": { + "name": "bank_value", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": { + "player_account_id": { + "name": "player_account_id", + "columns": [ + { + "expression": "account_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "player_name": { + "name": "player_name", + "columns": [ + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "player_account_id_account_id_fk": { + "name": "player_account_id_account_id_fk", + "tableFrom": "player", + "tableTo": "account", + "schemaTo": "account", + "columnsFrom": [ + "account_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.player_deleted": { + "name": "player_deleted", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "player_deleted_id_seq", + "schema": "player", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "account_id": { + "name": "account_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(24)", + "primaryKey": false, + "notNull": true, + "default": "'NONAME'" + }, + "job": { + "name": "job", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "voice": { + "name": "voice", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "dir": { + "name": "dir", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "x": { + "name": "x", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "y": { + "name": "y", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "z": { + "name": "z", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "map_index": { + "name": "map_index", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "exit_x": { + "name": "exit_x", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "exit_y": { + "name": "exit_y", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "exit_map_index": { + "name": "exit_map_index", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "hp": { + "name": "hp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "mp": { + "name": "mp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "stamina": { + "name": "stamina", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "random_hp": { + "name": "random_hp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "random_sp": { + "name": "random_sp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "playtime": { + "name": "playtime", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "level": { + "name": "level", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 1 + }, + "level_step": { + "name": "level_step", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "st": { + "name": "st", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "ht": { + "name": "ht", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "dx": { + "name": "dx", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "iq": { + "name": "iq", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "exp": { + "name": "exp", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "gold": { + "name": "gold", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "stat_point": { + "name": "stat_point", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "skill_point": { + "name": "skill_point", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "quick_slot": { + "name": "quick_slot", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "ip": { + "name": "ip", + "type": "varchar(15)", + "primaryKey": false, + "notNull": false, + "default": "'0.0.0.0'" + }, + "part_main": { + "name": "part_main", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "part_base": { + "name": "part_base", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "part_hair": { + "name": "part_hair", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "skill_group": { + "name": "skill_group", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "skill_level": { + "name": "skill_level", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "alignment": { + "name": "alignment", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "last_played_at": { + "name": "last_played_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "change_name": { + "name": "change_name", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "sub_skill_point": { + "name": "sub_skill_point", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "stat_reset_count": { + "name": "stat_reset_count", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "horse_hp": { + "name": "horse_hp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "horse_stamina": { + "name": "horse_stamina", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "horse_level": { + "name": "horse_level", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "horse_hp_droptime": { + "name": "horse_hp_droptime", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "horse_riding": { + "name": "horse_riding", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "horse_skill_point": { + "name": "horse_skill_point", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "bank_value": { + "name": "bank_value", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + } + }, + "indexes": { + "player_deleted_account_id": { + "name": "player_deleted_account_id", + "columns": [ + { + "expression": "account_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "player_deleted_name": { + "name": "player_deleted_name", + "columns": [ + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "player_deleted_account_id_account_id_fk": { + "name": "player_deleted_account_id_account_id_fk", + "tableFrom": "player_deleted", + "tableTo": "account", + "schemaTo": "account", + "columnsFrom": [ + "account_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.player_index": { + "name": "player_index", + "schema": "player", + "columns": { + "account_id": { + "name": "account_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "empire": { + "name": "empire", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "last_played_at": { + "name": "last_played_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "player_index_empire": { + "name": "player_index_empire", + "columns": [ + { + "expression": "empire", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "player_index_account_id_account_id_fk": { + "name": "player_index_account_id_account_id_fk", + "tableFrom": "player_index", + "tableTo": "account", + "schemaTo": "account", + "columnsFrom": [ + "account_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "player_index_account_id_player_id_pk": { + "name": "player_index_account_id_player_id_pk", + "columns": [ + "account_id", + "player_id" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.quest": { + "name": "quest", + "schema": "player", + "columns": { + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(32)", + "primaryKey": false, + "notNull": true + }, + "state": { + "name": "state", + "type": "varchar(64)", + "primaryKey": false, + "notNull": true + }, + "value": { + "name": "value", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": { + "quest_player_id": { + "name": "quest_player_id", + "columns": [ + { + "expression": "player_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "quest_name": { + "name": "quest_name", + "columns": [ + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "quest_state": { + "name": "quest_state", + "columns": [ + { + "expression": "state", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "quest_player_id_player_id_fk": { + "name": "quest_player_id_player_id_fk", + "tableFrom": "quest", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.refine_proto": { + "name": "refine_proto", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true + }, + "vnum_0": { + "name": "vnum_0", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "count_0": { + "name": "count_0", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "vnum_1": { + "name": "vnum_1", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "count_1": { + "name": "count_1", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "vnum_2": { + "name": "vnum_2", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "count_2": { + "name": "count_2", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "vnum_3": { + "name": "vnum_3", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "count_3": { + "name": "count_3", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "vnum_4": { + "name": "vnum_4", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "count_4": { + "name": "count_4", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "cost": { + "name": "cost", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "src_vnum": { + "name": "src_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "result_vnum": { + "name": "result_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "probability": { + "name": "probability", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 100 + } + }, + "indexes": { + "refine_proto_src_vnum": { + "name": "refine_proto_src_vnum", + "columns": [ + { + "expression": "src_vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "refine_proto_result_vnum": { + "name": "refine_proto_result_vnum", + "columns": [ + { + "expression": "result_vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.safebox": { + "name": "safebox", + "schema": "player", + "columns": { + "account_id": { + "name": "account_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "size": { + "name": "size", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "password": { + "name": "password", + "type": "varchar(6)", + "primaryKey": false, + "notNull": true + }, + "gold": { + "name": "gold", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": {}, + "foreignKeys": { + "safebox_account_id_account_id_fk": { + "name": "safebox_account_id_account_id_fk", + "tableFrom": "safebox", + "tableTo": "account", + "schemaTo": "account", + "columnsFrom": [ + "account_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.shop": { + "name": "shop", + "schema": "player", + "columns": { + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": true, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(32)", + "primaryKey": false, + "notNull": true, + "default": "'NONAME'" + }, + "npc_vnum": { + "name": "npc_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true + } + }, + "indexes": { + "shop_vnum": { + "name": "shop_vnum", + "columns": [ + { + "expression": "vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.shop_item": { + "name": "shop_item", + "schema": "player", + "columns": { + "shop_vnum": { + "name": "shop_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "item_vnum": { + "name": "item_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "count": { + "name": "count", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 1 + } + }, + "indexes": { + "shop_item_item_vnum": { + "name": "shop_item_item_vnum", + "columns": [ + { + "expression": "item_vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "shop_item_shop_vnum_shop_vnum_fk": { + "name": "shop_item_shop_vnum_shop_vnum_fk", + "tableFrom": "shop_item", + "tableTo": "shop", + "schemaTo": "player", + "columnsFrom": [ + "shop_vnum" + ], + "columnsTo": [ + "vnum" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "shop_vnum_unique": { + "name": "shop_vnum_unique", + "nullsNotDistinct": false, + "columns": [ + "shop_vnum", + "item_vnum", + "count" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.skill_proto": { + "name": "skill_proto", + "schema": "player", + "columns": { + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "type": { + "name": "type", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "level_step": { + "name": "level_step", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "max_level": { + "name": "max_level", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "level_limit": { + "name": "level_limit", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "point_on": { + "name": "point_on", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true, + "default": "'0'" + }, + "point_poly": { + "name": "point_poly", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "sp_cost_poly": { + "name": "sp_cost_poly", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "duration_poly": { + "name": "duration_poly", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "duration_sp_cost_poly": { + "name": "duration_sp_cost_poly", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "cooldown_poly": { + "name": "cooldown_poly", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "master_bonus_poly": { + "name": "master_bonus_poly", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "attack_grade_poly": { + "name": "attack_grade_poly", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "set_flag": { + "name": "set_flag", + "type": "skill_proto_set_flag[]", + "primaryKey": false, + "notNull": true, + "default": "'{}'" + }, + "set_flag_bits": { + "name": "set_flag_bits", + "type": "bigint", + "primaryKey": false, + "notNull": false, + "generated": { + "as": "enum_array_to_bitmask(\"player\".\"skill_proto\".\"set_flag\")", + "type": "stored" + } + }, + "set_affect_flag": { + "name": "set_affect_flag", + "type": "skill_proto_set_affect_flag", + "typeSchema": "player", + "primaryKey": false, + "notNull": false + }, + "set_affect_flag_bits": { + "name": "set_affect_flag_bits", + "type": "bigint", + "primaryKey": false, + "notNull": false, + "generated": { + "as": "enum_to_bitmask(\"player\".\"skill_proto\".\"set_affect_flag\")", + "type": "stored" + } + }, + "point_on_2": { + "name": "point_on_2", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true, + "default": "'NONE'" + }, + "point_poly_2": { + "name": "point_poly_2", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "duration_poly_2": { + "name": "duration_poly_2", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "set_affect_flag_2": { + "name": "set_affect_flag_2", + "type": "skill_proto_set_affect_flag_2", + "typeSchema": "player", + "primaryKey": false, + "notNull": false + }, + "set_affect_flag_2_bits": { + "name": "set_affect_flag_2_bits", + "type": "bigint", + "primaryKey": false, + "notNull": false, + "generated": { + "as": "enum_to_bitmask(\"player\".\"skill_proto\".\"set_affect_flag_2\")", + "type": "stored" + } + }, + "point_on_3": { + "name": "point_on_3", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true, + "default": "'NONE'" + }, + "point_poly_3": { + "name": "point_poly_3", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "duration_poly_3": { + "name": "duration_poly_3", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "grand_master_add_sp_cost_poly": { + "name": "grand_master_add_sp_cost_poly", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "prerequisite_skill_vnum": { + "name": "prerequisite_skill_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "prerequisite_skill_level": { + "name": "prerequisite_skill_level", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "skill_type": { + "name": "skill_type", + "type": "skill_proto_skill_type", + "typeSchema": "player", + "primaryKey": false, + "notNull": true, + "default": "'NORMAL'" + }, + "skill_type_bits": { + "name": "skill_type_bits", + "type": "bigint", + "primaryKey": false, + "notNull": false, + "generated": { + "as": "enum_to_bitmask(\"player\".\"skill_proto\".\"skill_type\")", + "type": "stored" + } + }, + "max_hit": { + "name": "max_hit", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "splash_around_damage_adjust_poly": { + "name": "splash_around_damage_adjust_poly", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true, + "default": "'1'" + }, + "target_range": { + "name": "target_range", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 1000 + }, + "splash_range": { + "name": "splash_range", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + } + }, + "enums": { + "common.gm_authority": { + "name": "gm_authority", + "schema": "common", + "values": [ + "IMPLEMENTOR", + "HIGH_WIZARD", + "GOD", + "LOW_WIZARD", + "PLAYER" + ] + }, + "common.spam_type": { + "name": "spam_type", + "schema": "common", + "values": [ + "GOOD", + "SPAM" + ] + }, + "log.gold_log_how": { + "name": "gold_log_how", + "schema": "log", + "values": [ + "BUY", + "SELL", + "SHOP_SELL", + "SHOP_BUY", + "EXCHANGE_TAKE", + "EXCHANGE_GIVE", + "QUEST" + ] + }, + "log.log_type": { + "name": "log_type", + "schema": "log", + "values": [ + "ITEM", + "CHARACTER" + ] + }, + "log.login_log_type": { + "name": "login_log_type", + "schema": "log", + "values": [ + "LOGIN", + "LOGOUT" + ] + }, + "log.money_log_type": { + "name": "money_log_type", + "schema": "log", + "values": [ + "MONSTER", + "SHOP", + "REFINE", + "QUEST", + "GUILD", + "MISC", + "KILL", + "DROP" + ] + }, + "log.refine_log_set_type": { + "name": "refine_log_set_type", + "schema": "log", + "values": [ + "SOCKET", + "POWER", + "ROD", + "GUILD", + "SCROLL", + "HYUNIRON", + "GOD_SCROLL", + "MUSIN_SCROLL" + ] + }, + "log.reward_type": { + "name": "reward_type", + "schema": "log", + "values": [ + "EXP", + "ITEM" + ] + }, + "player.guild_grade_auth": { + "name": "guild_grade_auth", + "schema": "player", + "values": [ + "ADD_MEMBER", + "REMOVE_MEMEBER", + "NOTICE", + "USE_SKILL" + ] + }, + "player.item_proto_immune_flag": { + "name": "item_proto_immune_flag", + "schema": "player", + "values": [ + "PARA", + "CURSE", + "STUN", + "SLEEP", + "SLOW", + "POISON", + "TERROR" + ] + }, + "player.item_attr_apply": { + "name": "item_attr_apply", + "schema": "player", + "values": [ + "MAX_HP", + "MAX_SP", + "CON", + "INT", + "STR", + "DEX", + "ATT_SPEED", + "MOV_SPEED", + "CAST_SPEED", + "HP_REGEN", + "SP_REGEN", + "POISON_PCT", + "STUN_PCT", + "SLOW_PCT", + "CRITICAL_PCT", + "PENETRATE_PCT", + "ATTBONUS_HUMAN", + "ATTBONUS_ANIMAL", + "ATTBONUS_ORC", + "ATTBONUS_MILGYO", + "ATTBONUS_UNDEAD", + "ATTBONUS_DEVIL", + "STEAL_HP", + "STEAL_SP", + "MANA_BURN_PCT", + "DAMAGE_SP_RECOVER", + "BLOCK", + "DODGE", + "RESIST_SWORD", + "RESIST_TWOHAND", + "RESIST_DAGGER", + "RESIST_BELL", + "RESIST_FAN", + "RESIST_BOW", + "RESIST_FIRE", + "RESIST_ELEC", + "RESIST_MAGIC", + "RESIST_WIND", + "REFLECT_MELEE", + "REFLECT_CURSE", + "POISON_REDUCE", + "KILL_SP_RECOVER", + "EXP_DOUBLE_BONUS", + "GOLD_DOUBLE_BONUS", + "ITEM_DROP_BONUS", + "POTION_BONUS", + "KILL_HP_RECOVER", + "IMMUNE_STUN", + "IMMUNE_SLOW", + "IMMUNE_FALL", + "SKILL", + "BOW_DISTANCE", + "ATT_GRADE_BONUS", + "DEF_GRADE_BONUS", + "MAGIC_ATT_GRADE", + "MAGIC_DEF_GRADE", + "CURSE_PCT", + "MAX_STAMINA", + "ATTBONUS_WARRIOR", + "ATTBONUS_ASSASSIN", + "ATTBONUS_SURA", + "ATTBONUS_SHAMAN", + "ATTBONUS_MONSTER", + "MALL_ATTBONUS", + "MALL_DEFBONUS", + "MALL_EXPBONUS", + "MALL_ITEMBONUS", + "MALL_GOLDBONUS", + "MAX_HP_PCT", + "MAX_SP_PCT", + "SKILL_DAMAGE_BONUS", + "NORMAL_HIT_DAMAGE_BONUS", + "SKILL_DEFEND_BONUS", + "NORMAL_HIT_DEFEND_BONUS", + "PC_BANG_EXP_BONUS", + "PC_BANG_DROP_BONUS", + "EXTRACT_HP_PCT", + "RESIST_WARRIOR", + "RESIST_ASSASSIN", + "RESIST_SURA", + "RESIST_SHAMAN", + "ENERGY", + "DEF_GRADE", + "COSTUME_ATTR_BONUS", + "MAGIC_ATTBONUS_PER", + "MELEE_MAGIC_ATTBONUS_PER", + "RESIST_ICE", + "RESIST_EARTH", + "RESIST_DARK", + "ANTI_CRITICAL_PCT", + "ANTI_PENETRATE_PCT" + ] + }, + "player.item_attr_rare_apply": { + "name": "item_attr_rare_apply", + "schema": "player", + "values": [ + "MAX_HP", + "MAX_SP", + "CON", + "INT", + "STR", + "DEX", + "ATT_SPEED", + "MOV_SPEED", + "CAST_SPEED", + "HP_REGEN", + "SP_REGEN", + "POISON_PCT", + "STUN_PCT", + "SLOW_PCT", + "CRITICAL_PCT", + "PENETRATE_PCT", + "ATTBONUS_HUMAN", + "ATTBONUS_ANIMAL", + "ATTBONUS_ORC", + "ATTBONUS_MILGYO", + "ATTBONUS_UNDEAD", + "ATTBONUS_DEVIL", + "STEAL_HP", + "STEAL_SP", + "MANA_BURN_PCT", + "DAMAGE_SP_RECOVER", + "BLOCK", + "DODGE", + "RESIST_SWORD", + "RESIST_TWOHAND", + "RESIST_DAGGER", + "RESIST_BELL", + "RESIST_FAN", + "RESIST_BOW", + "RESIST_FIRE", + "RESIST_ELEC", + "RESIST_MAGIC", + "RESIST_WIND", + "REFLECT_MELEE", + "REFLECT_CURSE", + "POISON_REDUCE", + "KILL_SP_RECOVER", + "EXP_DOUBLE_BONUS", + "GOLD_DOUBLE_BONUS", + "ITEM_DROP_BONUS", + "POTION_BONUS", + "KILL_HP_RECOVER", + "IMMUNE_STUN", + "IMMUNE_SLOW", + "IMMUNE_FALL", + "SKILL", + "BOW_DISTANCE", + "ATT_GRADE_BONUS", + "DEF_GRADE_BONUS", + "MAGIC_ATT_GRADE", + "MAGIC_DEF_GRADE", + "CURSE_PCT", + "MAX_STAMINA", + "ATT_BONUS_TO_WARRIOR", + "ATT_BONUS_TO_ASSASSIN", + "ATT_BONUS_TO_SURA", + "ATT_BONUS_TO_SHAMAN", + "ATT_BONUS_TO_MONSTER", + "NORMAL_HIT_DEFEND_BONUS", + "SKILL_DEFEND_BONUS", + "NOUSE2'NOUSE3", + "NOUSE4", + "NOUSE5", + "NOUSE6", + "NOUSE7", + "NOUSE8", + "NOUSE9", + "NOUSE10", + "NOUSE11", + "NOUSE12", + "NOUSE13", + "NOUSE14", + "RESIST_WARRIOR", + "RESIST_ASSASSIN", + "RESIST_SURA", + "RESIST_SHAMAN" + ] + }, + "player.item_window": { + "name": "item_window", + "schema": "player", + "values": [ + "INVENTORY", + "EQUIPMENT", + "SAFEBOX", + "MALL", + "DRAGON_SOUL_INVENTORY", + "BELT_INVENTORY" + ] + }, + "player.mob_ai_flag": { + "name": "mob_ai_flag", + "schema": "player", + "values": [ + "AGGR", + "NOMOVE", + "COWARD", + "NOATTSHINSU", + "NOATTCHUNJO", + "NOATTJINNO", + "ATTMOB", + "BERSERK", + "STONESKIN", + "GODSPEED", + "DEATHBLOW", + "REVIVE" + ] + }, + "player.mob_set_immune_flag": { + "name": "mob_set_immune_flag", + "schema": "player", + "values": [ + "STUN", + "SLOW", + "FALL", + "CURSE", + "POISON", + "TERROR" + ] + }, + "player.mob_set_race_flag": { + "name": "mob_set_race_flag", + "schema": "player", + "values": [ + "ANIMAL", + "UNDEAD", + "DEVIL", + "HUMAN", + "ORC", + "MILGYO", + "INSECT", + "FIRE", + "ICE", + "DESERT", + "TREE", + "ATT_ELEC", + "ATT_FIRE", + "ATT_ICE", + "ATT_WIND", + "ATT_EARTH", + "ATT_DARK" + ] + }, + "player.mob_size": { + "name": "mob_size", + "schema": "player", + "values": [ + "SMALL", + "MEDIUM", + "BIG" + ] + }, + "player.skill_proto_set_affect_flag": { + "name": "skill_proto_set_affect_flag", + "schema": "player", + "values": [ + "YMIR", + "INVISIBILITY", + "SPAWN", + "POISON", + "SLOW", + "STUN", + "DUNGEON_READY", + "FORCE_VISIBLE", + "BUILDING_CONSTRUCTION_SMALL", + "BUILDING_CONSTRUCTION_LARGE", + "BUILDING_UPGRADE", + "MOV_SPEED_POTION", + "ATT_SPEED_POTION", + "FISH_MIDE", + "JEONGWIHON", + "GEOMGYEONG", + "CHEONGEUN", + "GYEONGGONG", + "EUNHYUNG", + "GWIGUM", + "TERROR", + "JUMAGAP", + "HOSIN", + "BOHO", + "KWAESOK", + "MANASHIELD", + "MUYEONG", + "REVIVE_INVISIBLE", + "FIRE", + "GICHEON", + "JEUNGRYEOK" + ] + }, + "player.skill_proto_set_affect_flag_2": { + "name": "skill_proto_set_affect_flag_2", + "schema": "player", + "values": [ + "YMIR", + "INVISIBILITY", + "SPAWN", + "POISON", + "SLOW", + "STUN", + "DUNGEON_READY", + "FORCE_VISIBLE", + "BUILDING_CONSTRUCTION_SMALL", + "BUILDING_CONSTRUCTION_LARGE", + "BUILDING_UPGRADE", + "MOV_SPEED_POTION", + "ATT_SPEED_POTION", + "FISH_MIDE", + "JEONGWIHON", + "GEOMGYEONG", + "CHEONGEUN", + "GYEONGGONG", + "EUNHYUNG", + "GWIGUM", + "TERROR", + "JUMAGAP", + "HOSIN", + "BOHO", + "KWAESOK", + "MANASHIELD" + ] + }, + "player.skill_proto_set_flag": { + "name": "skill_proto_set_flag", + "schema": "player", + "values": [ + "ATTACK", + "USE_MELEE_DAMAGE", + "COMPUTE_ATTGRADE", + "SELFONLY", + "USE_MAGIC_DAMAGE", + "USE_HP_AS_COST", + "COMPUTE_MAGIC_DAMAGE", + "SPLASH", + "GIVE_PENALTY", + "USE_ARROW_DAMAGE", + "PENETRATE", + "IGNORE_TARGET_RATING", + "ATTACK_SLOW", + "ATTACK_STUN", + "HP_ABSORB", + "SP_ABSORB", + "ATTACK_FIRE_CONT", + "REMOVE_BAD_AFFECT", + "REMOVE_GOOD_AFFECT", + "CRUSH", + "ATTACK_POISON", + "TOGGLE", + "DISABLE_BY_POINT_UP", + "CRUSH_LONG" + ] + }, + "player.skill_proto_skill_type": { + "name": "skill_proto_skill_type", + "schema": "player", + "values": [ + "NORMAL", + "MELEE", + "RANGE", + "MAGIC" + ] + } + }, + "schemas": { + "account": "account", + "common": "common", + "log": "log", + "player": "player" + }, + "sequences": {}, + "roles": {}, + "policies": {}, + "views": {}, + "_meta": { + "columns": {}, + "schemas": {}, + "tables": {} + } +} \ No newline at end of file diff --git a/drizzle/meta/0002_snapshot.json b/drizzle/meta/0002_snapshot.json new file mode 100644 index 0000000..05cf1af --- /dev/null +++ b/drizzle/meta/0002_snapshot.json @@ -0,0 +1,6919 @@ +{ + "id": "99735262-8eca-4ff6-b898-cdd59013b677", + "prevId": "6b50e692-daa7-452f-a179-1d487e2e5538", + "version": "7", + "dialect": "postgresql", + "tables": { + "account.account": { + "name": "account", + "schema": "account", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "name": "account_id_seq", + "increment": "1", + "minValue": "1", + "maxValue": "2147483647", + "startWith": "1", + "cache": "1", + "cycle": false, + "schema": "account", + "type": "always" + } + }, + "login": { + "name": "login", + "type": "varchar(30)", + "primaryKey": false, + "notNull": true + }, + "password": { + "name": "password", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "social_id": { + "name": "social_id", + "type": "varchar(13)", + "primaryKey": false, + "notNull": true + }, + "email": { + "name": "email", + "type": "varchar(64)", + "primaryKey": false, + "notNull": true + }, + "status": { + "name": "status", + "type": "varchar(8)", + "primaryKey": false, + "notNull": true, + "default": "'OK'" + }, + "security_code": { + "name": "security_code", + "type": "varchar(192)", + "primaryKey": false, + "notNull": false + }, + "available_dt": { + "name": "available_dt", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "mileage": { + "name": "mileage", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "cash": { + "name": "cash", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "gold_expired_at": { + "name": "gold_expired_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "silver_expired_at": { + "name": "silver_expired_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "safebox_expired_at": { + "name": "safebox_expired_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "autoloot_expired_at": { + "name": "autoloot_expired_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "fish_mind_expired_at": { + "name": "fish_mind_expired_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "marriage_fast_expired_at": { + "name": "marriage_fast_expired_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "money_drop_rate_expired_at": { + "name": "money_drop_rate_expired_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "ip": { + "name": "ip", + "type": "varchar(191)", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "last_played_at": { + "name": "last_played_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "account_social_id": { + "name": "account_social_id", + "columns": [ + { + "expression": "social_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "account_login": { + "name": "account_login", + "columns": [ + "login" + ], + "nullsNotDistinct": false + }, + "account_email": { + "name": "account_email", + "columns": [ + "email" + ], + "nullsNotDistinct": false + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "common.gm_host": { + "name": "gm_host", + "schema": "common", + "columns": { + "ip": { + "name": "ip", + "type": "varchar(16)", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "common.gm_list": { + "name": "gm_list", + "schema": "common", + "columns": { + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "contact_ip": { + "name": "contact_ip", + "type": "varchar(16)", + "primaryKey": false, + "notNull": true + }, + "server_ip": { + "name": "server_ip", + "type": "varchar(16)", + "primaryKey": false, + "notNull": true, + "default": "'ALL'" + }, + "authority": { + "name": "authority", + "type": "gm_authority", + "typeSchema": "common", + "primaryKey": false, + "notNull": false, + "default": "'PLAYER'" + } + }, + "indexes": {}, + "foreignKeys": { + "gm_list_player_id_player_id_fk": { + "name": "gm_list_player_id_player_id_fk", + "tableFrom": "gm_list", + "columnsFrom": [ + "player_id" + ], + "tableTo": "player", + "schemaTo": "player", + "columnsTo": [ + "id" + ], + "onUpdate": "no action", + "onDelete": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "common.locale": { + "name": "locale", + "schema": "common", + "columns": { + "key": { + "name": "key", + "type": "varchar(191)", + "primaryKey": false, + "notNull": true + }, + "value": { + "name": "value", + "type": "varchar(191)", + "primaryKey": false, + "notNull": true + } + }, + "indexes": { + "locale_key": { + "name": "locale_key", + "columns": [ + { + "expression": "key", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "common.spam_db": { + "name": "spam_db", + "schema": "common", + "columns": { + "type": { + "name": "type", + "type": "spam_type", + "typeSchema": "common", + "primaryKey": false, + "notNull": true, + "default": "'SPAM'" + }, + "word": { + "name": "word", + "type": "varchar(256)", + "primaryKey": false, + "notNull": true + }, + "score": { + "name": "score", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 10 + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.boot_log": { + "name": "boot_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "name": "boot_log_id_seq", + "increment": "1", + "minValue": "1", + "maxValue": "2147483647", + "startWith": "1", + "cache": "1", + "cycle": false, + "schema": "log", + "type": "always" + } + }, + "hostname": { + "name": "hostname", + "type": "char(128)", + "primaryKey": false, + "notNull": true, + "default": "'UNKNOWN'" + }, + "channel": { + "name": "channel", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.change_name": { + "name": "change_name", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "name": "change_name_id_seq", + "increment": "1", + "minValue": "1", + "maxValue": "2147483647", + "startWith": "1", + "cache": "1", + "cycle": false, + "schema": "log", + "type": "always" + } + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "old_name": { + "name": "old_name", + "type": "varchar(191)", + "primaryKey": false, + "notNull": false + }, + "new_name": { + "name": "new_name", + "type": "varchar(191)", + "primaryKey": false, + "notNull": false + }, + "ip": { + "name": "ip", + "type": "varchar(20)", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "change_name_player_id_player_id_fk": { + "name": "change_name_player_id_player_id_fk", + "tableFrom": "change_name", + "columnsFrom": [ + "player_id" + ], + "tableTo": "player", + "schemaTo": "player", + "columnsTo": [ + "id" + ], + "onUpdate": "no action", + "onDelete": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.command_log": { + "name": "command_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "name": "command_log_id_seq", + "increment": "1", + "minValue": "1", + "maxValue": "2147483647", + "startWith": "1", + "cache": "1", + "cycle": false, + "schema": "log", + "type": "always" + } + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "server": { + "name": "server", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "ip": { + "name": "ip", + "type": "varchar(15)", + "primaryKey": false, + "notNull": true + }, + "port": { + "name": "port", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "username": { + "name": "username", + "type": "varchar(50)", + "primaryKey": false, + "notNull": true + }, + "command": { + "name": "command", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "command_log_player_id_player_id_fk": { + "name": "command_log_player_id_player_id_fk", + "tableFrom": "command_log", + "columnsFrom": [ + "player_id" + ], + "tableTo": "player", + "schemaTo": "player", + "columnsTo": [ + "id" + ], + "onUpdate": "no action", + "onDelete": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.cube_log": { + "name": "cube_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "name": "cube_log_id_seq", + "increment": "1", + "minValue": "1", + "maxValue": "2147483647", + "startWith": "1", + "cache": "1", + "cycle": false, + "schema": "log", + "type": "always" + } + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "x": { + "name": "x", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "y": { + "name": "y", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "item_vnum": { + "name": "item_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "item_uid": { + "name": "item_uid", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "item_count": { + "name": "item_count", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "success": { + "name": "success", + "type": "boolean", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": { + "cube_log_player_id": { + "name": "cube_log_player_id", + "columns": [ + { + "expression": "player_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + }, + "cube_log_item_vnum": { + "name": "cube_log_item_vnum", + "columns": [ + { + "expression": "item_vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + }, + "cube_log_item_uid": { + "name": "cube_log_item_uid", + "columns": [ + { + "expression": "item_uid", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.dragon_slay_log": { + "name": "dragon_slay_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "name": "dragon_slay_log_id_seq", + "increment": "1", + "minValue": "1", + "maxValue": "2147483647", + "startWith": "1", + "cache": "1", + "cycle": false, + "schema": "log", + "type": "always" + } + }, + "guild_id": { + "name": "guild_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "start_time": { + "name": "start_time", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "end_time": { + "name": "end_time", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.fish_log": { + "name": "fish_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "name": "fish_log_id_seq", + "increment": "1", + "minValue": "1", + "maxValue": "2147483647", + "startWith": "1", + "cache": "1", + "cycle": false, + "schema": "log", + "type": "always" + } + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "map_index": { + "name": "map_index", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "fish_id": { + "name": "fish_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "fishing_level": { + "name": "fishing_level", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "waiting_time": { + "name": "waiting_time", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "success": { + "name": "success", + "type": "boolean", + "primaryKey": false, + "notNull": true + }, + "size": { + "name": "size", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "fish_log_player_id_player_id_fk": { + "name": "fish_log_player_id_player_id_fk", + "tableFrom": "fish_log", + "columnsFrom": [ + "player_id" + ], + "tableTo": "player", + "schemaTo": "player", + "columnsTo": [ + "id" + ], + "onUpdate": "no action", + "onDelete": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.gold_log": { + "name": "gold_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "name": "gold_log_id_seq", + "increment": "1", + "minValue": "1", + "maxValue": "2147483647", + "startWith": "1", + "cache": "1", + "cycle": false, + "schema": "log", + "type": "always" + } + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "what": { + "name": "what", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "how": { + "name": "how", + "type": "gold_log_how", + "typeSchema": "log", + "primaryKey": false, + "notNull": true + }, + "hint": { + "name": "hint", + "type": "varchar(50)", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": { + "gold_log_created_at": { + "name": "gold_log_created_at", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + }, + "gold_log_player_id": { + "name": "gold_log_player_id", + "columns": [ + { + "expression": "player_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + }, + "gold_log_what": { + "name": "gold_log_what", + "columns": [ + { + "expression": "what", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + }, + "gold_log_how": { + "name": "gold_log_how", + "columns": [ + { + "expression": "how", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + } + }, + "foreignKeys": { + "gold_log_player_id_player_id_fk": { + "name": "gold_log_player_id_player_id_fk", + "tableFrom": "gold_log", + "columnsFrom": [ + "player_id" + ], + "tableTo": "player", + "schemaTo": "player", + "columnsTo": [ + "id" + ], + "onUpdate": "no action", + "onDelete": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.hack_log": { + "name": "hack_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "name": "hack_log_id_seq", + "increment": "1", + "minValue": "1", + "maxValue": "2147483647", + "startWith": "1", + "cache": "1", + "cycle": false, + "schema": "log", + "type": "always" + } + }, + "login": { + "name": "login", + "type": "char(16)", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "char(24)", + "primaryKey": false, + "notNull": true + }, + "ip": { + "name": "ip", + "type": "char(15)", + "primaryKey": false, + "notNull": true + }, + "server": { + "name": "server", + "type": "char(100)", + "primaryKey": false, + "notNull": true + }, + "why": { + "name": "why", + "type": "char(191)", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.level_log": { + "name": "level_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "name": "level_log_id_seq", + "increment": "1", + "minValue": "1", + "maxValue": "2147483647", + "startWith": "1", + "cache": "1", + "cycle": false, + "schema": "log", + "type": "always" + } + }, + "name": { + "name": "name", + "type": "char(24)", + "primaryKey": false, + "notNull": true + }, + "level": { + "name": "level", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "playtime": { + "name": "playtime", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "level_log_player_id_player_id_fk": { + "name": "level_log_player_id_player_id_fk", + "tableFrom": "level_log", + "columnsFrom": [ + "player_id" + ], + "tableTo": "player", + "schemaTo": "player", + "columnsTo": [ + "id" + ], + "onUpdate": "no action", + "onDelete": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.log": { + "name": "log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "name": "log_id_seq", + "increment": "1", + "minValue": "1", + "maxValue": "2147483647", + "startWith": "1", + "cache": "1", + "cycle": false, + "schema": "log", + "type": "always" + } + }, + "type": { + "name": "type", + "type": "log_type", + "typeSchema": "log", + "primaryKey": false, + "notNull": true, + "default": "'ITEM'" + }, + "who": { + "name": "who", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "x": { + "name": "x", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "y": { + "name": "y", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "what": { + "name": "what", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "how": { + "name": "how", + "type": "varchar(50)", + "primaryKey": false, + "notNull": true + }, + "hint": { + "name": "hint", + "type": "varchar(70)", + "primaryKey": false, + "notNull": false + }, + "ip": { + "name": "ip", + "type": "varchar(20)", + "primaryKey": false, + "notNull": false + }, + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": { + "log_who": { + "name": "log_who", + "columns": [ + { + "expression": "who", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + }, + "log_what": { + "name": "log_what", + "columns": [ + { + "expression": "what", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + }, + "log_how": { + "name": "log_how", + "columns": [ + { + "expression": "how", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.login_log": { + "name": "login_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "name": "login_log_id_seq", + "increment": "1", + "minValue": "1", + "maxValue": "2147483647", + "startWith": "1", + "cache": "1", + "cycle": false, + "schema": "log", + "type": "always" + } + }, + "type": { + "name": "type", + "type": "login_log_type", + "typeSchema": "log", + "primaryKey": false, + "notNull": false + }, + "channel": { + "name": "channel", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "account_id": { + "name": "account_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "level": { + "name": "level", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "job": { + "name": "job", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "playtime": { + "name": "playtime", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": { + "login_log_player_id": { + "name": "login_log_player_id", + "columns": [ + { + "expression": "player_id", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "type", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + } + }, + "foreignKeys": { + "login_log_account_id_account_id_fk": { + "name": "login_log_account_id_account_id_fk", + "tableFrom": "login_log", + "columnsFrom": [ + "account_id" + ], + "tableTo": "account", + "schemaTo": "account", + "columnsTo": [ + "id" + ], + "onUpdate": "no action", + "onDelete": "no action" + }, + "login_log_player_id_player_id_fk": { + "name": "login_log_player_id_player_id_fk", + "tableFrom": "login_log", + "columnsFrom": [ + "player_id" + ], + "tableTo": "player", + "schemaTo": "player", + "columnsTo": [ + "id" + ], + "onUpdate": "no action", + "onDelete": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.login_log_2": { + "name": "login_log_2", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "name": "login_log_2_id_seq", + "increment": "1", + "minValue": "1", + "maxValue": "2147483647", + "startWith": "1", + "cache": "1", + "cycle": false, + "schema": "log", + "type": "always" + } + }, + "type": { + "name": "type", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "is_gm": { + "name": "is_gm", + "type": "boolean", + "primaryKey": false, + "notNull": false + }, + "channel": { + "name": "channel", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "account_id": { + "name": "account_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "ip": { + "name": "ip", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "client_version": { + "name": "client_version", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "playtime": { + "name": "playtime", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "login_at": { + "name": "login_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "logout_at": { + "name": "logout_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "login_log_2_account_id_account_id_fk": { + "name": "login_log_2_account_id_account_id_fk", + "tableFrom": "login_log_2", + "columnsFrom": [ + "account_id" + ], + "tableTo": "account", + "schemaTo": "account", + "columnsTo": [ + "id" + ], + "onUpdate": "no action", + "onDelete": "no action" + }, + "login_log_2_player_id_player_id_fk": { + "name": "login_log_2_player_id_player_id_fk", + "tableFrom": "login_log_2", + "columnsFrom": [ + "player_id" + ], + "tableTo": "player", + "schemaTo": "player", + "columnsTo": [ + "id" + ], + "onUpdate": "no action", + "onDelete": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.money_log": { + "name": "money_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "name": "money_log_id_seq", + "increment": "1", + "minValue": "1", + "maxValue": "2147483647", + "startWith": "1", + "cache": "1", + "cycle": false, + "schema": "log", + "type": "always" + } + }, + "type": { + "name": "type", + "type": "money_log_type", + "typeSchema": "log", + "primaryKey": false, + "notNull": false + }, + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "gold": { + "name": "gold", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": { + "money_log_type": { + "name": "money_log_type", + "columns": [ + { + "expression": "type", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.player_count": { + "name": "player_count", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "name": "player_count_id_seq", + "increment": "1", + "minValue": "1", + "maxValue": "2147483647", + "startWith": "1", + "cache": "1", + "cycle": false, + "schema": "log", + "type": "always" + } + }, + "count_red": { + "name": "count_red", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "count_yellow": { + "name": "count_yellow", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "count_blue": { + "name": "count_blue", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "count_total": { + "name": "count_total", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.quest_reward_log": { + "name": "quest_reward_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "name": "quest_reward_log_id_seq", + "increment": "1", + "minValue": "1", + "maxValue": "2147483647", + "startWith": "1", + "cache": "1", + "cycle": false, + "schema": "log", + "type": "always" + } + }, + "quest_name": { + "name": "quest_name", + "type": "varchar(32)", + "primaryKey": false, + "notNull": false + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "player_level": { + "name": "player_level", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "reward_type": { + "name": "reward_type", + "type": "reward_type", + "typeSchema": "log", + "primaryKey": false, + "notNull": false + }, + "reward_value1": { + "name": "reward_value1", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "reward_value2": { + "name": "reward_value2", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": { + "quest_reward_log_player_id": { + "name": "quest_reward_log_player_id", + "columns": [ + { + "expression": "player_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.refine_log": { + "name": "refine_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "name": "refine_log_id_seq", + "increment": "1", + "minValue": "1", + "maxValue": "2147483647", + "startWith": "1", + "cache": "1", + "cycle": false, + "schema": "log", + "type": "always" + } + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "item_name": { + "name": "item_name", + "type": "varchar(24)", + "primaryKey": false, + "notNull": true + }, + "item_id": { + "name": "item_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "step": { + "name": "step", + "type": "varchar(50)", + "primaryKey": false, + "notNull": true + }, + "is_success": { + "name": "is_success", + "type": "boolean", + "primaryKey": false, + "notNull": true + }, + "set_type": { + "name": "set_type", + "type": "refine_log_set_type", + "typeSchema": "log", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "refine_log_player_id_player_id_fk": { + "name": "refine_log_player_id_player_id_fk", + "tableFrom": "refine_log", + "columnsFrom": [ + "player_id" + ], + "tableTo": "player", + "schemaTo": "player", + "columnsTo": [ + "id" + ], + "onUpdate": "no action", + "onDelete": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.shout_log": { + "name": "shout_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "name": "shout_log_id_seq", + "increment": "1", + "minValue": "1", + "maxValue": "2147483647", + "startWith": "1", + "cache": "1", + "cycle": false, + "schema": "log", + "type": "always" + } + }, + "channel": { + "name": "channel", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "empire": { + "name": "empire", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "shout": { + "name": "shout", + "type": "varchar(350)", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": { + "shout_log_created_at": { + "name": "shout_log_created_at", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.speed_hack_log": { + "name": "speed_hack_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "name": "speed_hack_log_id_seq", + "increment": "1", + "minValue": "1", + "maxValue": "2147483647", + "startWith": "1", + "cache": "1", + "cycle": false, + "schema": "log", + "type": "always" + } + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "x": { + "name": "x", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "y": { + "name": "y", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "hack_count": { + "name": "hack_count", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "speed_hack_log_player_id_player_id_fk": { + "name": "speed_hack_log_player_id_player_id_fk", + "tableFrom": "speed_hack_log", + "columnsFrom": [ + "player_id" + ], + "tableTo": "player", + "schemaTo": "player", + "columnsTo": [ + "id" + ], + "onUpdate": "no action", + "onDelete": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.affect": { + "name": "affect", + "schema": "player", + "columns": { + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "type": { + "name": "type", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "apply_on": { + "name": "apply_on", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "apply_value": { + "name": "apply_value", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "flag": { + "name": "flag", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "duration": { + "name": "duration", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "sp_cost": { + "name": "sp_cost", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": {}, + "foreignKeys": { + "affect_player_id_player_id_fk": { + "name": "affect_player_id_player_id_fk", + "tableFrom": "affect", + "columnsFrom": [ + "player_id" + ], + "tableTo": "player", + "schemaTo": "player", + "columnsTo": [ + "id" + ], + "onUpdate": "no action", + "onDelete": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.banword": { + "name": "banword", + "schema": "player", + "columns": { + "word": { + "name": "word", + "type": "text", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.change_empire": { + "name": "change_empire", + "schema": "player", + "columns": { + "account_id": { + "name": "account_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "change_count": { + "name": "change_count", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "change_empire_account_id_account_id_fk": { + "name": "change_empire_account_id_account_id_fk", + "tableFrom": "change_empire", + "columnsFrom": [ + "account_id" + ], + "tableTo": "account", + "schemaTo": "account", + "columnsTo": [ + "id" + ], + "onUpdate": "no action", + "onDelete": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.guild": { + "name": "guild", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "name": "guild_id_seq", + "increment": "1", + "minValue": "1", + "maxValue": "2147483647", + "startWith": "1", + "cache": "1", + "cycle": false, + "schema": "player", + "type": "always" + } + }, + "name": { + "name": "name", + "type": "varchar(12)", + "primaryKey": false, + "notNull": true + }, + "sp": { + "name": "sp", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 1000 + }, + "master": { + "name": "master", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "level": { + "name": "level", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "exp": { + "name": "exp", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_point": { + "name": "skill_point", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "skill": { + "name": "skill", + "type": "bytea", + "primaryKey": false, + "notNull": false + }, + "win": { + "name": "win", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "draw": { + "name": "draw", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "loss": { + "name": "loss", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "ladder_point": { + "name": "ladder_point", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "gold": { + "name": "gold", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.guild_comment": { + "name": "guild_comment", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "name": "guild_comment_id_seq", + "increment": "1", + "minValue": "1", + "maxValue": "2147483647", + "startWith": "1", + "cache": "1", + "cycle": false, + "schema": "player", + "type": "always" + } + }, + "guild_id": { + "name": "guild_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(8)", + "primaryKey": false, + "notNull": false + }, + "notice": { + "name": "notice", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "content": { + "name": "content", + "type": "varchar(50)", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": { + "aaa": { + "name": "aaa", + "columns": [ + { + "expression": "notice", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "id", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "guild_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + }, + "guild_comment_guild_id": { + "name": "guild_comment_guild_id", + "columns": [ + { + "expression": "guild_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + } + }, + "foreignKeys": { + "guild_comment_guild_id_guild_id_fk": { + "name": "guild_comment_guild_id_guild_id_fk", + "tableFrom": "guild_comment", + "columnsFrom": [ + "guild_id" + ], + "tableTo": "guild", + "schemaTo": "player", + "columnsTo": [ + "id" + ], + "onUpdate": "no action", + "onDelete": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.guild_grade": { + "name": "guild_grade", + "schema": "player", + "columns": { + "guild_id": { + "name": "guild_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "grade": { + "name": "grade", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "name": { + "name": "name", + "type": "varchar(8)", + "primaryKey": false, + "notNull": true + }, + "auth": { + "name": "auth", + "type": "guild_grade_auth[]", + "primaryKey": false, + "notNull": true, + "default": "'{}'" + }, + "auth_bits": { + "name": "auth_bits", + "type": "bigint", + "primaryKey": false, + "notNull": false, + "generated": { + "type": "stored", + "as": "enum_array_to_bitmask(\"player\".\"guild_grade\".\"auth\")" + } + } + }, + "indexes": {}, + "foreignKeys": { + "guild_grade_guild_id_guild_id_fk": { + "name": "guild_grade_guild_id_guild_id_fk", + "tableFrom": "guild_grade", + "columnsFrom": [ + "guild_id" + ], + "tableTo": "guild", + "schemaTo": "player", + "columnsTo": [ + "id" + ], + "onUpdate": "no action", + "onDelete": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.guild_member": { + "name": "guild_member", + "schema": "player", + "columns": { + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "guild_id": { + "name": "guild_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "grade": { + "name": "grade", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "is_general": { + "name": "is_general", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "offer": { + "name": "offer", + "type": "integer", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "guild_member_player_id_player_id_fk": { + "name": "guild_member_player_id_player_id_fk", + "tableFrom": "guild_member", + "columnsFrom": [ + "player_id" + ], + "tableTo": "player", + "schemaTo": "player", + "columnsTo": [ + "id" + ], + "onUpdate": "no action", + "onDelete": "no action" + }, + "guild_member_guild_id_guild_id_fk": { + "name": "guild_member_guild_id_guild_id_fk", + "tableFrom": "guild_member", + "columnsFrom": [ + "guild_id" + ], + "tableTo": "guild", + "schemaTo": "player", + "columnsTo": [ + "id" + ], + "onUpdate": "no action", + "onDelete": "no action" + } + }, + "compositePrimaryKeys": { + "guild_member_player_id_guild_id_pk": { + "name": "guild_member_player_id_guild_id_pk", + "columns": [ + "player_id", + "guild_id" + ] + } + }, + "uniqueConstraints": { + "player_id": { + "name": "player_id", + "columns": [ + "player_id" + ], + "nullsNotDistinct": false + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.guild_war_bet": { + "name": "guild_war_bet", + "schema": "player", + "columns": { + "login": { + "name": "login", + "type": "varchar(24)", + "primaryKey": false, + "notNull": true + }, + "gold": { + "name": "gold", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "guild_id": { + "name": "guild_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "war_id": { + "name": "war_id", + "type": "integer", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": { + "guild_war_bet_guild_id_guild_id_fk": { + "name": "guild_war_bet_guild_id_guild_id_fk", + "tableFrom": "guild_war_bet", + "columnsFrom": [ + "guild_id" + ], + "tableTo": "guild", + "schemaTo": "player", + "columnsTo": [ + "id" + ], + "onUpdate": "no action", + "onDelete": "no action" + }, + "guild_war_bet_war_id_guild_war_reservation_id_fk": { + "name": "guild_war_bet_war_id_guild_war_reservation_id_fk", + "tableFrom": "guild_war_bet", + "columnsFrom": [ + "war_id" + ], + "tableTo": "guild_war_reservation", + "schemaTo": "player", + "columnsTo": [ + "id" + ], + "onUpdate": "no action", + "onDelete": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.guild_war_reservation": { + "name": "guild_war_reservation", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "name": "guild_war_reservation_id_seq", + "increment": "1", + "minValue": "1", + "maxValue": "2147483647", + "startWith": "1", + "cache": "1", + "cycle": false, + "schema": "player", + "type": "always" + } + }, + "guild1": { + "name": "guild1", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "guild2": { + "name": "guild2", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "type": { + "name": "type", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "warprice": { + "name": "warprice", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "initial_score": { + "name": "initial_score", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "started": { + "name": "started", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "bet_from": { + "name": "bet_from", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "bet_to": { + "name": "bet_to", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "winner": { + "name": "winner", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": -1 + }, + "power_from": { + "name": "power_from", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "power_to": { + "name": "power_to", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "handicap": { + "name": "handicap", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "result_1": { + "name": "result_1", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "result_2": { + "name": "result_2", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "started_at": { + "name": "started_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "guild_war_reservation_guild1_guild_id_fk": { + "name": "guild_war_reservation_guild1_guild_id_fk", + "tableFrom": "guild_war_reservation", + "columnsFrom": [ + "guild1" + ], + "tableTo": "guild", + "schemaTo": "player", + "columnsTo": [ + "id" + ], + "onUpdate": "no action", + "onDelete": "no action" + }, + "guild_war_reservation_guild2_guild_id_fk": { + "name": "guild_war_reservation_guild2_guild_id_fk", + "tableFrom": "guild_war_reservation", + "columnsFrom": [ + "guild2" + ], + "tableTo": "guild", + "schemaTo": "player", + "columnsTo": [ + "id" + ], + "onUpdate": "no action", + "onDelete": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.horse_name": { + "name": "horse_name", + "schema": "player", + "columns": { + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(24)", + "primaryKey": false, + "notNull": true, + "default": "'NONAME'" + } + }, + "indexes": {}, + "foreignKeys": { + "horse_name_player_id_player_id_fk": { + "name": "horse_name_player_id_player_id_fk", + "tableFrom": "horse_name", + "columnsFrom": [ + "player_id" + ], + "tableTo": "player", + "schemaTo": "player", + "columnsTo": [ + "id" + ], + "onUpdate": "no action", + "onDelete": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.item": { + "name": "item", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "name": "item_id_seq", + "increment": "1", + "minValue": "1", + "maxValue": "2147483647", + "startWith": "1", + "cache": "1", + "cycle": false, + "schema": "player", + "type": "always" + } + }, + "owner_id": { + "name": "owner_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "window": { + "name": "window", + "type": "item_window", + "typeSchema": "player", + "primaryKey": false, + "notNull": true, + "default": "'INVENTORY'" + }, + "position": { + "name": "position", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "count": { + "name": "count", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "socket_0": { + "name": "socket_0", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "socket_1": { + "name": "socket_1", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "socket_2": { + "name": "socket_2", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "socket_3": { + "name": "socket_3", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "socket_4": { + "name": "socket_4", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "socket_5": { + "name": "socket_5", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_type_0": { + "name": "attr_type_0", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_value_0": { + "name": "attr_value_0", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_type_1": { + "name": "attr_type_1", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_value_1": { + "name": "attr_value_1", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_type_2": { + "name": "attr_type_2", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_value_2": { + "name": "attr_value_2", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_type_3": { + "name": "attr_type_3", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_value_3": { + "name": "attr_value_3", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_type_4": { + "name": "attr_type_4", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_value_4": { + "name": "attr_value_4", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_type_5": { + "name": "attr_type_5", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_value_5": { + "name": "attr_value_5", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_type_6": { + "name": "attr_type_6", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_value_6": { + "name": "attr_value_6", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": { + "item_owner_id": { + "name": "item_owner_id", + "columns": [ + { + "expression": "owner_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + }, + "item_window": { + "name": "item_window", + "columns": [ + { + "expression": "window", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + }, + "item_vnum": { + "name": "item_vnum", + "columns": [ + { + "expression": "vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.item_attr": { + "name": "item_attr", + "schema": "player", + "columns": { + "apply": { + "name": "apply", + "type": "item_attr_apply", + "typeSchema": "player", + "primaryKey": false, + "notNull": true, + "default": "'MAX_HP'" + }, + "probability": { + "name": "probability", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_1": { + "name": "lvl_1", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_2": { + "name": "lvl_2", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_3": { + "name": "lvl_3", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_4": { + "name": "lvl_4", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_5": { + "name": "lvl_5", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "weapon": { + "name": "weapon", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "body": { + "name": "body", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "wrist": { + "name": "wrist", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "foots": { + "name": "foots", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "neck": { + "name": "neck", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "head": { + "name": "head", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "shield": { + "name": "shield", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "ear": { + "name": "ear", + "type": "integer", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.item_attr_rare": { + "name": "item_attr_rare", + "schema": "player", + "columns": { + "apply": { + "name": "apply", + "type": "item_attr_rare_apply", + "typeSchema": "player", + "primaryKey": false, + "notNull": true, + "default": "'MAX_HP'" + }, + "probability": { + "name": "probability", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_1": { + "name": "lvl_1", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_2": { + "name": "lvl_2", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_3": { + "name": "lvl_3", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_4": { + "name": "lvl_4", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_5": { + "name": "lvl_5", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "weapon": { + "name": "weapon", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "body": { + "name": "body", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "wrist": { + "name": "wrist", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "foots": { + "name": "foots", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "neck": { + "name": "neck", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "head": { + "name": "head", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "shield": { + "name": "shield", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "ear": { + "name": "ear", + "type": "integer", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.item_award": { + "name": "item_award", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "name": "item_award_id_seq", + "increment": "1", + "minValue": "1", + "maxValue": "2147483647", + "startWith": "1", + "cache": "1", + "cycle": false, + "schema": "player", + "type": "always" + } + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "login": { + "name": "login", + "type": "varchar(30)", + "primaryKey": false, + "notNull": true + }, + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "count": { + "name": "count", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "give_at": { + "name": "give_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "taken_at": { + "name": "taken_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "item_id": { + "name": "item_id", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "why": { + "name": "why", + "type": "varchar(128)", + "primaryKey": false, + "notNull": false + }, + "socket_0": { + "name": "socket_0", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "socket_1": { + "name": "socket_1", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "socket_2": { + "name": "socket_2", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "mall": { + "name": "mall", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": { + "item_award_player_id": { + "name": "item_award_player_id", + "columns": [ + { + "expression": "player_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + }, + "item_award_given_at": { + "name": "item_award_given_at", + "columns": [ + { + "expression": "give_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + }, + "item_award_taken_at": { + "name": "item_award_taken_at", + "columns": [ + { + "expression": "taken_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + } + }, + "foreignKeys": { + "item_award_player_id_player_id_fk": { + "name": "item_award_player_id_player_id_fk", + "tableFrom": "item_award", + "columnsFrom": [ + "player_id" + ], + "tableTo": "player", + "schemaTo": "player", + "columnsTo": [ + "id" + ], + "onUpdate": "no action", + "onDelete": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.item_proto": { + "name": "item_proto", + "schema": "player", + "columns": { + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "locale_name": { + "name": "locale_name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "type": { + "name": "type", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "sub_type": { + "name": "sub_type", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "weight": { + "name": "weight", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "size": { + "name": "size", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "anti_flag": { + "name": "anti_flag", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "flag": { + "name": "flag", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "wear_flag": { + "name": "wear_flag", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "immune_flag": { + "name": "immune_flag", + "type": "item_proto_immune_flag[]", + "primaryKey": false, + "notNull": true, + "default": "'{}'" + }, + "gold": { + "name": "gold", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "shop_buy_price": { + "name": "shop_buy_price", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "refined_vnum": { + "name": "refined_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "refine_set": { + "name": "refine_set", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "refine_set2": { + "name": "refine_set2", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "magic_percentage": { + "name": "magic_percentage", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "limit_type_0": { + "name": "limit_type_0", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "limit_value_0": { + "name": "limit_value_0", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "limit_type_1": { + "name": "limit_type_1", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "limit_value_1": { + "name": "limit_value_1", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "apply_type_0": { + "name": "apply_type_0", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "apply_value_0": { + "name": "apply_value_0", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "apply_type_1": { + "name": "apply_type_1", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "apply_value_1": { + "name": "apply_value_1", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "apply_type_2": { + "name": "apply_type_2", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "apply_value_2": { + "name": "apply_value_2", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "value_0": { + "name": "value_0", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "value_1": { + "name": "value_1", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "value_2": { + "name": "value_2", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "value_3": { + "name": "value_3", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "value_4": { + "name": "value_4", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "value_5": { + "name": "value_5", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "socket_0": { + "name": "socket_0", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": -1 + }, + "socket_1": { + "name": "socket_1", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": -1 + }, + "socket_2": { + "name": "socket_2", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": -1 + }, + "socket_3": { + "name": "socket_3", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": -1 + }, + "socket_4": { + "name": "socket_4", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": -1 + }, + "socket_5": { + "name": "socket_5", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": -1 + }, + "specular": { + "name": "specular", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "socket_percentage": { + "name": "socket_percentage", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "addon_type": { + "name": "addon_type", + "type": "integer", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.land": { + "name": "land", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true + }, + "map_index": { + "name": "map_index", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "x": { + "name": "x", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "y": { + "name": "y", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "width": { + "name": "width", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "height": { + "name": "height", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "guild_id": { + "name": "guild_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "guild_level_limit": { + "name": "guild_level_limit", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "price": { + "name": "price", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "enabled": { + "name": "enabled", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.lotto_list": { + "name": "lotto_list", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "name": "lotto_list_id_seq", + "increment": "1", + "minValue": "1", + "maxValue": "2147483647", + "startWith": "1", + "cache": "1", + "cycle": false, + "schema": "player", + "type": "always" + } + }, + "server": { + "name": "server", + "type": "varchar(20)", + "primaryKey": false, + "notNull": false + }, + "playerId": { + "name": "playerId", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "lotto_list_playerId_player_id_fk": { + "name": "lotto_list_playerId_player_id_fk", + "tableFrom": "lotto_list", + "columnsFrom": [ + "playerId" + ], + "tableTo": "player", + "schemaTo": "player", + "columnsTo": [ + "id" + ], + "onUpdate": "no action", + "onDelete": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.marriage": { + "name": "marriage", + "schema": "player", + "columns": { + "is_married": { + "name": "is_married", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "player_id_1": { + "name": "player_id_1", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "player_id_2": { + "name": "player_id_2", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "love_points": { + "name": "love_points", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "marriage_player_id_1_player_id_fk": { + "name": "marriage_player_id_1_player_id_fk", + "tableFrom": "marriage", + "columnsFrom": [ + "player_id_1" + ], + "tableTo": "player", + "schemaTo": "player", + "columnsTo": [ + "id" + ], + "onUpdate": "no action", + "onDelete": "no action" + }, + "marriage_player_id_2_player_id_fk": { + "name": "marriage_player_id_2_player_id_fk", + "tableFrom": "marriage", + "columnsFrom": [ + "player_id_2" + ], + "tableTo": "player", + "schemaTo": "player", + "columnsTo": [ + "id" + ], + "onUpdate": "no action", + "onDelete": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.messenger_list": { + "name": "messenger_list", + "schema": "player", + "columns": { + "account": { + "name": "account", + "type": "varchar(16)", + "primaryKey": false, + "notNull": true + }, + "companion": { + "name": "companion", + "type": "varchar(16)", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.mob_proto": { + "name": "mob_proto", + "schema": "player", + "columns": { + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "locale_name": { + "name": "locale_name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "rank": { + "name": "rank", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "type": { + "name": "type", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "battle_type": { + "name": "battle_type", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "level": { + "name": "level", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 1 + }, + "size": { + "name": "size", + "type": "mob_size", + "typeSchema": "player", + "primaryKey": false, + "notNull": false, + "default": "'SMALL'" + }, + "ai_flag": { + "name": "ai_flag", + "type": "mob_ai_flag[]", + "primaryKey": false, + "notNull": true, + "default": "'{}'" + }, + "mount_capacity": { + "name": "mount_capacity", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "set_race_flag": { + "name": "set_race_flag", + "type": "mob_set_race_flag", + "typeSchema": "player", + "primaryKey": false, + "notNull": true + }, + "set_immune_flag": { + "name": "set_immune_flag", + "type": "mob_set_immune_flag", + "typeSchema": "player", + "primaryKey": false, + "notNull": false + }, + "empire": { + "name": "empire", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "folder": { + "name": "folder", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "on_click": { + "name": "on_click", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "st": { + "name": "st", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "dx": { + "name": "dx", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "ht": { + "name": "ht", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "iq": { + "name": "iq", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "damage_min": { + "name": "damage_min", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "damage_max": { + "name": "damage_max", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "max_hp": { + "name": "max_hp", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "regen_cycle": { + "name": "regen_cycle", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "regen_percent": { + "name": "regen_percent", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "gold_min": { + "name": "gold_min", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "gold_max": { + "name": "gold_max", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "exp": { + "name": "exp", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "def": { + "name": "def", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "attack_speed": { + "name": "attack_speed", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 100 + }, + "move_speed": { + "name": "move_speed", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 100 + }, + "aggressive_hp_percentage": { + "name": "aggressive_hp_percentage", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "aggressive_sight": { + "name": "aggressive_sight", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "attack_range": { + "name": "attack_range", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "drop_item": { + "name": "drop_item", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resurrection_vnum": { + "name": "resurrection_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "enchant_curse": { + "name": "enchant_curse", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "enchant_slow": { + "name": "enchant_slow", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "enchant_poison": { + "name": "enchant_poison", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "enchant_stun": { + "name": "enchant_stun", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "enchant_critical": { + "name": "enchant_critical", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "enchant_penetrate": { + "name": "enchant_penetrate", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_sword": { + "name": "resist_sword", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_twohand": { + "name": "resist_twohand", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_dagger": { + "name": "resist_dagger", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_bell": { + "name": "resist_bell", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_fan": { + "name": "resist_fan", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_bow": { + "name": "resist_bow", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_fire": { + "name": "resist_fire", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_elect": { + "name": "resist_elect", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_magic": { + "name": "resist_magic", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_wind": { + "name": "resist_wind", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_poison": { + "name": "resist_poison", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "dam_multiply": { + "name": "dam_multiply", + "type": "double precision", + "primaryKey": false, + "notNull": false + }, + "summon": { + "name": "summon", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "drain_sp": { + "name": "drain_sp", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "mob_color": { + "name": "mob_color", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "polymorph_item": { + "name": "polymorph_item", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "skill_level0": { + "name": "skill_level0", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_vnum0": { + "name": "skill_vnum0", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_level1": { + "name": "skill_level1", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_vnum1": { + "name": "skill_vnum1", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_level2": { + "name": "skill_level2", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_vnum2": { + "name": "skill_vnum2", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_level3": { + "name": "skill_level3", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_vnum3": { + "name": "skill_vnum3", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_level4": { + "name": "skill_level4", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_vnum4": { + "name": "skill_vnum4", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "sp_berserk": { + "name": "sp_berserk", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "sp_stoneskin": { + "name": "sp_stoneskin", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "sp_godspeed": { + "name": "sp_godspeed", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "sp_deathblow": { + "name": "sp_deathblow", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "sp_revive": { + "name": "sp_revive", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.monarch": { + "name": "monarch", + "schema": "player", + "columns": { + "empire": { + "name": "empire", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "win_at": { + "name": "win_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "money": { + "name": "money", + "type": "integer", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "monarch_player_id_player_id_fk": { + "name": "monarch_player_id_player_id_fk", + "tableFrom": "monarch", + "columnsFrom": [ + "player_id" + ], + "tableTo": "player", + "schemaTo": "player", + "columnsTo": [ + "id" + ], + "onUpdate": "no action", + "onDelete": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.monarch_candidacy": { + "name": "monarch_candidacy", + "schema": "player", + "columns": { + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "date": { + "name": "date", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + }, + "name": { + "name": "name", + "type": "varchar(16)", + "primaryKey": false, + "notNull": false + }, + "win_at": { + "name": "win_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "monarch_candidacy_player_id_player_id_fk": { + "name": "monarch_candidacy_player_id_player_id_fk", + "tableFrom": "monarch_candidacy", + "columnsFrom": [ + "player_id" + ], + "tableTo": "player", + "schemaTo": "player", + "columnsTo": [ + "id" + ], + "onUpdate": "no action", + "onDelete": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.monarch_election": { + "name": "monarch_election", + "schema": "player", + "columns": { + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "selected_player_id": { + "name": "selected_player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "election_at": { + "name": "election_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "monarch_election_player_id_player_id_fk": { + "name": "monarch_election_player_id_player_id_fk", + "tableFrom": "monarch_election", + "columnsFrom": [ + "player_id" + ], + "tableTo": "player", + "schemaTo": "player", + "columnsTo": [ + "id" + ], + "onUpdate": "no action", + "onDelete": "no action" + }, + "monarch_election_selected_player_id_player_id_fk": { + "name": "monarch_election_selected_player_id_player_id_fk", + "tableFrom": "monarch_election", + "columnsFrom": [ + "selected_player_id" + ], + "tableTo": "player", + "schemaTo": "player", + "columnsTo": [ + "id" + ], + "onUpdate": "no action", + "onDelete": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.myshop_pricelist": { + "name": "myshop_pricelist", + "schema": "player", + "columns": { + "owner_id": { + "name": "owner_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "item_vnum": { + "name": "item_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "price": { + "name": "price", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "list_id": { + "name": "list_id", + "columns": [ + "owner_id", + "item_vnum" + ], + "nullsNotDistinct": false + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.object": { + "name": "object", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "name": "object_id_seq", + "increment": "1", + "minValue": "1", + "maxValue": "2147483647", + "startWith": "1", + "cache": "1", + "cycle": false, + "schema": "player", + "type": "always" + } + }, + "land_id": { + "name": "land_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "map_index": { + "name": "map_index", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "x": { + "name": "x", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "y": { + "name": "y", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "x_rot": { + "name": "x_rot", + "type": "double precision", + "primaryKey": false, + "notNull": true + }, + "y_rot": { + "name": "y_rot", + "type": "double precision", + "primaryKey": false, + "notNull": true + }, + "z_rot": { + "name": "z_rot", + "type": "double precision", + "primaryKey": false, + "notNull": true + }, + "life": { + "name": "life", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.object_proto": { + "name": "object_proto", + "schema": "player", + "columns": { + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "name": { + "name": "name", + "type": "varchar(32)", + "primaryKey": false, + "notNull": true + }, + "price": { + "name": "price", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "materials": { + "name": "materials", + "type": "varchar(64)", + "primaryKey": false, + "notNull": true + }, + "upgrade_vnum": { + "name": "upgrade_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "upgrade_limit_time": { + "name": "upgrade_limit_time", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "life": { + "name": "life", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "reg_1": { + "name": "reg_1", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "reg_2": { + "name": "reg_2", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "reg_3": { + "name": "reg_3", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "reg_4": { + "name": "reg_4", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "npc": { + "name": "npc", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "group_vnum": { + "name": "group_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "dependent_group": { + "name": "dependent_group", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": { + "object_proto_vnum": { + "name": "object_proto_vnum", + "columns": [ + { + "expression": "vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + }, + "object_proto_group_vnum": { + "name": "object_proto_group_vnum", + "columns": [ + { + "expression": "group_vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + }, + "object_proto_upgrade_vnum": { + "name": "object_proto_upgrade_vnum", + "columns": [ + { + "expression": "upgrade_vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.player": { + "name": "player", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "name": "player_id_seq", + "increment": "1", + "minValue": "1", + "maxValue": "2147483647", + "startWith": "1", + "cache": "1", + "cycle": false, + "schema": "player", + "type": "always" + } + }, + "account_id": { + "name": "account_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(24)", + "primaryKey": false, + "notNull": true, + "default": "'NONAME'" + }, + "job": { + "name": "job", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "voice": { + "name": "voice", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "dir": { + "name": "dir", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "x": { + "name": "x", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "y": { + "name": "y", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "z": { + "name": "z", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "map_index": { + "name": "map_index", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "exit_x": { + "name": "exit_x", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "exit_y": { + "name": "exit_y", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "exit_map_index": { + "name": "exit_map_index", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "hp": { + "name": "hp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "mp": { + "name": "mp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "stamina": { + "name": "stamina", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "random_hp": { + "name": "random_hp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "random_sp": { + "name": "random_sp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "playtime": { + "name": "playtime", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "level": { + "name": "level", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 1 + }, + "level_step": { + "name": "level_step", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "st": { + "name": "st", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "ht": { + "name": "ht", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "dx": { + "name": "dx", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "iq": { + "name": "iq", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "exp": { + "name": "exp", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "gold": { + "name": "gold", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "stat_point": { + "name": "stat_point", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "skill_point": { + "name": "skill_point", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "quick_slot": { + "name": "quick_slot", + "type": "bytea", + "primaryKey": false, + "notNull": false + }, + "ip": { + "name": "ip", + "type": "varchar(15)", + "primaryKey": false, + "notNull": false, + "default": "'0.0.0.0'" + }, + "part_main": { + "name": "part_main", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "part_base": { + "name": "part_base", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "part_hair": { + "name": "part_hair", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "skill_group": { + "name": "skill_group", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "skill_level": { + "name": "skill_level", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "alignment": { + "name": "alignment", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "last_played_at": { + "name": "last_played_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "change_name": { + "name": "change_name", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "sub_skill_point": { + "name": "sub_skill_point", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "stat_reset_count": { + "name": "stat_reset_count", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "horse_hp": { + "name": "horse_hp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "horse_stamina": { + "name": "horse_stamina", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "horse_level": { + "name": "horse_level", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "horse_hp_droptime": { + "name": "horse_hp_droptime", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "horse_riding": { + "name": "horse_riding", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "horse_skill_point": { + "name": "horse_skill_point", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "bank_value": { + "name": "bank_value", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": { + "player_account_id": { + "name": "player_account_id", + "columns": [ + { + "expression": "account_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + }, + "player_name": { + "name": "player_name", + "columns": [ + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + } + }, + "foreignKeys": { + "player_account_id_account_id_fk": { + "name": "player_account_id_account_id_fk", + "tableFrom": "player", + "columnsFrom": [ + "account_id" + ], + "tableTo": "account", + "schemaTo": "account", + "columnsTo": [ + "id" + ], + "onUpdate": "no action", + "onDelete": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.player_deleted": { + "name": "player_deleted", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "name": "player_deleted_id_seq", + "increment": "1", + "minValue": "1", + "maxValue": "2147483647", + "startWith": "1", + "cache": "1", + "cycle": false, + "schema": "player", + "type": "always" + } + }, + "account_id": { + "name": "account_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(24)", + "primaryKey": false, + "notNull": true, + "default": "'NONAME'" + }, + "job": { + "name": "job", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "voice": { + "name": "voice", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "dir": { + "name": "dir", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "x": { + "name": "x", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "y": { + "name": "y", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "z": { + "name": "z", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "map_index": { + "name": "map_index", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "exit_x": { + "name": "exit_x", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "exit_y": { + "name": "exit_y", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "exit_map_index": { + "name": "exit_map_index", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "hp": { + "name": "hp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "mp": { + "name": "mp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "stamina": { + "name": "stamina", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "random_hp": { + "name": "random_hp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "random_sp": { + "name": "random_sp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "playtime": { + "name": "playtime", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "level": { + "name": "level", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 1 + }, + "level_step": { + "name": "level_step", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "st": { + "name": "st", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "ht": { + "name": "ht", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "dx": { + "name": "dx", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "iq": { + "name": "iq", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "exp": { + "name": "exp", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "gold": { + "name": "gold", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "stat_point": { + "name": "stat_point", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "skill_point": { + "name": "skill_point", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "quick_slot": { + "name": "quick_slot", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "ip": { + "name": "ip", + "type": "varchar(15)", + "primaryKey": false, + "notNull": false, + "default": "'0.0.0.0'" + }, + "part_main": { + "name": "part_main", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "part_base": { + "name": "part_base", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "part_hair": { + "name": "part_hair", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "skill_group": { + "name": "skill_group", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "skill_level": { + "name": "skill_level", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "alignment": { + "name": "alignment", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "last_played_at": { + "name": "last_played_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "change_name": { + "name": "change_name", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "sub_skill_point": { + "name": "sub_skill_point", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "stat_reset_count": { + "name": "stat_reset_count", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "horse_hp": { + "name": "horse_hp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "horse_stamina": { + "name": "horse_stamina", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "horse_level": { + "name": "horse_level", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "horse_hp_droptime": { + "name": "horse_hp_droptime", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "horse_riding": { + "name": "horse_riding", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "horse_skill_point": { + "name": "horse_skill_point", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "bank_value": { + "name": "bank_value", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + } + }, + "indexes": { + "player_deleted_account_id": { + "name": "player_deleted_account_id", + "columns": [ + { + "expression": "account_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + }, + "player_deleted_name": { + "name": "player_deleted_name", + "columns": [ + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + } + }, + "foreignKeys": { + "player_deleted_account_id_account_id_fk": { + "name": "player_deleted_account_id_account_id_fk", + "tableFrom": "player_deleted", + "columnsFrom": [ + "account_id" + ], + "tableTo": "account", + "schemaTo": "account", + "columnsTo": [ + "id" + ], + "onUpdate": "no action", + "onDelete": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.player_index": { + "name": "player_index", + "schema": "player", + "columns": { + "account_id": { + "name": "account_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "empire": { + "name": "empire", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "last_played_at": { + "name": "last_played_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "player_index_empire": { + "name": "player_index_empire", + "columns": [ + { + "expression": "empire", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + } + }, + "foreignKeys": { + "player_index_account_id_account_id_fk": { + "name": "player_index_account_id_account_id_fk", + "tableFrom": "player_index", + "columnsFrom": [ + "account_id" + ], + "tableTo": "account", + "schemaTo": "account", + "columnsTo": [ + "id" + ], + "onUpdate": "no action", + "onDelete": "no action" + } + }, + "compositePrimaryKeys": { + "player_index_account_id_player_id_pk": { + "name": "player_index_account_id_player_id_pk", + "columns": [ + "account_id", + "player_id" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.quest": { + "name": "quest", + "schema": "player", + "columns": { + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(32)", + "primaryKey": false, + "notNull": true + }, + "state": { + "name": "state", + "type": "varchar(64)", + "primaryKey": false, + "notNull": true + }, + "value": { + "name": "value", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": { + "quest_player_id": { + "name": "quest_player_id", + "columns": [ + { + "expression": "player_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + }, + "quest_name": { + "name": "quest_name", + "columns": [ + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + }, + "quest_state": { + "name": "quest_state", + "columns": [ + { + "expression": "state", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + } + }, + "foreignKeys": { + "quest_player_id_player_id_fk": { + "name": "quest_player_id_player_id_fk", + "tableFrom": "quest", + "columnsFrom": [ + "player_id" + ], + "tableTo": "player", + "schemaTo": "player", + "columnsTo": [ + "id" + ], + "onUpdate": "no action", + "onDelete": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.refine_proto": { + "name": "refine_proto", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true + }, + "vnum_0": { + "name": "vnum_0", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "count_0": { + "name": "count_0", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "vnum_1": { + "name": "vnum_1", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "count_1": { + "name": "count_1", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "vnum_2": { + "name": "vnum_2", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "count_2": { + "name": "count_2", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "vnum_3": { + "name": "vnum_3", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "count_3": { + "name": "count_3", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "vnum_4": { + "name": "vnum_4", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "count_4": { + "name": "count_4", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "cost": { + "name": "cost", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "src_vnum": { + "name": "src_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "result_vnum": { + "name": "result_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "probability": { + "name": "probability", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 100 + } + }, + "indexes": { + "refine_proto_src_vnum": { + "name": "refine_proto_src_vnum", + "columns": [ + { + "expression": "src_vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + }, + "refine_proto_result_vnum": { + "name": "refine_proto_result_vnum", + "columns": [ + { + "expression": "result_vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.safebox": { + "name": "safebox", + "schema": "player", + "columns": { + "account_id": { + "name": "account_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "size": { + "name": "size", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "password": { + "name": "password", + "type": "varchar(6)", + "primaryKey": false, + "notNull": true + }, + "gold": { + "name": "gold", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": {}, + "foreignKeys": { + "safebox_account_id_account_id_fk": { + "name": "safebox_account_id_account_id_fk", + "tableFrom": "safebox", + "columnsFrom": [ + "account_id" + ], + "tableTo": "account", + "schemaTo": "account", + "columnsTo": [ + "id" + ], + "onUpdate": "no action", + "onDelete": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.shop": { + "name": "shop", + "schema": "player", + "columns": { + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": true, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(32)", + "primaryKey": false, + "notNull": true, + "default": "'NONAME'" + }, + "npc_vnum": { + "name": "npc_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true + } + }, + "indexes": { + "shop_vnum": { + "name": "shop_vnum", + "columns": [ + { + "expression": "vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.shop_item": { + "name": "shop_item", + "schema": "player", + "columns": { + "shop_vnum": { + "name": "shop_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "item_vnum": { + "name": "item_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "count": { + "name": "count", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 1 + } + }, + "indexes": { + "shop_item_item_vnum": { + "name": "shop_item_item_vnum", + "columns": [ + { + "expression": "item_vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "with": {}, + "method": "btree", + "concurrently": false + } + }, + "foreignKeys": { + "shop_item_shop_vnum_shop_vnum_fk": { + "name": "shop_item_shop_vnum_shop_vnum_fk", + "tableFrom": "shop_item", + "columnsFrom": [ + "shop_vnum" + ], + "tableTo": "shop", + "schemaTo": "player", + "columnsTo": [ + "vnum" + ], + "onUpdate": "no action", + "onDelete": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "shop_vnum_unique": { + "name": "shop_vnum_unique", + "columns": [ + "shop_vnum", + "item_vnum", + "count" + ], + "nullsNotDistinct": false + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.skill_proto": { + "name": "skill_proto", + "schema": "player", + "columns": { + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "type": { + "name": "type", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "level_step": { + "name": "level_step", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "max_level": { + "name": "max_level", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "level_limit": { + "name": "level_limit", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "point_on": { + "name": "point_on", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true, + "default": "'0'" + }, + "point_poly": { + "name": "point_poly", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "sp_cost_poly": { + "name": "sp_cost_poly", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "duration_poly": { + "name": "duration_poly", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "duration_sp_cost_poly": { + "name": "duration_sp_cost_poly", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "cooldown_poly": { + "name": "cooldown_poly", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "master_bonus_poly": { + "name": "master_bonus_poly", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "attack_grade_poly": { + "name": "attack_grade_poly", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "set_flag": { + "name": "set_flag", + "type": "skill_proto_set_flag[]", + "primaryKey": false, + "notNull": true, + "default": "'{}'" + }, + "set_flag_bits": { + "name": "set_flag_bits", + "type": "bigint", + "primaryKey": false, + "notNull": false, + "generated": { + "type": "stored", + "as": "enum_array_to_bitmask(\"player\".\"skill_proto\".\"set_flag\")" + } + }, + "set_affect_flag": { + "name": "set_affect_flag", + "type": "skill_proto_set_affect_flag", + "typeSchema": "player", + "primaryKey": false, + "notNull": false + }, + "set_affect_flag_bits": { + "name": "set_affect_flag_bits", + "type": "bigint", + "primaryKey": false, + "notNull": false, + "generated": { + "type": "stored", + "as": "enum_to_bitmask(\"player\".\"skill_proto\".\"set_affect_flag\")" + } + }, + "point_on_2": { + "name": "point_on_2", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true, + "default": "'NONE'" + }, + "point_poly_2": { + "name": "point_poly_2", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "duration_poly_2": { + "name": "duration_poly_2", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "set_affect_flag_2": { + "name": "set_affect_flag_2", + "type": "skill_proto_set_affect_flag_2", + "typeSchema": "player", + "primaryKey": false, + "notNull": false + }, + "set_affect_flag_2_bits": { + "name": "set_affect_flag_2_bits", + "type": "bigint", + "primaryKey": false, + "notNull": false, + "generated": { + "type": "stored", + "as": "enum_to_bitmask(\"player\".\"skill_proto\".\"set_affect_flag_2\")" + } + }, + "point_on_3": { + "name": "point_on_3", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true, + "default": "'NONE'" + }, + "point_poly_3": { + "name": "point_poly_3", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "duration_poly_3": { + "name": "duration_poly_3", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "grand_master_add_sp_cost_poly": { + "name": "grand_master_add_sp_cost_poly", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "prerequisite_skill_vnum": { + "name": "prerequisite_skill_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "prerequisite_skill_level": { + "name": "prerequisite_skill_level", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "skill_type": { + "name": "skill_type", + "type": "skill_proto_skill_type", + "typeSchema": "player", + "primaryKey": false, + "notNull": true, + "default": "'NORMAL'" + }, + "skill_type_bits": { + "name": "skill_type_bits", + "type": "bigint", + "primaryKey": false, + "notNull": false, + "generated": { + "type": "stored", + "as": "enum_to_bitmask(\"player\".\"skill_proto\".\"skill_type\")" + } + }, + "max_hit": { + "name": "max_hit", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "splash_around_damage_adjust_poly": { + "name": "splash_around_damage_adjust_poly", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true, + "default": "'1'" + }, + "target_range": { + "name": "target_range", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 1000 + }, + "splash_range": { + "name": "splash_range", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + } + }, + "enums": { + "common.gm_authority": { + "name": "gm_authority", + "schema": "common", + "values": [ + "IMPLEMENTOR", + "HIGH_WIZARD", + "GOD", + "LOW_WIZARD", + "PLAYER" + ] + }, + "common.spam_type": { + "name": "spam_type", + "schema": "common", + "values": [ + "GOOD", + "SPAM" + ] + }, + "log.gold_log_how": { + "name": "gold_log_how", + "schema": "log", + "values": [ + "BUY", + "SELL", + "SHOP_SELL", + "SHOP_BUY", + "EXCHANGE_TAKE", + "EXCHANGE_GIVE", + "QUEST" + ] + }, + "log.log_type": { + "name": "log_type", + "schema": "log", + "values": [ + "ITEM", + "CHARACTER" + ] + }, + "log.login_log_type": { + "name": "login_log_type", + "schema": "log", + "values": [ + "LOGIN", + "LOGOUT" + ] + }, + "log.money_log_type": { + "name": "money_log_type", + "schema": "log", + "values": [ + "MONSTER", + "SHOP", + "REFINE", + "QUEST", + "GUILD", + "MISC", + "KILL", + "DROP" + ] + }, + "log.refine_log_set_type": { + "name": "refine_log_set_type", + "schema": "log", + "values": [ + "SOCKET", + "POWER", + "ROD", + "GUILD", + "SCROLL", + "HYUNIRON", + "GOD_SCROLL", + "MUSIN_SCROLL" + ] + }, + "log.reward_type": { + "name": "reward_type", + "schema": "log", + "values": [ + "EXP", + "ITEM" + ] + }, + "player.guild_grade_auth": { + "name": "guild_grade_auth", + "schema": "player", + "values": [ + "ADD_MEMBER", + "REMOVE_MEMEBER", + "NOTICE", + "USE_SKILL" + ] + }, + "player.item_proto_immune_flag": { + "name": "item_proto_immune_flag", + "schema": "player", + "values": [ + "PARA", + "CURSE", + "STUN", + "SLEEP", + "SLOW", + "POISON", + "TERROR" + ] + }, + "player.item_attr_apply": { + "name": "item_attr_apply", + "schema": "player", + "values": [ + "MAX_HP", + "MAX_SP", + "CON", + "INT", + "STR", + "DEX", + "ATT_SPEED", + "MOV_SPEED", + "CAST_SPEED", + "HP_REGEN", + "SP_REGEN", + "POISON_PCT", + "STUN_PCT", + "SLOW_PCT", + "CRITICAL_PCT", + "PENETRATE_PCT", + "ATTBONUS_HUMAN", + "ATTBONUS_ANIMAL", + "ATTBONUS_ORC", + "ATTBONUS_MILGYO", + "ATTBONUS_UNDEAD", + "ATTBONUS_DEVIL", + "STEAL_HP", + "STEAL_SP", + "MANA_BURN_PCT", + "DAMAGE_SP_RECOVER", + "BLOCK", + "DODGE", + "RESIST_SWORD", + "RESIST_TWOHAND", + "RESIST_DAGGER", + "RESIST_BELL", + "RESIST_FAN", + "RESIST_BOW", + "RESIST_FIRE", + "RESIST_ELEC", + "RESIST_MAGIC", + "RESIST_WIND", + "REFLECT_MELEE", + "REFLECT_CURSE", + "POISON_REDUCE", + "KILL_SP_RECOVER", + "EXP_DOUBLE_BONUS", + "GOLD_DOUBLE_BONUS", + "ITEM_DROP_BONUS", + "POTION_BONUS", + "KILL_HP_RECOVER", + "IMMUNE_STUN", + "IMMUNE_SLOW", + "IMMUNE_FALL", + "SKILL", + "BOW_DISTANCE", + "ATT_GRADE_BONUS", + "DEF_GRADE_BONUS", + "MAGIC_ATT_GRADE", + "MAGIC_DEF_GRADE", + "CURSE_PCT", + "MAX_STAMINA", + "ATTBONUS_WARRIOR", + "ATTBONUS_ASSASSIN", + "ATTBONUS_SURA", + "ATTBONUS_SHAMAN", + "ATTBONUS_MONSTER", + "MALL_ATTBONUS", + "MALL_DEFBONUS", + "MALL_EXPBONUS", + "MALL_ITEMBONUS", + "MALL_GOLDBONUS", + "MAX_HP_PCT", + "MAX_SP_PCT", + "SKILL_DAMAGE_BONUS", + "NORMAL_HIT_DAMAGE_BONUS", + "SKILL_DEFEND_BONUS", + "NORMAL_HIT_DEFEND_BONUS", + "PC_BANG_EXP_BONUS", + "PC_BANG_DROP_BONUS", + "EXTRACT_HP_PCT", + "RESIST_WARRIOR", + "RESIST_ASSASSIN", + "RESIST_SURA", + "RESIST_SHAMAN", + "ENERGY", + "DEF_GRADE", + "COSTUME_ATTR_BONUS", + "MAGIC_ATTBONUS_PER", + "MELEE_MAGIC_ATTBONUS_PER", + "RESIST_ICE", + "RESIST_EARTH", + "RESIST_DARK", + "ANTI_CRITICAL_PCT", + "ANTI_PENETRATE_PCT" + ] + }, + "player.item_attr_rare_apply": { + "name": "item_attr_rare_apply", + "schema": "player", + "values": [ + "MAX_HP", + "MAX_SP", + "CON", + "INT", + "STR", + "DEX", + "ATT_SPEED", + "MOV_SPEED", + "CAST_SPEED", + "HP_REGEN", + "SP_REGEN", + "POISON_PCT", + "STUN_PCT", + "SLOW_PCT", + "CRITICAL_PCT", + "PENETRATE_PCT", + "ATTBONUS_HUMAN", + "ATTBONUS_ANIMAL", + "ATTBONUS_ORC", + "ATTBONUS_MILGYO", + "ATTBONUS_UNDEAD", + "ATTBONUS_DEVIL", + "STEAL_HP", + "STEAL_SP", + "MANA_BURN_PCT", + "DAMAGE_SP_RECOVER", + "BLOCK", + "DODGE", + "RESIST_SWORD", + "RESIST_TWOHAND", + "RESIST_DAGGER", + "RESIST_BELL", + "RESIST_FAN", + "RESIST_BOW", + "RESIST_FIRE", + "RESIST_ELEC", + "RESIST_MAGIC", + "RESIST_WIND", + "REFLECT_MELEE", + "REFLECT_CURSE", + "POISON_REDUCE", + "KILL_SP_RECOVER", + "EXP_DOUBLE_BONUS", + "GOLD_DOUBLE_BONUS", + "ITEM_DROP_BONUS", + "POTION_BONUS", + "KILL_HP_RECOVER", + "IMMUNE_STUN", + "IMMUNE_SLOW", + "IMMUNE_FALL", + "SKILL", + "BOW_DISTANCE", + "ATT_GRADE_BONUS", + "DEF_GRADE_BONUS", + "MAGIC_ATT_GRADE", + "MAGIC_DEF_GRADE", + "CURSE_PCT", + "MAX_STAMINA", + "ATT_BONUS_TO_WARRIOR", + "ATT_BONUS_TO_ASSASSIN", + "ATT_BONUS_TO_SURA", + "ATT_BONUS_TO_SHAMAN", + "ATT_BONUS_TO_MONSTER", + "NORMAL_HIT_DEFEND_BONUS", + "SKILL_DEFEND_BONUS", + "NOUSE2'NOUSE3", + "NOUSE4", + "NOUSE5", + "NOUSE6", + "NOUSE7", + "NOUSE8", + "NOUSE9", + "NOUSE10", + "NOUSE11", + "NOUSE12", + "NOUSE13", + "NOUSE14", + "RESIST_WARRIOR", + "RESIST_ASSASSIN", + "RESIST_SURA", + "RESIST_SHAMAN" + ] + }, + "player.item_window": { + "name": "item_window", + "schema": "player", + "values": [ + "INVENTORY", + "EQUIPMENT", + "SAFEBOX", + "MALL", + "DRAGON_SOUL_INVENTORY", + "BELT_INVENTORY" + ] + }, + "player.mob_ai_flag": { + "name": "mob_ai_flag", + "schema": "player", + "values": [ + "AGGR", + "NOMOVE", + "COWARD", + "NOATTSHINSU", + "NOATTCHUNJO", + "NOATTJINNO", + "ATTMOB", + "BERSERK", + "STONESKIN", + "GODSPEED", + "DEATHBLOW", + "REVIVE" + ] + }, + "player.mob_set_immune_flag": { + "name": "mob_set_immune_flag", + "schema": "player", + "values": [ + "STUN", + "SLOW", + "FALL", + "CURSE", + "POISON", + "TERROR" + ] + }, + "player.mob_set_race_flag": { + "name": "mob_set_race_flag", + "schema": "player", + "values": [ + "ANIMAL", + "UNDEAD", + "DEVIL", + "HUMAN", + "ORC", + "MILGYO", + "INSECT", + "FIRE", + "ICE", + "DESERT", + "TREE", + "ATT_ELEC", + "ATT_FIRE", + "ATT_ICE", + "ATT_WIND", + "ATT_EARTH", + "ATT_DARK" + ] + }, + "player.mob_size": { + "name": "mob_size", + "schema": "player", + "values": [ + "SMALL", + "MEDIUM", + "BIG" + ] + }, + "player.skill_proto_set_affect_flag": { + "name": "skill_proto_set_affect_flag", + "schema": "player", + "values": [ + "YMIR", + "INVISIBILITY", + "SPAWN", + "POISON", + "SLOW", + "STUN", + "DUNGEON_READY", + "FORCE_VISIBLE", + "BUILDING_CONSTRUCTION_SMALL", + "BUILDING_CONSTRUCTION_LARGE", + "BUILDING_UPGRADE", + "MOV_SPEED_POTION", + "ATT_SPEED_POTION", + "FISH_MIDE", + "JEONGWIHON", + "GEOMGYEONG", + "CHEONGEUN", + "GYEONGGONG", + "EUNHYUNG", + "GWIGUM", + "TERROR", + "JUMAGAP", + "HOSIN", + "BOHO", + "KWAESOK", + "MANASHIELD", + "MUYEONG", + "REVIVE_INVISIBLE", + "FIRE", + "GICHEON", + "JEUNGRYEOK" + ] + }, + "player.skill_proto_set_affect_flag_2": { + "name": "skill_proto_set_affect_flag_2", + "schema": "player", + "values": [ + "YMIR", + "INVISIBILITY", + "SPAWN", + "POISON", + "SLOW", + "STUN", + "DUNGEON_READY", + "FORCE_VISIBLE", + "BUILDING_CONSTRUCTION_SMALL", + "BUILDING_CONSTRUCTION_LARGE", + "BUILDING_UPGRADE", + "MOV_SPEED_POTION", + "ATT_SPEED_POTION", + "FISH_MIDE", + "JEONGWIHON", + "GEOMGYEONG", + "CHEONGEUN", + "GYEONGGONG", + "EUNHYUNG", + "GWIGUM", + "TERROR", + "JUMAGAP", + "HOSIN", + "BOHO", + "KWAESOK", + "MANASHIELD" + ] + }, + "player.skill_proto_set_flag": { + "name": "skill_proto_set_flag", + "schema": "player", + "values": [ + "ATTACK", + "USE_MELEE_DAMAGE", + "COMPUTE_ATTGRADE", + "SELFONLY", + "USE_MAGIC_DAMAGE", + "USE_HP_AS_COST", + "COMPUTE_MAGIC_DAMAGE", + "SPLASH", + "GIVE_PENALTY", + "USE_ARROW_DAMAGE", + "PENETRATE", + "IGNORE_TARGET_RATING", + "ATTACK_SLOW", + "ATTACK_STUN", + "HP_ABSORB", + "SP_ABSORB", + "ATTACK_FIRE_CONT", + "REMOVE_BAD_AFFECT", + "REMOVE_GOOD_AFFECT", + "CRUSH", + "ATTACK_POISON", + "TOGGLE", + "DISABLE_BY_POINT_UP", + "CRUSH_LONG" + ] + }, + "player.skill_proto_skill_type": { + "name": "skill_proto_skill_type", + "schema": "player", + "values": [ + "NORMAL", + "MELEE", + "RANGE", + "MAGIC" + ] + } + }, + "schemas": { + "account": "account", + "common": "common", + "log": "log", + "player": "player" + }, + "views": {}, + "sequences": {}, + "roles": {}, + "policies": {}, + "_meta": { + "columns": {}, + "schemas": {}, + "tables": {} + } +} \ No newline at end of file diff --git a/drizzle/meta/0003_snapshot.json b/drizzle/meta/0003_snapshot.json new file mode 100644 index 0000000..aeba155 --- /dev/null +++ b/drizzle/meta/0003_snapshot.json @@ -0,0 +1,7032 @@ +{ + "id": "b2190459-5f76-4356-ace7-01a59190976a", + "prevId": "99735262-8eca-4ff6-b898-cdd59013b677", + "version": "7", + "dialect": "postgresql", + "tables": { + "account.account": { + "name": "account", + "schema": "account", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "account_id_seq", + "schema": "account", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "login": { + "name": "login", + "type": "varchar(30)", + "primaryKey": false, + "notNull": true + }, + "password": { + "name": "password", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "social_id": { + "name": "social_id", + "type": "varchar(13)", + "primaryKey": false, + "notNull": true + }, + "email": { + "name": "email", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "status": { + "name": "status", + "type": "varchar(8)", + "primaryKey": false, + "notNull": true, + "default": "'OK'" + }, + "security_code": { + "name": "security_code", + "type": "varchar(192)", + "primaryKey": false, + "notNull": false + }, + "available_dt": { + "name": "available_dt", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "mileage": { + "name": "mileage", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "cash": { + "name": "cash", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "gold_expired_at": { + "name": "gold_expired_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "silver_expired_at": { + "name": "silver_expired_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "safebox_expired_at": { + "name": "safebox_expired_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "autoloot_expired_at": { + "name": "autoloot_expired_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "fish_mind_expired_at": { + "name": "fish_mind_expired_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "marriage_fast_expired_at": { + "name": "marriage_fast_expired_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "money_drop_rate_expired_at": { + "name": "money_drop_rate_expired_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "ip": { + "name": "ip", + "type": "varchar(16)", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "last_played_at": { + "name": "last_played_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "account_social_id": { + "name": "account_social_id", + "columns": [ + { + "expression": "social_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "account_login": { + "name": "account_login", + "nullsNotDistinct": false, + "columns": [ + "login" + ] + }, + "account_email": { + "name": "account_email", + "nullsNotDistinct": false, + "columns": [ + "email" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.affect": { + "name": "affect", + "schema": "player", + "columns": { + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "type": { + "name": "type", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "apply_on": { + "name": "apply_on", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "apply_value": { + "name": "apply_value", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "flag": { + "name": "flag", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "duration": { + "name": "duration", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "sp_cost": { + "name": "sp_cost", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": {}, + "foreignKeys": { + "affect_player_id_player_id_fk": { + "name": "affect_player_id_player_id_fk", + "tableFrom": "affect", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.banword": { + "name": "banword", + "schema": "player", + "columns": { + "word": { + "name": "word", + "type": "text", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.boot_log": { + "name": "boot_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "boot_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "hostname": { + "name": "hostname", + "type": "char(128)", + "primaryKey": false, + "notNull": true, + "default": "'UNKNOWN'" + }, + "channel": { + "name": "channel", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.change_empire": { + "name": "change_empire", + "schema": "player", + "columns": { + "account_id": { + "name": "account_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "change_count": { + "name": "change_count", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "change_empire_account_id_account_id_fk": { + "name": "change_empire_account_id_account_id_fk", + "tableFrom": "change_empire", + "tableTo": "account", + "schemaTo": "account", + "columnsFrom": [ + "account_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.change_name": { + "name": "change_name", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "change_name_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "old_name": { + "name": "old_name", + "type": "varchar(191)", + "primaryKey": false, + "notNull": false + }, + "new_name": { + "name": "new_name", + "type": "varchar(191)", + "primaryKey": false, + "notNull": false + }, + "ip": { + "name": "ip", + "type": "varchar(16)", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "change_name_player_id_player_id_fk": { + "name": "change_name_player_id_player_id_fk", + "tableFrom": "change_name", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.command_log": { + "name": "command_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "command_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "server": { + "name": "server", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "ip": { + "name": "ip", + "type": "varchar(16)", + "primaryKey": false, + "notNull": true + }, + "port": { + "name": "port", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "username": { + "name": "username", + "type": "varchar(50)", + "primaryKey": false, + "notNull": true + }, + "command": { + "name": "command", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "command_log_player_id_player_id_fk": { + "name": "command_log_player_id_player_id_fk", + "tableFrom": "command_log", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.cube_log": { + "name": "cube_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "cube_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "x": { + "name": "x", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "y": { + "name": "y", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "item_vnum": { + "name": "item_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "item_uid": { + "name": "item_uid", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "item_count": { + "name": "item_count", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "success": { + "name": "success", + "type": "boolean", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": { + "cube_log_player_id": { + "name": "cube_log_player_id", + "columns": [ + { + "expression": "player_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "cube_log_item_vnum": { + "name": "cube_log_item_vnum", + "columns": [ + { + "expression": "item_vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "cube_log_item_uid": { + "name": "cube_log_item_uid", + "columns": [ + { + "expression": "item_uid", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.dragon_slay_log": { + "name": "dragon_slay_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "dragon_slay_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "guild_id": { + "name": "guild_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "start_time": { + "name": "start_time", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "end_time": { + "name": "end_time", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.fish_log": { + "name": "fish_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "fish_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "map_index": { + "name": "map_index", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "fish_id": { + "name": "fish_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "fishing_level": { + "name": "fishing_level", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "waiting_time": { + "name": "waiting_time", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "success": { + "name": "success", + "type": "boolean", + "primaryKey": false, + "notNull": true + }, + "size": { + "name": "size", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "fish_log_player_id_player_id_fk": { + "name": "fish_log_player_id_player_id_fk", + "tableFrom": "fish_log", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "common.gm_host": { + "name": "gm_host", + "schema": "common", + "columns": { + "ip": { + "name": "ip", + "type": "varchar(16)", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "common.gm_list": { + "name": "gm_list", + "schema": "common", + "columns": { + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "contact_ip": { + "name": "contact_ip", + "type": "varchar(16)", + "primaryKey": false, + "notNull": true + }, + "server_ip": { + "name": "server_ip", + "type": "varchar(16)", + "primaryKey": false, + "notNull": true, + "default": "'ALL'" + }, + "authority": { + "name": "authority", + "type": "gm_authority", + "typeSchema": "common", + "primaryKey": false, + "notNull": false, + "default": "'PLAYER'" + } + }, + "indexes": {}, + "foreignKeys": { + "gm_list_player_id_player_id_fk": { + "name": "gm_list_player_id_player_id_fk", + "tableFrom": "gm_list", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.gold_log": { + "name": "gold_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "gold_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "what": { + "name": "what", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "how": { + "name": "how", + "type": "gold_log_how", + "typeSchema": "log", + "primaryKey": false, + "notNull": true + }, + "hint": { + "name": "hint", + "type": "varchar(50)", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": { + "gold_log_created_at": { + "name": "gold_log_created_at", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "gold_log_player_id": { + "name": "gold_log_player_id", + "columns": [ + { + "expression": "player_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "gold_log_what": { + "name": "gold_log_what", + "columns": [ + { + "expression": "what", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "gold_log_how": { + "name": "gold_log_how", + "columns": [ + { + "expression": "how", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "gold_log_player_id_player_id_fk": { + "name": "gold_log_player_id_player_id_fk", + "tableFrom": "gold_log", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.guild": { + "name": "guild", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "guild_id_seq", + "schema": "player", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "name": { + "name": "name", + "type": "varchar(12)", + "primaryKey": false, + "notNull": true + }, + "sp": { + "name": "sp", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 1000 + }, + "master": { + "name": "master", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "level": { + "name": "level", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "exp": { + "name": "exp", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_point": { + "name": "skill_point", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "skill": { + "name": "skill", + "type": "bytea", + "primaryKey": false, + "notNull": false + }, + "win": { + "name": "win", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "draw": { + "name": "draw", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "loss": { + "name": "loss", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "ladder_point": { + "name": "ladder_point", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "gold": { + "name": "gold", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.guild_comment": { + "name": "guild_comment", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "guild_comment_id_seq", + "schema": "player", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "guild_id": { + "name": "guild_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(8)", + "primaryKey": false, + "notNull": false + }, + "notice": { + "name": "notice", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "content": { + "name": "content", + "type": "varchar(50)", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": { + "aaa": { + "name": "aaa", + "columns": [ + { + "expression": "notice", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "id", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "guild_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "guild_comment_guild_id": { + "name": "guild_comment_guild_id", + "columns": [ + { + "expression": "guild_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "guild_comment_guild_id_guild_id_fk": { + "name": "guild_comment_guild_id_guild_id_fk", + "tableFrom": "guild_comment", + "tableTo": "guild", + "schemaTo": "player", + "columnsFrom": [ + "guild_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.guild_grade": { + "name": "guild_grade", + "schema": "player", + "columns": { + "guild_id": { + "name": "guild_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "grade": { + "name": "grade", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "name": { + "name": "name", + "type": "varchar(8)", + "primaryKey": false, + "notNull": true + }, + "auth": { + "name": "auth", + "type": "guild_grade_auth[]", + "primaryKey": false, + "notNull": true, + "default": "'{}'" + }, + "auth_bits": { + "name": "auth_bits", + "type": "bigint", + "primaryKey": false, + "notNull": false, + "generated": { + "as": "enum_array_to_bitmask(\"player\".\"guild_grade\".\"auth\")", + "type": "stored" + } + } + }, + "indexes": {}, + "foreignKeys": { + "guild_grade_guild_id_guild_id_fk": { + "name": "guild_grade_guild_id_guild_id_fk", + "tableFrom": "guild_grade", + "tableTo": "guild", + "schemaTo": "player", + "columnsFrom": [ + "guild_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.guild_member": { + "name": "guild_member", + "schema": "player", + "columns": { + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "guild_id": { + "name": "guild_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "grade": { + "name": "grade", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "is_general": { + "name": "is_general", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "offer": { + "name": "offer", + "type": "integer", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "guild_member_player_id_player_id_fk": { + "name": "guild_member_player_id_player_id_fk", + "tableFrom": "guild_member", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "guild_member_guild_id_guild_id_fk": { + "name": "guild_member_guild_id_guild_id_fk", + "tableFrom": "guild_member", + "tableTo": "guild", + "schemaTo": "player", + "columnsFrom": [ + "guild_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "guild_member_player_id_guild_id_pk": { + "name": "guild_member_player_id_guild_id_pk", + "columns": [ + "player_id", + "guild_id" + ] + } + }, + "uniqueConstraints": { + "player_id": { + "name": "player_id", + "nullsNotDistinct": false, + "columns": [ + "player_id" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.guild_war_bet": { + "name": "guild_war_bet", + "schema": "player", + "columns": { + "login": { + "name": "login", + "type": "varchar(24)", + "primaryKey": false, + "notNull": true + }, + "gold": { + "name": "gold", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "guild_id": { + "name": "guild_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "war_id": { + "name": "war_id", + "type": "integer", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": { + "guild_war_bet_guild_id_guild_id_fk": { + "name": "guild_war_bet_guild_id_guild_id_fk", + "tableFrom": "guild_war_bet", + "tableTo": "guild", + "schemaTo": "player", + "columnsFrom": [ + "guild_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "guild_war_bet_war_id_guild_war_reservation_id_fk": { + "name": "guild_war_bet_war_id_guild_war_reservation_id_fk", + "tableFrom": "guild_war_bet", + "tableTo": "guild_war_reservation", + "schemaTo": "player", + "columnsFrom": [ + "war_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.guild_war_reservation": { + "name": "guild_war_reservation", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "guild_war_reservation_id_seq", + "schema": "player", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "guild1": { + "name": "guild1", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "guild2": { + "name": "guild2", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "type": { + "name": "type", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "warprice": { + "name": "warprice", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "initial_score": { + "name": "initial_score", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "started": { + "name": "started", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "bet_from": { + "name": "bet_from", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "bet_to": { + "name": "bet_to", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "winner": { + "name": "winner", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": -1 + }, + "power_from": { + "name": "power_from", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "power_to": { + "name": "power_to", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "handicap": { + "name": "handicap", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "result_1": { + "name": "result_1", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "result_2": { + "name": "result_2", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "started_at": { + "name": "started_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "guild_war_reservation_guild1_guild_id_fk": { + "name": "guild_war_reservation_guild1_guild_id_fk", + "tableFrom": "guild_war_reservation", + "tableTo": "guild", + "schemaTo": "player", + "columnsFrom": [ + "guild1" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "guild_war_reservation_guild2_guild_id_fk": { + "name": "guild_war_reservation_guild2_guild_id_fk", + "tableFrom": "guild_war_reservation", + "tableTo": "guild", + "schemaTo": "player", + "columnsFrom": [ + "guild2" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.hack_log": { + "name": "hack_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "hack_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "login": { + "name": "login", + "type": "char(16)", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "char(24)", + "primaryKey": false, + "notNull": true + }, + "ip": { + "name": "ip", + "type": "char(15)", + "primaryKey": false, + "notNull": true + }, + "server": { + "name": "server", + "type": "char(100)", + "primaryKey": false, + "notNull": true + }, + "why": { + "name": "why", + "type": "char(191)", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.horse_name": { + "name": "horse_name", + "schema": "player", + "columns": { + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(24)", + "primaryKey": false, + "notNull": true, + "default": "'NONAME'" + } + }, + "indexes": {}, + "foreignKeys": { + "horse_name_player_id_player_id_fk": { + "name": "horse_name_player_id_player_id_fk", + "tableFrom": "horse_name", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.item": { + "name": "item", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "item_id_seq", + "schema": "player", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "owner_id": { + "name": "owner_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "window": { + "name": "window", + "type": "item_window", + "typeSchema": "player", + "primaryKey": false, + "notNull": true, + "default": "'INVENTORY'" + }, + "position": { + "name": "position", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "count": { + "name": "count", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "socket_0": { + "name": "socket_0", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "socket_1": { + "name": "socket_1", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "socket_2": { + "name": "socket_2", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "socket_3": { + "name": "socket_3", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "socket_4": { + "name": "socket_4", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "socket_5": { + "name": "socket_5", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_type_0": { + "name": "attr_type_0", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_value_0": { + "name": "attr_value_0", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_type_1": { + "name": "attr_type_1", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_value_1": { + "name": "attr_value_1", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_type_2": { + "name": "attr_type_2", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_value_2": { + "name": "attr_value_2", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_type_3": { + "name": "attr_type_3", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_value_3": { + "name": "attr_value_3", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_type_4": { + "name": "attr_type_4", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_value_4": { + "name": "attr_value_4", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_type_5": { + "name": "attr_type_5", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_value_5": { + "name": "attr_value_5", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_type_6": { + "name": "attr_type_6", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_value_6": { + "name": "attr_value_6", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": { + "item_owner_id": { + "name": "item_owner_id", + "columns": [ + { + "expression": "owner_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "item_window": { + "name": "item_window", + "columns": [ + { + "expression": "window", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "item_vnum": { + "name": "item_vnum", + "columns": [ + { + "expression": "vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.item_attr": { + "name": "item_attr", + "schema": "player", + "columns": { + "apply": { + "name": "apply", + "type": "item_attr_apply", + "typeSchema": "player", + "primaryKey": false, + "notNull": true, + "default": "'MAX_HP'" + }, + "probability": { + "name": "probability", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_1": { + "name": "lvl_1", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_2": { + "name": "lvl_2", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_3": { + "name": "lvl_3", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_4": { + "name": "lvl_4", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_5": { + "name": "lvl_5", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "weapon": { + "name": "weapon", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "body": { + "name": "body", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "wrist": { + "name": "wrist", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "foots": { + "name": "foots", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "neck": { + "name": "neck", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "head": { + "name": "head", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "shield": { + "name": "shield", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "ear": { + "name": "ear", + "type": "integer", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.item_attr_rare": { + "name": "item_attr_rare", + "schema": "player", + "columns": { + "apply": { + "name": "apply", + "type": "item_attr_rare_apply", + "typeSchema": "player", + "primaryKey": false, + "notNull": true, + "default": "'MAX_HP'" + }, + "probability": { + "name": "probability", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_1": { + "name": "lvl_1", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_2": { + "name": "lvl_2", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_3": { + "name": "lvl_3", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_4": { + "name": "lvl_4", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_5": { + "name": "lvl_5", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "weapon": { + "name": "weapon", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "body": { + "name": "body", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "wrist": { + "name": "wrist", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "foots": { + "name": "foots", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "neck": { + "name": "neck", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "head": { + "name": "head", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "shield": { + "name": "shield", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "ear": { + "name": "ear", + "type": "integer", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.item_award": { + "name": "item_award", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "item_award_id_seq", + "schema": "player", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "login": { + "name": "login", + "type": "varchar(30)", + "primaryKey": false, + "notNull": true + }, + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "count": { + "name": "count", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "give_at": { + "name": "give_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "taken_at": { + "name": "taken_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "item_id": { + "name": "item_id", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "why": { + "name": "why", + "type": "varchar(128)", + "primaryKey": false, + "notNull": false + }, + "socket_0": { + "name": "socket_0", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "socket_1": { + "name": "socket_1", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "socket_2": { + "name": "socket_2", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "mall": { + "name": "mall", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": { + "item_award_player_id": { + "name": "item_award_player_id", + "columns": [ + { + "expression": "player_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "item_award_given_at": { + "name": "item_award_given_at", + "columns": [ + { + "expression": "give_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "item_award_taken_at": { + "name": "item_award_taken_at", + "columns": [ + { + "expression": "taken_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "item_award_player_id_player_id_fk": { + "name": "item_award_player_id_player_id_fk", + "tableFrom": "item_award", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.item_proto": { + "name": "item_proto", + "schema": "player", + "columns": { + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "locale_name": { + "name": "locale_name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "type": { + "name": "type", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "sub_type": { + "name": "sub_type", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "weight": { + "name": "weight", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "size": { + "name": "size", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "anti_flag": { + "name": "anti_flag", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "flag": { + "name": "flag", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "wear_flag": { + "name": "wear_flag", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "immune_flag": { + "name": "immune_flag", + "type": "item_proto_immune_flag[]", + "primaryKey": false, + "notNull": true, + "default": "'{}'" + }, + "gold": { + "name": "gold", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "shop_buy_price": { + "name": "shop_buy_price", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "refined_vnum": { + "name": "refined_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "refine_set": { + "name": "refine_set", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "refine_set2": { + "name": "refine_set2", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "magic_percentage": { + "name": "magic_percentage", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "limit_type_0": { + "name": "limit_type_0", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "limit_value_0": { + "name": "limit_value_0", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "limit_type_1": { + "name": "limit_type_1", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "limit_value_1": { + "name": "limit_value_1", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "apply_type_0": { + "name": "apply_type_0", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "apply_value_0": { + "name": "apply_value_0", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "apply_type_1": { + "name": "apply_type_1", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "apply_value_1": { + "name": "apply_value_1", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "apply_type_2": { + "name": "apply_type_2", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "apply_value_2": { + "name": "apply_value_2", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "value_0": { + "name": "value_0", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "value_1": { + "name": "value_1", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "value_2": { + "name": "value_2", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "value_3": { + "name": "value_3", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "value_4": { + "name": "value_4", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "value_5": { + "name": "value_5", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "socket_0": { + "name": "socket_0", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": -1 + }, + "socket_1": { + "name": "socket_1", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": -1 + }, + "socket_2": { + "name": "socket_2", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": -1 + }, + "socket_3": { + "name": "socket_3", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": -1 + }, + "socket_4": { + "name": "socket_4", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": -1 + }, + "socket_5": { + "name": "socket_5", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": -1 + }, + "specular": { + "name": "specular", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "socket_percentage": { + "name": "socket_percentage", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "addon_type": { + "name": "addon_type", + "type": "integer", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.land": { + "name": "land", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true + }, + "map_index": { + "name": "map_index", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "x": { + "name": "x", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "y": { + "name": "y", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "width": { + "name": "width", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "height": { + "name": "height", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "guild_id": { + "name": "guild_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "guild_level_limit": { + "name": "guild_level_limit", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "price": { + "name": "price", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "enabled": { + "name": "enabled", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.level_log": { + "name": "level_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "level_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "name": { + "name": "name", + "type": "char(24)", + "primaryKey": false, + "notNull": true + }, + "level": { + "name": "level", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "playtime": { + "name": "playtime", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "level_log_player_id_player_id_fk": { + "name": "level_log_player_id_player_id_fk", + "tableFrom": "level_log", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "common.locale": { + "name": "locale", + "schema": "common", + "columns": { + "key": { + "name": "key", + "type": "varchar(191)", + "primaryKey": false, + "notNull": true + }, + "value": { + "name": "value", + "type": "varchar(191)", + "primaryKey": false, + "notNull": true + } + }, + "indexes": { + "locale_key": { + "name": "locale_key", + "columns": [ + { + "expression": "key", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.log": { + "name": "log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "type": { + "name": "type", + "type": "log_type", + "typeSchema": "log", + "primaryKey": false, + "notNull": true, + "default": "'ITEM'" + }, + "who": { + "name": "who", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "x": { + "name": "x", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "y": { + "name": "y", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "what": { + "name": "what", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "how": { + "name": "how", + "type": "varchar(50)", + "primaryKey": false, + "notNull": true + }, + "hint": { + "name": "hint", + "type": "varchar(70)", + "primaryKey": false, + "notNull": false + }, + "ip": { + "name": "ip", + "type": "varchar(16)", + "primaryKey": false, + "notNull": false + }, + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": { + "log_who": { + "name": "log_who", + "columns": [ + { + "expression": "who", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "log_what": { + "name": "log_what", + "columns": [ + { + "expression": "what", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "log_how": { + "name": "log_how", + "columns": [ + { + "expression": "how", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.login_log": { + "name": "login_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "login_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "type": { + "name": "type", + "type": "login_log_type", + "typeSchema": "log", + "primaryKey": false, + "notNull": false + }, + "channel": { + "name": "channel", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "account_id": { + "name": "account_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "level": { + "name": "level", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "job": { + "name": "job", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "playtime": { + "name": "playtime", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": { + "login_log_player_id": { + "name": "login_log_player_id", + "columns": [ + { + "expression": "player_id", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "type", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "login_log_account_id_account_id_fk": { + "name": "login_log_account_id_account_id_fk", + "tableFrom": "login_log", + "tableTo": "account", + "schemaTo": "account", + "columnsFrom": [ + "account_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "login_log_player_id_player_id_fk": { + "name": "login_log_player_id_player_id_fk", + "tableFrom": "login_log", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.login_log_2": { + "name": "login_log_2", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "login_log_2_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "type": { + "name": "type", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "is_gm": { + "name": "is_gm", + "type": "boolean", + "primaryKey": false, + "notNull": false + }, + "channel": { + "name": "channel", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "account_id": { + "name": "account_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "ip": { + "name": "ip", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "client_version": { + "name": "client_version", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "playtime": { + "name": "playtime", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "login_at": { + "name": "login_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "logout_at": { + "name": "logout_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "login_log_2_account_id_account_id_fk": { + "name": "login_log_2_account_id_account_id_fk", + "tableFrom": "login_log_2", + "tableTo": "account", + "schemaTo": "account", + "columnsFrom": [ + "account_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "login_log_2_player_id_player_id_fk": { + "name": "login_log_2_player_id_player_id_fk", + "tableFrom": "login_log_2", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.lotto_list": { + "name": "lotto_list", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "lotto_list_id_seq", + "schema": "player", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "server": { + "name": "server", + "type": "varchar(20)", + "primaryKey": false, + "notNull": false + }, + "playerId": { + "name": "playerId", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "lotto_list_playerId_player_id_fk": { + "name": "lotto_list_playerId_player_id_fk", + "tableFrom": "lotto_list", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "playerId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.marriage": { + "name": "marriage", + "schema": "player", + "columns": { + "is_married": { + "name": "is_married", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "player_id_1": { + "name": "player_id_1", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "player_id_2": { + "name": "player_id_2", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "love_points": { + "name": "love_points", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "marriage_player_id_1_player_id_fk": { + "name": "marriage_player_id_1_player_id_fk", + "tableFrom": "marriage", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id_1" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "marriage_player_id_2_player_id_fk": { + "name": "marriage_player_id_2_player_id_fk", + "tableFrom": "marriage", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id_2" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.messenger_list": { + "name": "messenger_list", + "schema": "player", + "columns": { + "account": { + "name": "account", + "type": "varchar(16)", + "primaryKey": false, + "notNull": true + }, + "companion": { + "name": "companion", + "type": "varchar(16)", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.mob_proto": { + "name": "mob_proto", + "schema": "player", + "columns": { + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "locale_name": { + "name": "locale_name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "rank": { + "name": "rank", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "type": { + "name": "type", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "battle_type": { + "name": "battle_type", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "level": { + "name": "level", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 1 + }, + "size": { + "name": "size", + "type": "mob_size", + "typeSchema": "player", + "primaryKey": false, + "notNull": false, + "default": "'SMALL'" + }, + "ai_flag": { + "name": "ai_flag", + "type": "mob_ai_flag[]", + "primaryKey": false, + "notNull": true, + "default": "'{}'" + }, + "mount_capacity": { + "name": "mount_capacity", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "set_race_flag": { + "name": "set_race_flag", + "type": "mob_set_race_flag", + "typeSchema": "player", + "primaryKey": false, + "notNull": true + }, + "set_immune_flag": { + "name": "set_immune_flag", + "type": "mob_set_immune_flag", + "typeSchema": "player", + "primaryKey": false, + "notNull": false + }, + "empire": { + "name": "empire", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "folder": { + "name": "folder", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "on_click": { + "name": "on_click", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "st": { + "name": "st", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "dx": { + "name": "dx", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "ht": { + "name": "ht", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "iq": { + "name": "iq", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "damage_min": { + "name": "damage_min", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "damage_max": { + "name": "damage_max", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "max_hp": { + "name": "max_hp", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "regen_cycle": { + "name": "regen_cycle", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "regen_percent": { + "name": "regen_percent", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "gold_min": { + "name": "gold_min", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "gold_max": { + "name": "gold_max", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "exp": { + "name": "exp", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "def": { + "name": "def", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "attack_speed": { + "name": "attack_speed", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 100 + }, + "move_speed": { + "name": "move_speed", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 100 + }, + "aggressive_hp_percentage": { + "name": "aggressive_hp_percentage", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "aggressive_sight": { + "name": "aggressive_sight", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "attack_range": { + "name": "attack_range", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "drop_item": { + "name": "drop_item", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resurrection_vnum": { + "name": "resurrection_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "enchant_curse": { + "name": "enchant_curse", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "enchant_slow": { + "name": "enchant_slow", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "enchant_poison": { + "name": "enchant_poison", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "enchant_stun": { + "name": "enchant_stun", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "enchant_critical": { + "name": "enchant_critical", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "enchant_penetrate": { + "name": "enchant_penetrate", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_sword": { + "name": "resist_sword", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_twohand": { + "name": "resist_twohand", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_dagger": { + "name": "resist_dagger", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_bell": { + "name": "resist_bell", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_fan": { + "name": "resist_fan", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_bow": { + "name": "resist_bow", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_fire": { + "name": "resist_fire", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_elect": { + "name": "resist_elect", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_magic": { + "name": "resist_magic", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_wind": { + "name": "resist_wind", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_poison": { + "name": "resist_poison", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "dam_multiply": { + "name": "dam_multiply", + "type": "double precision", + "primaryKey": false, + "notNull": false + }, + "summon": { + "name": "summon", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "drain_sp": { + "name": "drain_sp", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "mob_color": { + "name": "mob_color", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "polymorph_item": { + "name": "polymorph_item", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "skill_level0": { + "name": "skill_level0", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_vnum0": { + "name": "skill_vnum0", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_level1": { + "name": "skill_level1", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_vnum1": { + "name": "skill_vnum1", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_level2": { + "name": "skill_level2", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_vnum2": { + "name": "skill_vnum2", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_level3": { + "name": "skill_level3", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_vnum3": { + "name": "skill_vnum3", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_level4": { + "name": "skill_level4", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_vnum4": { + "name": "skill_vnum4", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "sp_berserk": { + "name": "sp_berserk", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "sp_stoneskin": { + "name": "sp_stoneskin", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "sp_godspeed": { + "name": "sp_godspeed", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "sp_deathblow": { + "name": "sp_deathblow", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "sp_revive": { + "name": "sp_revive", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.monarch": { + "name": "monarch", + "schema": "player", + "columns": { + "empire": { + "name": "empire", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "win_at": { + "name": "win_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "money": { + "name": "money", + "type": "integer", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "monarch_player_id_player_id_fk": { + "name": "monarch_player_id_player_id_fk", + "tableFrom": "monarch", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.monarch_candidacy": { + "name": "monarch_candidacy", + "schema": "player", + "columns": { + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "date": { + "name": "date", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + }, + "name": { + "name": "name", + "type": "varchar(16)", + "primaryKey": false, + "notNull": false + }, + "win_at": { + "name": "win_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "monarch_candidacy_player_id_player_id_fk": { + "name": "monarch_candidacy_player_id_player_id_fk", + "tableFrom": "monarch_candidacy", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.monarch_election": { + "name": "monarch_election", + "schema": "player", + "columns": { + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "selected_player_id": { + "name": "selected_player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "election_at": { + "name": "election_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "monarch_election_player_id_player_id_fk": { + "name": "monarch_election_player_id_player_id_fk", + "tableFrom": "monarch_election", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "monarch_election_selected_player_id_player_id_fk": { + "name": "monarch_election_selected_player_id_player_id_fk", + "tableFrom": "monarch_election", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "selected_player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.money_log": { + "name": "money_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "money_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "type": { + "name": "type", + "type": "money_log_type", + "typeSchema": "log", + "primaryKey": false, + "notNull": false + }, + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "gold": { + "name": "gold", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": { + "money_log_type": { + "name": "money_log_type", + "columns": [ + { + "expression": "type", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.myshop_pricelist": { + "name": "myshop_pricelist", + "schema": "player", + "columns": { + "owner_id": { + "name": "owner_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "item_vnum": { + "name": "item_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "price": { + "name": "price", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "list_id": { + "name": "list_id", + "nullsNotDistinct": false, + "columns": [ + "owner_id", + "item_vnum" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.object": { + "name": "object", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "object_id_seq", + "schema": "player", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "land_id": { + "name": "land_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "map_index": { + "name": "map_index", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "x": { + "name": "x", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "y": { + "name": "y", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "x_rot": { + "name": "x_rot", + "type": "double precision", + "primaryKey": false, + "notNull": true + }, + "y_rot": { + "name": "y_rot", + "type": "double precision", + "primaryKey": false, + "notNull": true + }, + "z_rot": { + "name": "z_rot", + "type": "double precision", + "primaryKey": false, + "notNull": true + }, + "life": { + "name": "life", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.object_proto": { + "name": "object_proto", + "schema": "player", + "columns": { + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "name": { + "name": "name", + "type": "varchar(32)", + "primaryKey": false, + "notNull": true + }, + "price": { + "name": "price", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "materials": { + "name": "materials", + "type": "varchar(64)", + "primaryKey": false, + "notNull": true + }, + "upgrade_vnum": { + "name": "upgrade_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "upgrade_limit_time": { + "name": "upgrade_limit_time", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "life": { + "name": "life", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "reg_1": { + "name": "reg_1", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "reg_2": { + "name": "reg_2", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "reg_3": { + "name": "reg_3", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "reg_4": { + "name": "reg_4", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "npc": { + "name": "npc", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "group_vnum": { + "name": "group_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "dependent_group": { + "name": "dependent_group", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": { + "object_proto_vnum": { + "name": "object_proto_vnum", + "columns": [ + { + "expression": "vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "object_proto_group_vnum": { + "name": "object_proto_group_vnum", + "columns": [ + { + "expression": "group_vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "object_proto_upgrade_vnum": { + "name": "object_proto_upgrade_vnum", + "columns": [ + { + "expression": "upgrade_vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "web.password_reset_session": { + "name": "password_reset_session", + "schema": "web", + "columns": { + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true + }, + "user_id": { + "name": "user_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "email": { + "name": "email", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "code": { + "name": "code", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "expires_at": { + "name": "expires_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": { + "password_reset_session_user_id_account_id_fk": { + "name": "password_reset_session_user_id_account_id_fk", + "tableFrom": "password_reset_session", + "tableTo": "account", + "schemaTo": "account", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.player": { + "name": "player", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "player_id_seq", + "schema": "player", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "account_id": { + "name": "account_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(24)", + "primaryKey": false, + "notNull": true, + "default": "'NONAME'" + }, + "job": { + "name": "job", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "voice": { + "name": "voice", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "dir": { + "name": "dir", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "x": { + "name": "x", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "y": { + "name": "y", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "z": { + "name": "z", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "map_index": { + "name": "map_index", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "exit_x": { + "name": "exit_x", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "exit_y": { + "name": "exit_y", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "exit_map_index": { + "name": "exit_map_index", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "hp": { + "name": "hp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "mp": { + "name": "mp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "stamina": { + "name": "stamina", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "random_hp": { + "name": "random_hp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "random_sp": { + "name": "random_sp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "playtime": { + "name": "playtime", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "level": { + "name": "level", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 1 + }, + "level_step": { + "name": "level_step", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "st": { + "name": "st", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "ht": { + "name": "ht", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "dx": { + "name": "dx", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "iq": { + "name": "iq", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "exp": { + "name": "exp", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "gold": { + "name": "gold", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "stat_point": { + "name": "stat_point", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "skill_point": { + "name": "skill_point", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "quick_slot": { + "name": "quick_slot", + "type": "bytea", + "primaryKey": false, + "notNull": false + }, + "ip": { + "name": "ip", + "type": "varchar(16)", + "primaryKey": false, + "notNull": false, + "default": "'0.0.0.0'" + }, + "part_main": { + "name": "part_main", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "part_base": { + "name": "part_base", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "part_hair": { + "name": "part_hair", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "skill_group": { + "name": "skill_group", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "skill_level": { + "name": "skill_level", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "alignment": { + "name": "alignment", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "last_played_at": { + "name": "last_played_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "change_name": { + "name": "change_name", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "sub_skill_point": { + "name": "sub_skill_point", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "stat_reset_count": { + "name": "stat_reset_count", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "horse_hp": { + "name": "horse_hp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "horse_stamina": { + "name": "horse_stamina", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "horse_level": { + "name": "horse_level", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "horse_hp_droptime": { + "name": "horse_hp_droptime", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "horse_riding": { + "name": "horse_riding", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "horse_skill_point": { + "name": "horse_skill_point", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "bank_value": { + "name": "bank_value", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": { + "player_account_id": { + "name": "player_account_id", + "columns": [ + { + "expression": "account_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "player_name": { + "name": "player_name", + "columns": [ + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "player_account_id_account_id_fk": { + "name": "player_account_id_account_id_fk", + "tableFrom": "player", + "tableTo": "account", + "schemaTo": "account", + "columnsFrom": [ + "account_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.player_count": { + "name": "player_count", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "player_count_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "count_red": { + "name": "count_red", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "count_yellow": { + "name": "count_yellow", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "count_blue": { + "name": "count_blue", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "count_total": { + "name": "count_total", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.player_deleted": { + "name": "player_deleted", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "player_deleted_id_seq", + "schema": "player", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "account_id": { + "name": "account_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(24)", + "primaryKey": false, + "notNull": true, + "default": "'NONAME'" + }, + "job": { + "name": "job", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "voice": { + "name": "voice", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "dir": { + "name": "dir", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "x": { + "name": "x", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "y": { + "name": "y", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "z": { + "name": "z", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "map_index": { + "name": "map_index", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "exit_x": { + "name": "exit_x", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "exit_y": { + "name": "exit_y", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "exit_map_index": { + "name": "exit_map_index", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "hp": { + "name": "hp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "mp": { + "name": "mp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "stamina": { + "name": "stamina", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "random_hp": { + "name": "random_hp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "random_sp": { + "name": "random_sp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "playtime": { + "name": "playtime", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "level": { + "name": "level", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 1 + }, + "level_step": { + "name": "level_step", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "st": { + "name": "st", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "ht": { + "name": "ht", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "dx": { + "name": "dx", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "iq": { + "name": "iq", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "exp": { + "name": "exp", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "gold": { + "name": "gold", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "stat_point": { + "name": "stat_point", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "skill_point": { + "name": "skill_point", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "quick_slot": { + "name": "quick_slot", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "ip": { + "name": "ip", + "type": "varchar(16)", + "primaryKey": false, + "notNull": false, + "default": "'0.0.0.0'" + }, + "part_main": { + "name": "part_main", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "part_base": { + "name": "part_base", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "part_hair": { + "name": "part_hair", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "skill_group": { + "name": "skill_group", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "skill_level": { + "name": "skill_level", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "alignment": { + "name": "alignment", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "last_played_at": { + "name": "last_played_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "change_name": { + "name": "change_name", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "sub_skill_point": { + "name": "sub_skill_point", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "stat_reset_count": { + "name": "stat_reset_count", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "horse_hp": { + "name": "horse_hp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "horse_stamina": { + "name": "horse_stamina", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "horse_level": { + "name": "horse_level", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "horse_hp_droptime": { + "name": "horse_hp_droptime", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "horse_riding": { + "name": "horse_riding", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "horse_skill_point": { + "name": "horse_skill_point", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "bank_value": { + "name": "bank_value", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + } + }, + "indexes": { + "player_deleted_account_id": { + "name": "player_deleted_account_id", + "columns": [ + { + "expression": "account_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "player_deleted_name": { + "name": "player_deleted_name", + "columns": [ + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "player_deleted_account_id_account_id_fk": { + "name": "player_deleted_account_id_account_id_fk", + "tableFrom": "player_deleted", + "tableTo": "account", + "schemaTo": "account", + "columnsFrom": [ + "account_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.player_index": { + "name": "player_index", + "schema": "player", + "columns": { + "account_id": { + "name": "account_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "empire": { + "name": "empire", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "last_played_at": { + "name": "last_played_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "player_index_empire": { + "name": "player_index_empire", + "columns": [ + { + "expression": "empire", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "player_index_account_id_account_id_fk": { + "name": "player_index_account_id_account_id_fk", + "tableFrom": "player_index", + "tableTo": "account", + "schemaTo": "account", + "columnsFrom": [ + "account_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "player_index_account_id_player_id_pk": { + "name": "player_index_account_id_player_id_pk", + "columns": [ + "account_id", + "player_id" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.quest": { + "name": "quest", + "schema": "player", + "columns": { + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(32)", + "primaryKey": false, + "notNull": true + }, + "state": { + "name": "state", + "type": "varchar(64)", + "primaryKey": false, + "notNull": true + }, + "value": { + "name": "value", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": { + "quest_player_id": { + "name": "quest_player_id", + "columns": [ + { + "expression": "player_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "quest_name": { + "name": "quest_name", + "columns": [ + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "quest_state": { + "name": "quest_state", + "columns": [ + { + "expression": "state", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "quest_player_id_player_id_fk": { + "name": "quest_player_id_player_id_fk", + "tableFrom": "quest", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.quest_reward_log": { + "name": "quest_reward_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "quest_reward_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "quest_name": { + "name": "quest_name", + "type": "varchar(32)", + "primaryKey": false, + "notNull": false + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "player_level": { + "name": "player_level", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "reward_type": { + "name": "reward_type", + "type": "reward_type", + "typeSchema": "log", + "primaryKey": false, + "notNull": false + }, + "reward_value1": { + "name": "reward_value1", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "reward_value2": { + "name": "reward_value2", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": { + "quest_reward_log_player_id": { + "name": "quest_reward_log_player_id", + "columns": [ + { + "expression": "player_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.refine_log": { + "name": "refine_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "refine_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "item_name": { + "name": "item_name", + "type": "varchar(24)", + "primaryKey": false, + "notNull": true + }, + "item_id": { + "name": "item_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "step": { + "name": "step", + "type": "varchar(50)", + "primaryKey": false, + "notNull": true + }, + "is_success": { + "name": "is_success", + "type": "boolean", + "primaryKey": false, + "notNull": true + }, + "set_type": { + "name": "set_type", + "type": "refine_log_set_type", + "typeSchema": "log", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "refine_log_player_id_player_id_fk": { + "name": "refine_log_player_id_player_id_fk", + "tableFrom": "refine_log", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.refine_proto": { + "name": "refine_proto", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true + }, + "vnum_0": { + "name": "vnum_0", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "count_0": { + "name": "count_0", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "vnum_1": { + "name": "vnum_1", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "count_1": { + "name": "count_1", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "vnum_2": { + "name": "vnum_2", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "count_2": { + "name": "count_2", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "vnum_3": { + "name": "vnum_3", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "count_3": { + "name": "count_3", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "vnum_4": { + "name": "vnum_4", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "count_4": { + "name": "count_4", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "cost": { + "name": "cost", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "src_vnum": { + "name": "src_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "result_vnum": { + "name": "result_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "probability": { + "name": "probability", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 100 + } + }, + "indexes": { + "refine_proto_src_vnum": { + "name": "refine_proto_src_vnum", + "columns": [ + { + "expression": "src_vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "refine_proto_result_vnum": { + "name": "refine_proto_result_vnum", + "columns": [ + { + "expression": "result_vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.safebox": { + "name": "safebox", + "schema": "player", + "columns": { + "account_id": { + "name": "account_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "size": { + "name": "size", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "password": { + "name": "password", + "type": "varchar(6)", + "primaryKey": false, + "notNull": true + }, + "gold": { + "name": "gold", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": {}, + "foreignKeys": { + "safebox_account_id_account_id_fk": { + "name": "safebox_account_id_account_id_fk", + "tableFrom": "safebox", + "tableTo": "account", + "schemaTo": "account", + "columnsFrom": [ + "account_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "web.session": { + "name": "session", + "schema": "web", + "columns": { + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true + }, + "user_id": { + "name": "user_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "ip": { + "name": "ip", + "type": "varchar(16)", + "primaryKey": false, + "notNull": true, + "default": "'0.0.0.0'" + }, + "expires_at": { + "name": "expires_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": { + "session_user_id_account_id_fk": { + "name": "session_user_id_account_id_fk", + "tableFrom": "session", + "tableTo": "account", + "schemaTo": "account", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.shop": { + "name": "shop", + "schema": "player", + "columns": { + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": true, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(32)", + "primaryKey": false, + "notNull": true, + "default": "'NONAME'" + }, + "npc_vnum": { + "name": "npc_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true + } + }, + "indexes": { + "shop_vnum": { + "name": "shop_vnum", + "columns": [ + { + "expression": "vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.shop_item": { + "name": "shop_item", + "schema": "player", + "columns": { + "shop_vnum": { + "name": "shop_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "item_vnum": { + "name": "item_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "count": { + "name": "count", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 1 + } + }, + "indexes": { + "shop_item_item_vnum": { + "name": "shop_item_item_vnum", + "columns": [ + { + "expression": "item_vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "shop_item_shop_vnum_shop_vnum_fk": { + "name": "shop_item_shop_vnum_shop_vnum_fk", + "tableFrom": "shop_item", + "tableTo": "shop", + "schemaTo": "player", + "columnsFrom": [ + "shop_vnum" + ], + "columnsTo": [ + "vnum" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "shop_vnum_unique": { + "name": "shop_vnum_unique", + "nullsNotDistinct": false, + "columns": [ + "shop_vnum", + "item_vnum", + "count" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.shout_log": { + "name": "shout_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "shout_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "channel": { + "name": "channel", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "empire": { + "name": "empire", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "shout": { + "name": "shout", + "type": "varchar(350)", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": { + "shout_log_created_at": { + "name": "shout_log_created_at", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.skill_proto": { + "name": "skill_proto", + "schema": "player", + "columns": { + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "type": { + "name": "type", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "level_step": { + "name": "level_step", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "max_level": { + "name": "max_level", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "level_limit": { + "name": "level_limit", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "point_on": { + "name": "point_on", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true, + "default": "'0'" + }, + "point_poly": { + "name": "point_poly", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "sp_cost_poly": { + "name": "sp_cost_poly", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "duration_poly": { + "name": "duration_poly", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "duration_sp_cost_poly": { + "name": "duration_sp_cost_poly", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "cooldown_poly": { + "name": "cooldown_poly", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "master_bonus_poly": { + "name": "master_bonus_poly", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "attack_grade_poly": { + "name": "attack_grade_poly", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "set_flag": { + "name": "set_flag", + "type": "skill_proto_set_flag[]", + "primaryKey": false, + "notNull": true, + "default": "'{}'" + }, + "set_flag_bits": { + "name": "set_flag_bits", + "type": "bigint", + "primaryKey": false, + "notNull": false, + "generated": { + "as": "enum_array_to_bitmask(\"player\".\"skill_proto\".\"set_flag\")", + "type": "stored" + } + }, + "set_affect_flag": { + "name": "set_affect_flag", + "type": "skill_proto_set_affect_flag", + "typeSchema": "player", + "primaryKey": false, + "notNull": false + }, + "set_affect_flag_bits": { + "name": "set_affect_flag_bits", + "type": "bigint", + "primaryKey": false, + "notNull": false, + "generated": { + "as": "enum_to_bitmask(\"player\".\"skill_proto\".\"set_affect_flag\")", + "type": "stored" + } + }, + "point_on_2": { + "name": "point_on_2", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true, + "default": "'NONE'" + }, + "point_poly_2": { + "name": "point_poly_2", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "duration_poly_2": { + "name": "duration_poly_2", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "set_affect_flag_2": { + "name": "set_affect_flag_2", + "type": "skill_proto_set_affect_flag_2", + "typeSchema": "player", + "primaryKey": false, + "notNull": false + }, + "set_affect_flag_2_bits": { + "name": "set_affect_flag_2_bits", + "type": "bigint", + "primaryKey": false, + "notNull": false, + "generated": { + "as": "enum_to_bitmask(\"player\".\"skill_proto\".\"set_affect_flag_2\")", + "type": "stored" + } + }, + "point_on_3": { + "name": "point_on_3", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true, + "default": "'NONE'" + }, + "point_poly_3": { + "name": "point_poly_3", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "duration_poly_3": { + "name": "duration_poly_3", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "grand_master_add_sp_cost_poly": { + "name": "grand_master_add_sp_cost_poly", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "prerequisite_skill_vnum": { + "name": "prerequisite_skill_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "prerequisite_skill_level": { + "name": "prerequisite_skill_level", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "skill_type": { + "name": "skill_type", + "type": "skill_proto_skill_type", + "typeSchema": "player", + "primaryKey": false, + "notNull": true, + "default": "'NORMAL'" + }, + "skill_type_bits": { + "name": "skill_type_bits", + "type": "bigint", + "primaryKey": false, + "notNull": false, + "generated": { + "as": "enum_to_bitmask(\"player\".\"skill_proto\".\"skill_type\")", + "type": "stored" + } + }, + "max_hit": { + "name": "max_hit", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "splash_around_damage_adjust_poly": { + "name": "splash_around_damage_adjust_poly", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true, + "default": "'1'" + }, + "target_range": { + "name": "target_range", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 1000 + }, + "splash_range": { + "name": "splash_range", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "common.spam_db": { + "name": "spam_db", + "schema": "common", + "columns": { + "type": { + "name": "type", + "type": "spam_type", + "typeSchema": "common", + "primaryKey": false, + "notNull": true, + "default": "'SPAM'" + }, + "word": { + "name": "word", + "type": "varchar(256)", + "primaryKey": false, + "notNull": true + }, + "score": { + "name": "score", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 10 + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.speed_hack_log": { + "name": "speed_hack_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "speed_hack_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "x": { + "name": "x", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "y": { + "name": "y", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "hack_count": { + "name": "hack_count", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "speed_hack_log_player_id_player_id_fk": { + "name": "speed_hack_log_player_id_player_id_fk", + "tableFrom": "speed_hack_log", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + } + }, + "enums": { + "common.gm_authority": { + "name": "gm_authority", + "schema": "common", + "values": [ + "IMPLEMENTOR", + "HIGH_WIZARD", + "GOD", + "LOW_WIZARD", + "PLAYER" + ] + }, + "log.gold_log_how": { + "name": "gold_log_how", + "schema": "log", + "values": [ + "BUY", + "SELL", + "SHOP_SELL", + "SHOP_BUY", + "EXCHANGE_TAKE", + "EXCHANGE_GIVE", + "QUEST" + ] + }, + "player.guild_grade_auth": { + "name": "guild_grade_auth", + "schema": "player", + "values": [ + "ADD_MEMBER", + "REMOVE_MEMEBER", + "NOTICE", + "USE_SKILL" + ] + }, + "player.item_proto_immune_flag": { + "name": "item_proto_immune_flag", + "schema": "player", + "values": [ + "PARA", + "CURSE", + "STUN", + "SLEEP", + "SLOW", + "POISON", + "TERROR" + ] + }, + "player.item_attr_apply": { + "name": "item_attr_apply", + "schema": "player", + "values": [ + "MAX_HP", + "MAX_SP", + "CON", + "INT", + "STR", + "DEX", + "ATT_SPEED", + "MOV_SPEED", + "CAST_SPEED", + "HP_REGEN", + "SP_REGEN", + "POISON_PCT", + "STUN_PCT", + "SLOW_PCT", + "CRITICAL_PCT", + "PENETRATE_PCT", + "ATTBONUS_HUMAN", + "ATTBONUS_ANIMAL", + "ATTBONUS_ORC", + "ATTBONUS_MILGYO", + "ATTBONUS_UNDEAD", + "ATTBONUS_DEVIL", + "STEAL_HP", + "STEAL_SP", + "MANA_BURN_PCT", + "DAMAGE_SP_RECOVER", + "BLOCK", + "DODGE", + "RESIST_SWORD", + "RESIST_TWOHAND", + "RESIST_DAGGER", + "RESIST_BELL", + "RESIST_FAN", + "RESIST_BOW", + "RESIST_FIRE", + "RESIST_ELEC", + "RESIST_MAGIC", + "RESIST_WIND", + "REFLECT_MELEE", + "REFLECT_CURSE", + "POISON_REDUCE", + "KILL_SP_RECOVER", + "EXP_DOUBLE_BONUS", + "GOLD_DOUBLE_BONUS", + "ITEM_DROP_BONUS", + "POTION_BONUS", + "KILL_HP_RECOVER", + "IMMUNE_STUN", + "IMMUNE_SLOW", + "IMMUNE_FALL", + "SKILL", + "BOW_DISTANCE", + "ATT_GRADE_BONUS", + "DEF_GRADE_BONUS", + "MAGIC_ATT_GRADE", + "MAGIC_DEF_GRADE", + "CURSE_PCT", + "MAX_STAMINA", + "ATTBONUS_WARRIOR", + "ATTBONUS_ASSASSIN", + "ATTBONUS_SURA", + "ATTBONUS_SHAMAN", + "ATTBONUS_MONSTER", + "MALL_ATTBONUS", + "MALL_DEFBONUS", + "MALL_EXPBONUS", + "MALL_ITEMBONUS", + "MALL_GOLDBONUS", + "MAX_HP_PCT", + "MAX_SP_PCT", + "SKILL_DAMAGE_BONUS", + "NORMAL_HIT_DAMAGE_BONUS", + "SKILL_DEFEND_BONUS", + "NORMAL_HIT_DEFEND_BONUS", + "PC_BANG_EXP_BONUS", + "PC_BANG_DROP_BONUS", + "EXTRACT_HP_PCT", + "RESIST_WARRIOR", + "RESIST_ASSASSIN", + "RESIST_SURA", + "RESIST_SHAMAN", + "ENERGY", + "DEF_GRADE", + "COSTUME_ATTR_BONUS", + "MAGIC_ATTBONUS_PER", + "MELEE_MAGIC_ATTBONUS_PER", + "RESIST_ICE", + "RESIST_EARTH", + "RESIST_DARK", + "ANTI_CRITICAL_PCT", + "ANTI_PENETRATE_PCT" + ] + }, + "player.item_attr_rare_apply": { + "name": "item_attr_rare_apply", + "schema": "player", + "values": [ + "MAX_HP", + "MAX_SP", + "CON", + "INT", + "STR", + "DEX", + "ATT_SPEED", + "MOV_SPEED", + "CAST_SPEED", + "HP_REGEN", + "SP_REGEN", + "POISON_PCT", + "STUN_PCT", + "SLOW_PCT", + "CRITICAL_PCT", + "PENETRATE_PCT", + "ATTBONUS_HUMAN", + "ATTBONUS_ANIMAL", + "ATTBONUS_ORC", + "ATTBONUS_MILGYO", + "ATTBONUS_UNDEAD", + "ATTBONUS_DEVIL", + "STEAL_HP", + "STEAL_SP", + "MANA_BURN_PCT", + "DAMAGE_SP_RECOVER", + "BLOCK", + "DODGE", + "RESIST_SWORD", + "RESIST_TWOHAND", + "RESIST_DAGGER", + "RESIST_BELL", + "RESIST_FAN", + "RESIST_BOW", + "RESIST_FIRE", + "RESIST_ELEC", + "RESIST_MAGIC", + "RESIST_WIND", + "REFLECT_MELEE", + "REFLECT_CURSE", + "POISON_REDUCE", + "KILL_SP_RECOVER", + "EXP_DOUBLE_BONUS", + "GOLD_DOUBLE_BONUS", + "ITEM_DROP_BONUS", + "POTION_BONUS", + "KILL_HP_RECOVER", + "IMMUNE_STUN", + "IMMUNE_SLOW", + "IMMUNE_FALL", + "SKILL", + "BOW_DISTANCE", + "ATT_GRADE_BONUS", + "DEF_GRADE_BONUS", + "MAGIC_ATT_GRADE", + "MAGIC_DEF_GRADE", + "CURSE_PCT", + "MAX_STAMINA", + "ATT_BONUS_TO_WARRIOR", + "ATT_BONUS_TO_ASSASSIN", + "ATT_BONUS_TO_SURA", + "ATT_BONUS_TO_SHAMAN", + "ATT_BONUS_TO_MONSTER", + "NORMAL_HIT_DEFEND_BONUS", + "SKILL_DEFEND_BONUS", + "NOUSE2", + "NOUSE3", + "NOUSE4", + "NOUSE5", + "NOUSE6", + "NOUSE7", + "NOUSE8", + "NOUSE9", + "NOUSE10", + "NOUSE11", + "NOUSE12", + "NOUSE13", + "NOUSE14", + "RESIST_WARRIOR", + "RESIST_ASSASSIN", + "RESIST_SURA", + "RESIST_SHAMAN" + ] + }, + "player.item_window": { + "name": "item_window", + "schema": "player", + "values": [ + "INVENTORY", + "EQUIPMENT", + "SAFEBOX", + "MALL", + "DRAGON_SOUL_INVENTORY", + "BELT_INVENTORY" + ] + }, + "log.log_type": { + "name": "log_type", + "schema": "log", + "values": [ + "ITEM", + "CHARACTER" + ] + }, + "log.login_log_type": { + "name": "login_log_type", + "schema": "log", + "values": [ + "LOGIN", + "LOGOUT" + ] + }, + "player.mob_ai_flag": { + "name": "mob_ai_flag", + "schema": "player", + "values": [ + "AGGR", + "NOMOVE", + "COWARD", + "NOATTSHINSU", + "NOATTCHUNJO", + "NOATTJINNO", + "ATTMOB", + "BERSERK", + "STONESKIN", + "GODSPEED", + "DEATHBLOW", + "REVIVE" + ] + }, + "player.mob_set_immune_flag": { + "name": "mob_set_immune_flag", + "schema": "player", + "values": [ + "STUN", + "SLOW", + "FALL", + "CURSE", + "POISON", + "TERROR" + ] + }, + "player.mob_set_race_flag": { + "name": "mob_set_race_flag", + "schema": "player", + "values": [ + "ANIMAL", + "UNDEAD", + "DEVIL", + "HUMAN", + "ORC", + "MILGYO", + "INSECT", + "FIRE", + "ICE", + "DESERT", + "TREE", + "ATT_ELEC", + "ATT_FIRE", + "ATT_ICE", + "ATT_WIND", + "ATT_EARTH", + "ATT_DARK" + ] + }, + "player.mob_size": { + "name": "mob_size", + "schema": "player", + "values": [ + "SMALL", + "MEDIUM", + "BIG" + ] + }, + "log.money_log_type": { + "name": "money_log_type", + "schema": "log", + "values": [ + "MONSTER", + "SHOP", + "REFINE", + "QUEST", + "GUILD", + "MISC", + "KILL", + "DROP" + ] + }, + "log.refine_log_set_type": { + "name": "refine_log_set_type", + "schema": "log", + "values": [ + "SOCKET", + "POWER", + "ROD", + "GUILD", + "SCROLL", + "HYUNIRON", + "GOD_SCROLL", + "MUSIN_SCROLL" + ] + }, + "log.reward_type": { + "name": "reward_type", + "schema": "log", + "values": [ + "EXP", + "ITEM" + ] + }, + "player.skill_proto_set_affect_flag": { + "name": "skill_proto_set_affect_flag", + "schema": "player", + "values": [ + "YMIR", + "INVISIBILITY", + "SPAWN", + "POISON", + "SLOW", + "STUN", + "DUNGEON_READY", + "FORCE_VISIBLE", + "BUILDING_CONSTRUCTION_SMALL", + "BUILDING_CONSTRUCTION_LARGE", + "BUILDING_UPGRADE", + "MOV_SPEED_POTION", + "ATT_SPEED_POTION", + "FISH_MIDE", + "JEONGWIHON", + "GEOMGYEONG", + "CHEONGEUN", + "GYEONGGONG", + "EUNHYUNG", + "GWIGUM", + "TERROR", + "JUMAGAP", + "HOSIN", + "BOHO", + "KWAESOK", + "MANASHIELD", + "MUYEONG", + "REVIVE_INVISIBLE", + "FIRE", + "GICHEON", + "JEUNGRYEOK" + ] + }, + "player.skill_proto_set_affect_flag_2": { + "name": "skill_proto_set_affect_flag_2", + "schema": "player", + "values": [ + "YMIR", + "INVISIBILITY", + "SPAWN", + "POISON", + "SLOW", + "STUN", + "DUNGEON_READY", + "FORCE_VISIBLE", + "BUILDING_CONSTRUCTION_SMALL", + "BUILDING_CONSTRUCTION_LARGE", + "BUILDING_UPGRADE", + "MOV_SPEED_POTION", + "ATT_SPEED_POTION", + "FISH_MIDE", + "JEONGWIHON", + "GEOMGYEONG", + "CHEONGEUN", + "GYEONGGONG", + "EUNHYUNG", + "GWIGUM", + "TERROR", + "JUMAGAP", + "HOSIN", + "BOHO", + "KWAESOK", + "MANASHIELD" + ] + }, + "player.skill_proto_set_flag": { + "name": "skill_proto_set_flag", + "schema": "player", + "values": [ + "ATTACK", + "USE_MELEE_DAMAGE", + "COMPUTE_ATTGRADE", + "SELFONLY", + "USE_MAGIC_DAMAGE", + "USE_HP_AS_COST", + "COMPUTE_MAGIC_DAMAGE", + "SPLASH", + "GIVE_PENALTY", + "USE_ARROW_DAMAGE", + "PENETRATE", + "IGNORE_TARGET_RATING", + "ATTACK_SLOW", + "ATTACK_STUN", + "HP_ABSORB", + "SP_ABSORB", + "ATTACK_FIRE_CONT", + "REMOVE_BAD_AFFECT", + "REMOVE_GOOD_AFFECT", + "CRUSH", + "ATTACK_POISON", + "TOGGLE", + "DISABLE_BY_POINT_UP", + "CRUSH_LONG" + ] + }, + "player.skill_proto_skill_type": { + "name": "skill_proto_skill_type", + "schema": "player", + "values": [ + "NORMAL", + "MELEE", + "RANGE", + "MAGIC" + ] + }, + "common.spam_type": { + "name": "spam_type", + "schema": "common", + "values": [ + "GOOD", + "SPAM" + ] + } + }, + "schemas": { + "account": "account", + "common": "common", + "log": "log", + "player": "player", + "web": "web" + }, + "sequences": {}, + "roles": {}, + "policies": {}, + "views": {}, + "_meta": { + "columns": {}, + "schemas": {}, + "tables": {} + } +} \ No newline at end of file diff --git a/drizzle/meta/0004_snapshot.json b/drizzle/meta/0004_snapshot.json new file mode 100644 index 0000000..ab05f5c --- /dev/null +++ b/drizzle/meta/0004_snapshot.json @@ -0,0 +1,7032 @@ +{ + "id": "eaa3e55d-2ec1-4695-b294-878e27e5f2c7", + "prevId": "b2190459-5f76-4356-ace7-01a59190976a", + "version": "7", + "dialect": "postgresql", + "tables": { + "account.account": { + "name": "account", + "schema": "account", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "account_id_seq", + "schema": "account", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "login": { + "name": "login", + "type": "varchar(30)", + "primaryKey": false, + "notNull": true + }, + "password": { + "name": "password", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "social_id": { + "name": "social_id", + "type": "varchar(13)", + "primaryKey": false, + "notNull": true + }, + "email": { + "name": "email", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "status": { + "name": "status", + "type": "varchar(8)", + "primaryKey": false, + "notNull": true, + "default": "'OK'" + }, + "security_code": { + "name": "security_code", + "type": "varchar(192)", + "primaryKey": false, + "notNull": false + }, + "available_dt": { + "name": "available_dt", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "mileage": { + "name": "mileage", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "cash": { + "name": "cash", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "gold_expired_at": { + "name": "gold_expired_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "silver_expired_at": { + "name": "silver_expired_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "safebox_expired_at": { + "name": "safebox_expired_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "autoloot_expired_at": { + "name": "autoloot_expired_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "fish_mind_expired_at": { + "name": "fish_mind_expired_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "marriage_fast_expired_at": { + "name": "marriage_fast_expired_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "money_drop_rate_expired_at": { + "name": "money_drop_rate_expired_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "ip": { + "name": "ip", + "type": "varchar(16)", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "last_played_at": { + "name": "last_played_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "account_social_id": { + "name": "account_social_id", + "columns": [ + { + "expression": "social_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "account_login": { + "name": "account_login", + "nullsNotDistinct": false, + "columns": [ + "login" + ] + }, + "account_email": { + "name": "account_email", + "nullsNotDistinct": false, + "columns": [ + "email" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.affect": { + "name": "affect", + "schema": "player", + "columns": { + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "type": { + "name": "type", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "apply_on": { + "name": "apply_on", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "apply_value": { + "name": "apply_value", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "flag": { + "name": "flag", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "duration": { + "name": "duration", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "sp_cost": { + "name": "sp_cost", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": {}, + "foreignKeys": { + "affect_player_id_player_id_fk": { + "name": "affect_player_id_player_id_fk", + "tableFrom": "affect", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.banword": { + "name": "banword", + "schema": "player", + "columns": { + "word": { + "name": "word", + "type": "text", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.boot_log": { + "name": "boot_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "boot_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "hostname": { + "name": "hostname", + "type": "char(128)", + "primaryKey": false, + "notNull": true, + "default": "'UNKNOWN'" + }, + "channel": { + "name": "channel", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.change_empire": { + "name": "change_empire", + "schema": "player", + "columns": { + "account_id": { + "name": "account_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "change_count": { + "name": "change_count", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "change_empire_account_id_account_id_fk": { + "name": "change_empire_account_id_account_id_fk", + "tableFrom": "change_empire", + "tableTo": "account", + "schemaTo": "account", + "columnsFrom": [ + "account_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.change_name": { + "name": "change_name", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "change_name_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "old_name": { + "name": "old_name", + "type": "varchar(191)", + "primaryKey": false, + "notNull": false + }, + "new_name": { + "name": "new_name", + "type": "varchar(191)", + "primaryKey": false, + "notNull": false + }, + "ip": { + "name": "ip", + "type": "varchar(16)", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "change_name_player_id_player_id_fk": { + "name": "change_name_player_id_player_id_fk", + "tableFrom": "change_name", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.command_log": { + "name": "command_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "command_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "server": { + "name": "server", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "ip": { + "name": "ip", + "type": "varchar(16)", + "primaryKey": false, + "notNull": true + }, + "port": { + "name": "port", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "username": { + "name": "username", + "type": "varchar(50)", + "primaryKey": false, + "notNull": true + }, + "command": { + "name": "command", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "command_log_player_id_player_id_fk": { + "name": "command_log_player_id_player_id_fk", + "tableFrom": "command_log", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.cube_log": { + "name": "cube_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "cube_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "x": { + "name": "x", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "y": { + "name": "y", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "item_vnum": { + "name": "item_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "item_uid": { + "name": "item_uid", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "item_count": { + "name": "item_count", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "success": { + "name": "success", + "type": "boolean", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": { + "cube_log_player_id": { + "name": "cube_log_player_id", + "columns": [ + { + "expression": "player_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "cube_log_item_vnum": { + "name": "cube_log_item_vnum", + "columns": [ + { + "expression": "item_vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "cube_log_item_uid": { + "name": "cube_log_item_uid", + "columns": [ + { + "expression": "item_uid", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.dragon_slay_log": { + "name": "dragon_slay_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "dragon_slay_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "guild_id": { + "name": "guild_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "start_time": { + "name": "start_time", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "end_time": { + "name": "end_time", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.fish_log": { + "name": "fish_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "fish_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "map_index": { + "name": "map_index", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "fish_id": { + "name": "fish_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "fishing_level": { + "name": "fishing_level", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "waiting_time": { + "name": "waiting_time", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "success": { + "name": "success", + "type": "boolean", + "primaryKey": false, + "notNull": true + }, + "size": { + "name": "size", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "fish_log_player_id_player_id_fk": { + "name": "fish_log_player_id_player_id_fk", + "tableFrom": "fish_log", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "common.gm_host": { + "name": "gm_host", + "schema": "common", + "columns": { + "ip": { + "name": "ip", + "type": "varchar(16)", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "common.gm_list": { + "name": "gm_list", + "schema": "common", + "columns": { + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "contact_ip": { + "name": "contact_ip", + "type": "varchar(16)", + "primaryKey": false, + "notNull": true + }, + "server_ip": { + "name": "server_ip", + "type": "varchar(16)", + "primaryKey": false, + "notNull": true, + "default": "'ALL'" + }, + "authority": { + "name": "authority", + "type": "gm_authority", + "typeSchema": "common", + "primaryKey": false, + "notNull": false, + "default": "'PLAYER'" + } + }, + "indexes": {}, + "foreignKeys": { + "gm_list_player_id_player_id_fk": { + "name": "gm_list_player_id_player_id_fk", + "tableFrom": "gm_list", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.gold_log": { + "name": "gold_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "gold_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "what": { + "name": "what", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "how": { + "name": "how", + "type": "gold_log_how", + "typeSchema": "log", + "primaryKey": false, + "notNull": true + }, + "hint": { + "name": "hint", + "type": "varchar(50)", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": { + "gold_log_created_at": { + "name": "gold_log_created_at", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "gold_log_player_id": { + "name": "gold_log_player_id", + "columns": [ + { + "expression": "player_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "gold_log_what": { + "name": "gold_log_what", + "columns": [ + { + "expression": "what", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "gold_log_how": { + "name": "gold_log_how", + "columns": [ + { + "expression": "how", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "gold_log_player_id_player_id_fk": { + "name": "gold_log_player_id_player_id_fk", + "tableFrom": "gold_log", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.guild": { + "name": "guild", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "guild_id_seq", + "schema": "player", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "name": { + "name": "name", + "type": "varchar(12)", + "primaryKey": false, + "notNull": true + }, + "sp": { + "name": "sp", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 1000 + }, + "master": { + "name": "master", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "level": { + "name": "level", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "exp": { + "name": "exp", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_point": { + "name": "skill_point", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "skill": { + "name": "skill", + "type": "bytea", + "primaryKey": false, + "notNull": false + }, + "win": { + "name": "win", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "draw": { + "name": "draw", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "loss": { + "name": "loss", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "ladder_point": { + "name": "ladder_point", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "gold": { + "name": "gold", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.guild_comment": { + "name": "guild_comment", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "guild_comment_id_seq", + "schema": "player", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "guild_id": { + "name": "guild_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(8)", + "primaryKey": false, + "notNull": false + }, + "notice": { + "name": "notice", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "content": { + "name": "content", + "type": "varchar(50)", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": { + "aaa": { + "name": "aaa", + "columns": [ + { + "expression": "notice", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "id", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "guild_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "guild_comment_guild_id": { + "name": "guild_comment_guild_id", + "columns": [ + { + "expression": "guild_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "guild_comment_guild_id_guild_id_fk": { + "name": "guild_comment_guild_id_guild_id_fk", + "tableFrom": "guild_comment", + "tableTo": "guild", + "schemaTo": "player", + "columnsFrom": [ + "guild_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.guild_grade": { + "name": "guild_grade", + "schema": "player", + "columns": { + "guild_id": { + "name": "guild_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "grade": { + "name": "grade", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "name": { + "name": "name", + "type": "varchar(8)", + "primaryKey": false, + "notNull": true + }, + "auth": { + "name": "auth", + "type": "guild_grade_auth[]", + "primaryKey": false, + "notNull": true, + "default": "'{}'" + }, + "auth_bits": { + "name": "auth_bits", + "type": "bigint", + "primaryKey": false, + "notNull": false, + "generated": { + "as": "enum_array_to_bitmask(\"player\".\"guild_grade\".\"auth\")", + "type": "stored" + } + } + }, + "indexes": {}, + "foreignKeys": { + "guild_grade_guild_id_guild_id_fk": { + "name": "guild_grade_guild_id_guild_id_fk", + "tableFrom": "guild_grade", + "tableTo": "guild", + "schemaTo": "player", + "columnsFrom": [ + "guild_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.guild_member": { + "name": "guild_member", + "schema": "player", + "columns": { + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "guild_id": { + "name": "guild_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "grade": { + "name": "grade", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "is_general": { + "name": "is_general", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "offer": { + "name": "offer", + "type": "integer", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "guild_member_player_id_player_id_fk": { + "name": "guild_member_player_id_player_id_fk", + "tableFrom": "guild_member", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "guild_member_guild_id_guild_id_fk": { + "name": "guild_member_guild_id_guild_id_fk", + "tableFrom": "guild_member", + "tableTo": "guild", + "schemaTo": "player", + "columnsFrom": [ + "guild_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "guild_member_player_id_guild_id_pk": { + "name": "guild_member_player_id_guild_id_pk", + "columns": [ + "player_id", + "guild_id" + ] + } + }, + "uniqueConstraints": { + "player_id": { + "name": "player_id", + "nullsNotDistinct": false, + "columns": [ + "player_id" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.guild_war_bet": { + "name": "guild_war_bet", + "schema": "player", + "columns": { + "login": { + "name": "login", + "type": "varchar(24)", + "primaryKey": false, + "notNull": true + }, + "gold": { + "name": "gold", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "guild_id": { + "name": "guild_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "war_id": { + "name": "war_id", + "type": "integer", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": { + "guild_war_bet_guild_id_guild_id_fk": { + "name": "guild_war_bet_guild_id_guild_id_fk", + "tableFrom": "guild_war_bet", + "tableTo": "guild", + "schemaTo": "player", + "columnsFrom": [ + "guild_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "guild_war_bet_war_id_guild_war_reservation_id_fk": { + "name": "guild_war_bet_war_id_guild_war_reservation_id_fk", + "tableFrom": "guild_war_bet", + "tableTo": "guild_war_reservation", + "schemaTo": "player", + "columnsFrom": [ + "war_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.guild_war_reservation": { + "name": "guild_war_reservation", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "guild_war_reservation_id_seq", + "schema": "player", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "guild1": { + "name": "guild1", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "guild2": { + "name": "guild2", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "type": { + "name": "type", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "warprice": { + "name": "warprice", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "initial_score": { + "name": "initial_score", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "started": { + "name": "started", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "bet_from": { + "name": "bet_from", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "bet_to": { + "name": "bet_to", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "winner": { + "name": "winner", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": -1 + }, + "power_from": { + "name": "power_from", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "power_to": { + "name": "power_to", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "handicap": { + "name": "handicap", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "result_1": { + "name": "result_1", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "result_2": { + "name": "result_2", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "started_at": { + "name": "started_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "guild_war_reservation_guild1_guild_id_fk": { + "name": "guild_war_reservation_guild1_guild_id_fk", + "tableFrom": "guild_war_reservation", + "tableTo": "guild", + "schemaTo": "player", + "columnsFrom": [ + "guild1" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "guild_war_reservation_guild2_guild_id_fk": { + "name": "guild_war_reservation_guild2_guild_id_fk", + "tableFrom": "guild_war_reservation", + "tableTo": "guild", + "schemaTo": "player", + "columnsFrom": [ + "guild2" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.hack_log": { + "name": "hack_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "hack_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "login": { + "name": "login", + "type": "char(16)", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "char(24)", + "primaryKey": false, + "notNull": true + }, + "ip": { + "name": "ip", + "type": "char(15)", + "primaryKey": false, + "notNull": true + }, + "server": { + "name": "server", + "type": "char(100)", + "primaryKey": false, + "notNull": true + }, + "why": { + "name": "why", + "type": "char(191)", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.horse_name": { + "name": "horse_name", + "schema": "player", + "columns": { + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(24)", + "primaryKey": false, + "notNull": true, + "default": "'NONAME'" + } + }, + "indexes": {}, + "foreignKeys": { + "horse_name_player_id_player_id_fk": { + "name": "horse_name_player_id_player_id_fk", + "tableFrom": "horse_name", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.item": { + "name": "item", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "item_id_seq", + "schema": "player", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "owner_id": { + "name": "owner_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "window": { + "name": "window", + "type": "item_window", + "typeSchema": "player", + "primaryKey": false, + "notNull": true, + "default": "'INVENTORY'" + }, + "position": { + "name": "position", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "count": { + "name": "count", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "socket_0": { + "name": "socket_0", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "socket_1": { + "name": "socket_1", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "socket_2": { + "name": "socket_2", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "socket_3": { + "name": "socket_3", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "socket_4": { + "name": "socket_4", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "socket_5": { + "name": "socket_5", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_type_0": { + "name": "attr_type_0", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_value_0": { + "name": "attr_value_0", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_type_1": { + "name": "attr_type_1", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_value_1": { + "name": "attr_value_1", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_type_2": { + "name": "attr_type_2", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_value_2": { + "name": "attr_value_2", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_type_3": { + "name": "attr_type_3", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_value_3": { + "name": "attr_value_3", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_type_4": { + "name": "attr_type_4", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_value_4": { + "name": "attr_value_4", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_type_5": { + "name": "attr_type_5", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_value_5": { + "name": "attr_value_5", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_type_6": { + "name": "attr_type_6", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "attr_value_6": { + "name": "attr_value_6", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": { + "item_owner_id": { + "name": "item_owner_id", + "columns": [ + { + "expression": "owner_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "item_window": { + "name": "item_window", + "columns": [ + { + "expression": "window", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "item_vnum": { + "name": "item_vnum", + "columns": [ + { + "expression": "vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.item_attr": { + "name": "item_attr", + "schema": "player", + "columns": { + "apply": { + "name": "apply", + "type": "item_attr_apply", + "typeSchema": "player", + "primaryKey": false, + "notNull": true, + "default": "'MAX_HP'" + }, + "probability": { + "name": "probability", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_1": { + "name": "lvl_1", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_2": { + "name": "lvl_2", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_3": { + "name": "lvl_3", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_4": { + "name": "lvl_4", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_5": { + "name": "lvl_5", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "weapon": { + "name": "weapon", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "body": { + "name": "body", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "wrist": { + "name": "wrist", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "foots": { + "name": "foots", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "neck": { + "name": "neck", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "head": { + "name": "head", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "shield": { + "name": "shield", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "ear": { + "name": "ear", + "type": "integer", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.item_attr_rare": { + "name": "item_attr_rare", + "schema": "player", + "columns": { + "apply": { + "name": "apply", + "type": "item_attr_rare_apply", + "typeSchema": "player", + "primaryKey": false, + "notNull": true, + "default": "'MAX_HP'" + }, + "probability": { + "name": "probability", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_1": { + "name": "lvl_1", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_2": { + "name": "lvl_2", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_3": { + "name": "lvl_3", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_4": { + "name": "lvl_4", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "lvl_5": { + "name": "lvl_5", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "weapon": { + "name": "weapon", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "body": { + "name": "body", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "wrist": { + "name": "wrist", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "foots": { + "name": "foots", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "neck": { + "name": "neck", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "head": { + "name": "head", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "shield": { + "name": "shield", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "ear": { + "name": "ear", + "type": "integer", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.item_award": { + "name": "item_award", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "item_award_id_seq", + "schema": "player", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "login": { + "name": "login", + "type": "varchar(30)", + "primaryKey": false, + "notNull": true + }, + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "count": { + "name": "count", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "give_at": { + "name": "give_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "taken_at": { + "name": "taken_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "item_id": { + "name": "item_id", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "why": { + "name": "why", + "type": "varchar(128)", + "primaryKey": false, + "notNull": false + }, + "socket_0": { + "name": "socket_0", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "socket_1": { + "name": "socket_1", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "socket_2": { + "name": "socket_2", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "mall": { + "name": "mall", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": { + "item_award_player_id": { + "name": "item_award_player_id", + "columns": [ + { + "expression": "player_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "item_award_given_at": { + "name": "item_award_given_at", + "columns": [ + { + "expression": "give_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "item_award_taken_at": { + "name": "item_award_taken_at", + "columns": [ + { + "expression": "taken_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "item_award_player_id_player_id_fk": { + "name": "item_award_player_id_player_id_fk", + "tableFrom": "item_award", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.item_proto": { + "name": "item_proto", + "schema": "player", + "columns": { + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "locale_name": { + "name": "locale_name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "type": { + "name": "type", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "sub_type": { + "name": "sub_type", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "weight": { + "name": "weight", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "size": { + "name": "size", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "anti_flag": { + "name": "anti_flag", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "flag": { + "name": "flag", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "wear_flag": { + "name": "wear_flag", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "immune_flag": { + "name": "immune_flag", + "type": "item_proto_immune_flag[]", + "primaryKey": false, + "notNull": true, + "default": "'{}'" + }, + "gold": { + "name": "gold", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "shop_buy_price": { + "name": "shop_buy_price", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "refined_vnum": { + "name": "refined_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "refine_set": { + "name": "refine_set", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "refine_set2": { + "name": "refine_set2", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "magic_percentage": { + "name": "magic_percentage", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "limit_type_0": { + "name": "limit_type_0", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "limit_value_0": { + "name": "limit_value_0", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "limit_type_1": { + "name": "limit_type_1", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "limit_value_1": { + "name": "limit_value_1", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "apply_type_0": { + "name": "apply_type_0", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "apply_value_0": { + "name": "apply_value_0", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "apply_type_1": { + "name": "apply_type_1", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "apply_value_1": { + "name": "apply_value_1", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "apply_type_2": { + "name": "apply_type_2", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "apply_value_2": { + "name": "apply_value_2", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "value_0": { + "name": "value_0", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "value_1": { + "name": "value_1", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "value_2": { + "name": "value_2", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "value_3": { + "name": "value_3", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "value_4": { + "name": "value_4", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "value_5": { + "name": "value_5", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + }, + "socket_0": { + "name": "socket_0", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": -1 + }, + "socket_1": { + "name": "socket_1", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": -1 + }, + "socket_2": { + "name": "socket_2", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": -1 + }, + "socket_3": { + "name": "socket_3", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": -1 + }, + "socket_4": { + "name": "socket_4", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": -1 + }, + "socket_5": { + "name": "socket_5", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": -1 + }, + "specular": { + "name": "specular", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "socket_percentage": { + "name": "socket_percentage", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "addon_type": { + "name": "addon_type", + "type": "integer", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.land": { + "name": "land", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true + }, + "map_index": { + "name": "map_index", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "x": { + "name": "x", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "y": { + "name": "y", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "width": { + "name": "width", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "height": { + "name": "height", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "guild_id": { + "name": "guild_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "guild_level_limit": { + "name": "guild_level_limit", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "price": { + "name": "price", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "enabled": { + "name": "enabled", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.level_log": { + "name": "level_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "level_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "name": { + "name": "name", + "type": "char(24)", + "primaryKey": false, + "notNull": true + }, + "level": { + "name": "level", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "playtime": { + "name": "playtime", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "level_log_player_id_player_id_fk": { + "name": "level_log_player_id_player_id_fk", + "tableFrom": "level_log", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "common.locale": { + "name": "locale", + "schema": "common", + "columns": { + "key": { + "name": "key", + "type": "varchar(191)", + "primaryKey": false, + "notNull": true + }, + "value": { + "name": "value", + "type": "varchar(191)", + "primaryKey": false, + "notNull": true + } + }, + "indexes": { + "locale_key": { + "name": "locale_key", + "columns": [ + { + "expression": "key", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.log": { + "name": "log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "type": { + "name": "type", + "type": "log_type", + "typeSchema": "log", + "primaryKey": false, + "notNull": true, + "default": "'ITEM'" + }, + "who": { + "name": "who", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "x": { + "name": "x", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "y": { + "name": "y", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "what": { + "name": "what", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "how": { + "name": "how", + "type": "varchar(50)", + "primaryKey": false, + "notNull": true + }, + "hint": { + "name": "hint", + "type": "varchar(70)", + "primaryKey": false, + "notNull": false + }, + "ip": { + "name": "ip", + "type": "varchar(16)", + "primaryKey": false, + "notNull": false + }, + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": { + "log_who": { + "name": "log_who", + "columns": [ + { + "expression": "who", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "log_what": { + "name": "log_what", + "columns": [ + { + "expression": "what", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "log_how": { + "name": "log_how", + "columns": [ + { + "expression": "how", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.login_log": { + "name": "login_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "login_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "type": { + "name": "type", + "type": "login_log_type", + "typeSchema": "log", + "primaryKey": false, + "notNull": false + }, + "channel": { + "name": "channel", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "account_id": { + "name": "account_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "level": { + "name": "level", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "job": { + "name": "job", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "playtime": { + "name": "playtime", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": { + "login_log_player_id": { + "name": "login_log_player_id", + "columns": [ + { + "expression": "player_id", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "type", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "login_log_account_id_account_id_fk": { + "name": "login_log_account_id_account_id_fk", + "tableFrom": "login_log", + "tableTo": "account", + "schemaTo": "account", + "columnsFrom": [ + "account_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "login_log_player_id_player_id_fk": { + "name": "login_log_player_id_player_id_fk", + "tableFrom": "login_log", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.login_log_2": { + "name": "login_log_2", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "login_log_2_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "type": { + "name": "type", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "is_gm": { + "name": "is_gm", + "type": "boolean", + "primaryKey": false, + "notNull": false + }, + "channel": { + "name": "channel", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "account_id": { + "name": "account_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "ip": { + "name": "ip", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "client_version": { + "name": "client_version", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "playtime": { + "name": "playtime", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "login_at": { + "name": "login_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "logout_at": { + "name": "logout_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "login_log_2_account_id_account_id_fk": { + "name": "login_log_2_account_id_account_id_fk", + "tableFrom": "login_log_2", + "tableTo": "account", + "schemaTo": "account", + "columnsFrom": [ + "account_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "login_log_2_player_id_player_id_fk": { + "name": "login_log_2_player_id_player_id_fk", + "tableFrom": "login_log_2", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.lotto_list": { + "name": "lotto_list", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "lotto_list_id_seq", + "schema": "player", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "server": { + "name": "server", + "type": "varchar(20)", + "primaryKey": false, + "notNull": false + }, + "playerId": { + "name": "playerId", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "lotto_list_playerId_player_id_fk": { + "name": "lotto_list_playerId_player_id_fk", + "tableFrom": "lotto_list", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "playerId" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.marriage": { + "name": "marriage", + "schema": "player", + "columns": { + "is_married": { + "name": "is_married", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "player_id_1": { + "name": "player_id_1", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "player_id_2": { + "name": "player_id_2", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "love_points": { + "name": "love_points", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "marriage_player_id_1_player_id_fk": { + "name": "marriage_player_id_1_player_id_fk", + "tableFrom": "marriage", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id_1" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "marriage_player_id_2_player_id_fk": { + "name": "marriage_player_id_2_player_id_fk", + "tableFrom": "marriage", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id_2" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.messenger_list": { + "name": "messenger_list", + "schema": "player", + "columns": { + "account": { + "name": "account", + "type": "varchar(16)", + "primaryKey": false, + "notNull": true + }, + "companion": { + "name": "companion", + "type": "varchar(16)", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.mob_proto": { + "name": "mob_proto", + "schema": "player", + "columns": { + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "locale_name": { + "name": "locale_name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "rank": { + "name": "rank", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "type": { + "name": "type", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "battle_type": { + "name": "battle_type", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "level": { + "name": "level", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 1 + }, + "size": { + "name": "size", + "type": "mob_size", + "typeSchema": "player", + "primaryKey": false, + "notNull": false, + "default": "'SMALL'" + }, + "ai_flag": { + "name": "ai_flag", + "type": "mob_ai_flag[]", + "primaryKey": false, + "notNull": true, + "default": "'{}'" + }, + "mount_capacity": { + "name": "mount_capacity", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "set_race_flag": { + "name": "set_race_flag", + "type": "mob_set_race_flag", + "typeSchema": "player", + "primaryKey": false, + "notNull": true + }, + "set_immune_flag": { + "name": "set_immune_flag", + "type": "mob_set_immune_flag", + "typeSchema": "player", + "primaryKey": false, + "notNull": false + }, + "empire": { + "name": "empire", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "folder": { + "name": "folder", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "on_click": { + "name": "on_click", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "st": { + "name": "st", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "dx": { + "name": "dx", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "ht": { + "name": "ht", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "iq": { + "name": "iq", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "damage_min": { + "name": "damage_min", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "damage_max": { + "name": "damage_max", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "max_hp": { + "name": "max_hp", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "regen_cycle": { + "name": "regen_cycle", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "regen_percent": { + "name": "regen_percent", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "gold_min": { + "name": "gold_min", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "gold_max": { + "name": "gold_max", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "exp": { + "name": "exp", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "def": { + "name": "def", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "attack_speed": { + "name": "attack_speed", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 100 + }, + "move_speed": { + "name": "move_speed", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 100 + }, + "aggressive_hp_percentage": { + "name": "aggressive_hp_percentage", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "aggressive_sight": { + "name": "aggressive_sight", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "attack_range": { + "name": "attack_range", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "drop_item": { + "name": "drop_item", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resurrection_vnum": { + "name": "resurrection_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "enchant_curse": { + "name": "enchant_curse", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "enchant_slow": { + "name": "enchant_slow", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "enchant_poison": { + "name": "enchant_poison", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "enchant_stun": { + "name": "enchant_stun", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "enchant_critical": { + "name": "enchant_critical", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "enchant_penetrate": { + "name": "enchant_penetrate", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_sword": { + "name": "resist_sword", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_twohand": { + "name": "resist_twohand", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_dagger": { + "name": "resist_dagger", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_bell": { + "name": "resist_bell", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_fan": { + "name": "resist_fan", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_bow": { + "name": "resist_bow", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_fire": { + "name": "resist_fire", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_elect": { + "name": "resist_elect", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_magic": { + "name": "resist_magic", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_wind": { + "name": "resist_wind", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "resist_poison": { + "name": "resist_poison", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "dam_multiply": { + "name": "dam_multiply", + "type": "double precision", + "primaryKey": false, + "notNull": false + }, + "summon": { + "name": "summon", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "drain_sp": { + "name": "drain_sp", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "mob_color": { + "name": "mob_color", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "polymorph_item": { + "name": "polymorph_item", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "skill_level0": { + "name": "skill_level0", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_vnum0": { + "name": "skill_vnum0", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_level1": { + "name": "skill_level1", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_vnum1": { + "name": "skill_vnum1", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_level2": { + "name": "skill_level2", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_vnum2": { + "name": "skill_vnum2", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_level3": { + "name": "skill_level3", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_vnum3": { + "name": "skill_vnum3", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_level4": { + "name": "skill_level4", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "skill_vnum4": { + "name": "skill_vnum4", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "sp_berserk": { + "name": "sp_berserk", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "sp_stoneskin": { + "name": "sp_stoneskin", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "sp_godspeed": { + "name": "sp_godspeed", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "sp_deathblow": { + "name": "sp_deathblow", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "sp_revive": { + "name": "sp_revive", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.monarch": { + "name": "monarch", + "schema": "player", + "columns": { + "empire": { + "name": "empire", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "win_at": { + "name": "win_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "money": { + "name": "money", + "type": "integer", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "monarch_player_id_player_id_fk": { + "name": "monarch_player_id_player_id_fk", + "tableFrom": "monarch", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.monarch_candidacy": { + "name": "monarch_candidacy", + "schema": "player", + "columns": { + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "date": { + "name": "date", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + }, + "name": { + "name": "name", + "type": "varchar(16)", + "primaryKey": false, + "notNull": false + }, + "win_at": { + "name": "win_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "monarch_candidacy_player_id_player_id_fk": { + "name": "monarch_candidacy_player_id_player_id_fk", + "tableFrom": "monarch_candidacy", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.monarch_election": { + "name": "monarch_election", + "schema": "player", + "columns": { + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "selected_player_id": { + "name": "selected_player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "election_at": { + "name": "election_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "monarch_election_player_id_player_id_fk": { + "name": "monarch_election_player_id_player_id_fk", + "tableFrom": "monarch_election", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "monarch_election_selected_player_id_player_id_fk": { + "name": "monarch_election_selected_player_id_player_id_fk", + "tableFrom": "monarch_election", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "selected_player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.money_log": { + "name": "money_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "money_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "type": { + "name": "type", + "type": "money_log_type", + "typeSchema": "log", + "primaryKey": false, + "notNull": false + }, + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "gold": { + "name": "gold", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": { + "money_log_type": { + "name": "money_log_type", + "columns": [ + { + "expression": "type", + "isExpression": false, + "asc": true, + "nulls": "last" + }, + { + "expression": "vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.myshop_pricelist": { + "name": "myshop_pricelist", + "schema": "player", + "columns": { + "owner_id": { + "name": "owner_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "item_vnum": { + "name": "item_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "price": { + "name": "price", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "list_id": { + "name": "list_id", + "nullsNotDistinct": false, + "columns": [ + "owner_id", + "item_vnum" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.object": { + "name": "object", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "object_id_seq", + "schema": "player", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "land_id": { + "name": "land_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "map_index": { + "name": "map_index", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "x": { + "name": "x", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "y": { + "name": "y", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "x_rot": { + "name": "x_rot", + "type": "double precision", + "primaryKey": false, + "notNull": true + }, + "y_rot": { + "name": "y_rot", + "type": "double precision", + "primaryKey": false, + "notNull": true + }, + "z_rot": { + "name": "z_rot", + "type": "double precision", + "primaryKey": false, + "notNull": true + }, + "life": { + "name": "life", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.object_proto": { + "name": "object_proto", + "schema": "player", + "columns": { + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "name": { + "name": "name", + "type": "varchar(32)", + "primaryKey": false, + "notNull": true + }, + "price": { + "name": "price", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "materials": { + "name": "materials", + "type": "varchar(64)", + "primaryKey": false, + "notNull": true + }, + "upgrade_vnum": { + "name": "upgrade_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "upgrade_limit_time": { + "name": "upgrade_limit_time", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "life": { + "name": "life", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "reg_1": { + "name": "reg_1", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "reg_2": { + "name": "reg_2", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "reg_3": { + "name": "reg_3", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "reg_4": { + "name": "reg_4", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "npc": { + "name": "npc", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "group_vnum": { + "name": "group_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "dependent_group": { + "name": "dependent_group", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": { + "object_proto_vnum": { + "name": "object_proto_vnum", + "columns": [ + { + "expression": "vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "object_proto_group_vnum": { + "name": "object_proto_group_vnum", + "columns": [ + { + "expression": "group_vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "object_proto_upgrade_vnum": { + "name": "object_proto_upgrade_vnum", + "columns": [ + { + "expression": "upgrade_vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "web.password_reset_session": { + "name": "password_reset_session", + "schema": "web", + "columns": { + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true + }, + "user_id": { + "name": "user_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "email": { + "name": "email", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "code": { + "name": "code", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "expires_at": { + "name": "expires_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": { + "password_reset_session_user_id_account_id_fk": { + "name": "password_reset_session_user_id_account_id_fk", + "tableFrom": "password_reset_session", + "tableTo": "account", + "schemaTo": "account", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.player": { + "name": "player", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "player_id_seq", + "schema": "player", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "account_id": { + "name": "account_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(24)", + "primaryKey": false, + "notNull": true, + "default": "'NONAME'" + }, + "job": { + "name": "job", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "voice": { + "name": "voice", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "dir": { + "name": "dir", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "x": { + "name": "x", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "y": { + "name": "y", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "z": { + "name": "z", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "map_index": { + "name": "map_index", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "exit_x": { + "name": "exit_x", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "exit_y": { + "name": "exit_y", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "exit_map_index": { + "name": "exit_map_index", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "hp": { + "name": "hp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "mp": { + "name": "mp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "stamina": { + "name": "stamina", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "random_hp": { + "name": "random_hp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "random_sp": { + "name": "random_sp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "playtime": { + "name": "playtime", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "level": { + "name": "level", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 1 + }, + "level_step": { + "name": "level_step", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "st": { + "name": "st", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "ht": { + "name": "ht", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "dx": { + "name": "dx", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "iq": { + "name": "iq", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "exp": { + "name": "exp", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "gold": { + "name": "gold", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "stat_point": { + "name": "stat_point", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "skill_point": { + "name": "skill_point", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "quick_slot": { + "name": "quick_slot", + "type": "bytea", + "primaryKey": false, + "notNull": false + }, + "ip": { + "name": "ip", + "type": "varchar(16)", + "primaryKey": false, + "notNull": false, + "default": "'0.0.0.0'" + }, + "part_main": { + "name": "part_main", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "part_base": { + "name": "part_base", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "part_hair": { + "name": "part_hair", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "skill_group": { + "name": "skill_group", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "skill_level": { + "name": "skill_level", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "alignment": { + "name": "alignment", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "last_played_at": { + "name": "last_played_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "change_name": { + "name": "change_name", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "sub_skill_point": { + "name": "sub_skill_point", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "stat_reset_count": { + "name": "stat_reset_count", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "horse_hp": { + "name": "horse_hp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "horse_stamina": { + "name": "horse_stamina", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "horse_level": { + "name": "horse_level", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "horse_hp_droptime": { + "name": "horse_hp_droptime", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "horse_riding": { + "name": "horse_riding", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "horse_skill_point": { + "name": "horse_skill_point", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "bank_value": { + "name": "bank_value", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": { + "player_account_id": { + "name": "player_account_id", + "columns": [ + { + "expression": "account_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "player_name": { + "name": "player_name", + "columns": [ + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "player_account_id_account_id_fk": { + "name": "player_account_id_account_id_fk", + "tableFrom": "player", + "tableTo": "account", + "schemaTo": "account", + "columnsFrom": [ + "account_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.player_count": { + "name": "player_count", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "player_count_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "count_red": { + "name": "count_red", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "count_yellow": { + "name": "count_yellow", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "count_blue": { + "name": "count_blue", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "count_total": { + "name": "count_total", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.player_deleted": { + "name": "player_deleted", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "player_deleted_id_seq", + "schema": "player", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "account_id": { + "name": "account_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(24)", + "primaryKey": false, + "notNull": true, + "default": "'NONAME'" + }, + "job": { + "name": "job", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "voice": { + "name": "voice", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "dir": { + "name": "dir", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "x": { + "name": "x", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "y": { + "name": "y", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "z": { + "name": "z", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "map_index": { + "name": "map_index", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "exit_x": { + "name": "exit_x", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "exit_y": { + "name": "exit_y", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "exit_map_index": { + "name": "exit_map_index", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "hp": { + "name": "hp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "mp": { + "name": "mp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "stamina": { + "name": "stamina", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "random_hp": { + "name": "random_hp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "random_sp": { + "name": "random_sp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "playtime": { + "name": "playtime", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "level": { + "name": "level", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 1 + }, + "level_step": { + "name": "level_step", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "st": { + "name": "st", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "ht": { + "name": "ht", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "dx": { + "name": "dx", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "iq": { + "name": "iq", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "exp": { + "name": "exp", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "gold": { + "name": "gold", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "stat_point": { + "name": "stat_point", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "skill_point": { + "name": "skill_point", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "quick_slot": { + "name": "quick_slot", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "ip": { + "name": "ip", + "type": "varchar(16)", + "primaryKey": false, + "notNull": false, + "default": "'0.0.0.0'" + }, + "part_main": { + "name": "part_main", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "part_base": { + "name": "part_base", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "part_hair": { + "name": "part_hair", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "skill_group": { + "name": "skill_group", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "skill_level": { + "name": "skill_level", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "alignment": { + "name": "alignment", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "last_played_at": { + "name": "last_played_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "change_name": { + "name": "change_name", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "sub_skill_point": { + "name": "sub_skill_point", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "stat_reset_count": { + "name": "stat_reset_count", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "horse_hp": { + "name": "horse_hp", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "horse_stamina": { + "name": "horse_stamina", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "horse_level": { + "name": "horse_level", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "horse_hp_droptime": { + "name": "horse_hp_droptime", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "horse_riding": { + "name": "horse_riding", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "horse_skill_point": { + "name": "horse_skill_point", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "bank_value": { + "name": "bank_value", + "type": "integer", + "primaryKey": false, + "notNull": false, + "default": 0 + } + }, + "indexes": { + "player_deleted_account_id": { + "name": "player_deleted_account_id", + "columns": [ + { + "expression": "account_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "player_deleted_name": { + "name": "player_deleted_name", + "columns": [ + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "player_deleted_account_id_account_id_fk": { + "name": "player_deleted_account_id_account_id_fk", + "tableFrom": "player_deleted", + "tableTo": "account", + "schemaTo": "account", + "columnsFrom": [ + "account_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.player_index": { + "name": "player_index", + "schema": "player", + "columns": { + "account_id": { + "name": "account_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "empire": { + "name": "empire", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "last_played_at": { + "name": "last_played_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": { + "player_index_empire": { + "name": "player_index_empire", + "columns": [ + { + "expression": "empire", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "player_index_account_id_account_id_fk": { + "name": "player_index_account_id_account_id_fk", + "tableFrom": "player_index", + "tableTo": "account", + "schemaTo": "account", + "columnsFrom": [ + "account_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "player_index_account_id_player_id_pk": { + "name": "player_index_account_id_player_id_pk", + "columns": [ + "account_id", + "player_id" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.quest": { + "name": "quest", + "schema": "player", + "columns": { + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(32)", + "primaryKey": false, + "notNull": true + }, + "state": { + "name": "state", + "type": "varchar(64)", + "primaryKey": false, + "notNull": true + }, + "value": { + "name": "value", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": { + "quest_player_id": { + "name": "quest_player_id", + "columns": [ + { + "expression": "player_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "quest_name": { + "name": "quest_name", + "columns": [ + { + "expression": "name", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "quest_state": { + "name": "quest_state", + "columns": [ + { + "expression": "state", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "quest_player_id_player_id_fk": { + "name": "quest_player_id_player_id_fk", + "tableFrom": "quest", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.quest_reward_log": { + "name": "quest_reward_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "quest_reward_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "quest_name": { + "name": "quest_name", + "type": "varchar(32)", + "primaryKey": false, + "notNull": false + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "player_level": { + "name": "player_level", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "reward_type": { + "name": "reward_type", + "type": "reward_type", + "typeSchema": "log", + "primaryKey": false, + "notNull": false + }, + "reward_value1": { + "name": "reward_value1", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "reward_value2": { + "name": "reward_value2", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": { + "quest_reward_log_player_id": { + "name": "quest_reward_log_player_id", + "columns": [ + { + "expression": "player_id", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.refine_log": { + "name": "refine_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "refine_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "item_name": { + "name": "item_name", + "type": "varchar(24)", + "primaryKey": false, + "notNull": true + }, + "item_id": { + "name": "item_id", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "step": { + "name": "step", + "type": "varchar(50)", + "primaryKey": false, + "notNull": true + }, + "is_success": { + "name": "is_success", + "type": "boolean", + "primaryKey": false, + "notNull": true + }, + "set_type": { + "name": "set_type", + "type": "refine_log_set_type", + "typeSchema": "log", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "refine_log_player_id_player_id_fk": { + "name": "refine_log_player_id_player_id_fk", + "tableFrom": "refine_log", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.refine_proto": { + "name": "refine_proto", + "schema": "player", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true + }, + "vnum_0": { + "name": "vnum_0", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "count_0": { + "name": "count_0", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "vnum_1": { + "name": "vnum_1", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "count_1": { + "name": "count_1", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "vnum_2": { + "name": "vnum_2", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "count_2": { + "name": "count_2", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "vnum_3": { + "name": "vnum_3", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "count_3": { + "name": "count_3", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "vnum_4": { + "name": "vnum_4", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "count_4": { + "name": "count_4", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "cost": { + "name": "cost", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "src_vnum": { + "name": "src_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "result_vnum": { + "name": "result_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "probability": { + "name": "probability", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 100 + } + }, + "indexes": { + "refine_proto_src_vnum": { + "name": "refine_proto_src_vnum", + "columns": [ + { + "expression": "src_vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + }, + "refine_proto_result_vnum": { + "name": "refine_proto_result_vnum", + "columns": [ + { + "expression": "result_vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.safebox": { + "name": "safebox", + "schema": "player", + "columns": { + "account_id": { + "name": "account_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "size": { + "name": "size", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "password": { + "name": "password", + "type": "varchar(6)", + "primaryKey": false, + "notNull": true + }, + "gold": { + "name": "gold", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": {}, + "foreignKeys": { + "safebox_account_id_account_id_fk": { + "name": "safebox_account_id_account_id_fk", + "tableFrom": "safebox", + "tableTo": "account", + "schemaTo": "account", + "columnsFrom": [ + "account_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "web.session": { + "name": "session", + "schema": "web", + "columns": { + "id": { + "name": "id", + "type": "text", + "primaryKey": true, + "notNull": true + }, + "user_id": { + "name": "user_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "ip": { + "name": "ip", + "type": "varchar(16)", + "primaryKey": false, + "notNull": true, + "default": "'0.0.0.0'" + }, + "expires_at": { + "name": "expires_at", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": { + "session_user_id_account_id_fk": { + "name": "session_user_id_account_id_fk", + "tableFrom": "session", + "tableTo": "account", + "schemaTo": "account", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.shop": { + "name": "shop", + "schema": "player", + "columns": { + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": true, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(32)", + "primaryKey": false, + "notNull": true, + "default": "'NONAME'" + }, + "npc_vnum": { + "name": "npc_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true + } + }, + "indexes": { + "shop_vnum": { + "name": "shop_vnum", + "columns": [ + { + "expression": "vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.shop_item": { + "name": "shop_item", + "schema": "player", + "columns": { + "shop_vnum": { + "name": "shop_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "item_vnum": { + "name": "item_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "count": { + "name": "count", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 1 + } + }, + "indexes": { + "shop_item_item_vnum": { + "name": "shop_item_item_vnum", + "columns": [ + { + "expression": "item_vnum", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": { + "shop_item_shop_vnum_shop_vnum_fk": { + "name": "shop_item_shop_vnum_shop_vnum_fk", + "tableFrom": "shop_item", + "tableTo": "shop", + "schemaTo": "player", + "columnsFrom": [ + "shop_vnum" + ], + "columnsTo": [ + "vnum" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "shop_vnum_unique": { + "name": "shop_vnum_unique", + "nullsNotDistinct": false, + "columns": [ + "shop_vnum", + "item_vnum", + "count" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.shout_log": { + "name": "shout_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "shout_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "channel": { + "name": "channel", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "empire": { + "name": "empire", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "shout": { + "name": "shout", + "type": "varchar(350)", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false, + "default": "now()" + } + }, + "indexes": { + "shout_log_created_at": { + "name": "shout_log_created_at", + "columns": [ + { + "expression": "created_at", + "isExpression": false, + "asc": true, + "nulls": "last" + } + ], + "isUnique": false, + "concurrently": false, + "method": "btree", + "with": {} + } + }, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "player.skill_proto": { + "name": "skill_proto", + "schema": "player", + "columns": { + "vnum": { + "name": "vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "name": { + "name": "name", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "type": { + "name": "type", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "level_step": { + "name": "level_step", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "max_level": { + "name": "max_level", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "level_limit": { + "name": "level_limit", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "point_on": { + "name": "point_on", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true, + "default": "'0'" + }, + "point_poly": { + "name": "point_poly", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "sp_cost_poly": { + "name": "sp_cost_poly", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "duration_poly": { + "name": "duration_poly", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "duration_sp_cost_poly": { + "name": "duration_sp_cost_poly", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "cooldown_poly": { + "name": "cooldown_poly", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "master_bonus_poly": { + "name": "master_bonus_poly", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "attack_grade_poly": { + "name": "attack_grade_poly", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "set_flag": { + "name": "set_flag", + "type": "skill_proto_set_flag[]", + "primaryKey": false, + "notNull": true, + "default": "'{}'" + }, + "set_flag_bits": { + "name": "set_flag_bits", + "type": "bigint", + "primaryKey": false, + "notNull": false, + "generated": { + "as": "enum_array_to_bitmask(\"player\".\"skill_proto\".\"set_flag\")", + "type": "stored" + } + }, + "set_affect_flag": { + "name": "set_affect_flag", + "type": "skill_proto_set_affect_flag", + "typeSchema": "player", + "primaryKey": false, + "notNull": false + }, + "set_affect_flag_bits": { + "name": "set_affect_flag_bits", + "type": "bigint", + "primaryKey": false, + "notNull": false, + "generated": { + "as": "enum_to_bitmask(\"player\".\"skill_proto\".\"set_affect_flag\")", + "type": "stored" + } + }, + "point_on_2": { + "name": "point_on_2", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true, + "default": "'NONE'" + }, + "point_poly_2": { + "name": "point_poly_2", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "duration_poly_2": { + "name": "duration_poly_2", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "set_affect_flag_2": { + "name": "set_affect_flag_2", + "type": "skill_proto_set_affect_flag_2", + "typeSchema": "player", + "primaryKey": false, + "notNull": false + }, + "set_affect_flag_2_bits": { + "name": "set_affect_flag_2_bits", + "type": "bigint", + "primaryKey": false, + "notNull": false, + "generated": { + "as": "enum_to_bitmask(\"player\".\"skill_proto\".\"set_affect_flag_2\")", + "type": "stored" + } + }, + "point_on_3": { + "name": "point_on_3", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true, + "default": "'NONE'" + }, + "point_poly_3": { + "name": "point_poly_3", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "duration_poly_3": { + "name": "duration_poly_3", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "grand_master_add_sp_cost_poly": { + "name": "grand_master_add_sp_cost_poly", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "prerequisite_skill_vnum": { + "name": "prerequisite_skill_vnum", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "prerequisite_skill_level": { + "name": "prerequisite_skill_level", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "skill_type": { + "name": "skill_type", + "type": "skill_proto_skill_type", + "typeSchema": "player", + "primaryKey": false, + "notNull": true, + "default": "'NORMAL'" + }, + "skill_type_bits": { + "name": "skill_type_bits", + "type": "bigint", + "primaryKey": false, + "notNull": false, + "generated": { + "as": "enum_to_bitmask(\"player\".\"skill_proto\".\"skill_type\")", + "type": "stored" + } + }, + "max_hit": { + "name": "max_hit", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "splash_around_damage_adjust_poly": { + "name": "splash_around_damage_adjust_poly", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true, + "default": "'1'" + }, + "target_range": { + "name": "target_range", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 1000 + }, + "splash_range": { + "name": "splash_range", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 0 + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "common.spam_db": { + "name": "spam_db", + "schema": "common", + "columns": { + "type": { + "name": "type", + "type": "spam_type", + "typeSchema": "common", + "primaryKey": false, + "notNull": true, + "default": "'SPAM'" + }, + "word": { + "name": "word", + "type": "varchar(256)", + "primaryKey": false, + "notNull": true + }, + "score": { + "name": "score", + "type": "integer", + "primaryKey": false, + "notNull": true, + "default": 10 + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "log.speed_hack_log": { + "name": "speed_hack_log", + "schema": "log", + "columns": { + "id": { + "name": "id", + "type": "integer", + "primaryKey": true, + "notNull": true, + "identity": { + "type": "always", + "name": "speed_hack_log_id_seq", + "schema": "log", + "increment": "1", + "startWith": "1", + "minValue": "1", + "maxValue": "2147483647", + "cache": "1", + "cycle": false + } + }, + "player_id": { + "name": "player_id", + "type": "integer", + "primaryKey": false, + "notNull": true + }, + "x": { + "name": "x", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "y": { + "name": "y", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "hack_count": { + "name": "hack_count", + "type": "integer", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": false + } + }, + "indexes": {}, + "foreignKeys": { + "speed_hack_log_player_id_player_id_fk": { + "name": "speed_hack_log_player_id_player_id_fk", + "tableFrom": "speed_hack_log", + "tableTo": "player", + "schemaTo": "player", + "columnsFrom": [ + "player_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + } + }, + "enums": { + "common.gm_authority": { + "name": "gm_authority", + "schema": "common", + "values": [ + "IMPLEMENTOR", + "HIGH_WIZARD", + "GOD", + "LOW_WIZARD", + "PLAYER" + ] + }, + "log.gold_log_how": { + "name": "gold_log_how", + "schema": "log", + "values": [ + "BUY", + "SELL", + "SHOP_SELL", + "SHOP_BUY", + "EXCHANGE_TAKE", + "EXCHANGE_GIVE", + "QUEST" + ] + }, + "player.guild_grade_auth": { + "name": "guild_grade_auth", + "schema": "player", + "values": [ + "ADD_MEMBER", + "REMOVE_MEMEBER", + "NOTICE", + "USE_SKILL" + ] + }, + "player.item_proto_immune_flag": { + "name": "item_proto_immune_flag", + "schema": "player", + "values": [ + "PARA", + "CURSE", + "STUN", + "SLEEP", + "SLOW", + "POISON", + "TERROR" + ] + }, + "player.item_attr_apply": { + "name": "item_attr_apply", + "schema": "player", + "values": [ + "MAX_HP", + "MAX_SP", + "CON", + "INT", + "STR", + "DEX", + "ATT_SPEED", + "MOV_SPEED", + "CAST_SPEED", + "HP_REGEN", + "SP_REGEN", + "POISON_PCT", + "STUN_PCT", + "SLOW_PCT", + "CRITICAL_PCT", + "PENETRATE_PCT", + "ATTBONUS_HUMAN", + "ATTBONUS_ANIMAL", + "ATTBONUS_ORC", + "ATTBONUS_MILGYO", + "ATTBONUS_UNDEAD", + "ATTBONUS_DEVIL", + "STEAL_HP", + "STEAL_SP", + "MANA_BURN_PCT", + "DAMAGE_SP_RECOVER", + "BLOCK", + "DODGE", + "RESIST_SWORD", + "RESIST_TWOHAND", + "RESIST_DAGGER", + "RESIST_BELL", + "RESIST_FAN", + "RESIST_BOW", + "RESIST_FIRE", + "RESIST_ELEC", + "RESIST_MAGIC", + "RESIST_WIND", + "REFLECT_MELEE", + "REFLECT_CURSE", + "POISON_REDUCE", + "KILL_SP_RECOVER", + "EXP_DOUBLE_BONUS", + "GOLD_DOUBLE_BONUS", + "ITEM_DROP_BONUS", + "POTION_BONUS", + "KILL_HP_RECOVER", + "IMMUNE_STUN", + "IMMUNE_SLOW", + "IMMUNE_FALL", + "SKILL", + "BOW_DISTANCE", + "ATT_GRADE_BONUS", + "DEF_GRADE_BONUS", + "MAGIC_ATT_GRADE", + "MAGIC_DEF_GRADE", + "CURSE_PCT", + "MAX_STAMINA", + "ATTBONUS_WARRIOR", + "ATTBONUS_ASSASSIN", + "ATTBONUS_SURA", + "ATTBONUS_SHAMAN", + "ATTBONUS_MONSTER", + "MALL_ATTBONUS", + "MALL_DEFBONUS", + "MALL_EXPBONUS", + "MALL_ITEMBONUS", + "MALL_GOLDBONUS", + "MAX_HP_PCT", + "MAX_SP_PCT", + "SKILL_DAMAGE_BONUS", + "NORMAL_HIT_DAMAGE_BONUS", + "SKILL_DEFEND_BONUS", + "NORMAL_HIT_DEFEND_BONUS", + "PC_BANG_EXP_BONUS", + "PC_BANG_DROP_BONUS", + "EXTRACT_HP_PCT", + "RESIST_WARRIOR", + "RESIST_ASSASSIN", + "RESIST_SURA", + "RESIST_SHAMAN", + "ENERGY", + "DEF_GRADE", + "COSTUME_ATTR_BONUS", + "MAGIC_ATTBONUS_PER", + "MELEE_MAGIC_ATTBONUS_PER", + "RESIST_ICE", + "RESIST_EARTH", + "RESIST_DARK", + "ANTI_CRITICAL_PCT", + "ANTI_PENETRATE_PCT" + ] + }, + "player.item_attr_rare_apply": { + "name": "item_attr_rare_apply", + "schema": "player", + "values": [ + "MAX_HP", + "MAX_SP", + "CON", + "INT", + "STR", + "DEX", + "ATT_SPEED", + "MOV_SPEED", + "CAST_SPEED", + "HP_REGEN", + "SP_REGEN", + "POISON_PCT", + "STUN_PCT", + "SLOW_PCT", + "CRITICAL_PCT", + "PENETRATE_PCT", + "ATTBONUS_HUMAN", + "ATTBONUS_ANIMAL", + "ATTBONUS_ORC", + "ATTBONUS_MILGYO", + "ATTBONUS_UNDEAD", + "ATTBONUS_DEVIL", + "STEAL_HP", + "STEAL_SP", + "MANA_BURN_PCT", + "DAMAGE_SP_RECOVER", + "BLOCK", + "DODGE", + "RESIST_SWORD", + "RESIST_TWOHAND", + "RESIST_DAGGER", + "RESIST_BELL", + "RESIST_FAN", + "RESIST_BOW", + "RESIST_FIRE", + "RESIST_ELEC", + "RESIST_MAGIC", + "RESIST_WIND", + "REFLECT_MELEE", + "REFLECT_CURSE", + "POISON_REDUCE", + "KILL_SP_RECOVER", + "EXP_DOUBLE_BONUS", + "GOLD_DOUBLE_BONUS", + "ITEM_DROP_BONUS", + "POTION_BONUS", + "KILL_HP_RECOVER", + "IMMUNE_STUN", + "IMMUNE_SLOW", + "IMMUNE_FALL", + "SKILL", + "BOW_DISTANCE", + "ATT_GRADE_BONUS", + "DEF_GRADE_BONUS", + "MAGIC_ATT_GRADE", + "MAGIC_DEF_GRADE", + "CURSE_PCT", + "MAX_STAMINA", + "ATT_BONUS_TO_WARRIOR", + "ATT_BONUS_TO_ASSASSIN", + "ATT_BONUS_TO_SURA", + "ATT_BONUS_TO_SHAMAN", + "ATT_BONUS_TO_MONSTER", + "NORMAL_HIT_DEFEND_BONUS", + "SKILL_DEFEND_BONUS", + "NOUSE2", + "NOUSE3", + "NOUSE4", + "NOUSE5", + "NOUSE6", + "NOUSE7", + "NOUSE8", + "NOUSE9", + "NOUSE10", + "NOUSE11", + "NOUSE12", + "NOUSE13", + "NOUSE14", + "RESIST_WARRIOR", + "RESIST_ASSASSIN", + "RESIST_SURA", + "RESIST_SHAMAN" + ] + }, + "player.item_window": { + "name": "item_window", + "schema": "player", + "values": [ + "INVENTORY", + "EQUIPMENT", + "SAFEBOX", + "MALL", + "DRAGON_SOUL_INVENTORY", + "BELT_INVENTORY" + ] + }, + "log.log_type": { + "name": "log_type", + "schema": "log", + "values": [ + "ITEM", + "CHARACTER" + ] + }, + "log.login_log_type": { + "name": "login_log_type", + "schema": "log", + "values": [ + "LOGIN", + "LOGOUT" + ] + }, + "player.mob_ai_flag": { + "name": "mob_ai_flag", + "schema": "player", + "values": [ + "AGGR", + "NOMOVE", + "COWARD", + "NOATTSHINSU", + "NOATTCHUNJO", + "NOATTJINNO", + "ATTMOB", + "BERSERK", + "STONESKIN", + "GODSPEED", + "DEATHBLOW", + "REVIVE" + ] + }, + "player.mob_set_immune_flag": { + "name": "mob_set_immune_flag", + "schema": "player", + "values": [ + "STUN", + "SLOW", + "FALL", + "CURSE", + "POISON", + "TERROR" + ] + }, + "player.mob_set_race_flag": { + "name": "mob_set_race_flag", + "schema": "player", + "values": [ + "ANIMAL", + "UNDEAD", + "DEVIL", + "HUMAN", + "ORC", + "MILGYO", + "INSECT", + "FIRE", + "ICE", + "DESERT", + "TREE", + "ATT_ELEC", + "ATT_FIRE", + "ATT_ICE", + "ATT_WIND", + "ATT_EARTH", + "ATT_DARK" + ] + }, + "player.mob_size": { + "name": "mob_size", + "schema": "player", + "values": [ + "SMALL", + "MEDIUM", + "BIG" + ] + }, + "log.money_log_type": { + "name": "money_log_type", + "schema": "log", + "values": [ + "MONSTER", + "SHOP", + "REFINE", + "QUEST", + "GUILD", + "MISC", + "KILL", + "DROP" + ] + }, + "log.refine_log_set_type": { + "name": "refine_log_set_type", + "schema": "log", + "values": [ + "SOCKET", + "POWER", + "ROD", + "GUILD", + "SCROLL", + "HYUNIRON", + "GOD_SCROLL", + "MUSIN_SCROLL" + ] + }, + "log.reward_type": { + "name": "reward_type", + "schema": "log", + "values": [ + "EXP", + "ITEM" + ] + }, + "player.skill_proto_set_affect_flag": { + "name": "skill_proto_set_affect_flag", + "schema": "player", + "values": [ + "YMIR", + "INVISIBILITY", + "SPAWN", + "POISON", + "SLOW", + "STUN", + "DUNGEON_READY", + "FORCE_VISIBLE", + "BUILDING_CONSTRUCTION_SMALL", + "BUILDING_CONSTRUCTION_LARGE", + "BUILDING_UPGRADE", + "MOV_SPEED_POTION", + "ATT_SPEED_POTION", + "FISH_MIDE", + "JEONGWIHON", + "GEOMGYEONG", + "CHEONGEUN", + "GYEONGGONG", + "EUNHYUNG", + "GWIGUM", + "TERROR", + "JUMAGAP", + "HOSIN", + "BOHO", + "KWAESOK", + "MANASHIELD", + "MUYEONG", + "REVIVE_INVISIBLE", + "FIRE", + "GICHEON", + "JEUNGRYEOK" + ] + }, + "player.skill_proto_set_affect_flag_2": { + "name": "skill_proto_set_affect_flag_2", + "schema": "player", + "values": [ + "YMIR", + "INVISIBILITY", + "SPAWN", + "POISON", + "SLOW", + "STUN", + "DUNGEON_READY", + "FORCE_VISIBLE", + "BUILDING_CONSTRUCTION_SMALL", + "BUILDING_CONSTRUCTION_LARGE", + "BUILDING_UPGRADE", + "MOV_SPEED_POTION", + "ATT_SPEED_POTION", + "FISH_MIDE", + "JEONGWIHON", + "GEOMGYEONG", + "CHEONGEUN", + "GYEONGGONG", + "EUNHYUNG", + "GWIGUM", + "TERROR", + "JUMAGAP", + "HOSIN", + "BOHO", + "KWAESOK", + "MANASHIELD" + ] + }, + "player.skill_proto_set_flag": { + "name": "skill_proto_set_flag", + "schema": "player", + "values": [ + "ATTACK", + "USE_MELEE_DAMAGE", + "COMPUTE_ATTGRADE", + "SELFONLY", + "USE_MAGIC_DAMAGE", + "USE_HP_AS_COST", + "COMPUTE_MAGIC_DAMAGE", + "SPLASH", + "GIVE_PENALTY", + "USE_ARROW_DAMAGE", + "PENETRATE", + "IGNORE_TARGET_RATING", + "ATTACK_SLOW", + "ATTACK_STUN", + "HP_ABSORB", + "SP_ABSORB", + "ATTACK_FIRE_CONT", + "REMOVE_BAD_AFFECT", + "REMOVE_GOOD_AFFECT", + "CRUSH", + "ATTACK_POISON", + "TOGGLE", + "DISABLE_BY_POINT_UP", + "CRUSH_LONG" + ] + }, + "player.skill_proto_skill_type": { + "name": "skill_proto_skill_type", + "schema": "player", + "values": [ + "NORMAL", + "MELEE", + "RANGE", + "MAGIC" + ] + }, + "common.spam_type": { + "name": "spam_type", + "schema": "common", + "values": [ + "GOOD", + "SPAM" + ] + } + }, + "schemas": { + "account": "account", + "common": "common", + "log": "log", + "player": "player", + "web": "web" + }, + "sequences": {}, + "roles": {}, + "policies": {}, + "views": {}, + "_meta": { + "columns": {}, + "schemas": {}, + "tables": {} + } +} \ No newline at end of file diff --git a/drizzle/meta/_journal.json b/drizzle/meta/_journal.json new file mode 100644 index 0000000..3a8c50c --- /dev/null +++ b/drizzle/meta/_journal.json @@ -0,0 +1,41 @@ +{ + "version": "7", + "dialect": "postgresql", + "entries": [ + { + "idx": 0, + "version": "7", + "when": 1748477401866, + "tag": "0000_functions", + "breakpoints": true + }, + { + "idx": 1, + "version": "7", + "when": 1748556898510, + "tag": "0001_init", + "breakpoints": true + }, + { + "idx": 2, + "version": "7", + "when": 1748557058507, + "tag": "0002_seed", + "breakpoints": true + }, + { + "idx": 3, + "version": "7", + "when": 1748942645302, + "tag": "0003_worried_hex", + "breakpoints": true + }, + { + "idx": 4, + "version": "7", + "when": 1748943047244, + "tag": "0004_mysterious_wallop", + "breakpoints": true + } + ] +} \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..c614216 --- /dev/null +++ b/package.json @@ -0,0 +1,104 @@ +{ + "name": "metin2-web", + "private": true, + "sideEffects": false, + "type": "module", + "scripts": { + "dev": "vinxi dev", + "build": "paraglide-js compile --project ./project.inlang --outdir ./src/paraglide && vinxi build", + "start": "vinxi start", + "lint": "biome lint", + "email:dev": "email dev --dir ./src/emails --port 3030", + "db:generate": "drizzle-kit generate", + "i18n:translate": "inlang machine translate --project ./project.inlang", + "i18n:check": "inlang validate --project ./project.inlang" + }, + "dependencies": { + "@hookform/resolvers": "^5.0.1", + "@oslojs/crypto": "^1.0.1", + "@oslojs/encoding": "^1.1.0", + "@radix-ui/react-accordion": "^1.2.11", + "@radix-ui/react-alert-dialog": "^1.1.14", + "@radix-ui/react-aspect-ratio": "^1.1.7", + "@radix-ui/react-avatar": "^1.1.10", + "@radix-ui/react-checkbox": "^1.3.2", + "@radix-ui/react-collapsible": "^1.1.11", + "@radix-ui/react-context-menu": "^2.2.15", + "@radix-ui/react-dialog": "^1.1.14", + "@radix-ui/react-dropdown-menu": "^2.1.15", + "@radix-ui/react-hover-card": "^1.1.14", + "@radix-ui/react-label": "^2.1.7", + "@radix-ui/react-menubar": "^1.1.15", + "@radix-ui/react-navigation-menu": "^1.2.13", + "@radix-ui/react-popover": "^1.1.14", + "@radix-ui/react-progress": "^1.1.7", + "@radix-ui/react-radio-group": "^1.3.7", + "@radix-ui/react-scroll-area": "^1.2.9", + "@radix-ui/react-select": "^2.2.5", + "@radix-ui/react-separator": "^1.1.7", + "@radix-ui/react-slider": "^1.3.5", + "@radix-ui/react-slot": "^1.2.3", + "@radix-ui/react-switch": "^1.2.5", + "@radix-ui/react-tabs": "^1.1.12", + "@radix-ui/react-toggle": "^1.1.9", + "@radix-ui/react-toggle-group": "^1.1.10", + "@radix-ui/react-tooltip": "^1.2.7", + "@react-email/components": "0.0.41", + "@tailwindcss/postcss": "^4.1.8", + "@tanstack/react-query": "^5.80.3", + "@tanstack/react-query-devtools": "^5.80.3", + "@tanstack/react-router": "^1.120.15", + "@tanstack/react-router-devtools": "^1.120.15", + "@tanstack/react-start": "^1.120.15", + "@tanstack/react-table": "^8.21.3", + "class-variance-authority": "^0.7.1", + "clsx": "^2.1.1", + "cmdk": "^1.1.1", + "date-fns": "^4.1.0", + "drizzle-orm": "^1.0.0-beta.1-fd5d1e8", + "drizzle-zod": "^0.8.2", + "embla-carousel-react": "^8.6.0", + "input-otp": "^1.4.2", + "lucide-react": "^0.511.0", + "next-themes": "^0.4.6", + "nodemailer": "^7.0.3", + "postgres": "^3.4.7", + "react": "^19.1.0", + "react-day-picker": "8.10.1", + "react-dom": "^19.1.0", + "react-hook-form": "^7.57.0", + "react-resizable-panels": "^3.0.2", + "recharts": "^2.15.3", + "sonner": "^2.0.5", + "tailwind-merge": "^3.3.0", + "vaul": "^1.1.2", + "vinxi": "0.5.3", + "zod": "^3.25.51" + }, + "devDependencies": { + "@biomejs/biome": "1.9.4", + "@inlang/cli": "^3.0.11", + "@inlang/paraglide-js": "^2.0.13", + "@tanstack/eslint-plugin-query": "^5.78.0", + "@types/bun": "^1.2.15", + "@types/nodemailer": "^6.4.17", + "@types/react": "^19.1.6", + "@types/react-dom": "^19.1.6", + "autoprefixer": "^10.4.21", + "drizzle-kit": "^1.0.0-beta.1-fd5d1e8", + "postcss": "^8.5.4", + "react-email": "4.0.15", + "tailwindcss": "^4.1.8", + "tw-animate-css": "^1.3.4", + "typescript": "^5.8.3", + "vite-tsconfig-paths": "^5.1.4" + }, + "trustedDependencies": [ + "@biomejs/biome", + "@parcel/watcher", + "@tailwindcss/oxide", + "argon2", + "esbuild", + "sharp" + ] +} diff --git a/postcss.config.mjs b/postcss.config.mjs new file mode 100644 index 0000000..fb05b56 --- /dev/null +++ b/postcss.config.mjs @@ -0,0 +1,5 @@ +export default { + plugins: { + "@tailwindcss/postcss": {}, + }, +} diff --git a/project.inlang/.gitignore b/project.inlang/.gitignore new file mode 100644 index 0000000..5e46596 --- /dev/null +++ b/project.inlang/.gitignore @@ -0,0 +1 @@ +cache \ No newline at end of file diff --git a/project.inlang/project_id b/project.inlang/project_id new file mode 100644 index 0000000..bec0a0b --- /dev/null +++ b/project.inlang/project_id @@ -0,0 +1 @@ +O51G4WNvcv5kcok0DT \ No newline at end of file diff --git a/project.inlang/settings.json b/project.inlang/settings.json new file mode 100644 index 0000000..4026a89 --- /dev/null +++ b/project.inlang/settings.json @@ -0,0 +1,15 @@ +{ + "$schema": "https://inlang.com/schema/project-settings", + "baseLocale": "en", + "locales": [ + "en", + "pt" + ], + "modules": [ + "https://cdn.jsdelivr.net/npm/@inlang/plugin-message-format@4/dist/index.js", + "https://cdn.jsdelivr.net/npm/@inlang/plugin-m-function-matcher@2/dist/index.js" + ], + "plugin.inlang.messageFormat": { + "pathPattern": "./src/translations/{locale}.json" + } +} \ No newline at end of file diff --git a/public/android-chrome-192x192.png b/public/android-chrome-192x192.png new file mode 100644 index 0000000..09c8324 Binary files /dev/null and b/public/android-chrome-192x192.png differ diff --git a/public/android-chrome-512x512.png b/public/android-chrome-512x512.png new file mode 100644 index 0000000..11d626e Binary files /dev/null and b/public/android-chrome-512x512.png differ diff --git a/public/apple-touch-icon.png b/public/apple-touch-icon.png new file mode 100644 index 0000000..5a9423c Binary files /dev/null and b/public/apple-touch-icon.png differ diff --git a/public/favicon-16x16.png b/public/favicon-16x16.png new file mode 100644 index 0000000..e3389b0 Binary files /dev/null and b/public/favicon-16x16.png differ diff --git a/public/favicon-32x32.png b/public/favicon-32x32.png new file mode 100644 index 0000000..900c77d Binary files /dev/null and b/public/favicon-32x32.png differ diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..1a17516 Binary files /dev/null and b/public/favicon.ico differ diff --git a/public/favicon.png b/public/favicon.png new file mode 100644 index 0000000..1e77bc0 Binary files /dev/null and b/public/favicon.png differ diff --git a/public/site.webmanifest b/public/site.webmanifest new file mode 100644 index 0000000..fa99de7 --- /dev/null +++ b/public/site.webmanifest @@ -0,0 +1,19 @@ +{ + "name": "", + "short_name": "", + "icons": [ + { + "src": "/android-chrome-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "/android-chrome-512x512.png", + "sizes": "512x512", + "type": "image/png" + } + ], + "theme_color": "#ffffff", + "background_color": "#ffffff", + "display": "standalone" +} diff --git a/public/static/logo.png b/public/static/logo.png new file mode 100644 index 0000000..7b49b7b Binary files /dev/null and b/public/static/logo.png differ diff --git a/src/api.ts b/src/api.ts new file mode 100644 index 0000000..840cf69 --- /dev/null +++ b/src/api.ts @@ -0,0 +1,9 @@ +import { + createStartAPIHandler, + defaultAPIFileRouteHandler, +} from '@tanstack/react-start/api'; +import { paraglideMiddleware } from './paraglide/server'; + +export default createStartAPIHandler((ctx) => + paraglideMiddleware(ctx.request, () => defaultAPIFileRouteHandler(ctx)), +); diff --git a/src/client.tsx b/src/client.tsx new file mode 100644 index 0000000..33fee18 --- /dev/null +++ b/src/client.tsx @@ -0,0 +1,14 @@ +/// +import { hydrateRoot } from 'react-dom/client'; +import { StartClient } from '@tanstack/react-start'; +import { createRouter } from './router'; +import { getLocale, overwriteGetLocale, strategy } from './paraglide/runtime'; + +const router = createRouter(); + +if (strategy.includes('cookie')) { + const inMemoryLocale = getLocale(); + overwriteGetLocale(() => inMemoryLocale); +} + +hydrateRoot(document, ); diff --git a/src/components/default-catch-boundary.tsx b/src/components/default-catch-boundary.tsx new file mode 100644 index 0000000..4da5f7c --- /dev/null +++ b/src/components/default-catch-boundary.tsx @@ -0,0 +1,54 @@ +import { + ErrorComponent, + Link, + rootRouteId, + useMatch, + useRouter, +} from '@tanstack/react-router'; +import type { ErrorComponentProps } from '@tanstack/react-router'; + +export function DefaultCatchBoundary({ error }: ErrorComponentProps) { + const router = useRouter(); + const isRoot = useMatch({ + strict: false, + select: (state) => state.id === rootRouteId, + }); + + console.error('DefaultCatchBoundary Error:', error); + + return ( +
+ +
+ + {isRoot ? ( + + Home + + ) : ( + { + e.preventDefault(); + window.history.back(); + }} + > + Go Back + + )} +
+
+ ); +} diff --git a/src/components/login/form.tsx b/src/components/login/form.tsx new file mode 100644 index 0000000..224543b --- /dev/null +++ b/src/components/login/form.tsx @@ -0,0 +1,106 @@ +import { Button } from '@/components/ui/button'; +import { + Form, + FormControl, + FormField, + FormItem, + FormLabel, + FormMessage, +} from '@/components/ui/form'; +import { Input } from '@/components/ui/input'; +import { login, LoginSchema } from '@/lib/actions/auth'; +import { isValidationError } from '@/lib/utils/http'; +import { standardSchemaResolver } from '@hookform/resolvers/standard-schema'; +import { useMutation } from '@tanstack/react-query'; +import { Link } from '@tanstack/react-router'; +import { useServerFn } from '@tanstack/react-start'; +import { LoaderCircleIcon } from 'lucide-react'; +import { useForm } from 'react-hook-form'; +import { toast } from 'sonner'; +import type { z } from 'zod/v4'; + +export const LoginForm = () => { + const serverFn = useServerFn(login); + + const form = useForm>({ + resolver: standardSchemaResolver(LoginSchema), + }); + + const mutation = useMutation({ + mutationFn: async (payload: z.infer) => + await serverFn({ data: payload }), + onMutate: () => { + return { + toastId: toast.loading('Signing in...'), + }; + }, + onSuccess: (_data, _variables, context) => { + toast.success('Signed in successfully, redirecting now', { + id: context.toastId, + }); + }, + onError: (err, _variables, context) => { + toast.error(err.message, { + id: context?.toastId, + }); + + if (isValidationError>(err)) { + for (const [key, errors] of Object.entries(err.errors) as [ + keyof typeof err.errors, + string[], + ][]) { + form.setError(key, { message: errors[0] }); + } + } + }, + }); + + const onSubmit = form.handleSubmit((payload) => mutation.mutate(payload)); + + return ( +
+ + ( + + Username + + + + + + )} + /> + ( + + Password + + + + + + )} + /> +
+ + Forgot your password? + + + Don't have an account yet? + +
+ + + + ); +}; diff --git a/src/components/not-found.tsx b/src/components/not-found.tsx new file mode 100644 index 0000000..2ba1462 --- /dev/null +++ b/src/components/not-found.tsx @@ -0,0 +1,27 @@ +import { Link } from '@tanstack/react-router'; +import type { ReactNode } from 'react'; + +export function NotFound({ children }: { children?: ReactNode }) { + return ( +
+
+ {children ||

The page you are looking for does not exist.

} +
+

+ + + Start Over + +

+
+ ); +} diff --git a/src/components/ui/accordion.tsx b/src/components/ui/accordion.tsx new file mode 100644 index 0000000..9d6b8f4 --- /dev/null +++ b/src/components/ui/accordion.tsx @@ -0,0 +1,64 @@ +import type * as React from "react" +import * as AccordionPrimitive from "@radix-ui/react-accordion" +import { ChevronDownIcon } from "lucide-react" + +import { cn } from "@/lib/utils" + +function Accordion({ + ...props +}: React.ComponentProps) { + return +} + +function AccordionItem({ + className, + ...props +}: React.ComponentProps) { + return ( + + ) +} + +function AccordionTrigger({ + className, + children, + ...props +}: React.ComponentProps) { + return ( + + svg]:rotate-180", + className + )} + {...props} + > + {children} + + + + ) +} + +function AccordionContent({ + className, + children, + ...props +}: React.ComponentProps) { + return ( + +
{children}
+
+ ) +} + +export { Accordion, AccordionItem, AccordionTrigger, AccordionContent } diff --git a/src/components/ui/alert-dialog.tsx b/src/components/ui/alert-dialog.tsx new file mode 100644 index 0000000..378444c --- /dev/null +++ b/src/components/ui/alert-dialog.tsx @@ -0,0 +1,157 @@ +"use client" + +import type * as React from "react" +import * as AlertDialogPrimitive from "@radix-ui/react-alert-dialog" + +import { cn } from "@/lib/utils" +import { buttonVariants } from "@/components/ui/button" + +function AlertDialog({ + ...props +}: React.ComponentProps) { + return +} + +function AlertDialogTrigger({ + ...props +}: React.ComponentProps) { + return ( + + ) +} + +function AlertDialogPortal({ + ...props +}: React.ComponentProps) { + return ( + + ) +} + +function AlertDialogOverlay({ + className, + ...props +}: React.ComponentProps) { + return ( + + ) +} + +function AlertDialogContent({ + className, + ...props +}: React.ComponentProps) { + return ( + + + + + ) +} + +function AlertDialogHeader({ + className, + ...props +}: React.ComponentProps<"div">) { + return ( +
+ ) +} + +function AlertDialogFooter({ + className, + ...props +}: React.ComponentProps<"div">) { + return ( +
+ ) +} + +function AlertDialogTitle({ + className, + ...props +}: React.ComponentProps) { + return ( + + ) +} + +function AlertDialogDescription({ + className, + ...props +}: React.ComponentProps) { + return ( + + ) +} + +function AlertDialogAction({ + className, + ...props +}: React.ComponentProps) { + return ( + + ) +} + +function AlertDialogCancel({ + className, + ...props +}: React.ComponentProps) { + return ( + + ) +} + +export { + AlertDialog, + AlertDialogPortal, + AlertDialogOverlay, + AlertDialogTrigger, + AlertDialogContent, + AlertDialogHeader, + AlertDialogFooter, + AlertDialogTitle, + AlertDialogDescription, + AlertDialogAction, + AlertDialogCancel, +} diff --git a/src/components/ui/alert.tsx b/src/components/ui/alert.tsx new file mode 100644 index 0000000..66242b8 --- /dev/null +++ b/src/components/ui/alert.tsx @@ -0,0 +1,66 @@ +import type * as React from "react" +import { cva, type VariantProps } from "class-variance-authority" + +import { cn } from "@/lib/utils" + +const alertVariants = cva( + "relative w-full rounded-lg border px-4 py-3 text-sm grid has-[>svg]:grid-cols-[calc(var(--spacing)*4)_1fr] grid-cols-[0_1fr] has-[>svg]:gap-x-3 gap-y-0.5 items-start [&>svg]:size-4 [&>svg]:translate-y-0.5 [&>svg]:text-current", + { + variants: { + variant: { + default: "bg-card text-card-foreground", + destructive: + "text-destructive bg-card [&>svg]:text-current *:data-[slot=alert-description]:text-destructive/90", + }, + }, + defaultVariants: { + variant: "default", + }, + } +) + +function Alert({ + className, + variant, + ...props +}: React.ComponentProps<"div"> & VariantProps) { + return ( +
+ ) +} + +function AlertTitle({ className, ...props }: React.ComponentProps<"div">) { + return ( +
+ ) +} + +function AlertDescription({ + className, + ...props +}: React.ComponentProps<"div">) { + return ( +
+ ) +} + +export { Alert, AlertTitle, AlertDescription } diff --git a/src/components/ui/aspect-ratio.tsx b/src/components/ui/aspect-ratio.tsx new file mode 100644 index 0000000..9b491fb --- /dev/null +++ b/src/components/ui/aspect-ratio.tsx @@ -0,0 +1,9 @@ +import * as AspectRatioPrimitive from "@radix-ui/react-aspect-ratio" + +function AspectRatio({ + ...props +}: React.ComponentProps) { + return +} + +export { AspectRatio } diff --git a/src/components/ui/avatar.tsx b/src/components/ui/avatar.tsx new file mode 100644 index 0000000..0a3dc7a --- /dev/null +++ b/src/components/ui/avatar.tsx @@ -0,0 +1,53 @@ +"use client" + +import type * as React from "react" +import * as AvatarPrimitive from "@radix-ui/react-avatar" + +import { cn } from "@/lib/utils" + +function Avatar({ + className, + ...props +}: React.ComponentProps) { + return ( + + ) +} + +function AvatarImage({ + className, + ...props +}: React.ComponentProps) { + return ( + + ) +} + +function AvatarFallback({ + className, + ...props +}: React.ComponentProps) { + return ( + + ) +} + +export { Avatar, AvatarImage, AvatarFallback } diff --git a/src/components/ui/badge.tsx b/src/components/ui/badge.tsx new file mode 100644 index 0000000..0e3a360 --- /dev/null +++ b/src/components/ui/badge.tsx @@ -0,0 +1,46 @@ +import type * as React from "react" +import { Slot } from "@radix-ui/react-slot" +import { cva, type VariantProps } from "class-variance-authority" + +import { cn } from "@/lib/utils" + +const badgeVariants = cva( + "inline-flex items-center justify-center rounded-md border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden", + { + variants: { + variant: { + default: + "border-transparent bg-primary text-primary-foreground [a&]:hover:bg-primary/90", + secondary: + "border-transparent bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90", + destructive: + "border-transparent bg-destructive text-white [a&]:hover:bg-destructive/90 focus-visible:ring-destructive/20 dark:focus-visible:ring-destructive/40 dark:bg-destructive/60", + outline: + "text-foreground [a&]:hover:bg-accent [a&]:hover:text-accent-foreground", + }, + }, + defaultVariants: { + variant: "default", + }, + } +) + +function Badge({ + className, + variant, + asChild = false, + ...props +}: React.ComponentProps<"span"> & + VariantProps & { asChild?: boolean }) { + const Comp = asChild ? Slot : "span" + + return ( + + ) +} + +export { Badge, badgeVariants } diff --git a/src/components/ui/breadcrumb.tsx b/src/components/ui/breadcrumb.tsx new file mode 100644 index 0000000..fc87b6e --- /dev/null +++ b/src/components/ui/breadcrumb.tsx @@ -0,0 +1,109 @@ +import type * as React from "react" +import { Slot } from "@radix-ui/react-slot" +import { ChevronRight, MoreHorizontal } from "lucide-react" + +import { cn } from "@/lib/utils" + +function Breadcrumb({ ...props }: React.ComponentProps<"nav">) { + return