diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..164c08fd --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,31 @@ +name: CI/CD Build Check + +on: + push: + branches: ['main', 'develop'] + pull_request: + branches: ['main', 'develop'] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Install Node.js + uses: actions/setup-node@v4 + with: + node-version: 22 + + - name: Install pnpm + uses: pnpm/action-setup@v2 + with: + version: 10 + + - name: Install dependencies + run: pnpm install + + - name: Build check + run: pnpm run build diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 index dd6570f0..00000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,134 +0,0 @@ -name: Deploy - -on: - push: - branches: ['develop', 'main'] -permissions: - contents: write - -concurrency: - group: prod-${{ github.ref }} - cancel-in-progress: true - -jobs: - promote-and-deploy: - if: ${{ github.ref == 'refs/heads/develop' }} - runs-on: ubuntu-latest - outputs: - changed: ${{ steps.promote.outputs.changed }} - new_sha: ${{ steps.promote.outputs.new_sha }} - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - name: Promote develop → main (fast-forward only) - id: promote - env: - GH_USER_NAME: github-actions[bot] - GH_USER_EMAIL: 41898282+github-actions[bot]@users.noreply.github.com - run: | - set -euo pipefail - git config user.name "$GH_USER_NAME" - git config user.email "$GH_USER_EMAIL" - - git fetch origin main develop - - BEFORE="$(git rev-parse origin/main)" - git checkout -B main origin/main - - git merge --ff-only origin/develop - - AFTER="$(git rev-parse HEAD)" - - if [ "$BEFORE" = "$AFTER" ]; then - echo "No changes to promote. main already up to date." - echo "changed=false" >> "$GITHUB_OUTPUT" - echo "new_sha=$AFTER" >> "$GITHUB_OUTPUT" - exit 0 - fi - - git push origin main - echo "changed=true" >> "$GITHUB_OUTPUT" - echo "new_sha=$AFTER" >> "$GITHUB_OUTPUT" - - - uses: actions/setup-node@v4 - if: ${{ steps.promote.outputs.changed == 'true' }} - with: - node-version: 20 - registry-url: 'https://registry.npmjs.org' - - - name: Force npmjs registry - if: ${{ steps.promote.outputs.changed == 'true' }} - run: | - npm config set registry https://registry.npmjs.org/ - echo "registry=https://registry.npmjs.org/" > ~/.npmrc - - - uses: pnpm/action-setup@v4 - if: ${{ steps.promote.outputs.changed == 'true' }} - - - run: pnpm -v - if: ${{ steps.promote.outputs.changed == 'true' }} - - - uses: actions/setup-node@v4 - if: ${{ steps.promote.outputs.changed == 'true' }} - with: - node-version: 20 - cache: 'pnpm' - cache-dependency-path: 'pnpm-lock.yaml' - - - name: Install Vercel CLI - if: ${{ steps.promote.outputs.changed == 'true' }} - run: npm i -g vercel@latest - - - name: Pull Vercel Env (production) - if: ${{ steps.promote.outputs.changed == 'true' }} - env: - VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} - VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} - run: vercel pull --yes --environment=production --token='${{ secrets.VERCEL_TOKEN }}' - - - name: Build (prebuilt, prod) - if: ${{ steps.promote.outputs.changed == 'true' }} - run: vercel build --prod --token='${{ secrets.VERCEL_TOKEN }}' - - - name: Deploy (prod) - if: ${{ steps.promote.outputs.changed == 'true' }} - id: deploy - run: | - url="$(vercel deploy --prebuilt --archive=tgz --prod --token='${{ secrets.VERCEL_TOKEN }}')" - echo "::notice::Deployed $url" - - deploy-on-main: - if: ${{ github.ref == 'refs/heads/main' }} - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 - with: - node-version: 20 - registry-url: 'https://registry.npmjs.org' - - - name: Force npmjs registry - run: | - npm config set registry https://registry.npmjs.org/ - echo "registry=https://registry.npmjs.org/" > ~/.npmrc - - - uses: pnpm/action-setup@v4 - - run: pnpm -v - - - uses: actions/setup-node@v4 - with: - node-version: 20 - cache: 'pnpm' - cache-dependency-path: 'pnpm-lock.yaml' - - - run: npm i -g vercel@latest - - name: Pull Vercel Env (production) - env: - VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} - VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} - run: vercel pull --yes --environment=production --token='${{ secrets.VERCEL_TOKEN }}' - - name: Build (prebuilt, prod) - run: vercel build --prod --token='${{ secrets.VERCEL_TOKEN }}' - - name: Deploy (prod) - run: vercel deploy --prebuilt --prod --archive=tgz --token='${{ secrets.VERCEL_TOKEN }}' diff --git a/.github/workflows/preview.yml b/.github/workflows/preview.yml deleted file mode 100644 index a7cfdca5..00000000 --- a/.github/workflows/preview.yml +++ /dev/null @@ -1,80 +0,0 @@ -name: Preview - -on: - pull_request: - branches: ['develop'] - -permissions: - contents: read - pull-requests: write - -concurrency: - group: preview-${{ github.event.pull_request.number }} - cancel-in-progress: true - -jobs: - checks: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - uses: actions/setup-node@v4 - with: - node-version: 20 - - uses: pnpm/action-setup@v4 - - - uses: actions/setup-node@v4 - with: - node-version: 20 - cache: 'pnpm' - cache-dependency-path: 'pnpm-lock.yaml' - - - run: pnpm i --frozen-lockfile - - - run: pnpm run --if-present lint - - run: pnpm run --if-present typecheck - - run: pnpm run --if-present test -- --passWithNoTests - - - run: pnpm run build - - vercel-preview: - if: ${{ github.event.pull_request.head.repo.full_name == github.repository && !github.event.pull_request.draft }} - needs: checks - runs-on: ubuntu-latest - - env: - VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} - VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} - - steps: - - uses: actions/checkout@v4 - - - uses: actions/setup-node@v4 - with: { node-version: 20 } - - uses: pnpm/action-setup@v4 - - run: pnpm -v - - uses: actions/setup-node@v4 - with: - node-version: 20 - cache: 'pnpm' - cache-dependency-path: 'pnpm-lock.yaml' - - - name: Install Vercel CLI - run: npm install --global vercel@latest - - name: Pull Vercel Env (preview) - run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }} - - name: Build Project Artifacts (prebuilt) - run: vercel build --token=${{ secrets.VERCEL_TOKEN }} - - - name: Deploy Preview - id: deploy - - run: | - url=$(vercel deploy --prebuilt --archive=tgz --token=${{ secrets.VERCEL_TOKEN }}) - echo "preview_url=$url" >> $GITHUB_OUTPUT - - - name: Comment PR with Preview URL - uses: thollander/actions-comment-pull-request@v2 - with: - message: | - ✅ PREVIEW: ${{ steps.deploy.outputs.preview_url }} diff --git a/.github/workflows/production.yml b/.github/workflows/production.yml new file mode 100644 index 00000000..d6945dab --- /dev/null +++ b/.github/workflows/production.yml @@ -0,0 +1,31 @@ +name: Production Deployment + +on: + push: + branches: + - develop + +jobs: + Deploy-Preview: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - run: curl -X POST -d {} "https://webhooks.amplify.us-east-1.amazonaws.com/prod/webhooks?id=ea04170f-ab4c-443a-b01f-e2e53c32b641&token=KSqj5xnbmdNs92jcEzHWSP84O6dVe0r1Rq6FCuL5E&operation=startbuild" -H "Content-Type:application/json" + + - name: Checkout Repository + uses: actions/checkout@v2 + + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: 20 + + - name: Install pnpm + run: npm install -g pnpm + + - name: Install Dependencies + run: pnpm install + + - name: Build Library + run: pnpm run build diff --git a/package.json b/package.json index dce80daf..baa1a624 100644 --- a/package.json +++ b/package.json @@ -10,20 +10,22 @@ }, "dependencies": { "@hookform/resolvers": "^5.2.2", + "@next/third-parties": "^16.1.5", "@tailwindcss/typography": "^0.5.19", "@tanstack/react-query": "^5.90.5", - "@tiptap/core": "^3.7.2", - "@tiptap/extension-document": "^3.7.2", - "@tiptap/extension-heading": "^3.7.2", - "@tiptap/extension-link": "^3.7.2", - "@tiptap/extension-list": "^3.7.2", - "@tiptap/extension-paragraph": "^3.7.2", - "@tiptap/extension-placeholder": "^3.7.2", - "@tiptap/extension-text": "^3.7.2", - "@tiptap/extension-underline": "^3.7.2", - "@tiptap/pm": "^3.7.2", - "@tiptap/react": "^3.7.2", - "@tiptap/starter-kit": "^3.7.2", + "@tiptap/core": "^3.20.0", + "@tiptap/extension-document": "^3.20.0", + "@tiptap/extension-heading": "^3.20.0", + "@tiptap/extension-link": "^3.20.0", + "@tiptap/extension-list": "^3.20.0", + "@tiptap/extension-paragraph": "^3.20.0", + "@tiptap/extension-placeholder": "^3.20.0", + "@tiptap/extension-table": "^3.20.0", + "@tiptap/extension-text": "^3.20.0", + "@tiptap/extension-underline": "^3.20.0", + "@tiptap/pm": "^3.20.0", + "@tiptap/react": "^3.20.0", + "@tiptap/starter-kit": "^3.20.0", "axios": "^1.12.2", "clsx": "^2.1.1", "date-fns": "^4.1.0", @@ -52,8 +54,9 @@ "@types/qs": "^6.14.0", "@types/react": "^19", "@types/react-dom": "^19", + "baseline-browser-mapping": "^2.10.0", "eslint": "^9", - "eslint-config-next": "15.5.4", + "eslint-config-next": "16.1.6", "prettier": "^3.6.2", "prettier-plugin-tailwindcss": "^0.6.14", "sass": "^1.93.2", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ac96705e..4259d03c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -11,6 +11,9 @@ importers: '@hookform/resolvers': specifier: ^5.2.2 version: 5.2.2(react-hook-form@7.66.0(react@19.1.0)) + '@next/third-parties': + specifier: ^16.1.5 + version: 16.1.5(next@16.0.10(@babel/core@7.28.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(sass@1.93.2))(react@19.1.0) '@tailwindcss/typography': specifier: ^0.5.19 version: 0.5.19(tailwindcss@4.1.13) @@ -18,41 +21,44 @@ importers: specifier: ^5.90.5 version: 5.90.5(react@19.1.0) '@tiptap/core': - specifier: ^3.7.2 - version: 3.7.2(@tiptap/pm@3.7.2) + specifier: ^3.20.0 + version: 3.20.0(@tiptap/pm@3.20.0) '@tiptap/extension-document': - specifier: ^3.7.2 - version: 3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2)) + specifier: ^3.20.0 + version: 3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0)) '@tiptap/extension-heading': - specifier: ^3.7.2 - version: 3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2)) + specifier: ^3.20.0 + version: 3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0)) '@tiptap/extension-link': - specifier: ^3.7.2 - version: 3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2) + specifier: ^3.20.0 + version: 3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0) '@tiptap/extension-list': - specifier: ^3.7.2 - version: 3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2) + specifier: ^3.20.0 + version: 3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0) '@tiptap/extension-paragraph': - specifier: ^3.7.2 - version: 3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2)) + specifier: ^3.20.0 + version: 3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0)) '@tiptap/extension-placeholder': - specifier: ^3.7.2 - version: 3.7.2(@tiptap/extensions@3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2)) + specifier: ^3.20.0 + version: 3.20.0(@tiptap/extensions@3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0)) + '@tiptap/extension-table': + specifier: ^3.20.0 + version: 3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0) '@tiptap/extension-text': - specifier: ^3.7.2 - version: 3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2)) + specifier: ^3.20.0 + version: 3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0)) '@tiptap/extension-underline': - specifier: ^3.7.2 - version: 3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2)) + specifier: ^3.20.0 + version: 3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0)) '@tiptap/pm': - specifier: ^3.7.2 - version: 3.7.2 + specifier: ^3.20.0 + version: 3.20.0 '@tiptap/react': - specifier: ^3.7.2 - version: 3.7.2(@floating-ui/dom@1.7.4)(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2)(@types/react-dom@19.1.9(@types/react@19.1.16))(@types/react@19.1.16)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + specifier: ^3.20.0 + version: 3.20.0(@floating-ui/dom@1.7.4)(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0)(@types/react-dom@19.1.9(@types/react@19.1.16))(@types/react@19.1.16)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@tiptap/starter-kit': - specifier: ^3.7.2 - version: 3.7.2 + specifier: ^3.20.0 + version: 3.20.0 axios: specifier: ^1.12.2 version: 1.12.2 @@ -132,12 +138,15 @@ importers: '@types/react-dom': specifier: ^19 version: 19.1.9(@types/react@19.1.16) + baseline-browser-mapping: + specifier: ^2.10.0 + version: 2.10.0 eslint: specifier: ^9 version: 9.36.0(jiti@2.6.0) eslint-config-next: - specifier: 15.5.4 - version: 15.5.4(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2) + specifier: 16.1.6 + version: 16.1.6(@typescript-eslint/parser@8.56.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2) prettier: specifier: ^3.6.2 version: 3.6.2 @@ -769,10 +778,20 @@ packages: peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + '@eslint-community/eslint-utils@4.9.1': + resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + '@eslint-community/regexpp@4.12.1': resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + '@eslint-community/regexpp@4.12.2': + resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + '@eslint/config-array@0.21.0': resolution: {integrity: sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -995,8 +1014,8 @@ packages: '@next/env@16.0.10': resolution: {integrity: sha512-8tuaQkyDVgeONQ1MeT9Mkk8pQmZapMKFh5B+OrFUlG3rVmYTXcXlBetBgTurKXGaIZvkoqRT9JL5K3phXcgang==} - '@next/eslint-plugin-next@15.5.4': - resolution: {integrity: sha512-SR1vhXNNg16T4zffhJ4TS7Xn7eq4NfKfcOsRwea7RIAHrjRpI9ALYbamqIJqkAhowLlERffiwk0FMvTLNdnVtw==} + '@next/eslint-plugin-next@16.1.6': + resolution: {integrity: sha512-/Qq3PTagA6+nYVfryAtQ7/9FEr/6YVyvOtl6rZnGsbReGLf0jZU6gkpr1FuChAQpvV46a78p4cmHOVP8mbfSMQ==} '@next/swc-darwin-arm64@16.0.10': resolution: {integrity: sha512-4XgdKtdVsaflErz+B5XeG0T5PeXKDdruDf3CRpnhN+8UebNa5N2H58+3GDgpn/9GBurrQ1uWW768FfscwYkJRg==} @@ -1046,6 +1065,12 @@ packages: cpu: [x64] os: [win32] + '@next/third-parties@16.1.5': + resolution: {integrity: sha512-p8BKg+Y6ovrh2AE4su6MjaEDBYIuk5CkeA1Gtld5V7L3+3nBN2D2N4In2YfsHxFVRVa6fPZXyd2keqEoCpIcnw==} + peerDependencies: + next: ^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0-beta.0 + react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 + '@nodelib/fs.scandir@2.1.5': resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} engines: {node: '>= 8'} @@ -1150,9 +1175,6 @@ packages: '@rtsao/scc@1.1.0': resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==} - '@rushstack/eslint-patch@1.12.0': - resolution: {integrity: sha512-5EwMtOqvJMMa3HbmxLlF74e+3/HhwBTMcvt3nqVJgGCozO6hzIPOBlwm8mGVNR9SN2IJpxSnlxczyDjcn7qIyw==} - '@standard-schema/utils@0.3.0': resolution: {integrity: sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g==} @@ -1349,159 +1371,165 @@ packages: peerDependencies: react: ^18 || ^19 - '@tiptap/core@3.7.2': - resolution: {integrity: sha512-fJwNpTx0aq4UU0HNkxPvPYfNBcTHQ/q5xBUdOB5Mgu6clwGES38jVsNNSudB8g53APUmJIS+2fJbkxl3V+0jww==} + '@tiptap/core@3.20.0': + resolution: {integrity: sha512-aC9aROgia/SpJqhsXFiX9TsligL8d+oeoI8W3u00WI45s0VfsqjgeKQLDLF7Tu7hC+7F02teC84SAHuup003VQ==} peerDependencies: - '@tiptap/pm': ^3.7.2 + '@tiptap/pm': ^3.20.0 - '@tiptap/extension-blockquote@3.7.2': - resolution: {integrity: sha512-8rNDh1E1ratex9KicvNNnjJGtF313Kpf5hXHOUcIm8FQwvA/0Tu6jq7r6VgESMyo95R3EmzRpnCYQef+zDm6OQ==} + '@tiptap/extension-blockquote@3.20.0': + resolution: {integrity: sha512-LQzn6aGtL4WXz2+rYshl/7/VnP2qJTpD7fWL96GXAzhqviPEY1bJES7poqJb3MU/gzl8VJUVzVzU1VoVfUKlbA==} peerDependencies: - '@tiptap/core': ^3.7.2 + '@tiptap/core': ^3.20.0 - '@tiptap/extension-bold@3.7.2': - resolution: {integrity: sha512-bwCn9lQEXnEi7LfIx3G/oaH4I0ZapAgrHzLCNJH/tNgRKVWym1H1Oa8PlkiFDbalWOdUkbgeAUqUaIB13k408Q==} + '@tiptap/extension-bold@3.20.0': + resolution: {integrity: sha512-sQklEWiyf58yDjiHtm5vmkVjfIc/cBuSusmCsQ0q9vGYnEF1iOHKhGpvnCeEXNeqF3fiJQRlquzt/6ymle3Iwg==} peerDependencies: - '@tiptap/core': ^3.7.2 + '@tiptap/core': ^3.20.0 - '@tiptap/extension-bubble-menu@3.7.2': - resolution: {integrity: sha512-rCJu/X7sZEYWkOwLO342JP06f4giVBECPzr/SzG/fQdAidPW96eilPk3L82w5j24kS9odTlxSLlFlIf6UZ2b9w==} + '@tiptap/extension-bubble-menu@3.20.0': + resolution: {integrity: sha512-MDosUfs8Tj+nwg8RC+wTMWGkLJORXmbR6YZgbiX4hrc7G90Gopdd6kj6ht5/T8t7dLLaX7N0+DEHdUEPGED7dw==} peerDependencies: - '@tiptap/core': ^3.7.2 - '@tiptap/pm': ^3.7.2 + '@tiptap/core': ^3.20.0 + '@tiptap/pm': ^3.20.0 - '@tiptap/extension-bullet-list@3.7.2': - resolution: {integrity: sha512-OHYYXKjmxisLQws0tW8Dz14PcyIJmaed7eypZvIm/R3hxa/7lJY/2EM/Ti5g/w1U8WPBEH1hX3icRtiulserKw==} + '@tiptap/extension-bullet-list@3.20.0': + resolution: {integrity: sha512-OcKMeopBbqWzhSi6o8nNz0aayogg1sfOAhto3NxJu3Ya32dwBFqmHXSYM6uW4jOphNvVPyjiq9aNRh3qTdd1dw==} peerDependencies: - '@tiptap/extension-list': ^3.7.2 + '@tiptap/extension-list': ^3.20.0 - '@tiptap/extension-code-block@3.7.2': - resolution: {integrity: sha512-TfixutvvbGCrSSCsfDK/PBm6A5FIzcPTSVDrmmsiAfqldj/Woy1T42dads+wv9SjKG06GlWDwYtDGAk2Uun8NA==} + '@tiptap/extension-code-block@3.20.0': + resolution: {integrity: sha512-lBbmNek14aCjrHcBcq3PRqWfNLvC6bcRa2Osc6e/LtmXlcpype4f6n+Yx+WZ+f2uUh0UmDRCz7BEyUETEsDmlQ==} peerDependencies: - '@tiptap/core': ^3.7.2 - '@tiptap/pm': ^3.7.2 + '@tiptap/core': ^3.20.0 + '@tiptap/pm': ^3.20.0 - '@tiptap/extension-code@3.7.2': - resolution: {integrity: sha512-J8FaCiKJJnHvQiPcbfbUtc5RNmGx/Gui/K5CDMPc17jhCiQ9JhR9idRPREV24Z2t7GujWX7LG6ZDDR82pSns+g==} + '@tiptap/extension-code@3.20.0': + resolution: {integrity: sha512-TYDWFeSQ9umiyrqsT6VecbuhL8XIHkUhO+gEk0sVvH67ZLwjFDhAIIgWIr1/dbIGPcvMZM19E7xUUhAdIaXaOQ==} peerDependencies: - '@tiptap/core': ^3.7.2 + '@tiptap/core': ^3.20.0 - '@tiptap/extension-document@3.7.2': - resolution: {integrity: sha512-OrHl402v2FWCUKR1Xi5MTNBAkKYQh7mtpw/WlJDFnk5z1qHLqz4UIcbGilDYzVPrNUZPhA1p3c+V5UUVUFzUfg==} + '@tiptap/extension-document@3.20.0': + resolution: {integrity: sha512-oJfLIG3vAtZo/wg29WiBcyWt22KUgddpP8wqtCE+kY5Dw8znLR9ehNmVWlSWJA5OJUMO0ntAHx4bBT+I2MBd5w==} peerDependencies: - '@tiptap/core': ^3.7.2 + '@tiptap/core': ^3.20.0 - '@tiptap/extension-dropcursor@3.7.2': - resolution: {integrity: sha512-79y6M9pJYwqcqBHIWoomfptJp0QB/TP3Y+2NOL09sMNeSdUgmz5pCVObA4H48YMkoB0EcUtux2IUOM66e4nsJA==} + '@tiptap/extension-dropcursor@3.20.0': + resolution: {integrity: sha512-d+cxplRlktVgZPwatnc34IArlppM0IFKS1J5wLk+ba1jidizsbMVh45tP/BTK2flhyfRqcNoB5R0TArhUpbkNQ==} peerDependencies: - '@tiptap/extensions': ^3.7.2 + '@tiptap/extensions': ^3.20.0 - '@tiptap/extension-floating-menu@3.7.2': - resolution: {integrity: sha512-g19ratrXlplYDS29VLQa1y/IM/ro0UFhSS4fQokiQKkazwnA1ZVnebjw8ERYg5lkMm/hiImqstpgdO0LtoivvQ==} + '@tiptap/extension-floating-menu@3.20.0': + resolution: {integrity: sha512-rYs4Bv5pVjqZ/2vvR6oe7ammZapkAwN51As/WDbemvYDjfOGRqK58qGauUjYZiDzPOEIzI2mxGwsZ4eJhPW4Ig==} peerDependencies: '@floating-ui/dom': ^1.0.0 - '@tiptap/core': ^3.7.2 - '@tiptap/pm': ^3.7.2 + '@tiptap/core': ^3.20.0 + '@tiptap/pm': ^3.20.0 + + '@tiptap/extension-gapcursor@3.20.0': + resolution: {integrity: sha512-P/LasfvG9/qFq43ZAlNbAnPnXC+/RJf49buTrhtFvI9Zg0+Lbpjx1oh6oMHB19T88Y28KtrckfFZ8aTSUWDq6w==} + peerDependencies: + '@tiptap/extensions': ^3.20.0 - '@tiptap/extension-gapcursor@3.7.2': - resolution: {integrity: sha512-vCLo2dL2SfeWjh/gJKDiu0/fz6OF7obGTJvHg/yStkoUqlAEiwKoyHP/NXeTGYJMzZzUi0kY9DtTEJdGFvphuQ==} + '@tiptap/extension-hard-break@3.20.0': + resolution: {integrity: sha512-rqvhMOw4f+XQmEthncbvDjgLH6fz8L9splnKZC7OeS0eX8b0qd7+xI1u5kyxF3KA2Z0BnigES++jjWuecqV6mA==} peerDependencies: - '@tiptap/extensions': ^3.7.2 + '@tiptap/core': ^3.20.0 - '@tiptap/extension-hard-break@3.7.2': - resolution: {integrity: sha512-nNDo+5S1yRQ3JkBM+gwpEEVZ/Kw9qWoG/cpShyGYDHo1/y8MgO+VI0kSb/LuBTw7g+jmNXdf+ZaRRI/pXsUihg==} + '@tiptap/extension-heading@3.20.0': + resolution: {integrity: sha512-JgJhurnCe3eN6a0lEsNQM/46R1bcwzwWWZEFDSb1P9dR8+t1/5v7cMZWsSInpD7R4/74iJn0+M5hcXLwCmBmYA==} peerDependencies: - '@tiptap/core': ^3.7.2 + '@tiptap/core': ^3.20.0 - '@tiptap/extension-heading@3.7.2': - resolution: {integrity: sha512-eH/G66FIRlTQz4MhEmlNNNQgVTxhoqlkyFzgeG5aipIplYOdYa5Y6Wl0NF4xqr1jAHGLAK6LaYS4FXp3TE7LyA==} + '@tiptap/extension-horizontal-rule@3.20.0': + resolution: {integrity: sha512-6uvcutFMv+9wPZgptDkbRDjAm3YVxlibmkhWD5GuaWwS9L/yUtobpI3GycujRSUZ8D3q6Q9J7LqpmQtQRTalWA==} peerDependencies: - '@tiptap/core': ^3.7.2 + '@tiptap/core': ^3.20.0 + '@tiptap/pm': ^3.20.0 - '@tiptap/extension-horizontal-rule@3.7.2': - resolution: {integrity: sha512-pN+1hJAVVP3uqtpZ5Rm7z5XUB/NGprK6wExJ04xG117E4rTVcaEb1FnMILY3J3A5XbdC3vHX+cblR8mOl1PAMw==} + '@tiptap/extension-italic@3.20.0': + resolution: {integrity: sha512-/DhnKQF8yN8RxtuL8abZ28wd5281EaGoE2Oha35zXSOF1vNYnbyt8Ymkv/7u1BcWEWTvRPgaju0YCGXisPRLYw==} peerDependencies: - '@tiptap/core': ^3.7.2 - '@tiptap/pm': ^3.7.2 + '@tiptap/core': ^3.20.0 - '@tiptap/extension-italic@3.7.2': - resolution: {integrity: sha512-1tfF37LvKgA5hg09UBgOjdMLNRb1C6keIOBF0r5oHKeWPYOf4z3j5IU9PsFUoOn53XRMb1aiD/TNbGPyoT3Fyw==} + '@tiptap/extension-link@3.20.0': + resolution: {integrity: sha512-qI/5A+R0ZWBxo/8HxSn1uOyr7odr3xHBZ/gzOR1GUJaZqjlJxkWFX0RtXMbLKEGEvT25o345cF7b0wFznEh8qA==} peerDependencies: - '@tiptap/core': ^3.7.2 + '@tiptap/core': ^3.20.0 + '@tiptap/pm': ^3.20.0 - '@tiptap/extension-link@3.7.2': - resolution: {integrity: sha512-9K54PxBiDSWAMfICqkb8jcQ6cL7vDAtjTk0zqBw4d+XuaUy0FC9QUdbx7r1Pkbf36K1/ApbvM9a7qpOirWk8Xw==} + '@tiptap/extension-list-item@3.20.0': + resolution: {integrity: sha512-qEtjaaGPuqaFB4VpLrGDoIe9RHnckxPfu6d3rc22ap6TAHCDyRv05CEyJogqccnFceG/v5WN4znUBER8RWnWHA==} peerDependencies: - '@tiptap/core': ^3.7.2 - '@tiptap/pm': ^3.7.2 + '@tiptap/extension-list': ^3.20.0 - '@tiptap/extension-list-item@3.7.2': - resolution: {integrity: sha512-962TFsx4eF5NMyLVhGFGF/btt5j3MipPhDiUsxzBgnlW8o5OonVepb9cDrqpEDQ2/wLvheWnCKuvmG7umasldQ==} + '@tiptap/extension-list-keymap@3.20.0': + resolution: {integrity: sha512-Z4GvKy04Ms4cLFN+CY6wXswd36xYsT2p/YL0V89LYFMZTerOeTjFYlndzn6svqL8NV1PRT5Diw4WTTxJSmcJPA==} peerDependencies: - '@tiptap/extension-list': ^3.7.2 + '@tiptap/extension-list': ^3.20.0 - '@tiptap/extension-list-keymap@3.7.2': - resolution: {integrity: sha512-1du9eo+NPIkuRT258yUn9bovhip556aJo/yDtRbswEVNScP1E8y/kFRWvw0HD7/YWcNqok1ZteoSwShWnKAXRQ==} + '@tiptap/extension-list@3.20.0': + resolution: {integrity: sha512-+V0/gsVWAv+7vcY0MAe6D52LYTIicMSHw00wz3ISZgprSb2yQhJ4+4gurOnUrQ4Du3AnRQvxPROaofwxIQ66WQ==} peerDependencies: - '@tiptap/extension-list': ^3.7.2 + '@tiptap/core': ^3.20.0 + '@tiptap/pm': ^3.20.0 - '@tiptap/extension-list@3.7.2': - resolution: {integrity: sha512-/tYHmEkOGcVweAc9ZgnAXkzua5aJfu7TjZcKTq5fmDt6x9MY1eY1+egS7D9hVR2sUSAC10VgXmYdYPDsKF3p2g==} + '@tiptap/extension-ordered-list@3.20.0': + resolution: {integrity: sha512-jVKnJvrizLk7etwBMfyoj6H2GE4M+PD4k7Bwp6Bh1ohBWtfIA1TlngdS842Mx5i1VB2e3UWIwr8ZH46gl6cwMA==} peerDependencies: - '@tiptap/core': ^3.7.2 - '@tiptap/pm': ^3.7.2 + '@tiptap/extension-list': ^3.20.0 - '@tiptap/extension-ordered-list@3.7.2': - resolution: {integrity: sha512-Tu61/JXh1RRd3Kb+s7A7jmpnB+w1pqGSRfMXBtYHDHDIGyXu255ru7soX44lJfHGq/zYcTFSHGSsi8o23QONJg==} + '@tiptap/extension-paragraph@3.20.0': + resolution: {integrity: sha512-mM99zK4+RnEXIMCv6akfNATAs0Iija6FgyFA9J9NZ6N4o8y9QiNLLa6HjLpAC+W+VoCgQIekyoF/Q9ftxmAYDQ==} peerDependencies: - '@tiptap/extension-list': ^3.7.2 + '@tiptap/core': ^3.20.0 - '@tiptap/extension-paragraph@3.7.2': - resolution: {integrity: sha512-HmDuAixTcvP4A/v6OLkh/C6nB86i7/DRNswBf/Udak8TgWUIcSUK0iActxxm5+B3MZTSf3U87JzyI6IeuElLIQ==} + '@tiptap/extension-placeholder@3.20.0': + resolution: {integrity: sha512-ZhYD3L5m16ydSe2z8vqz+RdtAG/iOQaFHHedFct70tKRoLqi2ajF5kgpemu8DwpaRTcyiCN4G99J/+MqehKNjQ==} peerDependencies: - '@tiptap/core': ^3.7.2 + '@tiptap/extensions': ^3.20.0 - '@tiptap/extension-placeholder@3.7.2': - resolution: {integrity: sha512-YUr1rlxkgEBQDsMLpU8ruA4Uet37kXvwwFwIbDgaFd4NpfAD0fvX2zmPhHIBzsdH3e4V6eNp6IkmoYCWvugAAA==} + '@tiptap/extension-strike@3.20.0': + resolution: {integrity: sha512-0vcTZRRAiDfon3VM1mHBr9EFmTkkUXMhm0Xtdtn0bGe+sIqufyi+hUYTEw93EQOD9XNsPkrud6jzQNYpX2H3AQ==} peerDependencies: - '@tiptap/extensions': ^3.7.2 + '@tiptap/core': ^3.20.0 - '@tiptap/extension-strike@3.7.2': - resolution: {integrity: sha512-I1G+4vZbCBTpAMmyVwaO8cLBJgXEf1DyEzc0B+HhTJiBa9qA9OKgRQEGFgisxu1kggjbzB6+d0+taHfjsZC1SQ==} + '@tiptap/extension-table@3.20.0': + resolution: {integrity: sha512-vaaMtQ2KnSSr8WVwgWf7NYNzPwrHx/6T0ekA5CxV8qNUEpXIaLXa5+tE7tJHWEdNR2KY3gUJ46D3lfOkxyFrBQ==} peerDependencies: - '@tiptap/core': ^3.7.2 + '@tiptap/core': ^3.20.0 + '@tiptap/pm': ^3.20.0 - '@tiptap/extension-text@3.7.2': - resolution: {integrity: sha512-sKaeGYNP1+bAe2rvmzWLW5qH9DsSFOJlOUEOFchR0OX0rC7bbGS6/KuyAq0w6UkL+cMJnDyAbv3KeD2WEA192w==} + '@tiptap/extension-text@3.20.0': + resolution: {integrity: sha512-tf8bE8tSaOEWabCzPm71xwiUhyMFKqY9jkP5af3Kr1/F45jzZFIQAYZooHI/+zCHRrgJ99MQHKHe1ZNvODrKHQ==} peerDependencies: - '@tiptap/core': ^3.7.2 + '@tiptap/core': ^3.20.0 - '@tiptap/extension-underline@3.7.2': - resolution: {integrity: sha512-GDpUZllTD7uIdHjTzYJ6i4jUgCeviW40SCpLVVv1xH0gj1t1xu0Rnxmk+bXkF2XNe8jPXkMCgYNr6DR6eO8roQ==} + '@tiptap/extension-underline@3.20.0': + resolution: {integrity: sha512-LzNXuy2jwR/y+ymoUqC72TiGzbOCjioIjsDu0MNYpHuHqTWPK5aV9Mh0nbZcYFy/7fPlV1q0W139EbJeYBZEAQ==} peerDependencies: - '@tiptap/core': ^3.7.2 + '@tiptap/core': ^3.20.0 - '@tiptap/extensions@3.7.2': - resolution: {integrity: sha512-FaToSdU9fhQk2swkaXrAQNgdaE0dwLbUHcvilW5F4xTpQfZ3J535u5U2TUYf+f9KKSV5fTmD4QGNY9qxY7ihTg==} + '@tiptap/extensions@3.20.0': + resolution: {integrity: sha512-HIsXX942w3nbxEQBlMAAR/aa6qiMBEP7CsSMxaxmTIVAmW35p6yUASw6GdV1u0o3lCZjXq2OSRMTskzIqi5uLg==} peerDependencies: - '@tiptap/core': ^3.7.2 - '@tiptap/pm': ^3.7.2 + '@tiptap/core': ^3.20.0 + '@tiptap/pm': ^3.20.0 - '@tiptap/pm@3.7.2': - resolution: {integrity: sha512-i2fvXDapwo/TWfHM6STYEbkYyF3qyfN6KEBKPrleX/Z80G5bLxom0gB79TsjLNxTLi6mdf0vTHgAcXMG1avc2g==} + '@tiptap/pm@3.20.0': + resolution: {integrity: sha512-jn+2KnQZn+b+VXr8EFOJKsnjVNaA4diAEr6FOazupMt8W8ro1hfpYtZ25JL87Kao/WbMze55sd8M8BDXLUKu1A==} - '@tiptap/react@3.7.2': - resolution: {integrity: sha512-tka4ioSmsGI4TyGZ7jAUoIw8t8DVjr1It0B38vZVLqg8M/ZFgR1NkF50TJ6qAkhy8Uz12AO50so0v79tV2pmEA==} + '@tiptap/react@3.20.0': + resolution: {integrity: sha512-jFLNzkmn18zqefJwPje0PPd9VhZ7Oy28YHiSvSc7YpBnQIbuN/HIxZ2lrOsKyEHta0WjRZjfU5X1pGxlbcGwOA==} peerDependencies: - '@tiptap/core': ^3.7.2 - '@tiptap/pm': ^3.7.2 + '@tiptap/core': ^3.20.0 + '@tiptap/pm': ^3.20.0 '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0 '@types/react-dom': ^17.0.0 || ^18.0.0 || ^19.0.0 react: ^17.0.0 || ^18.0.0 || ^19.0.0 react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0 - '@tiptap/starter-kit@3.7.2': - resolution: {integrity: sha512-43GwI+2Mtc/ci7J4eJOE02wZxp5KIsDTMMb0peNksPcEGaURGdDhav9zbAW24NRjRxU7Auk/zaQu9O8+ZE0v0A==} + '@tiptap/starter-kit@3.20.0': + resolution: {integrity: sha512-W4+1re35pDNY/7rpXVg+OKo/Fa4Gfrn08Bq3E3fzlJw6gjE3tYU8dY9x9vC2rK9pd9NOp7Af11qCFDaWpohXkw==} '@trysound/sax@0.2.0': resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} @@ -1552,63 +1580,63 @@ packages: '@types/use-sync-external-store@0.0.6': resolution: {integrity: sha512-zFDAD+tlpf2r4asuHEj0XH6pY6i0g5NeAHPn+15wk3BV6JA69eERFXC1gyGThDkVa1zCyKr5jox1+2LbV/AMLg==} - '@typescript-eslint/eslint-plugin@8.45.0': - resolution: {integrity: sha512-HC3y9CVuevvWCl/oyZuI47dOeDF9ztdMEfMH8/DW/Mhwa9cCLnK1oD7JoTVGW/u7kFzNZUKUoyJEqkaJh5y3Wg==} + '@typescript-eslint/eslint-plugin@8.56.1': + resolution: {integrity: sha512-Jz9ZztpB37dNC+HU2HI28Bs9QXpzCz+y/twHOwhyrIRdbuVDxSytJNDl6z/aAKlaRIwC7y8wJdkBv7FxYGgi0A==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - '@typescript-eslint/parser': ^8.45.0 - eslint: ^8.57.0 || ^9.0.0 + '@typescript-eslint/parser': ^8.56.1 + eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/parser@8.45.0': - resolution: {integrity: sha512-TGf22kon8KW+DeKaUmOibKWktRY8b2NSAZNdtWh798COm1NWx8+xJ6iFBtk3IvLdv6+LGLJLRlyhrhEDZWargQ==} + '@typescript-eslint/parser@8.56.1': + resolution: {integrity: sha512-klQbnPAAiGYFyI02+znpBRLyjL4/BrBd0nyWkdC0s/6xFLkXYQ8OoRrSkqacS1ddVxf/LDyODIKbQ5TgKAf/Fg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - eslint: ^8.57.0 || ^9.0.0 + eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/project-service@8.45.0': - resolution: {integrity: sha512-3pcVHwMG/iA8afdGLMuTibGR7pDsn9RjDev6CCB+naRsSYs2pns5QbinF4Xqw6YC/Sj3lMrm/Im0eMfaa61WUg==} + '@typescript-eslint/project-service@8.56.1': + resolution: {integrity: sha512-TAdqQTzHNNvlVFfR+hu2PDJrURiwKsUvxFn1M0h95BB8ah5jejas08jUWG4dBA68jDMI988IvtfdAI53JzEHOQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/scope-manager@8.45.0': - resolution: {integrity: sha512-clmm8XSNj/1dGvJeO6VGH7EUSeA0FMs+5au/u3lrA3KfG8iJ4u8ym9/j2tTEoacAffdW1TVUzXO30W1JTJS7dA==} + '@typescript-eslint/scope-manager@8.56.1': + resolution: {integrity: sha512-YAi4VDKcIZp0O4tz/haYKhmIDZFEUPOreKbfdAN3SzUDMcPhJ8QI99xQXqX+HoUVq8cs85eRKnD+rne2UAnj2w==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/tsconfig-utils@8.45.0': - resolution: {integrity: sha512-aFdr+c37sc+jqNMGhH+ajxPXwjv9UtFZk79k8pLoJ6p4y0snmYpPA52GuWHgt2ZF4gRRW6odsEj41uZLojDt5w==} + '@typescript-eslint/tsconfig-utils@8.56.1': + resolution: {integrity: sha512-qOtCYzKEeyr3aR9f28mPJqBty7+DBqsdd63eO0yyDwc6vgThj2UjWfJIcsFeSucYydqcuudMOprZ+x1SpF3ZuQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/type-utils@8.45.0': - resolution: {integrity: sha512-bpjepLlHceKgyMEPglAeULX1vixJDgaKocp0RVJ5u4wLJIMNuKtUXIczpJCPcn2waII0yuvks/5m5/h3ZQKs0A==} + '@typescript-eslint/type-utils@8.56.1': + resolution: {integrity: sha512-yB/7dxi7MgTtGhZdaHCemf7PuwrHMenHjmzgUW1aJpO+bBU43OycnM3Wn+DdvDO/8zzA9HlhaJ0AUGuvri4oGg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - eslint: ^8.57.0 || ^9.0.0 + eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/types@8.45.0': - resolution: {integrity: sha512-WugXLuOIq67BMgQInIxxnsSyRLFxdkJEJu8r4ngLR56q/4Q5LrbfkFRH27vMTjxEK8Pyz7QfzuZe/G15qQnVRA==} + '@typescript-eslint/types@8.56.1': + resolution: {integrity: sha512-dbMkdIUkIkchgGDIv7KLUpa0Mda4IYjo4IAMJUZ+3xNoUXxMsk9YtKpTHSChRS85o+H9ftm51gsK1dZReY9CVw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/typescript-estree@8.45.0': - resolution: {integrity: sha512-GfE1NfVbLam6XQ0LcERKwdTTPlLvHvXXhOeUGC1OXi4eQBoyy1iVsW+uzJ/J9jtCz6/7GCQ9MtrQ0fml/jWCnA==} + '@typescript-eslint/typescript-estree@8.56.1': + resolution: {integrity: sha512-qzUL1qgalIvKWAf9C1HpvBjif+Vm6rcT5wZd4VoMb9+Km3iS3Cv9DY6dMRMDtPnwRAFyAi7YXJpTIEXLvdfPxg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/utils@8.45.0': - resolution: {integrity: sha512-bxi1ht+tLYg4+XV2knz/F7RVhU0k6VrSMc9sb8DQ6fyCTrGQLHfo7lDtN0QJjZjKkLA2ThrKuCdHEvLReqtIGg==} + '@typescript-eslint/utils@8.56.1': + resolution: {integrity: sha512-HPAVNIME3tABJ61siYlHzSWCGtOoeP2RTIaHXFMPqjrQKCGB9OgUVdiNgH7TJS2JNIQ5qQ4RsAUDuGaGme/KOA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - eslint: ^8.57.0 || ^9.0.0 + eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/visitor-keys@8.45.0': - resolution: {integrity: sha512-qsaFBA3e09MIDAGFUrTk+dzqtfv1XPVz8t8d1f0ybTzrCY7BKiMC5cjrl1O/P7UmHsNyW90EYSkU/ZWpmXelag==} + '@typescript-eslint/visitor-keys@8.56.1': + resolution: {integrity: sha512-KiROIzYdEV85YygXw6BI/Dx4fnBlFQu6Mq4QE4MOH9fFnhohw6wX/OAvDY2/C+ut0I3RSPKenvZJIVYqJNkhEw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@unrs/resolver-binding-android-arm-eabi@1.11.1': @@ -1813,8 +1841,13 @@ packages: balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - baseline-browser-mapping@2.8.13: - resolution: {integrity: sha512-7s16KR8io8nIBWQyCYhmFhd+ebIzb9VKTzki+wOJXHTxTnV6+mFGH3+Jwn1zoKaY9/H9T/0BcKCZnzXljPnpSQ==} + balanced-match@4.0.4: + resolution: {integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==} + engines: {node: 18 || 20 || >=22} + + baseline-browser-mapping@2.10.0: + resolution: {integrity: sha512-lIyg0szRfYbiy67j9KN8IyeD7q7hcmqnJ1ddWmNt19ItGpNN64mnllmxUNFIOdOm6by97jlL6wfpTTJrmnjWAA==} + engines: {node: '>=6.0.0'} hasBin: true bidi-js@1.0.3: @@ -1829,6 +1862,10 @@ packages: brace-expansion@2.0.2: resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==} + brace-expansion@5.0.4: + resolution: {integrity: sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg==} + engines: {node: 18 || 20 || >=22} + braces@3.0.3: resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} engines: {node: '>=8'} @@ -2121,10 +2158,10 @@ packages: resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} engines: {node: '>=10'} - eslint-config-next@15.5.4: - resolution: {integrity: sha512-BzgVVuT3kfJes8i2GHenC1SRJ+W3BTML11lAOYFOOPzrk2xp66jBOAGEFRw+3LkYCln5UzvFsLhojrshb5Zfaw==} + eslint-config-next@16.1.6: + resolution: {integrity: sha512-vKq40io2B0XtkkNDYyleATwblNt8xuh3FWp8SpSz3pt7P01OkBFlKsJZ2mWt5WsCySlDQLckb1zMY9yE9Qy0LA==} peerDependencies: - eslint: ^7.23.0 || ^8.0.0 || ^9.0.0 + eslint: '>=9.0.0' typescript: '>=3.3.1' peerDependenciesMeta: typescript: @@ -2183,9 +2220,9 @@ packages: peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9 - eslint-plugin-react-hooks@5.2.0: - resolution: {integrity: sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==} - engines: {node: '>=10'} + eslint-plugin-react-hooks@7.0.1: + resolution: {integrity: sha512-O0d0m04evaNzEPoSW+59Mezf8Qt0InfgGIBJnpC0h3NH/WjUAR7BIKUfysC6todmtiZ/A0oUVS8Gce0WhBrHsA==} + engines: {node: '>=18'} peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 @@ -2207,6 +2244,10 @@ packages: resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + eslint-visitor-keys@5.0.1: + resolution: {integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==} + engines: {node: ^20.19.0 || ^22.13.0 || >=24} + eslint@9.36.0: resolution: {integrity: sha512-hB4FIzXovouYzwzECDcUkJ4OcfOEkXTv2zRY6B9bkwjx/cprAq0uvm1nl7zvQ0/TsUk0zQiN4uPfJpB9m+rPMQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -2240,14 +2281,14 @@ packages: fast-deep-equal@3.1.3: resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + fast-equals@5.4.0: + resolution: {integrity: sha512-jt2DW/aNFNwke7AUd+Z+e6pz39KO5rzdbbFCg2sGafS4mk13MI7Z8O5z9cADNn5lhGODIgLwug6TZO2ctf7kcw==} + engines: {node: '>=6.0.0'} + fast-glob@3.3.1: resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==} engines: {node: '>=8.6.0'} - fast-glob@3.3.3: - resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} - engines: {node: '>=8.6.0'} - fast-json-stable-stringify@2.1.0: resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} @@ -2369,6 +2410,10 @@ packages: resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} engines: {node: '>=18'} + globals@16.4.0: + resolution: {integrity: sha512-ob/2LcVVaVGCYN+r14cnwnoDPUufjiYgSqRhiFD0Q1iI4Odora5RE8Iv1D24hAz5oMophRGkGz+yuvQmmUMnMw==} + engines: {node: '>=18'} + globalthis@1.0.4: resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} engines: {node: '>= 0.4'} @@ -2380,9 +2425,6 @@ packages: graceful-fs@4.2.11: resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} - graphemer@1.4.0: - resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} - has-bigints@1.1.0: resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==} engines: {node: '>= 0.4'} @@ -2410,6 +2452,12 @@ packages: resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} engines: {node: '>= 0.4'} + hermes-estree@0.25.1: + resolution: {integrity: sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==} + + hermes-parser@0.25.1: + resolution: {integrity: sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==} + html-encoding-sniffer@4.0.0: resolution: {integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==} engines: {node: '>=18'} @@ -2779,6 +2827,10 @@ packages: resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} engines: {node: '>= 0.6'} + minimatch@10.2.4: + resolution: {integrity: sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==} + engines: {node: 18 || 20 || >=22} + minimatch@3.1.2: resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} @@ -2786,10 +2838,6 @@ packages: resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} engines: {node: '>=10'} - minimatch@9.0.5: - resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} - engines: {node: '>=16 || 14 >=14.17'} - minimist@1.2.8: resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} @@ -3249,6 +3297,11 @@ packages: engines: {node: '>=10'} hasBin: true + semver@7.7.4: + resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==} + engines: {node: '>=10'} + hasBin: true + set-function-length@1.2.2: resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} engines: {node: '>= 0.4'} @@ -3387,6 +3440,9 @@ packages: resolution: {integrity: sha512-nlGpxf+hv0v7GkWBK2V9spgactGOp0qvfWRxUMjqHyzrt3SgwE48DIv/FhqPHJYLHpgW1opq3nERbz5Anq7n1g==} engines: {node: '>=18'} + third-party-capital@1.0.20: + resolution: {integrity: sha512-oB7yIimd8SuGptespDAZnNkzIz+NWaJCu2RMsbs4Wmp9zSDUM8Nhi3s2OOcqYuv3mN4hitXc8DVx+LyUmbUDiA==} + tinyglobby@0.2.15: resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} engines: {node: '>=12.0.0'} @@ -3410,8 +3466,8 @@ packages: resolution: {integrity: sha512-bLVMLPtstlZ4iMQHpFHTR7GAGj2jxi8Dg0s2h2MafAE4uSWF98FC/3MomU51iQAMf8/qDUbKWf5GxuvvVcXEhw==} engines: {node: '>=20'} - ts-api-utils@2.1.0: - resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==} + ts-api-utils@2.4.0: + resolution: {integrity: sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==} engines: {node: '>=18.12'} peerDependencies: typescript: '>=4.8.4' @@ -3442,6 +3498,13 @@ packages: resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==} engines: {node: '>= 0.4'} + typescript-eslint@8.56.1: + resolution: {integrity: sha512-U4lM6pjmBX7J5wk4szltF7I1cGBHXZopnAXCMXb3+fZ3B/0Z3hq3wS/CCUB2NZBNAExK92mCU2tEohWuwVMsDQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 + typescript: '>=4.8.4 <6.0.0' + typescript@5.9.2: resolution: {integrity: sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==} engines: {node: '>=14.17'} @@ -3574,6 +3637,12 @@ packages: resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} engines: {node: '>=10'} + zod-validation-error@4.0.2: + resolution: {integrity: sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==} + engines: {node: '>=18.0.0'} + peerDependencies: + zod: ^3.25.0 || ^4.0.0 + zod@4.1.12: resolution: {integrity: sha512-JInaHOamG8pt5+Ey8kGmdcAcg3OL9reK8ltczgHTAwNhMys/6ThXHityHxVV2p3fkw/c+MAvBHFVYHFZDmjMCQ==} @@ -4392,8 +4461,15 @@ snapshots: eslint: 9.36.0(jiti@2.6.0) eslint-visitor-keys: 3.4.3 + '@eslint-community/eslint-utils@4.9.1(eslint@9.36.0(jiti@2.6.0))': + dependencies: + eslint: 9.36.0(jiti@2.6.0) + eslint-visitor-keys: 3.4.3 + '@eslint-community/regexpp@4.12.1': {} + '@eslint-community/regexpp@4.12.2': {} + '@eslint/config-array@0.21.0': dependencies: '@eslint/object-schema': 2.1.6 @@ -4593,7 +4669,7 @@ snapshots: '@next/env@16.0.10': {} - '@next/eslint-plugin-next@15.5.4': + '@next/eslint-plugin-next@16.1.6': dependencies: fast-glob: 3.3.1 @@ -4621,6 +4697,12 @@ snapshots: '@next/swc-win32-x64-msvc@16.0.10': optional: true + '@next/third-parties@16.1.5(next@16.0.10(@babel/core@7.28.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(sass@1.93.2))(react@19.1.0)': + dependencies: + next: 16.0.10(@babel/core@7.28.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(sass@1.93.2) + react: 19.1.0 + third-party-capital: 1.0.20 + '@nodelib/fs.scandir@2.1.5': dependencies: '@nodelib/fs.stat': 2.0.5 @@ -4700,8 +4782,6 @@ snapshots: '@rtsao/scc@1.1.0': {} - '@rushstack/eslint-patch@1.12.0': {} - '@standard-schema/utils@0.3.0': {} '@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.28.4)': @@ -4907,123 +4987,128 @@ snapshots: '@tanstack/query-core': 5.90.5 react: 19.1.0 - '@tiptap/core@3.7.2(@tiptap/pm@3.7.2)': + '@tiptap/core@3.20.0(@tiptap/pm@3.20.0)': dependencies: - '@tiptap/pm': 3.7.2 + '@tiptap/pm': 3.20.0 - '@tiptap/extension-blockquote@3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))': + '@tiptap/extension-blockquote@3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))': dependencies: - '@tiptap/core': 3.7.2(@tiptap/pm@3.7.2) + '@tiptap/core': 3.20.0(@tiptap/pm@3.20.0) - '@tiptap/extension-bold@3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))': + '@tiptap/extension-bold@3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))': dependencies: - '@tiptap/core': 3.7.2(@tiptap/pm@3.7.2) + '@tiptap/core': 3.20.0(@tiptap/pm@3.20.0) - '@tiptap/extension-bubble-menu@3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2)': + '@tiptap/extension-bubble-menu@3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0)': dependencies: '@floating-ui/dom': 1.7.4 - '@tiptap/core': 3.7.2(@tiptap/pm@3.7.2) - '@tiptap/pm': 3.7.2 + '@tiptap/core': 3.20.0(@tiptap/pm@3.20.0) + '@tiptap/pm': 3.20.0 optional: true - '@tiptap/extension-bullet-list@3.7.2(@tiptap/extension-list@3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2))': + '@tiptap/extension-bullet-list@3.20.0(@tiptap/extension-list@3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0))': dependencies: - '@tiptap/extension-list': 3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2) + '@tiptap/extension-list': 3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0) - '@tiptap/extension-code-block@3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2)': + '@tiptap/extension-code-block@3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0)': dependencies: - '@tiptap/core': 3.7.2(@tiptap/pm@3.7.2) - '@tiptap/pm': 3.7.2 + '@tiptap/core': 3.20.0(@tiptap/pm@3.20.0) + '@tiptap/pm': 3.20.0 - '@tiptap/extension-code@3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))': + '@tiptap/extension-code@3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))': dependencies: - '@tiptap/core': 3.7.2(@tiptap/pm@3.7.2) + '@tiptap/core': 3.20.0(@tiptap/pm@3.20.0) - '@tiptap/extension-document@3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))': + '@tiptap/extension-document@3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))': dependencies: - '@tiptap/core': 3.7.2(@tiptap/pm@3.7.2) + '@tiptap/core': 3.20.0(@tiptap/pm@3.20.0) - '@tiptap/extension-dropcursor@3.7.2(@tiptap/extensions@3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2))': + '@tiptap/extension-dropcursor@3.20.0(@tiptap/extensions@3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0))': dependencies: - '@tiptap/extensions': 3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2) + '@tiptap/extensions': 3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0) - '@tiptap/extension-floating-menu@3.7.2(@floating-ui/dom@1.7.4)(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2)': + '@tiptap/extension-floating-menu@3.20.0(@floating-ui/dom@1.7.4)(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0)': dependencies: '@floating-ui/dom': 1.7.4 - '@tiptap/core': 3.7.2(@tiptap/pm@3.7.2) - '@tiptap/pm': 3.7.2 + '@tiptap/core': 3.20.0(@tiptap/pm@3.20.0) + '@tiptap/pm': 3.20.0 optional: true - '@tiptap/extension-gapcursor@3.7.2(@tiptap/extensions@3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2))': + '@tiptap/extension-gapcursor@3.20.0(@tiptap/extensions@3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0))': dependencies: - '@tiptap/extensions': 3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2) + '@tiptap/extensions': 3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0) - '@tiptap/extension-hard-break@3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))': + '@tiptap/extension-hard-break@3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))': dependencies: - '@tiptap/core': 3.7.2(@tiptap/pm@3.7.2) + '@tiptap/core': 3.20.0(@tiptap/pm@3.20.0) - '@tiptap/extension-heading@3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))': + '@tiptap/extension-heading@3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))': dependencies: - '@tiptap/core': 3.7.2(@tiptap/pm@3.7.2) + '@tiptap/core': 3.20.0(@tiptap/pm@3.20.0) - '@tiptap/extension-horizontal-rule@3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2)': + '@tiptap/extension-horizontal-rule@3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0)': dependencies: - '@tiptap/core': 3.7.2(@tiptap/pm@3.7.2) - '@tiptap/pm': 3.7.2 + '@tiptap/core': 3.20.0(@tiptap/pm@3.20.0) + '@tiptap/pm': 3.20.0 - '@tiptap/extension-italic@3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))': + '@tiptap/extension-italic@3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))': dependencies: - '@tiptap/core': 3.7.2(@tiptap/pm@3.7.2) + '@tiptap/core': 3.20.0(@tiptap/pm@3.20.0) - '@tiptap/extension-link@3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2)': + '@tiptap/extension-link@3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0)': dependencies: - '@tiptap/core': 3.7.2(@tiptap/pm@3.7.2) - '@tiptap/pm': 3.7.2 + '@tiptap/core': 3.20.0(@tiptap/pm@3.20.0) + '@tiptap/pm': 3.20.0 linkifyjs: 4.3.2 - '@tiptap/extension-list-item@3.7.2(@tiptap/extension-list@3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2))': + '@tiptap/extension-list-item@3.20.0(@tiptap/extension-list@3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0))': + dependencies: + '@tiptap/extension-list': 3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0) + + '@tiptap/extension-list-keymap@3.20.0(@tiptap/extension-list@3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0))': dependencies: - '@tiptap/extension-list': 3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2) + '@tiptap/extension-list': 3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0) - '@tiptap/extension-list-keymap@3.7.2(@tiptap/extension-list@3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2))': + '@tiptap/extension-list@3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0)': dependencies: - '@tiptap/extension-list': 3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2) + '@tiptap/core': 3.20.0(@tiptap/pm@3.20.0) + '@tiptap/pm': 3.20.0 - '@tiptap/extension-list@3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2)': + '@tiptap/extension-ordered-list@3.20.0(@tiptap/extension-list@3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0))': dependencies: - '@tiptap/core': 3.7.2(@tiptap/pm@3.7.2) - '@tiptap/pm': 3.7.2 + '@tiptap/extension-list': 3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0) - '@tiptap/extension-ordered-list@3.7.2(@tiptap/extension-list@3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2))': + '@tiptap/extension-paragraph@3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))': dependencies: - '@tiptap/extension-list': 3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2) + '@tiptap/core': 3.20.0(@tiptap/pm@3.20.0) - '@tiptap/extension-paragraph@3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))': + '@tiptap/extension-placeholder@3.20.0(@tiptap/extensions@3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0))': dependencies: - '@tiptap/core': 3.7.2(@tiptap/pm@3.7.2) + '@tiptap/extensions': 3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0) - '@tiptap/extension-placeholder@3.7.2(@tiptap/extensions@3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2))': + '@tiptap/extension-strike@3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))': dependencies: - '@tiptap/extensions': 3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2) + '@tiptap/core': 3.20.0(@tiptap/pm@3.20.0) - '@tiptap/extension-strike@3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))': + '@tiptap/extension-table@3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0)': dependencies: - '@tiptap/core': 3.7.2(@tiptap/pm@3.7.2) + '@tiptap/core': 3.20.0(@tiptap/pm@3.20.0) + '@tiptap/pm': 3.20.0 - '@tiptap/extension-text@3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))': + '@tiptap/extension-text@3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))': dependencies: - '@tiptap/core': 3.7.2(@tiptap/pm@3.7.2) + '@tiptap/core': 3.20.0(@tiptap/pm@3.20.0) - '@tiptap/extension-underline@3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))': + '@tiptap/extension-underline@3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))': dependencies: - '@tiptap/core': 3.7.2(@tiptap/pm@3.7.2) + '@tiptap/core': 3.20.0(@tiptap/pm@3.20.0) - '@tiptap/extensions@3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2)': + '@tiptap/extensions@3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0)': dependencies: - '@tiptap/core': 3.7.2(@tiptap/pm@3.7.2) - '@tiptap/pm': 3.7.2 + '@tiptap/core': 3.20.0(@tiptap/pm@3.20.0) + '@tiptap/pm': 3.20.0 - '@tiptap/pm@3.7.2': + '@tiptap/pm@3.20.0': dependencies: prosemirror-changeset: 2.3.1 prosemirror-collab: 1.3.1 @@ -5044,49 +5129,49 @@ snapshots: prosemirror-transform: 1.10.4 prosemirror-view: 1.41.3 - '@tiptap/react@3.7.2(@floating-ui/dom@1.7.4)(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2)(@types/react-dom@19.1.9(@types/react@19.1.16))(@types/react@19.1.16)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + '@tiptap/react@3.20.0(@floating-ui/dom@1.7.4)(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0)(@types/react-dom@19.1.9(@types/react@19.1.16))(@types/react@19.1.16)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@tiptap/core': 3.7.2(@tiptap/pm@3.7.2) - '@tiptap/pm': 3.7.2 + '@tiptap/core': 3.20.0(@tiptap/pm@3.20.0) + '@tiptap/pm': 3.20.0 '@types/react': 19.1.16 '@types/react-dom': 19.1.9(@types/react@19.1.16) '@types/use-sync-external-store': 0.0.6 - fast-deep-equal: 3.1.3 + fast-equals: 5.4.0 react: 19.1.0 react-dom: 19.1.0(react@19.1.0) use-sync-external-store: 1.6.0(react@19.1.0) optionalDependencies: - '@tiptap/extension-bubble-menu': 3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2) - '@tiptap/extension-floating-menu': 3.7.2(@floating-ui/dom@1.7.4)(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2) + '@tiptap/extension-bubble-menu': 3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0) + '@tiptap/extension-floating-menu': 3.20.0(@floating-ui/dom@1.7.4)(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0) transitivePeerDependencies: - '@floating-ui/dom' - '@tiptap/starter-kit@3.7.2': - dependencies: - '@tiptap/core': 3.7.2(@tiptap/pm@3.7.2) - '@tiptap/extension-blockquote': 3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2)) - '@tiptap/extension-bold': 3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2)) - '@tiptap/extension-bullet-list': 3.7.2(@tiptap/extension-list@3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2)) - '@tiptap/extension-code': 3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2)) - '@tiptap/extension-code-block': 3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2) - '@tiptap/extension-document': 3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2)) - '@tiptap/extension-dropcursor': 3.7.2(@tiptap/extensions@3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2)) - '@tiptap/extension-gapcursor': 3.7.2(@tiptap/extensions@3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2)) - '@tiptap/extension-hard-break': 3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2)) - '@tiptap/extension-heading': 3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2)) - '@tiptap/extension-horizontal-rule': 3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2) - '@tiptap/extension-italic': 3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2)) - '@tiptap/extension-link': 3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2) - '@tiptap/extension-list': 3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2) - '@tiptap/extension-list-item': 3.7.2(@tiptap/extension-list@3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2)) - '@tiptap/extension-list-keymap': 3.7.2(@tiptap/extension-list@3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2)) - '@tiptap/extension-ordered-list': 3.7.2(@tiptap/extension-list@3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2)) - '@tiptap/extension-paragraph': 3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2)) - '@tiptap/extension-strike': 3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2)) - '@tiptap/extension-text': 3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2)) - '@tiptap/extension-underline': 3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2)) - '@tiptap/extensions': 3.7.2(@tiptap/core@3.7.2(@tiptap/pm@3.7.2))(@tiptap/pm@3.7.2) - '@tiptap/pm': 3.7.2 + '@tiptap/starter-kit@3.20.0': + dependencies: + '@tiptap/core': 3.20.0(@tiptap/pm@3.20.0) + '@tiptap/extension-blockquote': 3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0)) + '@tiptap/extension-bold': 3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0)) + '@tiptap/extension-bullet-list': 3.20.0(@tiptap/extension-list@3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0)) + '@tiptap/extension-code': 3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0)) + '@tiptap/extension-code-block': 3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0) + '@tiptap/extension-document': 3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0)) + '@tiptap/extension-dropcursor': 3.20.0(@tiptap/extensions@3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0)) + '@tiptap/extension-gapcursor': 3.20.0(@tiptap/extensions@3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0)) + '@tiptap/extension-hard-break': 3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0)) + '@tiptap/extension-heading': 3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0)) + '@tiptap/extension-horizontal-rule': 3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0) + '@tiptap/extension-italic': 3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0)) + '@tiptap/extension-link': 3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0) + '@tiptap/extension-list': 3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0) + '@tiptap/extension-list-item': 3.20.0(@tiptap/extension-list@3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0)) + '@tiptap/extension-list-keymap': 3.20.0(@tiptap/extension-list@3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0)) + '@tiptap/extension-ordered-list': 3.20.0(@tiptap/extension-list@3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0)) + '@tiptap/extension-paragraph': 3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0)) + '@tiptap/extension-strike': 3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0)) + '@tiptap/extension-text': 3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0)) + '@tiptap/extension-underline': 3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0)) + '@tiptap/extensions': 3.20.0(@tiptap/core@3.20.0(@tiptap/pm@3.20.0))(@tiptap/pm@3.20.0) + '@tiptap/pm': 3.20.0 '@trysound/sax@0.2.0': {} @@ -5135,98 +5220,96 @@ snapshots: '@types/use-sync-external-store@0.0.6': {} - '@typescript-eslint/eslint-plugin@8.45.0(@typescript-eslint/parser@8.45.0(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)': + '@typescript-eslint/eslint-plugin@8.56.1(@typescript-eslint/parser@8.56.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)': dependencies: - '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.45.0(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2) - '@typescript-eslint/scope-manager': 8.45.0 - '@typescript-eslint/type-utils': 8.45.0(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2) - '@typescript-eslint/utils': 8.45.0(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2) - '@typescript-eslint/visitor-keys': 8.45.0 + '@eslint-community/regexpp': 4.12.2 + '@typescript-eslint/parser': 8.56.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2) + '@typescript-eslint/scope-manager': 8.56.1 + '@typescript-eslint/type-utils': 8.56.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2) + '@typescript-eslint/utils': 8.56.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2) + '@typescript-eslint/visitor-keys': 8.56.1 eslint: 9.36.0(jiti@2.6.0) - graphemer: 1.4.0 ignore: 7.0.5 natural-compare: 1.4.0 - ts-api-utils: 2.1.0(typescript@5.9.2) + ts-api-utils: 2.4.0(typescript@5.9.2) typescript: 5.9.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.45.0(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)': + '@typescript-eslint/parser@8.56.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)': dependencies: - '@typescript-eslint/scope-manager': 8.45.0 - '@typescript-eslint/types': 8.45.0 - '@typescript-eslint/typescript-estree': 8.45.0(typescript@5.9.2) - '@typescript-eslint/visitor-keys': 8.45.0 + '@typescript-eslint/scope-manager': 8.56.1 + '@typescript-eslint/types': 8.56.1 + '@typescript-eslint/typescript-estree': 8.56.1(typescript@5.9.2) + '@typescript-eslint/visitor-keys': 8.56.1 debug: 4.4.3 eslint: 9.36.0(jiti@2.6.0) typescript: 5.9.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/project-service@8.45.0(typescript@5.9.2)': + '@typescript-eslint/project-service@8.56.1(typescript@5.9.2)': dependencies: - '@typescript-eslint/tsconfig-utils': 8.45.0(typescript@5.9.2) - '@typescript-eslint/types': 8.45.0 + '@typescript-eslint/tsconfig-utils': 8.56.1(typescript@5.9.2) + '@typescript-eslint/types': 8.56.1 debug: 4.4.3 typescript: 5.9.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/scope-manager@8.45.0': + '@typescript-eslint/scope-manager@8.56.1': dependencies: - '@typescript-eslint/types': 8.45.0 - '@typescript-eslint/visitor-keys': 8.45.0 + '@typescript-eslint/types': 8.56.1 + '@typescript-eslint/visitor-keys': 8.56.1 - '@typescript-eslint/tsconfig-utils@8.45.0(typescript@5.9.2)': + '@typescript-eslint/tsconfig-utils@8.56.1(typescript@5.9.2)': dependencies: typescript: 5.9.2 - '@typescript-eslint/type-utils@8.45.0(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)': + '@typescript-eslint/type-utils@8.56.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)': dependencies: - '@typescript-eslint/types': 8.45.0 - '@typescript-eslint/typescript-estree': 8.45.0(typescript@5.9.2) - '@typescript-eslint/utils': 8.45.0(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2) + '@typescript-eslint/types': 8.56.1 + '@typescript-eslint/typescript-estree': 8.56.1(typescript@5.9.2) + '@typescript-eslint/utils': 8.56.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2) debug: 4.4.3 eslint: 9.36.0(jiti@2.6.0) - ts-api-utils: 2.1.0(typescript@5.9.2) + ts-api-utils: 2.4.0(typescript@5.9.2) typescript: 5.9.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/types@8.45.0': {} + '@typescript-eslint/types@8.56.1': {} - '@typescript-eslint/typescript-estree@8.45.0(typescript@5.9.2)': + '@typescript-eslint/typescript-estree@8.56.1(typescript@5.9.2)': dependencies: - '@typescript-eslint/project-service': 8.45.0(typescript@5.9.2) - '@typescript-eslint/tsconfig-utils': 8.45.0(typescript@5.9.2) - '@typescript-eslint/types': 8.45.0 - '@typescript-eslint/visitor-keys': 8.45.0 + '@typescript-eslint/project-service': 8.56.1(typescript@5.9.2) + '@typescript-eslint/tsconfig-utils': 8.56.1(typescript@5.9.2) + '@typescript-eslint/types': 8.56.1 + '@typescript-eslint/visitor-keys': 8.56.1 debug: 4.4.3 - fast-glob: 3.3.3 - is-glob: 4.0.3 - minimatch: 9.0.5 - semver: 7.7.2 - ts-api-utils: 2.1.0(typescript@5.9.2) + minimatch: 10.2.4 + semver: 7.7.4 + tinyglobby: 0.2.15 + ts-api-utils: 2.4.0(typescript@5.9.2) typescript: 5.9.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.45.0(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)': + '@typescript-eslint/utils@8.56.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2)': dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.6.0)) - '@typescript-eslint/scope-manager': 8.45.0 - '@typescript-eslint/types': 8.45.0 - '@typescript-eslint/typescript-estree': 8.45.0(typescript@5.9.2) + '@eslint-community/eslint-utils': 4.9.1(eslint@9.36.0(jiti@2.6.0)) + '@typescript-eslint/scope-manager': 8.56.1 + '@typescript-eslint/types': 8.56.1 + '@typescript-eslint/typescript-estree': 8.56.1(typescript@5.9.2) eslint: 9.36.0(jiti@2.6.0) typescript: 5.9.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/visitor-keys@8.45.0': + '@typescript-eslint/visitor-keys@8.56.1': dependencies: - '@typescript-eslint/types': 8.45.0 - eslint-visitor-keys: 4.2.1 + '@typescript-eslint/types': 8.56.1 + eslint-visitor-keys: 5.0.1 '@unrs/resolver-binding-android-arm-eabi@1.11.1': optional: true @@ -5427,7 +5510,9 @@ snapshots: balanced-match@1.0.2: {} - baseline-browser-mapping@2.8.13: {} + balanced-match@4.0.4: {} + + baseline-browser-mapping@2.10.0: {} bidi-js@1.0.3: dependencies: @@ -5444,13 +5529,17 @@ snapshots: dependencies: balanced-match: 1.0.2 + brace-expansion@5.0.4: + dependencies: + balanced-match: 4.0.4 + braces@3.0.3: dependencies: fill-range: 7.1.1 browserslist@4.26.3: dependencies: - baseline-browser-mapping: 2.8.13 + baseline-browser-mapping: 2.10.0 caniuse-lite: 1.0.30001746 electron-to-chromium: 1.5.233 node-releases: 2.0.23 @@ -5795,22 +5884,22 @@ snapshots: escape-string-regexp@4.0.0: {} - eslint-config-next@15.5.4(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2): + eslint-config-next@16.1.6(@typescript-eslint/parser@8.56.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2): dependencies: - '@next/eslint-plugin-next': 15.5.4 - '@rushstack/eslint-patch': 1.12.0 - '@typescript-eslint/eslint-plugin': 8.45.0(@typescript-eslint/parser@8.45.0(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2) - '@typescript-eslint/parser': 8.45.0(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2) + '@next/eslint-plugin-next': 16.1.6 eslint: 9.36.0(jiti@2.6.0) eslint-import-resolver-node: 0.3.9 eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@9.36.0(jiti@2.6.0)) - eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.45.0(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2))(eslint-import-resolver-typescript@3.10.1)(eslint@9.36.0(jiti@2.6.0)) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.56.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2))(eslint-import-resolver-typescript@3.10.1)(eslint@9.36.0(jiti@2.6.0)) eslint-plugin-jsx-a11y: 6.10.2(eslint@9.36.0(jiti@2.6.0)) eslint-plugin-react: 7.37.5(eslint@9.36.0(jiti@2.6.0)) - eslint-plugin-react-hooks: 5.2.0(eslint@9.36.0(jiti@2.6.0)) + eslint-plugin-react-hooks: 7.0.1(eslint@9.36.0(jiti@2.6.0)) + globals: 16.4.0 + typescript-eslint: 8.56.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2) optionalDependencies: typescript: 5.9.2 transitivePeerDependencies: + - '@typescript-eslint/parser' - eslint-import-resolver-webpack - eslint-plugin-import-x - supports-color @@ -5834,22 +5923,22 @@ snapshots: tinyglobby: 0.2.15 unrs-resolver: 1.11.1 optionalDependencies: - eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.45.0(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2))(eslint-import-resolver-typescript@3.10.1)(eslint@9.36.0(jiti@2.6.0)) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.56.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2))(eslint-import-resolver-typescript@3.10.1)(eslint@9.36.0(jiti@2.6.0)) transitivePeerDependencies: - supports-color - eslint-module-utils@2.12.1(@typescript-eslint/parser@8.45.0(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@9.36.0(jiti@2.6.0)): + eslint-module-utils@2.12.1(@typescript-eslint/parser@8.56.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@9.36.0(jiti@2.6.0)): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 8.45.0(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2) + '@typescript-eslint/parser': 8.56.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2) eslint: 9.36.0(jiti@2.6.0) eslint-import-resolver-node: 0.3.9 eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@9.36.0(jiti@2.6.0)) transitivePeerDependencies: - supports-color - eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.45.0(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2))(eslint-import-resolver-typescript@3.10.1)(eslint@9.36.0(jiti@2.6.0)): + eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.56.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2))(eslint-import-resolver-typescript@3.10.1)(eslint@9.36.0(jiti@2.6.0)): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.9 @@ -5860,7 +5949,7 @@ snapshots: doctrine: 2.1.0 eslint: 9.36.0(jiti@2.6.0) eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.45.0(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@9.36.0(jiti@2.6.0)) + eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.56.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@9.36.0(jiti@2.6.0)) hasown: 2.0.2 is-core-module: 2.16.1 is-glob: 4.0.3 @@ -5872,7 +5961,7 @@ snapshots: string.prototype.trimend: 1.0.9 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 8.45.0(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2) + '@typescript-eslint/parser': 8.56.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -5897,9 +5986,16 @@ snapshots: safe-regex-test: 1.1.0 string.prototype.includes: 2.0.1 - eslint-plugin-react-hooks@5.2.0(eslint@9.36.0(jiti@2.6.0)): + eslint-plugin-react-hooks@7.0.1(eslint@9.36.0(jiti@2.6.0)): dependencies: + '@babel/core': 7.28.4 + '@babel/parser': 7.28.4 eslint: 9.36.0(jiti@2.6.0) + hermes-parser: 0.25.1 + zod: 4.1.12 + zod-validation-error: 4.0.2(zod@4.1.12) + transitivePeerDependencies: + - supports-color eslint-plugin-react@7.37.5(eslint@9.36.0(jiti@2.6.0)): dependencies: @@ -5932,6 +6028,8 @@ snapshots: eslint-visitor-keys@4.2.1: {} + eslint-visitor-keys@5.0.1: {} + eslint@9.36.0(jiti@2.6.0): dependencies: '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.6.0)) @@ -5994,15 +6092,9 @@ snapshots: fast-deep-equal@3.1.3: {} - fast-glob@3.3.1: - dependencies: - '@nodelib/fs.stat': 2.0.5 - '@nodelib/fs.walk': 1.2.8 - glob-parent: 5.1.2 - merge2: 1.4.1 - micromatch: 4.0.8 + fast-equals@5.4.0: {} - fast-glob@3.3.3: + fast-glob@3.3.1: dependencies: '@nodelib/fs.stat': 2.0.5 '@nodelib/fs.walk': 1.2.8 @@ -6133,6 +6225,8 @@ snapshots: globals@14.0.0: {} + globals@16.4.0: {} + globalthis@1.0.4: dependencies: define-properties: 1.2.1 @@ -6142,8 +6236,6 @@ snapshots: graceful-fs@4.2.11: {} - graphemer@1.4.0: {} - has-bigints@1.1.0: {} has-flag@4.0.0: {} @@ -6166,6 +6258,12 @@ snapshots: dependencies: function-bind: 1.1.2 + hermes-estree@0.25.1: {} + + hermes-parser@0.25.1: + dependencies: + hermes-estree: 0.25.1 + html-encoding-sniffer@4.0.0: dependencies: whatwg-encoding: 3.1.1 @@ -6538,6 +6636,10 @@ snapshots: dependencies: mime-db: 1.52.0 + minimatch@10.2.4: + dependencies: + brace-expansion: 5.0.4 + minimatch@3.1.2: dependencies: brace-expansion: 1.1.12 @@ -6546,10 +6648,6 @@ snapshots: dependencies: brace-expansion: 2.0.2 - minimatch@9.0.5: - dependencies: - brace-expansion: 2.0.2 - minimist@1.2.8: {} minipass@7.1.2: {} @@ -6997,6 +7095,8 @@ snapshots: semver@7.7.2: {} + semver@7.7.4: {} + set-function-length@1.2.2: dependencies: define-data-property: 1.1.4 @@ -7196,6 +7296,8 @@ snapshots: minizlib: 3.1.0 yallist: 5.0.0 + third-party-capital@1.0.20: {} + tinyglobby@0.2.15: dependencies: fdir: 6.5.0(picomatch@4.0.3) @@ -7219,7 +7321,7 @@ snapshots: dependencies: punycode: 2.3.1 - ts-api-utils@2.1.0(typescript@5.9.2): + ts-api-utils@2.4.0(typescript@5.9.2): dependencies: typescript: 5.9.2 @@ -7269,6 +7371,17 @@ snapshots: possible-typed-array-names: 1.1.0 reflect.getprototypeof: 1.0.10 + typescript-eslint@8.56.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2): + dependencies: + '@typescript-eslint/eslint-plugin': 8.56.1(@typescript-eslint/parser@8.56.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2))(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2) + '@typescript-eslint/parser': 8.56.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2) + '@typescript-eslint/typescript-estree': 8.56.1(typescript@5.9.2) + '@typescript-eslint/utils': 8.56.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.9.2) + eslint: 9.36.0(jiti@2.6.0) + typescript: 5.9.2 + transitivePeerDependencies: + - supports-color + typescript@5.9.2: {} uc.micro@2.1.0: {} @@ -7413,6 +7526,10 @@ snapshots: yocto-queue@0.1.0: {} + zod-validation-error@4.0.2(zod@4.1.12): + dependencies: + zod: 4.1.12 + zod@4.1.12: {} zustand@5.0.8(@types/react@19.1.16)(react@19.1.0)(use-sync-external-store@1.6.0(react@19.1.0)): diff --git a/public/apple-touch-icon.png b/public/apple-touch-icon.png new file mode 100644 index 00000000..7b1a146b Binary files /dev/null and b/public/apple-touch-icon.png differ diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 00000000..97a88aeb Binary files /dev/null and b/public/favicon.ico differ diff --git a/public/file.svg b/public/file.svg deleted file mode 100644 index 004145cd..00000000 --- a/public/file.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/globe.svg b/public/globe.svg deleted file mode 100644 index 567f17b0..00000000 --- a/public/globe.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/icons/arrow-down-gray.svg b/public/icons/arrow-down-gray.svg index 511b3ba2..30705e24 100644 --- a/public/icons/arrow-down-gray.svg +++ b/public/icons/arrow-down-gray.svg @@ -1,3 +1,3 @@ - - + + diff --git a/public/icons/arrow-down-primary.svg b/public/icons/arrow-down-primary.svg index a001a518..71024c9d 100644 --- a/public/icons/arrow-down-primary.svg +++ b/public/icons/arrow-down-primary.svg @@ -1,3 +1,3 @@ - - + + diff --git a/public/icons/arrow-up-gray.svg b/public/icons/arrow-up-gray.svg index d7ceccdc..8cbbd8b4 100644 --- a/public/icons/arrow-up-gray.svg +++ b/public/icons/arrow-up-gray.svg @@ -1,3 +1,3 @@ - - + + diff --git a/public/icons/arrow-up-primary.svg b/public/icons/arrow-up-primary.svg index 6c523bc4..bbc24b45 100644 --- a/public/icons/arrow-up-primary.svg +++ b/public/icons/arrow-up-primary.svg @@ -1,3 +1,10 @@ - - + + + + + + + + + diff --git a/public/icons/banner-mobile.png b/public/icons/banner-mobile.png new file mode 100644 index 00000000..2e2a21ef Binary files /dev/null and b/public/icons/banner-mobile.png differ diff --git a/public/icons/banner-mobile.svg b/public/icons/banner-mobile.svg deleted file mode 100644 index 2c7eb0e4..00000000 --- a/public/icons/banner-mobile.svg +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/icons/editor/table-selected.svg b/public/icons/editor/table-selected.svg new file mode 100644 index 00000000..aa3d0925 --- /dev/null +++ b/public/icons/editor/table-selected.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/icons/editor/table.svg b/public/icons/editor/table.svg new file mode 100644 index 00000000..0a545e2a --- /dev/null +++ b/public/icons/editor/table.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/icons/mobile-thread.svg b/public/icons/mobile-thread.svg new file mode 100644 index 00000000..599c1752 --- /dev/null +++ b/public/icons/mobile-thread.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/icons/recent.svg b/public/icons/recent.svg new file mode 100644 index 00000000..f9006c63 --- /dev/null +++ b/public/icons/recent.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/icons/siren.svg b/public/icons/siren.svg new file mode 100644 index 00000000..45deea54 --- /dev/null +++ b/public/icons/siren.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/icons/teamficial-keyword.svg b/public/icons/teamficial-keyword.svg new file mode 100644 index 00000000..bc45f2ba --- /dev/null +++ b/public/icons/teamficial-keyword.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/public/icons/thread.svg b/public/icons/thread.svg new file mode 100644 index 00000000..2b8c6a09 --- /dev/null +++ b/public/icons/thread.svg @@ -0,0 +1,3 @@ + + + diff --git "a/public/images/keywords/\352\260\210\353\223\261\354\235\204 \354\241\260\354\240\225\355\225\230\353\212\224.svg" "b/public/images/keywords/\352\260\210\353\223\261\354\235\204 \354\241\260\354\240\225\355\225\230\353\212\224.svg" index c9d841a7..5e675f78 100644 --- "a/public/images/keywords/\352\260\210\353\223\261\354\235\204 \354\241\260\354\240\225\355\225\230\353\212\224.svg" +++ "b/public/images/keywords/\352\260\210\353\223\261\354\235\204 \354\241\260\354\240\225\355\225\230\353\212\224.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\352\260\210\353\223\261\354\235\204 \355\202\244\354\232\260\354\247\200 \354\225\212\353\212\224.svg" "b/public/images/keywords/\352\260\210\353\223\261\354\235\204 \355\202\244\354\232\260\354\247\200 \354\225\212\353\212\224.svg" new file mode 100644 index 00000000..120d8256 --- /dev/null +++ "b/public/images/keywords/\352\260\210\353\223\261\354\235\204 \355\202\244\354\232\260\354\247\200 \354\225\212\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\352\260\210\355\224\274\353\245\274 \353\252\273 \354\236\241\353\212\224.svg" "b/public/images/keywords/\352\260\210\355\224\274\353\245\274 \353\252\273 \354\236\241\353\212\224.svg" new file mode 100644 index 00000000..f3a0865d --- /dev/null +++ "b/public/images/keywords/\352\260\210\355\224\274\353\245\274 \353\252\273 \354\236\241\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\352\260\220\352\260\201\354\240\201\354\235\270.svg" "b/public/images/keywords/\352\260\220\352\260\201\354\240\201\354\235\270.svg" index c2cca926..59d80a23 100644 --- "a/public/images/keywords/\352\260\220\352\260\201\354\240\201\354\235\270.svg" +++ "b/public/images/keywords/\352\260\220\352\260\201\354\240\201\354\235\270.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\352\260\220\354\240\225 \352\270\260\353\263\265\354\235\264 \354\236\210\353\212\224.svg" "b/public/images/keywords/\352\260\220\354\240\225 \352\270\260\353\263\265\354\235\264 \354\236\210\353\212\224.svg" new file mode 100644 index 00000000..7661f7b6 --- /dev/null +++ "b/public/images/keywords/\352\260\220\354\240\225 \352\270\260\353\263\265\354\235\264 \354\236\210\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\352\260\220\354\240\225 \354\206\214\353\252\250\352\260\200 \354\236\210\353\212\224.svg" "b/public/images/keywords/\352\260\220\354\240\225 \354\206\214\353\252\250\352\260\200 \354\236\210\353\212\224.svg" new file mode 100644 index 00000000..f5fd3fea --- /dev/null +++ "b/public/images/keywords/\352\260\220\354\240\225 \354\206\214\353\252\250\352\260\200 \354\236\210\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\352\260\220\354\240\225 \354\206\214\353\252\250\353\245\274 \354\244\204\354\235\264\353\212\224.svg" "b/public/images/keywords/\352\260\220\354\240\225 \354\206\214\353\252\250\353\245\274 \354\244\204\354\235\264\353\212\224.svg" new file mode 100644 index 00000000..bad7e879 --- /dev/null +++ "b/public/images/keywords/\352\260\220\354\240\225 \354\206\214\353\252\250\353\245\274 \354\244\204\354\235\264\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\352\260\220\354\240\225 \354\241\260\354\240\210\354\235\264 \354\236\230 \353\220\230\353\212\224.svg" "b/public/images/keywords/\352\260\220\354\240\225 \354\241\260\354\240\210\354\235\264 \354\236\230 \353\220\230\353\212\224.svg" index 166b1774..bfcaaa92 100644 --- "a/public/images/keywords/\352\260\220\354\240\225 \354\241\260\354\240\210\354\235\264 \354\236\230 \353\220\230\353\212\224.svg" +++ "b/public/images/keywords/\352\260\220\354\240\225 \354\241\260\354\240\210\354\235\264 \354\236\230 \353\220\230\353\212\224.svg" @@ -1,22 +1,22 @@ - - - - - + + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\352\260\220\354\240\225 \355\221\234\355\230\204\354\235\264 \354\204\234\355\210\260.svg" "b/public/images/keywords/\352\260\220\354\240\225 \355\221\234\355\230\204\354\235\264 \354\204\234\355\210\260.svg" new file mode 100644 index 00000000..10a658a8 --- /dev/null +++ "b/public/images/keywords/\352\260\220\354\240\225 \355\221\234\355\230\204\354\235\264 \354\204\234\355\210\260.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\352\260\220\354\240\225 \355\221\234\355\230\204\354\235\264 \354\240\210\354\240\234\353\220\234.svg" "b/public/images/keywords/\352\260\220\354\240\225 \355\221\234\355\230\204\354\235\264 \354\240\210\354\240\234\353\220\234.svg" new file mode 100644 index 00000000..65554502 --- /dev/null +++ "b/public/images/keywords/\352\260\220\354\240\225 \355\221\234\355\230\204\354\235\264 \354\240\210\354\240\234\353\220\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\352\260\220\354\240\225\354\235\204 \353\260\260\353\240\244\355\225\230\353\212\224.svg" "b/public/images/keywords/\352\260\220\354\240\225\354\235\204 \353\260\260\353\240\244\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..92b63792 --- /dev/null +++ "b/public/images/keywords/\352\260\220\354\240\225\354\235\204 \353\260\260\353\240\244\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\352\260\220\354\240\225\354\240\201\354\235\270.svg" "b/public/images/keywords/\352\260\220\354\240\225\354\240\201\354\235\270.svg" index 6dff781d..aa5500b1 100644 --- "a/public/images/keywords/\352\260\220\354\240\225\354\240\201\354\235\270.svg" +++ "b/public/images/keywords/\352\260\220\354\240\225\354\240\201\354\235\270.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\352\260\225\354\240\220\354\235\204 \354\236\230 \355\231\234\354\232\251\355\225\230\353\212\224.svg" "b/public/images/keywords/\352\260\225\354\240\220\354\235\204 \354\236\230 \355\231\234\354\232\251\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..4aa26118 --- /dev/null +++ "b/public/images/keywords/\352\260\225\354\240\220\354\235\204 \354\236\230 \355\231\234\354\232\251\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\352\262\260\352\263\274 \354\247\221\354\260\251\354\240\201\354\235\270.svg" "b/public/images/keywords/\352\262\260\352\263\274 \354\247\221\354\260\251\354\240\201\354\235\270.svg" new file mode 100644 index 00000000..29c628b2 --- /dev/null +++ "b/public/images/keywords/\352\262\260\352\263\274 \354\247\221\354\260\251\354\240\201\354\235\270.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\352\262\260\352\263\274\353\245\274 \354\240\225\353\246\254\355\225\234.svg" "b/public/images/keywords/\352\262\260\352\263\274\353\245\274 \354\240\225\353\246\254\355\225\234.svg" new file mode 100644 index 00000000..aa9aae7d --- /dev/null +++ "b/public/images/keywords/\352\262\260\352\263\274\353\245\274 \354\240\225\353\246\254\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\352\262\260\353\213\250\353\240\245\354\235\264 \354\225\275\355\225\234.svg" "b/public/images/keywords/\352\262\260\353\213\250\353\240\245\354\235\264 \354\225\275\355\225\234.svg" new file mode 100644 index 00000000..7e4900d7 --- /dev/null +++ "b/public/images/keywords/\352\262\260\353\213\250\353\240\245\354\235\264 \354\225\275\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\352\262\260\353\241\240\354\235\264 \353\212\220\353\246\260.svg" "b/public/images/keywords/\352\262\260\353\241\240\354\235\264 \353\212\220\353\246\260.svg" new file mode 100644 index 00000000..61226c2f --- /dev/null +++ "b/public/images/keywords/\352\262\260\353\241\240\354\235\264 \353\212\220\353\246\260.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\352\262\260\354\240\225\354\235\264 \355\225\251\353\246\254\354\240\201\354\235\270.svg" "b/public/images/keywords/\352\262\260\354\240\225\354\235\264 \355\225\251\353\246\254\354\240\201\354\235\270.svg" new file mode 100644 index 00000000..7348e886 --- /dev/null +++ "b/public/images/keywords/\352\262\260\354\240\225\354\235\264 \355\225\251\353\246\254\354\240\201\354\235\270.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\352\262\275\354\262\255\354\235\204 \354\236\230\355\225\230\353\212\224.svg" "b/public/images/keywords/\352\262\275\354\262\255\354\235\204 \354\236\230 \355\225\230\353\212\224.svg" similarity index 77% rename from "public/images/keywords/\352\262\275\354\262\255\354\235\204 \354\236\230\355\225\230\353\212\224.svg" rename to "public/images/keywords/\352\262\275\354\262\255\354\235\204 \354\236\230 \355\225\230\353\212\224.svg" index 4df338cc..116832fa 100644 --- "a/public/images/keywords/\352\262\275\354\262\255\354\235\204 \354\236\230\355\225\230\353\212\224.svg" +++ "b/public/images/keywords/\352\262\275\354\262\255\354\235\204 \354\236\230 \355\225\230\353\212\224.svg" @@ -1,22 +1,22 @@ - - - - - + + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\352\263\204\355\232\215\353\263\264\353\213\244 \355\226\211\353\217\231\354\240\201\354\235\270.svg" "b/public/images/keywords/\352\263\204\355\232\215\353\263\264\353\213\244 \355\226\211\353\217\231\354\240\201\354\235\270.svg" index c1c2b2c0..790d9fdd 100644 --- "a/public/images/keywords/\352\263\204\355\232\215\353\263\264\353\213\244 \355\226\211\353\217\231\354\240\201\354\235\270.svg" +++ "b/public/images/keywords/\352\263\204\355\232\215\353\263\264\353\213\244 \355\226\211\353\217\231\354\240\201\354\235\270.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\352\263\204\355\232\215\354\204\261\354\235\264 \353\266\200\354\241\261\355\225\234.svg" "b/public/images/keywords/\352\263\204\355\232\215\354\204\261\354\235\264 \353\266\200\354\241\261\355\225\234.svg" new file mode 100644 index 00000000..c267c103 --- /dev/null +++ "b/public/images/keywords/\352\263\204\355\232\215\354\204\261\354\235\264 \353\266\200\354\241\261\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\352\263\204\355\232\215\354\235\204 \354\236\230 \354\204\270\354\232\260\353\212\224.svg" "b/public/images/keywords/\352\263\204\355\232\215\354\235\204 \354\236\230 \354\204\270\354\232\260\353\212\224.svg" deleted file mode 100644 index 34aeb457..00000000 --- "a/public/images/keywords/\352\263\204\355\232\215\354\235\204 \354\236\230 \354\204\270\354\232\260\353\212\224.svg" +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git "a/public/images/keywords/\352\263\204\355\232\215\354\240\201\354\235\270.svg" "b/public/images/keywords/\352\263\204\355\232\215\354\240\201\354\235\270.svg" index 189b7001..cebe8449 100644 --- "a/public/images/keywords/\352\263\204\355\232\215\354\240\201\354\235\270.svg" +++ "b/public/images/keywords/\352\263\204\355\232\215\354\240\201\354\235\270.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\352\263\240\353\257\274\354\235\264 \353\247\216\354\235\200.svg" "b/public/images/keywords/\352\263\240\353\257\274\354\235\264 \353\247\216\354\235\200.svg" new file mode 100644 index 00000000..15f13b4f --- /dev/null +++ "b/public/images/keywords/\352\263\240\353\257\274\354\235\264 \353\247\216\354\235\200.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\352\263\240\354\247\221\354\212\244\353\237\254\354\232\264.svg" "b/public/images/keywords/\352\263\240\354\247\221\354\212\244\353\237\254\354\232\264.svg" new file mode 100644 index 00000000..3dc98b27 --- /dev/null +++ "b/public/images/keywords/\352\263\240\354\247\221\354\212\244\353\237\254\354\232\264.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\352\263\265\352\260\220 \353\212\245\353\240\245\354\235\264 \353\206\222\354\235\200.svg" "b/public/images/keywords/\352\263\265\352\260\220 \353\212\245\353\240\245\354\235\264 \353\206\222\354\235\200.svg" index 772f4def..8f9e1cfe 100644 --- "a/public/images/keywords/\352\263\265\352\260\220 \353\212\245\353\240\245\354\235\264 \353\206\222\354\235\200.svg" +++ "b/public/images/keywords/\352\263\265\352\260\220 \353\212\245\353\240\245\354\235\264 \353\206\222\354\235\200.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\352\263\265\352\260\220 \355\221\234\355\230\204\354\235\264 \354\240\201\354\235\200.svg" "b/public/images/keywords/\352\263\265\352\260\220 \355\221\234\355\230\204\354\235\264 \354\240\201\354\235\200.svg" index 1860f8ab..72c2650c 100644 --- "a/public/images/keywords/\352\263\265\352\260\220 \355\221\234\355\230\204\354\235\264 \354\240\201\354\235\200.svg" +++ "b/public/images/keywords/\352\263\265\352\260\220 \355\221\234\355\230\204\354\235\264 \354\240\201\354\235\200.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\352\263\274\353\217\204\355\225\230\352\262\214 \352\263\240\353\257\274\355\225\230\353\212\224.svg" "b/public/images/keywords/\352\263\274\353\217\204\355\225\230\352\262\214 \352\263\240\353\257\274\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..86caacdb --- /dev/null +++ "b/public/images/keywords/\352\263\274\353\217\204\355\225\230\352\262\214 \352\263\240\353\257\274\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\352\263\274\353\252\260\354\236\205\355\225\230\353\212\224.svg" "b/public/images/keywords/\352\263\274\353\252\260\354\236\205\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..0b373706 --- /dev/null +++ "b/public/images/keywords/\352\263\274\353\252\260\354\236\205\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\352\263\274\354\236\245 \354\227\206\354\235\264 \353\247\220\355\225\230\353\212\224.svg" "b/public/images/keywords/\352\263\274\354\236\245 \354\227\206\354\235\264 \353\247\220\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..aff8848e --- /dev/null +++ "b/public/images/keywords/\352\263\274\354\236\245 \354\227\206\354\235\264 \353\247\220\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\352\264\200\352\263\204\353\245\274 \354\206\214\354\244\221\355\236\210 \355\225\230\353\212\224.svg" "b/public/images/keywords/\352\264\200\352\263\204\353\245\274 \354\206\214\354\244\221\355\236\210 \355\225\230\353\212\224.svg" new file mode 100644 index 00000000..91802ff4 --- /dev/null +++ "b/public/images/keywords/\352\264\200\352\263\204\353\245\274 \354\206\214\354\244\221\355\236\210 \355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\352\264\200\352\263\204\353\263\264\353\213\244 \352\262\260\352\263\274\355\230\225\354\235\270.svg" "b/public/images/keywords/\352\264\200\352\263\204\353\263\264\353\213\244 \352\262\260\352\263\274\355\230\225\354\235\270.svg" new file mode 100644 index 00000000..e2da55fa --- /dev/null +++ "b/public/images/keywords/\352\264\200\352\263\204\353\263\264\353\213\244 \352\262\260\352\263\274\355\230\225\354\235\270.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\352\264\200\354\260\260\353\240\245\354\235\264 \354\242\213\354\235\200.svg" "b/public/images/keywords/\352\264\200\354\260\260\353\240\245\354\235\264 \354\242\213\354\235\200.svg" index e9134bca..20439451 100644 --- "a/public/images/keywords/\352\264\200\354\260\260\353\240\245\354\235\264 \354\242\213\354\235\200.svg" +++ "b/public/images/keywords/\352\264\200\354\260\260\353\240\245\354\235\264 \354\242\213\354\235\200.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\352\265\254\354\241\260\353\245\274 \353\271\240\353\245\264\352\262\214 \355\214\214\354\225\205\355\225\230\353\212\224.svg" "b/public/images/keywords/\352\265\254\354\241\260\353\245\274 \353\271\240\353\245\264\352\262\214 \355\214\214\354\225\205\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..a0e33833 --- /dev/null +++ "b/public/images/keywords/\352\265\254\354\241\260\353\245\274 \353\271\240\353\245\264\352\262\214 \355\214\214\354\225\205\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\352\265\254\354\241\260\354\240\201\354\234\274\353\241\234 \354\203\235\352\260\201\355\225\230\353\212\224.svg" "b/public/images/keywords/\352\265\254\354\241\260\354\240\201\354\234\274\353\241\234 \354\203\235\352\260\201\355\225\230\353\212\224.svg" index bada819d..29b59f21 100644 --- "a/public/images/keywords/\352\265\254\354\241\260\354\240\201\354\234\274\353\241\234 \354\203\235\352\260\201\355\225\230\353\212\224.svg" +++ "b/public/images/keywords/\352\265\254\354\241\260\354\240\201\354\234\274\353\241\234 \354\203\235\352\260\201\355\225\230\353\212\224.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\352\267\240\355\230\225 \354\236\210\353\212\224.svg" "b/public/images/keywords/\352\267\240\355\230\225 \354\236\210\353\212\224.svg" new file mode 100644 index 00000000..15a5c71c --- /dev/null +++ "b/public/images/keywords/\352\267\240\355\230\225 \354\236\210\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\352\267\240\355\230\225\354\236\210\353\212\224.svg" "b/public/images/keywords/\352\267\240\355\230\225\354\240\201\354\235\270.svg" similarity index 55% rename from "public/images/keywords/\352\267\240\355\230\225\354\236\210\353\212\224.svg" rename to "public/images/keywords/\352\267\240\355\230\225\354\240\201\354\235\270.svg" index 82d610d3..c49ca888 100644 --- "a/public/images/keywords/\352\267\240\355\230\225\354\236\210\353\212\224.svg" +++ "b/public/images/keywords/\352\267\240\355\230\225\354\240\201\354\235\270.svg" @@ -1,22 +1,22 @@ - - - - - + + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\352\267\274\353\263\270 \354\233\220\354\235\270\354\235\204 \354\260\276\353\212\224.svg" "b/public/images/keywords/\352\267\274\353\263\270 \354\233\220\354\235\270\354\235\204 \354\260\276\353\212\224.svg" new file mode 100644 index 00000000..1bbffbaf --- /dev/null +++ "b/public/images/keywords/\352\267\274\353\263\270 \354\233\220\354\235\270\354\235\204 \354\260\276\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\352\270\215\354\240\225\354\240\201 \354\225\225\353\260\225\354\235\204 \354\243\274\353\212\224.svg" "b/public/images/keywords/\352\270\215\354\240\225\354\240\201 \354\225\225\353\260\225\354\235\204 \354\243\274\353\212\224.svg" new file mode 100644 index 00000000..0ed0a0b2 --- /dev/null +++ "b/public/images/keywords/\352\270\215\354\240\225\354\240\201 \354\225\225\353\260\225\354\235\204 \354\243\274\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\352\270\215\354\240\225\354\240\201\354\235\270.svg" "b/public/images/keywords/\352\270\215\354\240\225\354\240\201\354\235\270.svg" index be530584..003d96f4 100644 --- "a/public/images/keywords/\352\270\215\354\240\225\354\240\201\354\235\270.svg" +++ "b/public/images/keywords/\352\270\215\354\240\225\354\240\201\354\235\270.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\352\270\260\354\244\200 \354\244\221\354\213\254\354\240\201\354\235\270.svg" "b/public/images/keywords/\352\270\260\354\244\200 \354\244\221\354\213\254\354\240\201\354\235\270.svg" new file mode 100644 index 00000000..3ce1f1f4 --- /dev/null +++ "b/public/images/keywords/\352\270\260\354\244\200 \354\244\221\354\213\254\354\240\201\354\235\270.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\352\270\260\354\244\200\354\235\204 \353\206\222\354\227\254\354\243\274\353\212\224.svg" "b/public/images/keywords/\352\270\260\354\244\200\354\235\204 \353\206\222\354\227\254\354\243\274\353\212\224.svg" new file mode 100644 index 00000000..c7c6d4a2 --- /dev/null +++ "b/public/images/keywords/\352\270\260\354\244\200\354\235\204 \353\206\222\354\227\254\354\243\274\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\352\270\260\354\244\200\354\235\204 \354\204\270\354\233\214\354\243\274\353\212\224.svg" "b/public/images/keywords/\352\270\260\354\244\200\354\235\204 \354\204\270\354\233\214\354\243\274\353\212\224.svg" new file mode 100644 index 00000000..602887d3 --- /dev/null +++ "b/public/images/keywords/\352\270\260\354\244\200\354\235\204 \354\204\270\354\233\214\354\243\274\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\352\270\260\354\244\200\354\235\204 \354\247\200\354\274\234\354\230\250.svg" "b/public/images/keywords/\352\270\260\354\244\200\354\235\204 \354\247\200\354\274\234\354\230\250.svg" new file mode 100644 index 00000000..041d4ad8 --- /dev/null +++ "b/public/images/keywords/\352\270\260\354\244\200\354\235\204 \354\247\200\354\274\234\354\230\250.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\352\270\260\354\244\200\354\235\264 \353\206\222\354\235\200.svg" "b/public/images/keywords/\352\270\260\354\244\200\354\235\264 \353\206\222\354\235\200.svg" index ea8214b9..05506c95 100644 --- "a/public/images/keywords/\352\270\260\354\244\200\354\235\264 \353\206\222\354\235\200.svg" +++ "b/public/images/keywords/\352\270\260\354\244\200\354\235\264 \353\206\222\354\235\200.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\352\270\260\354\244\200\354\235\264 \353\266\204\353\252\205\355\225\234.svg" "b/public/images/keywords/\352\270\260\354\244\200\354\235\264 \353\266\204\353\252\205\355\225\234.svg" new file mode 100644 index 00000000..8dfaf2b9 --- /dev/null +++ "b/public/images/keywords/\352\270\260\354\244\200\354\235\264 \353\266\204\353\252\205\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\352\270\260\354\244\200\354\235\264 \355\235\224\353\223\244\353\246\254\354\247\200 \354\225\212\353\212\224.svg" "b/public/images/keywords/\352\270\260\354\244\200\354\235\264 \355\235\224\353\223\244\353\246\254\354\247\200 \354\225\212\353\212\224.svg" new file mode 100644 index 00000000..7ef786e0 --- /dev/null +++ "b/public/images/keywords/\352\270\260\354\244\200\354\235\264 \355\235\224\353\223\244\353\246\254\354\247\200 \354\225\212\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\352\270\260\355\232\215\353\240\245\354\235\264 \354\242\213\354\235\200.svg" "b/public/images/keywords/\352\270\260\355\232\215\353\240\245\354\235\264 \354\242\213\354\235\200.svg" index 77241622..6a023d1c 100644 --- "a/public/images/keywords/\352\270\260\355\232\215\353\240\245\354\235\264 \354\242\213\354\235\200.svg" +++ "b/public/images/keywords/\352\270\260\355\232\215\353\240\245\354\235\264 \354\242\213\354\235\200.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\352\270\264\354\236\245\354\227\220 \353\257\274\352\260\220\355\225\234.svg" "b/public/images/keywords/\352\270\264\354\236\245\354\227\220 \353\257\274\352\260\220\355\225\234.svg" new file mode 100644 index 00000000..445655f2 --- /dev/null +++ "b/public/images/keywords/\352\270\264\354\236\245\354\227\220 \353\257\274\352\260\220\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\352\274\274\352\274\274\355\225\234.svg" "b/public/images/keywords/\352\274\274\352\274\274\355\225\234.svg" index 58ac013d..bedea8ad 100644 --- "a/public/images/keywords/\352\274\274\352\274\274\355\225\234.svg" +++ "b/public/images/keywords/\352\274\274\352\274\274\355\225\234.svg" @@ -1,22 +1,22 @@ - - - - - + + + + + - - + + - + - - + + - - + + diff --git "a/public/images/keywords/\352\276\270\354\244\200\355\225\234.svg" "b/public/images/keywords/\352\276\270\354\244\200\355\225\234.svg" new file mode 100644 index 00000000..98f7186d --- /dev/null +++ "b/public/images/keywords/\352\276\270\354\244\200\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\352\276\270\354\244\200\355\225\250\354\235\264 \353\217\213\353\263\264\354\235\264\353\212\224.svg" "b/public/images/keywords/\352\276\270\354\244\200\355\225\250\354\235\264 \353\217\213\353\263\264\354\235\264\353\212\224.svg" new file mode 100644 index 00000000..ac9e802d --- /dev/null +++ "b/public/images/keywords/\352\276\270\354\244\200\355\225\250\354\235\264 \353\217\213\353\263\264\354\235\264\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\201\210\352\270\260 \354\236\210\353\212\224.svg" "b/public/images/keywords/\353\201\210\352\270\260 \354\236\210\353\212\224.svg" index ce151a5d..20a7761f 100644 --- "a/public/images/keywords/\353\201\210\352\270\260 \354\236\210\353\212\224.svg" +++ "b/public/images/keywords/\353\201\210\352\270\260 \354\236\210\353\212\224.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\353\201\235\352\271\214\354\247\200 \354\261\205\354\236\204\354\247\200\353\212\224.svg" "b/public/images/keywords/\353\201\235\352\271\214\354\247\200 \354\261\205\354\236\204\354\247\200\353\212\224.svg" new file mode 100644 index 00000000..9d905f50 --- /dev/null +++ "b/public/images/keywords/\353\201\235\352\271\214\354\247\200 \354\261\205\354\236\204\354\247\200\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\202\264\353\251\264\355\231\224\355\225\230\353\212\224.svg" "b/public/images/keywords/\353\202\264\353\251\264\355\231\224\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..b83c8c65 --- /dev/null +++ "b/public/images/keywords/\353\202\264\353\251\264\355\231\224\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\205\274\353\246\254\354\240\201\354\235\270.svg" "b/public/images/keywords/\353\205\274\353\246\254\354\240\201\354\235\270.svg" index 2340e872..0e388b5c 100644 --- "a/public/images/keywords/\353\205\274\353\246\254\354\240\201\354\235\270.svg" +++ "b/public/images/keywords/\353\205\274\353\246\254\354\240\201\354\235\270.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\353\205\274\354\235\230 \353\260\251\355\226\245\354\235\204 \354\236\241\354\225\204\354\243\274\353\212\224.svg" "b/public/images/keywords/\353\205\274\354\235\230 \353\260\251\355\226\245\354\235\204 \354\236\241\354\225\204\354\243\274\353\212\224.svg" new file mode 100644 index 00000000..3bc2f951 --- /dev/null +++ "b/public/images/keywords/\353\205\274\354\235\230 \353\260\251\355\226\245\354\235\204 \354\236\241\354\225\204\354\243\274\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\205\274\354\235\230\352\260\200 \354\246\220\352\261\260\354\232\264.svg" "b/public/images/keywords/\353\205\274\354\235\230\352\260\200 \354\246\220\352\261\260\354\232\264.svg" index 2cb0a6e5..ca57f12b 100644 --- "a/public/images/keywords/\353\205\274\354\235\230\352\260\200 \354\246\220\352\261\260\354\232\264.svg" +++ "b/public/images/keywords/\353\205\274\354\235\230\352\260\200 \354\246\220\352\261\260\354\232\264.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\353\205\274\354\235\230\354\227\220 \354\240\201\352\267\271\354\240\201\354\235\270.svg" "b/public/images/keywords/\353\205\274\354\235\230\354\227\220 \354\240\201\352\267\271\354\240\201\354\235\270.svg" new file mode 100644 index 00000000..70bbeca3 --- /dev/null +++ "b/public/images/keywords/\353\205\274\354\235\230\354\227\220 \354\240\201\352\267\271\354\240\201\354\235\270.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\205\274\354\235\230\354\235\230 \352\262\260\354\235\204 \353\247\236\354\266\224\353\212\224.svg" "b/public/images/keywords/\353\205\274\354\235\230\354\235\230 \352\262\260\354\235\204 \353\247\236\354\266\224\353\212\224.svg" new file mode 100644 index 00000000..ee9086eb --- /dev/null +++ "b/public/images/keywords/\353\205\274\354\235\230\354\235\230 \352\262\260\354\235\204 \353\247\236\354\266\224\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\205\274\354\237\201 \355\232\214\355\224\274\354\240\201\354\235\270.svg" "b/public/images/keywords/\353\205\274\354\237\201 \355\232\214\355\224\274\354\240\201\354\235\270.svg" new file mode 100644 index 00000000..e0047511 --- /dev/null +++ "b/public/images/keywords/\353\205\274\354\237\201 \355\232\214\355\224\274\354\240\201\354\235\270.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\205\274\354\240\220\354\235\204 \354\236\230 \354\236\241\353\212\224.svg" "b/public/images/keywords/\353\205\274\354\240\220\354\235\204 \354\236\230 \354\236\241\353\212\224.svg" new file mode 100644 index 00000000..1e480fcb --- /dev/null +++ "b/public/images/keywords/\353\205\274\354\240\220\354\235\204 \354\236\230 \354\236\241\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\210\210\354\271\230\352\260\200 \353\271\240\353\245\270.svg" "b/public/images/keywords/\353\210\210\354\271\230\352\260\200 \353\271\240\353\245\270.svg" index b4655765..b7dcee42 100644 --- "a/public/images/keywords/\353\210\210\354\271\230\352\260\200 \353\271\240\353\245\270.svg" +++ "b/public/images/keywords/\353\210\210\354\271\230\352\260\200 \353\271\240\353\245\270.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\353\213\244\354\213\234 \355\225\250\352\273\230\355\225\230\352\263\240 \354\213\266\354\235\200.svg" "b/public/images/keywords/\353\213\244\354\213\234 \355\225\250\352\273\230\355\225\230\352\263\240 \354\213\266\354\235\200.svg" new file mode 100644 index 00000000..fc44ec93 --- /dev/null +++ "b/public/images/keywords/\353\213\244\354\213\234 \355\225\250\352\273\230\355\225\230\352\263\240 \354\213\266\354\235\200.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\213\244\354\236\254\353\213\244\353\212\245\355\225\234.svg" "b/public/images/keywords/\353\213\244\354\236\254\353\213\244\353\212\245\355\225\234.svg" index ff3e80fe..c63ffec3 100644 --- "a/public/images/keywords/\353\213\244\354\236\254\353\213\244\353\212\245\355\225\234.svg" +++ "b/public/images/keywords/\353\213\244\354\236\254\353\213\244\353\212\245\355\225\234.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\353\213\250\352\270\260 \354\225\225\353\260\225\354\227\220 \354\225\275\355\225\234.svg" "b/public/images/keywords/\353\213\250\352\270\260 \354\225\225\353\260\225\354\227\220 \354\225\275\355\225\234.svg" new file mode 100644 index 00000000..7b879606 --- /dev/null +++ "b/public/images/keywords/\353\213\250\352\270\260 \354\225\225\353\260\225\354\227\220 \354\225\275\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\214\200\354\225\210\354\235\204 \355\225\250\352\273\230 \354\240\234\354\213\234\355\225\230\353\212\224.svg" "b/public/images/keywords/\353\214\200\354\225\210\354\235\204 \355\225\250\352\273\230 \354\240\234\354\213\234\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..50981ddf --- /dev/null +++ "b/public/images/keywords/\353\214\200\354\225\210\354\235\204 \355\225\250\352\273\230 \354\240\234\354\213\234\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\214\200\355\231\224\353\245\274 \354\235\264\353\201\204\353\212\224.svg" "b/public/images/keywords/\353\214\200\355\231\224\353\245\274 \354\235\264\353\201\204\353\212\224.svg" new file mode 100644 index 00000000..f42348a0 --- /dev/null +++ "b/public/images/keywords/\353\214\200\355\231\224\353\245\274 \354\235\264\353\201\204\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\215\260\354\235\264\355\204\260\354\227\220 \352\260\225\355\225\234.svg" "b/public/images/keywords/\353\215\260\354\235\264\355\204\260\354\227\220 \352\260\225\355\225\234.svg" index 9ad3c2c2..824bdcd9 100644 --- "a/public/images/keywords/\353\215\260\354\235\264\355\204\260\354\227\220 \352\260\225\355\225\234.svg" +++ "b/public/images/keywords/\353\215\260\354\235\264\355\204\260\354\227\220 \352\260\225\355\225\234.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\353\217\204\354\240\204\354\240\201\354\235\270.svg" "b/public/images/keywords/\353\217\204\354\240\204\354\240\201\354\235\270.svg" index 8a4ca11d..1bb18f6c 100644 --- "a/public/images/keywords/\353\217\204\354\240\204\354\240\201\354\235\270.svg" +++ "b/public/images/keywords/\353\217\204\354\240\204\354\240\201\354\235\270.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\353\217\205\353\246\275\354\240\201\354\235\270.svg" "b/public/images/keywords/\353\217\205\353\246\275\354\240\201\354\235\270.svg" index e9f1d257..3700a051 100644 --- "a/public/images/keywords/\353\217\205\353\246\275\354\240\201\354\235\270.svg" +++ "b/public/images/keywords/\353\217\205\353\246\275\354\240\201\354\235\270.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\353\217\231\353\243\214\354\235\230 \352\260\220\354\240\225\354\235\204 \354\225\214\354\225\204\353\263\264\353\212\224.svg" "b/public/images/keywords/\353\217\231\353\243\214\354\235\230 \352\260\220\354\240\225\354\235\204 \354\225\214\354\225\204\353\263\264\353\212\224.svg" deleted file mode 100644 index 069fee69..00000000 --- "a/public/images/keywords/\353\217\231\353\243\214\354\235\230 \352\260\220\354\240\225\354\235\204 \354\225\214\354\225\204\353\263\264\353\212\224.svg" +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git "a/public/images/keywords/\353\217\231\353\243\214\354\235\230 \352\260\225\354\240\220\354\235\204 \354\225\214\354\225\204\353\263\264\353\212\224.svg" "b/public/images/keywords/\353\217\231\353\243\214\354\235\230 \352\260\225\354\240\220\354\235\204 \354\225\214\354\225\204\353\263\264\353\212\224.svg" new file mode 100644 index 00000000..d07101d9 --- /dev/null +++ "b/public/images/keywords/\353\217\231\353\243\214\354\235\230 \352\260\225\354\240\220\354\235\204 \354\225\214\354\225\204\353\263\264\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\221\220\354\204\234\354\227\206\353\212\224.svg" "b/public/images/keywords/\353\221\220\354\204\234\354\227\206\353\212\224.svg" new file mode 100644 index 00000000..0dc84079 --- /dev/null +++ "b/public/images/keywords/\353\221\220\354\204\234\354\227\206\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\223\240\353\223\240\355\225\234.svg" "b/public/images/keywords/\353\223\240\353\223\240\355\225\234.svg" new file mode 100644 index 00000000..aff00466 --- /dev/null +++ "b/public/images/keywords/\353\223\240\353\223\240\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\224\224\355\205\214\354\235\274\354\227\220 \354\271\230\354\232\260\354\271\230\353\212\224.svg" "b/public/images/keywords/\353\224\224\355\205\214\354\235\274\354\227\220 \354\271\230\354\232\260\354\271\230\353\212\224.svg" index 1a4dcb06..47e4e9a6 100644 --- "a/public/images/keywords/\353\224\224\355\205\214\354\235\274\354\227\220 \354\271\230\354\232\260\354\271\230\353\212\224.svg" +++ "b/public/images/keywords/\353\224\224\355\205\214\354\235\274\354\227\220 \354\271\230\354\232\260\354\271\230\353\212\224.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\353\224\224\355\205\214\354\235\274\354\235\204 \353\206\223\354\271\230\354\247\200 \354\225\212\353\212\224.svg" "b/public/images/keywords/\353\224\224\355\205\214\354\235\274\354\235\204 \353\206\223\354\271\230\354\247\200 \354\225\212\353\212\224.svg" new file mode 100644 index 00000000..08b7ade1 --- /dev/null +++ "b/public/images/keywords/\353\224\224\355\205\214\354\235\274\354\235\204 \353\206\223\354\271\230\354\247\200 \354\225\212\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\224\260\353\234\273\355\225\234.svg" "b/public/images/keywords/\353\224\260\353\234\273\355\225\234.svg" index ab0ccca0..69e5c299 100644 --- "a/public/images/keywords/\353\224\260\353\234\273\355\225\234.svg" +++ "b/public/images/keywords/\353\224\260\353\234\273\355\225\234.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\353\246\254\353\215\224\354\213\255\354\235\264 \354\236\210\353\212\224.svg" "b/public/images/keywords/\353\246\254\353\215\224\354\213\255\354\235\264 \354\236\210\353\212\224.svg" index 408c19fe..185cddab 100644 --- "a/public/images/keywords/\353\246\254\353\215\224\354\213\255\354\235\264 \354\236\210\353\212\224.svg" +++ "b/public/images/keywords/\353\246\254\353\215\224\354\213\255\354\235\264 \354\236\210\353\212\224.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\353\246\254\354\206\214\354\212\244\353\245\274 \354\225\204\353\201\274\353\212\224.svg" "b/public/images/keywords/\353\246\254\354\206\214\354\212\244\353\245\274 \354\225\204\353\201\274\353\212\224.svg" new file mode 100644 index 00000000..d93619cb --- /dev/null +++ "b/public/images/keywords/\353\246\254\354\206\214\354\212\244\353\245\274 \354\225\204\353\201\274\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\246\254\354\212\244\355\201\254 \355\232\214\355\224\274\354\240\201\354\235\270.svg" "b/public/images/keywords/\353\246\254\354\212\244\355\201\254 \355\232\214\355\224\274\354\240\201\354\235\270.svg" new file mode 100644 index 00000000..fb70247f --- /dev/null +++ "b/public/images/keywords/\353\246\254\354\212\244\355\201\254 \355\232\214\355\224\274\354\240\201\354\235\270.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\246\254\354\212\244\355\201\254\353\245\274 \353\257\270\353\246\254 \353\263\264\353\212\224.svg" "b/public/images/keywords/\353\246\254\354\212\244\355\201\254\353\245\274 \353\257\270\353\246\254 \353\263\264\353\212\224.svg" new file mode 100644 index 00000000..cbba309d --- /dev/null +++ "b/public/images/keywords/\353\246\254\354\212\244\355\201\254\353\245\274 \353\257\270\353\246\254 \353\263\264\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\246\254\354\212\244\355\201\254\354\227\220 \353\257\274\352\260\220\355\225\234.svg" "b/public/images/keywords/\353\246\254\354\212\244\355\201\254\354\227\220 \353\257\274\352\260\220\355\225\234.svg" new file mode 100644 index 00000000..ceeb7489 --- /dev/null +++ "b/public/images/keywords/\353\246\254\354\212\244\355\201\254\354\227\220 \353\257\274\352\260\220\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\247\210\352\260\220 \352\270\260\354\244\200\354\235\264 \353\252\205\355\231\225\355\225\234.svg" "b/public/images/keywords/\353\247\210\352\260\220 \352\270\260\354\244\200\354\235\264 \353\252\205\355\231\225\355\225\234.svg" new file mode 100644 index 00000000..03c4fbdb --- /dev/null +++ "b/public/images/keywords/\353\247\210\352\260\220 \352\270\260\354\244\200\354\235\264 \353\252\205\355\231\225\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\247\210\352\260\220 \354\247\201\354\240\204 \353\252\260\354\236\205\355\225\230\353\212\224.svg" "b/public/images/keywords/\353\247\210\352\260\220 \354\247\201\354\240\204 \353\252\260\354\236\205\355\225\230\353\212\224.svg" index 08fbf3a4..ffa945f9 100644 --- "a/public/images/keywords/\353\247\210\352\260\220 \354\247\201\354\240\204 \353\252\260\354\236\205\355\225\230\353\212\224.svg" +++ "b/public/images/keywords/\353\247\210\352\260\220 \354\247\201\354\240\204 \353\252\260\354\236\205\355\225\230\353\212\224.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\353\247\220\352\263\274 \355\226\211\353\217\231\354\235\264 \354\235\274\354\271\230\355\225\230\353\212\224.svg" "b/public/images/keywords/\353\247\220\352\263\274 \355\226\211\353\217\231\354\235\264 \354\235\274\354\271\230\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..52fdb291 --- /dev/null +++ "b/public/images/keywords/\353\247\220\352\263\274 \355\226\211\353\217\231\354\235\264 \354\235\274\354\271\230\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\247\220\353\263\264\353\213\244 \353\254\270\354\204\234\355\230\225\354\235\270.svg" "b/public/images/keywords/\353\247\220\353\263\264\353\213\244 \353\254\270\354\204\234\355\230\225\354\235\270.svg" new file mode 100644 index 00000000..0ec0a408 --- /dev/null +++ "b/public/images/keywords/\353\247\220\353\263\264\353\213\244 \353\254\270\354\204\234\355\230\225\354\235\270.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\247\220\354\227\220 \354\213\240\353\242\260\352\260\200 \354\213\244\353\246\254\353\212\224.svg" "b/public/images/keywords/\353\247\220\354\227\220 \354\213\240\353\242\260\352\260\200 \354\213\244\353\246\254\353\212\224.svg" new file mode 100644 index 00000000..87e77f85 --- /dev/null +++ "b/public/images/keywords/\353\247\220\354\227\220 \354\213\240\353\242\260\352\260\200 \354\213\244\353\246\254\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\247\220\354\227\220 \354\235\274\352\264\200\354\204\261\354\235\264 \354\236\210\353\212\224.svg" "b/public/images/keywords/\353\247\220\354\227\220 \354\235\274\352\264\200\354\204\261\354\235\264 \354\236\210\353\212\224.svg" new file mode 100644 index 00000000..9399bbca --- /dev/null +++ "b/public/images/keywords/\353\247\220\354\227\220 \354\235\274\352\264\200\354\204\261\354\235\264 \354\236\210\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\247\220\354\235\204 \354\236\230 \355\225\230\353\212\224.svg" "b/public/images/keywords/\353\247\220\354\235\204 \354\236\230 \355\225\230\353\212\224.svg" index 8f8ebccc..85de0a91 100644 --- "a/public/images/keywords/\353\247\220\354\235\204 \354\236\230 \355\225\230\353\212\224.svg" +++ "b/public/images/keywords/\353\247\220\354\235\204 \354\236\230 \355\225\230\353\212\224.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\353\247\245\353\235\275 \354\235\264\355\225\264\352\260\200 \353\271\240\353\245\270.svg" "b/public/images/keywords/\353\247\245\353\235\275 \354\235\264\355\225\264\352\260\200 \353\271\240\353\245\270.svg" new file mode 100644 index 00000000..38e06d43 --- /dev/null +++ "b/public/images/keywords/\353\247\245\353\235\275 \354\235\264\355\225\264\352\260\200 \353\271\240\353\245\270.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\247\245\353\235\275\354\235\204 \354\236\230 \354\235\264\355\225\264\355\225\230\353\212\224.svg" "b/public/images/keywords/\353\247\245\353\235\275\354\235\204 \354\236\230 \354\235\264\355\225\264\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..64db8d7a --- /dev/null +++ "b/public/images/keywords/\353\247\245\353\235\275\354\235\204 \354\236\230 \354\235\264\355\225\264\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\251\230\355\203\210\354\235\264 \352\260\225\355\225\234.svg" "b/public/images/keywords/\353\251\230\355\203\210\354\235\264 \352\260\225\355\225\234.svg" index d1ec86dc..ac0fa618 100644 --- "a/public/images/keywords/\353\251\230\355\203\210\354\235\264 \352\260\225\355\225\234.svg" +++ "b/public/images/keywords/\353\251\230\355\203\210\354\235\264 \352\260\225\355\225\234.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\353\252\251\354\240\201 \354\235\230\354\213\235\354\240\201\354\235\270.svg" "b/public/images/keywords/\353\252\251\354\240\201 \354\235\230\354\213\235\354\240\201\354\235\270.svg" new file mode 100644 index 00000000..e0af12d5 --- /dev/null +++ "b/public/images/keywords/\353\252\251\354\240\201 \354\235\230\354\213\235\354\240\201\354\235\270.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\252\251\355\221\234 \354\247\200\355\226\245\354\240\201\354\235\270.svg" "b/public/images/keywords/\353\252\251\355\221\234 \354\247\200\355\226\245\354\240\201\354\235\270.svg" new file mode 100644 index 00000000..11d09390 --- /dev/null +++ "b/public/images/keywords/\353\252\251\355\221\234 \354\247\200\355\226\245\354\240\201\354\235\270.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\252\251\355\221\234 \354\247\221\354\260\251\355\230\225\354\235\270.svg" "b/public/images/keywords/\353\252\251\355\221\234 \354\247\221\354\260\251\355\230\225\354\235\270.svg" new file mode 100644 index 00000000..d9246b79 --- /dev/null +++ "b/public/images/keywords/\353\252\251\355\221\234 \354\247\221\354\260\251\355\230\225\354\235\270.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\252\251\355\221\234\353\245\274 \352\263\265\354\234\240\355\225\230\353\212\224.svg" "b/public/images/keywords/\353\252\251\355\221\234\353\245\274 \352\263\265\354\234\240\355\225\230\353\212\224.svg" index 77a7a2d8..5337cf95 100644 --- "a/public/images/keywords/\353\252\251\355\221\234\353\245\274 \352\263\265\354\234\240\355\225\230\353\212\224.svg" +++ "b/public/images/keywords/\353\252\251\355\221\234\353\245\274 \352\263\265\354\234\240\355\225\230\353\212\224.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\353\252\251\355\221\234\354\247\200\355\226\245\354\240\201\354\235\270.svg" "b/public/images/keywords/\353\252\251\355\221\234\354\247\200\355\226\245\354\240\201\354\235\270.svg" deleted file mode 100644 index 7702fa42..00000000 --- "a/public/images/keywords/\353\252\251\355\221\234\354\247\200\355\226\245\354\240\201\354\235\270.svg" +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git "a/public/images/keywords/\353\252\260\354\225\204\354\204\234 \355\225\230\353\212\224 \355\216\270\354\235\270.svg" "b/public/images/keywords/\353\252\260\354\225\204\354\204\234 \355\225\230\353\212\224 \355\216\270\354\235\270.svg" new file mode 100644 index 00000000..86dcae3f --- /dev/null +++ "b/public/images/keywords/\353\252\260\354\225\204\354\204\234 \355\225\230\353\212\224 \355\216\270\354\235\270.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\252\260\354\236\205 \354\213\234 \352\270\260\353\263\265\354\235\264 \355\201\260.svg" "b/public/images/keywords/\353\252\260\354\236\205 \354\213\234 \352\270\260\353\263\265\354\235\264 \355\201\260.svg" new file mode 100644 index 00000000..69c3bd7d --- /dev/null +++ "b/public/images/keywords/\353\252\260\354\236\205 \354\213\234 \352\270\260\353\263\265\354\235\264 \355\201\260.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\254\265\353\254\265\355\236\210 \355\225\264\353\202\264\353\212\224.svg" "b/public/images/keywords/\353\254\265\353\254\265\355\236\210 \355\225\264\353\202\264\353\212\224.svg" new file mode 100644 index 00000000..cc87fe87 --- /dev/null +++ "b/public/images/keywords/\353\254\265\353\254\265\355\236\210 \355\225\264\353\202\264\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\254\270\354\240\234 \355\225\264\352\262\260\353\240\245\354\235\264 \353\233\260\354\226\264\353\202\234.svg" "b/public/images/keywords/\353\254\270\354\240\234 \355\225\264\352\262\260\353\240\245\354\235\264 \353\233\260\354\226\264\353\202\234.svg" index b54e0521..7c281c2e 100644 --- "a/public/images/keywords/\353\254\270\354\240\234 \355\225\264\352\262\260\353\240\245\354\235\264 \353\233\260\354\226\264\353\202\234.svg" +++ "b/public/images/keywords/\353\254\270\354\240\234 \355\225\264\352\262\260\353\240\245\354\235\264 \353\233\260\354\226\264\353\202\234.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\353\260\251\355\226\245 \354\240\204\355\231\230\354\235\264 \354\236\246\354\235\200.svg" "b/public/images/keywords/\353\260\251\355\226\245 \354\240\204\355\231\230\354\235\264 \354\236\246\354\235\200.svg" new file mode 100644 index 00000000..51bb459c --- /dev/null +++ "b/public/images/keywords/\353\260\251\355\226\245 \354\240\204\355\231\230\354\235\264 \354\236\246\354\235\200.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\260\251\355\226\245 \354\240\234\354\213\234\354\227\220 \353\212\245\355\225\234.svg" "b/public/images/keywords/\353\260\251\355\226\245 \354\240\234\354\213\234\354\227\220 \353\212\245\355\225\234.svg" new file mode 100644 index 00000000..8d7108a5 --- /dev/null +++ "b/public/images/keywords/\353\260\251\355\226\245 \354\240\234\354\213\234\354\227\220 \353\212\245\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\260\251\355\226\245\354\204\261\354\235\264 \353\260\224\353\200\214\353\212\224.svg" "b/public/images/keywords/\353\260\251\355\226\245\354\204\261\354\235\264 \353\260\224\353\200\214\353\212\224.svg" index 039acd34..a9bd6264 100644 --- "a/public/images/keywords/\353\260\251\355\226\245\354\204\261\354\235\264 \353\260\224\353\200\214\353\212\224.svg" +++ "b/public/images/keywords/\353\260\251\355\226\245\354\204\261\354\235\264 \353\260\224\353\200\214\353\212\224.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\353\260\251\355\226\245\354\235\204 \354\234\240\354\247\200\355\225\234.svg" "b/public/images/keywords/\353\260\251\355\226\245\354\235\204 \354\234\240\354\247\200\355\225\234.svg" new file mode 100644 index 00000000..fd77e83e --- /dev/null +++ "b/public/images/keywords/\353\260\251\355\226\245\354\235\204 \354\234\240\354\247\200\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\260\251\355\226\245\354\235\264 \355\235\224\353\223\244\353\246\254\353\212\224.svg" "b/public/images/keywords/\353\260\251\355\226\245\354\235\264 \355\235\224\353\223\244\353\246\254\353\212\224.svg" new file mode 100644 index 00000000..53df32d8 --- /dev/null +++ "b/public/images/keywords/\353\260\251\355\226\245\354\235\264 \355\235\224\353\223\244\353\246\254\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\260\260\353\240\244\354\213\254 \352\271\212\354\235\200.svg" "b/public/images/keywords/\353\260\260\353\240\244\354\213\254 \352\271\212\354\235\200.svg" index 800c23aa..c3b6d989 100644 --- "a/public/images/keywords/\353\260\260\353\240\244\354\213\254 \352\271\212\354\235\200.svg" +++ "b/public/images/keywords/\353\260\260\353\240\244\354\213\254 \352\271\212\354\235\200.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\353\260\260\354\232\260\353\240\244\353\212\224 \354\235\230\354\247\200\352\260\200 \353\206\222\354\235\200.svg" "b/public/images/keywords/\353\260\260\354\232\260\353\240\244\353\212\224 \354\235\230\354\247\200\352\260\200 \353\206\222\354\235\200.svg" deleted file mode 100644 index 4bc593ac..00000000 --- "a/public/images/keywords/\353\260\260\354\232\260\353\240\244\353\212\224 \354\235\230\354\247\200\352\260\200 \353\206\222\354\235\200.svg" +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git "a/public/images/keywords/\353\262\204\355\214\200\353\252\251\354\235\264 \353\220\230\353\212\224.svg" "b/public/images/keywords/\353\262\204\355\214\200\353\252\251\354\235\264 \353\220\230\353\212\224.svg" new file mode 100644 index 00000000..2ffaed90 --- /dev/null +++ "b/public/images/keywords/\353\262\204\355\214\200\353\252\251\354\235\264 \353\220\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\263\200\354\210\230\353\245\274 \352\263\240\353\240\244\355\225\230\353\212\224.svg" "b/public/images/keywords/\353\263\200\354\210\230\353\245\274 \352\263\240\353\240\244\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..f7f430cc --- /dev/null +++ "b/public/images/keywords/\353\263\200\354\210\230\353\245\274 \352\263\240\353\240\244\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\263\200\355\231\224 \354\210\230\354\232\251\354\227\220 \354\213\234\352\260\204\354\235\264 \355\225\204\354\232\224\355\225\234.svg" "b/public/images/keywords/\353\263\200\355\231\224 \354\210\230\354\232\251\354\227\220 \354\213\234\352\260\204\354\235\264 \355\225\204\354\232\224\355\225\234.svg" new file mode 100644 index 00000000..177469fa --- /dev/null +++ "b/public/images/keywords/\353\263\200\355\231\224 \354\210\230\354\232\251\354\227\220 \354\213\234\352\260\204\354\235\264 \355\225\204\354\232\224\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\263\200\355\231\224\354\227\220 \354\230\210\353\257\274\355\225\234.svg" "b/public/images/keywords/\353\263\200\355\231\224\354\227\220 \354\230\210\353\257\274\355\225\234.svg" index 609ac483..7edb5fad 100644 --- "a/public/images/keywords/\353\263\200\355\231\224\354\227\220 \354\230\210\353\257\274\355\225\234.svg" +++ "b/public/images/keywords/\353\263\200\355\231\224\354\227\220 \354\230\210\353\257\274\355\225\234.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\353\263\221\353\252\251\354\235\204 \354\244\204\354\235\264\353\212\224.svg" "b/public/images/keywords/\353\263\221\353\252\251\354\235\204 \354\244\204\354\235\264\353\212\224.svg" new file mode 100644 index 00000000..ffc6303d --- /dev/null +++ "b/public/images/keywords/\353\263\221\353\252\251\354\235\204 \354\244\204\354\235\264\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\263\221\353\252\251\354\235\204 \355\225\264\352\262\260\355\225\230\353\212\224.svg" "b/public/images/keywords/\353\263\221\353\252\251\354\235\204 \355\225\264\352\262\260\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..bdac345a --- /dev/null +++ "b/public/images/keywords/\353\263\221\353\252\251\354\235\204 \355\225\264\352\262\260\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\263\264\354\231\204\354\235\204 \354\247\200\355\226\245\355\225\230\353\212\224.svg" "b/public/images/keywords/\353\263\264\354\231\204\354\235\204 \354\247\200\355\226\245\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..56908962 --- /dev/null +++ "b/public/images/keywords/\353\263\264\354\231\204\354\235\204 \354\247\200\355\226\245\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\263\264\354\235\264\354\247\200 \354\225\212\353\212\224 \354\235\274\354\235\204 \354\261\231\352\270\260\353\212\224.svg" "b/public/images/keywords/\353\263\264\354\235\264\354\247\200 \354\225\212\353\212\224 \354\235\274\354\235\204 \354\261\231\352\270\260\353\212\224.svg" new file mode 100644 index 00000000..e3a1d97d --- /dev/null +++ "b/public/images/keywords/\353\263\264\354\235\264\354\247\200 \354\225\212\353\212\224 \354\235\274\354\235\204 \354\261\231\352\270\260\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\263\265\354\236\241\355\225\234 \352\261\270 \353\213\250\354\210\234\355\231\224\355\225\230\353\212\224.svg" "b/public/images/keywords/\353\263\265\354\236\241\355\225\234 \352\261\270 \353\213\250\354\210\234\355\231\224\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..86996eac --- /dev/null +++ "b/public/images/keywords/\353\263\265\354\236\241\355\225\234 \352\261\270 \353\213\250\354\210\234\355\231\224\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\263\270\354\247\210 \354\247\200\355\226\245\354\240\201\354\235\270.svg" "b/public/images/keywords/\353\263\270\354\247\210 \354\247\200\355\226\245\354\240\201\354\235\270.svg" new file mode 100644 index 00000000..d1ea086d --- /dev/null +++ "b/public/images/keywords/\353\263\270\354\247\210 \354\247\200\355\226\245\354\240\201\354\235\270.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\266\200\353\213\264 \354\227\206\354\235\264 \354\235\230\352\262\254\354\235\204 \353\254\273\353\212\224.svg" "b/public/images/keywords/\353\266\200\353\213\264 \354\227\206\354\235\264 \354\235\230\352\262\254\354\235\204 \353\254\273\353\212\224.svg" new file mode 100644 index 00000000..5ac18664 --- /dev/null +++ "b/public/images/keywords/\353\266\200\353\213\264 \354\227\206\354\235\264 \354\235\230\352\262\254\354\235\204 \353\254\273\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\266\200\353\213\264\354\235\204 \354\214\223\354\225\204\353\221\220\353\212\224.svg" "b/public/images/keywords/\353\266\200\353\213\264\354\235\204 \354\214\223\354\225\204\353\221\220\353\212\224.svg" new file mode 100644 index 00000000..1cdd07f6 --- /dev/null +++ "b/public/images/keywords/\353\266\200\353\213\264\354\235\204 \354\214\223\354\225\204\353\221\220\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\353\266\204\354\204\235\354\240\201\354\235\270.svg" "b/public/images/keywords/\353\266\204\354\204\235\354\240\201\354\235\270.svg" index d25284f3..1838ea11 100644 --- "a/public/images/keywords/\353\266\204\354\204\235\354\240\201\354\235\270.svg" +++ "b/public/images/keywords/\353\266\204\354\204\235\354\240\201\354\235\270.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\353\266\204\354\234\204\352\270\260 \353\251\224\354\235\264\354\273\244\355\230\225.svg" "b/public/images/keywords/\353\266\204\354\234\204\352\270\260 \353\251\224\354\235\264\354\273\244\355\230\225.svg" index d0855ec2..4a4bf03a 100644 --- "a/public/images/keywords/\353\266\204\354\234\204\352\270\260 \353\251\224\354\235\264\354\273\244\355\230\225.svg" +++ "b/public/images/keywords/\353\266\204\354\234\204\352\270\260 \353\251\224\354\235\264\354\273\244\355\230\225.svg" @@ -1,22 +1,22 @@ - - - - - + + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\203\201\353\214\200\353\245\274 \352\263\240\353\240\244\355\225\230\353\212\224.svg" "b/public/images/keywords/\354\203\201\353\214\200\353\245\274 \352\263\240\353\240\244\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..c3b2f251 --- /dev/null +++ "b/public/images/keywords/\354\203\201\353\214\200\353\245\274 \352\263\240\353\240\244\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\203\201\355\231\251 \354\235\230\354\241\264\354\240\201\354\235\270.svg" "b/public/images/keywords/\354\203\201\355\231\251 \354\235\230\354\241\264\354\240\201\354\235\270.svg" index fd28d51d..bbc0cb2e 100644 --- "a/public/images/keywords/\354\203\201\355\231\251 \354\235\230\354\241\264\354\240\201\354\235\270.svg" +++ "b/public/images/keywords/\354\203\201\355\231\251 \354\235\230\354\241\264\354\240\201\354\235\270.svg" @@ -1,22 +1,22 @@ - - - - - + + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\203\201\355\231\251\353\263\204 \353\214\200\354\235\221\354\235\264 \354\234\240\354\227\260\355\225\234.svg" "b/public/images/keywords/\354\203\201\355\231\251\353\263\204 \353\214\200\354\235\221\354\235\264 \354\234\240\354\227\260\355\225\234.svg" new file mode 100644 index 00000000..032f57f7 --- /dev/null +++ "b/public/images/keywords/\354\203\201\355\231\251\353\263\204 \353\214\200\354\235\221\354\235\264 \354\234\240\354\227\260\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\203\201\355\231\251\354\227\220 \353\247\236\352\262\214 \354\206\214\355\206\265\355\225\230\353\212\224.svg" "b/public/images/keywords/\354\203\201\355\231\251\354\227\220 \353\247\236\352\262\214 \354\206\214\355\206\265\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..da76dde8 --- /dev/null +++ "b/public/images/keywords/\354\203\201\355\231\251\354\227\220 \353\247\236\352\262\214 \354\206\214\355\206\265\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\203\235\352\260\201\354\235\264 \353\247\216\354\235\200.svg" "b/public/images/keywords/\354\203\235\352\260\201\354\235\264 \353\247\216\354\235\200.svg" index 93ec70bf..683f2331 100644 --- "a/public/images/keywords/\354\203\235\352\260\201\354\235\264 \353\247\216\354\235\200.svg" +++ "b/public/images/keywords/\354\203\235\352\260\201\354\235\264 \353\247\216\354\235\200.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\204\240\355\203\235\354\235\204 \352\263\240\353\257\274\355\225\230\353\212\224.svg" "b/public/images/keywords/\354\204\240\355\203\235\354\235\204 \352\263\240\353\257\274\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..6878c3c6 --- /dev/null +++ "b/public/images/keywords/\354\204\240\355\203\235\354\235\204 \352\263\240\353\257\274\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\204\244\353\223\235\353\240\245\354\235\264 \353\206\222\354\235\200.svg" "b/public/images/keywords/\354\204\244\353\223\235\353\240\245\354\235\264 \353\206\222\354\235\200.svg" index 57c2ae29..4ca51a0e 100644 --- "a/public/images/keywords/\354\204\244\353\223\235\353\240\245\354\235\264 \353\206\222\354\235\200.svg" +++ "b/public/images/keywords/\354\204\244\353\223\235\353\240\245\354\235\264 \353\206\222\354\235\200.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\204\244\353\223\235\353\263\264\353\213\244 \354\204\244\353\252\205\355\230\225\354\235\270.svg" "b/public/images/keywords/\354\204\244\353\223\235\353\263\264\353\213\244 \354\204\244\353\252\205\355\230\225\354\235\270.svg" new file mode 100644 index 00000000..7c93b30d --- /dev/null +++ "b/public/images/keywords/\354\204\244\353\223\235\353\263\264\353\213\244 \354\204\244\353\252\205\355\230\225\354\235\270.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\204\261\352\263\274 \354\244\221\354\213\254\354\240\201\354\235\270.svg" "b/public/images/keywords/\354\204\261\352\263\274 \354\244\221\354\213\254\354\240\201\354\235\270.svg" index 5a30d2b8..190ee18d 100644 --- "a/public/images/keywords/\354\204\261\352\263\274 \354\244\221\354\213\254\354\240\201\354\235\270.svg" +++ "b/public/images/keywords/\354\204\261\352\263\274 \354\244\221\354\213\254\354\240\201\354\235\270.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\204\261\354\213\244\355\225\234.svg" "b/public/images/keywords/\354\204\261\354\213\244\355\225\234.svg" deleted file mode 100644 index c6690a0f..00000000 --- "a/public/images/keywords/\354\204\261\354\213\244\355\225\234.svg" +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git "a/public/images/keywords/\354\204\261\354\236\245 \353\260\251\355\226\245\354\235\264 \353\266\204\353\252\205\355\225\234.svg" "b/public/images/keywords/\354\204\261\354\236\245 \353\260\251\355\226\245\354\235\264 \353\266\204\353\252\205\355\225\234.svg" new file mode 100644 index 00000000..2a0bf988 --- /dev/null +++ "b/public/images/keywords/\354\204\261\354\236\245 \353\260\251\355\226\245\354\235\264 \353\266\204\353\252\205\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\204\261\354\236\245\354\235\264 \354\225\210\354\240\225\354\240\201\354\235\270.svg" "b/public/images/keywords/\354\204\261\354\236\245\354\235\264 \354\225\210\354\240\225\354\240\201\354\235\270.svg" new file mode 100644 index 00000000..751c2d08 --- /dev/null +++ "b/public/images/keywords/\354\204\261\354\236\245\354\235\264 \354\225\210\354\240\225\354\240\201\354\235\270.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\204\261\354\267\250\354\232\225\354\235\264 \353\206\222\354\235\200.svg" "b/public/images/keywords/\354\204\261\354\267\250\354\232\225\354\235\264 \353\206\222\354\235\200.svg" index e24ea5b2..a34bb3f8 100644 --- "a/public/images/keywords/\354\204\261\354\267\250\354\232\225\354\235\264 \353\206\222\354\235\200.svg" +++ "b/public/images/keywords/\354\204\261\354\267\250\354\232\225\354\235\264 \353\206\222\354\235\200.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\204\270\354\213\254\355\225\234.svg" "b/public/images/keywords/\354\204\270\354\213\254\355\225\234.svg" index e3576235..b360b309 100644 --- "a/public/images/keywords/\354\204\270\354\213\254\355\225\234.svg" +++ "b/public/images/keywords/\354\204\270\354\213\254\355\225\234.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\204\274\354\212\244 \354\236\210\353\212\224.svg" "b/public/images/keywords/\354\204\274\354\212\244 \354\236\210\353\212\224.svg" new file mode 100644 index 00000000..07fd1115 --- /dev/null +++ "b/public/images/keywords/\354\204\274\354\212\244 \354\236\210\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\204\274\354\212\244\354\236\210\353\212\224.svg" "b/public/images/keywords/\354\204\274\354\212\244\354\236\210\353\212\224.svg" deleted file mode 100644 index af1f4e57..00000000 --- "a/public/images/keywords/\354\204\274\354\212\244\354\236\210\353\212\224.svg" +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git "a/public/images/keywords/\354\206\214\355\206\265\354\235\264 \354\206\214\352\267\271\354\240\201\354\235\270.svg" "b/public/images/keywords/\354\206\214\355\206\265\354\235\264 \354\206\214\352\267\271\354\240\201\354\235\270.svg" new file mode 100644 index 00000000..61f06ec2 --- /dev/null +++ "b/public/images/keywords/\354\206\214\355\206\265\354\235\264 \354\206\214\352\267\271\354\240\201\354\235\270.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\206\215\353\217\204 \355\216\270\354\260\250\352\260\200 \355\201\260.svg" "b/public/images/keywords/\354\206\215\353\217\204 \355\216\270\354\260\250\352\260\200 \355\201\260.svg" new file mode 100644 index 00000000..07fc2eaa --- /dev/null +++ "b/public/images/keywords/\354\206\215\353\217\204 \355\216\270\354\260\250\352\260\200 \355\201\260.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\206\224\354\204\240\354\210\230\353\262\224\355\225\230\353\212\224.svg" "b/public/images/keywords/\354\206\224\354\204\240\354\210\230\353\262\224\355\225\230\353\212\224.svg" index 0a7404f3..0c5bc852 100644 --- "a/public/images/keywords/\354\206\224\354\204\240\354\210\230\353\262\224\355\225\230\353\212\224.svg" +++ "b/public/images/keywords/\354\206\224\354\204\240\354\210\230\353\262\224\355\225\230\353\212\224.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\354\206\224\354\247\201\355\225\234.svg" "b/public/images/keywords/\354\206\224\354\247\201\355\225\234.svg" index 82db44f0..caa2120b 100644 --- "a/public/images/keywords/\354\206\224\354\247\201\355\225\234.svg" +++ "b/public/images/keywords/\354\206\224\354\247\201\355\225\234.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\354\210\230\354\232\251\353\240\245\354\235\264 \354\242\213\354\235\200.svg" "b/public/images/keywords/\354\210\230\354\232\251\353\240\245\354\235\264 \354\242\213\354\235\200.svg" index aed82129..867dc738 100644 --- "a/public/images/keywords/\354\210\230\354\232\251\353\240\245\354\235\264 \354\242\213\354\235\200.svg" +++ "b/public/images/keywords/\354\210\230\354\232\251\353\240\245\354\235\264 \354\242\213\354\235\200.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\354\210\230\354\232\251\354\235\264 \353\212\220\353\246\260.svg" "b/public/images/keywords/\354\210\230\354\232\251\354\235\264 \353\212\220\353\246\260.svg" new file mode 100644 index 00000000..a1cffb5e --- /dev/null +++ "b/public/images/keywords/\354\210\230\354\232\251\354\235\264 \353\212\220\353\246\260.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\212\244\354\212\244\353\241\234 \353\217\231\352\270\260\353\266\200\354\227\254\352\260\200 \353\220\230\353\212\224.svg" "b/public/images/keywords/\354\212\244\354\212\244\353\241\234 \353\217\231\352\270\260\353\266\200\354\227\254\352\260\200 \353\220\230\353\212\224.svg" index fe98388f..4eadc0fe 100644 --- "a/public/images/keywords/\354\212\244\354\212\244\353\241\234 \353\217\231\352\270\260\353\266\200\354\227\254\352\260\200 \353\220\230\353\212\224.svg" +++ "b/public/images/keywords/\354\212\244\354\212\244\353\241\234 \353\217\231\352\270\260\353\266\200\354\227\254\352\260\200 \353\220\230\353\212\224.svg" @@ -1,22 +1,22 @@ - - - - - + + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\212\244\354\212\244\353\241\234 \354\227\204\352\262\251\355\225\234.svg" "b/public/images/keywords/\354\212\244\354\212\244\353\241\234 \354\227\204\352\262\251\355\225\234.svg" new file mode 100644 index 00000000..564ded85 --- /dev/null +++ "b/public/images/keywords/\354\212\244\354\212\244\353\241\234 \354\227\204\352\262\251\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\212\244\354\212\244\353\241\234 \354\240\220\352\262\200\355\225\230\353\212\224.svg" "b/public/images/keywords/\354\212\244\354\212\244\353\241\234 \354\240\220\352\262\200\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..87716401 --- /dev/null +++ "b/public/images/keywords/\354\212\244\354\212\244\353\241\234 \354\240\220\352\262\200\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\212\244\355\212\270\353\240\210\354\212\244 \353\210\204\354\240\201\355\230\225\354\235\270.svg" "b/public/images/keywords/\354\212\244\355\212\270\353\240\210\354\212\244 \353\210\204\354\240\201\355\230\225\354\235\270.svg" new file mode 100644 index 00000000..105a0d7e --- /dev/null +++ "b/public/images/keywords/\354\212\244\355\212\270\353\240\210\354\212\244 \353\210\204\354\240\201\355\230\225\354\235\270.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\213\234\355\226\211\354\260\251\354\230\244\353\245\274 \354\244\204\354\235\264\353\212\224.svg" "b/public/images/keywords/\354\213\234\355\226\211\354\260\251\354\230\244\353\245\274 \354\244\204\354\235\264\353\212\224.svg" new file mode 100644 index 00000000..a8f5319a --- /dev/null +++ "b/public/images/keywords/\354\213\234\355\226\211\354\260\251\354\230\244\353\245\274 \354\244\204\354\235\264\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\213\240\353\242\260\352\260\220 \354\236\210\353\212\224.svg" "b/public/images/keywords/\354\213\240\353\242\260\352\260\220 \354\236\210\353\212\224.svg" index 2880a722..1c7aa569 100644 --- "a/public/images/keywords/\354\213\240\353\242\260\352\260\220 \354\236\210\353\212\224.svg" +++ "b/public/images/keywords/\354\213\240\353\242\260\352\260\220 \354\236\210\353\212\224.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\213\240\353\242\260\353\245\274 \354\214\223\354\225\204\352\260\200\353\212\224.svg" "b/public/images/keywords/\354\213\240\353\242\260\353\245\274 \354\214\223\354\225\204\352\260\200\353\212\224.svg" new file mode 100644 index 00000000..3b7bb741 --- /dev/null +++ "b/public/images/keywords/\354\213\240\353\242\260\353\245\274 \354\214\223\354\225\204\352\260\200\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\213\240\353\242\260\353\245\274 \354\214\223\354\225\204\354\230\250.svg" "b/public/images/keywords/\354\213\240\353\242\260\353\245\274 \354\214\223\354\225\204\354\230\250.svg" new file mode 100644 index 00000000..94bd6b1c --- /dev/null +++ "b/public/images/keywords/\354\213\240\353\242\260\353\245\274 \354\214\223\354\225\204\354\230\250.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\213\240\353\242\260\353\245\274 \354\243\274\353\212\224.svg" "b/public/images/keywords/\354\213\240\353\242\260\353\245\274 \354\243\274\353\212\224.svg" new file mode 100644 index 00000000..9188df2d --- /dev/null +++ "b/public/images/keywords/\354\213\240\353\242\260\353\245\274 \354\243\274\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\213\240\353\242\260\354\235\230 \352\270\260\354\244\200\354\235\264 \353\220\230\353\212\224.svg" "b/public/images/keywords/\354\213\240\353\242\260\354\235\230 \352\270\260\354\244\200\354\235\264 \353\220\230\353\212\224.svg" new file mode 100644 index 00000000..ac0d78a3 --- /dev/null +++ "b/public/images/keywords/\354\213\240\353\242\260\354\235\230 \352\270\260\354\244\200\354\235\264 \353\220\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\213\240\353\242\260\354\240\201\354\235\270.svg" "b/public/images/keywords/\354\213\240\353\242\260\354\240\201\354\235\270.svg" deleted file mode 100644 index 06aaf60b..00000000 --- "a/public/images/keywords/\354\213\240\353\242\260\354\240\201\354\235\270.svg" +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git "a/public/images/keywords/\354\213\240\354\244\221\355\225\230\352\262\214 \355\214\220\353\213\250\355\225\230\353\212\224.svg" "b/public/images/keywords/\354\213\240\354\244\221\355\225\230\352\262\214 \355\214\220\353\213\250\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..221d1754 --- /dev/null +++ "b/public/images/keywords/\354\213\240\354\244\221\355\225\230\352\262\214 \355\214\220\353\213\250\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\213\244\353\254\264 \352\260\220\352\260\201\354\235\264 \353\271\240\353\245\270.svg" "b/public/images/keywords/\354\213\244\353\254\264 \352\260\220\352\260\201\354\235\264 \353\271\240\353\245\270.svg" index f76f9a5b..f9c7ddfb 100644 --- "a/public/images/keywords/\354\213\244\353\254\264 \352\260\220\352\260\201\354\235\264 \353\271\240\353\245\270.svg" +++ "b/public/images/keywords/\354\213\244\353\254\264 \352\260\220\352\260\201\354\235\264 \353\271\240\353\245\270.svg" @@ -1,22 +1,22 @@ - - - - - + + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\213\244\353\254\264\354\231\200 \352\270\260\355\232\215\354\235\204 \354\236\207\353\212\224.svg" "b/public/images/keywords/\354\213\244\353\254\264\354\231\200 \352\270\260\355\232\215\354\235\204 \354\236\207\353\212\224.svg" new file mode 100644 index 00000000..7d949169 --- /dev/null +++ "b/public/images/keywords/\354\213\244\353\254\264\354\231\200 \352\270\260\355\232\215\354\235\204 \354\236\207\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\213\244\354\210\230\353\241\234\353\266\200\355\204\260 \354\204\261\354\236\245\355\225\230\353\212\224.svg" "b/public/images/keywords/\354\213\244\354\210\230\353\241\234\353\266\200\355\204\260 \354\204\261\354\236\245\355\225\230\353\212\224.svg" index 18a5ce3d..2850e6cf 100644 --- "a/public/images/keywords/\354\213\244\354\210\230\353\241\234\353\266\200\355\204\260 \354\204\261\354\236\245\355\225\230\353\212\224.svg" +++ "b/public/images/keywords/\354\213\244\354\210\230\353\241\234\353\266\200\355\204\260 \354\204\261\354\236\245\355\225\230\353\212\224.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\213\244\354\210\230\353\245\274 \352\270\260\355\232\214\353\241\234 \353\260\224\352\276\270\353\212\224.svg" "b/public/images/keywords/\354\213\244\354\210\230\353\245\274 \352\270\260\355\232\214\353\241\234 \353\260\224\352\276\270\353\212\224.svg" new file mode 100644 index 00000000..02c4fccf --- /dev/null +++ "b/public/images/keywords/\354\213\244\354\210\230\353\245\274 \352\270\260\355\232\214\353\241\234 \353\260\224\352\276\270\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\213\244\355\226\211 \353\213\250\352\263\204\353\245\274 \353\252\205\355\231\225\355\236\210 \355\225\230\353\212\224.svg" "b/public/images/keywords/\354\213\244\355\226\211 \353\213\250\352\263\204\353\245\274 \353\252\205\355\231\225\355\236\210 \355\225\230\353\212\224.svg" new file mode 100644 index 00000000..bbbcdf4d --- /dev/null +++ "b/public/images/keywords/\354\213\244\355\226\211 \353\213\250\352\263\204\353\245\274 \353\252\205\355\231\225\355\236\210 \355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\213\244\355\226\211\352\271\214\354\247\200 \354\227\260\352\262\260\355\225\230\353\212\224.svg" "b/public/images/keywords/\354\213\244\355\226\211\352\271\214\354\247\200 \354\227\260\352\262\260\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..e56ee9d5 --- /dev/null +++ "b/public/images/keywords/\354\213\244\355\226\211\352\271\214\354\247\200 \354\227\260\352\262\260\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\213\244\355\226\211\354\234\274\353\241\234 \354\230\256\352\270\264.svg" "b/public/images/keywords/\354\213\244\355\226\211\354\234\274\353\241\234 \354\230\256\352\270\264.svg" new file mode 100644 index 00000000..561544dc --- /dev/null +++ "b/public/images/keywords/\354\213\244\355\226\211\354\234\274\353\241\234 \354\230\256\352\270\264.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\213\244\355\226\211\354\235\264 \353\212\246\354\226\264\354\247\200\353\212\224.svg" "b/public/images/keywords/\354\213\244\355\226\211\354\235\264 \353\212\246\354\226\264\354\247\200\353\212\224.svg" new file mode 100644 index 00000000..8124492f --- /dev/null +++ "b/public/images/keywords/\354\213\244\355\226\211\354\235\264 \353\212\246\354\226\264\354\247\200\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\225\204\354\235\264\353\224\224\354\226\264\352\260\200 \355\222\215\353\266\200\355\225\234.svg" "b/public/images/keywords/\354\225\204\354\235\264\353\224\224\354\226\264\352\260\200 \355\222\215\353\266\200\355\225\234.svg" index e1b162c0..6f7a9764 100644 --- "a/public/images/keywords/\354\225\204\354\235\264\353\224\224\354\226\264\352\260\200 \355\222\215\353\266\200\355\225\234.svg" +++ "b/public/images/keywords/\354\225\204\354\235\264\353\224\224\354\226\264\352\260\200 \355\222\215\353\266\200\355\225\234.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\225\204\354\235\264\353\224\224\354\226\264\353\245\274 \352\265\254\354\262\264\355\231\224\355\225\230\353\212\224.svg" "b/public/images/keywords/\354\225\204\354\235\264\353\224\224\354\226\264\353\245\274 \352\265\254\354\262\264\355\231\224\355\225\230\353\212\224.svg" index b59c768e..d22770b2 100644 --- "a/public/images/keywords/\354\225\204\354\235\264\353\224\224\354\226\264\353\245\274 \352\265\254\354\262\264\355\231\224\355\225\230\353\212\224.svg" +++ "b/public/images/keywords/\354\225\204\354\235\264\353\224\224\354\226\264\353\245\274 \352\265\254\354\262\264\355\231\224\355\225\230\353\212\224.svg" @@ -1,22 +1,22 @@ - - - - - + + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\225\210\354\240\225\354\204\261\354\235\264 \353\202\256\354\235\200.svg" "b/public/images/keywords/\354\225\210\354\240\225\354\204\261\354\235\264 \353\202\256\354\235\200.svg" new file mode 100644 index 00000000..62da9239 --- /dev/null +++ "b/public/images/keywords/\354\225\210\354\240\225\354\204\261\354\235\264 \353\202\256\354\235\200.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\225\210\354\240\225\354\227\220 \353\250\270\353\254\264\353\245\264\353\212\224.svg" "b/public/images/keywords/\354\225\210\354\240\225\354\227\220 \353\250\270\353\254\264\353\245\264\353\212\224.svg" new file mode 100644 index 00000000..01c85194 --- /dev/null +++ "b/public/images/keywords/\354\225\210\354\240\225\354\227\220 \353\250\270\353\254\264\353\245\264\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\225\210\354\240\225\354\240\201\354\235\270 \354\204\240\355\203\235\354\235\204 \355\225\230\353\212\224.svg" "b/public/images/keywords/\354\225\210\354\240\225\354\240\201\354\235\270 \354\204\240\355\203\235\354\235\204 \355\225\230\353\212\224.svg" new file mode 100644 index 00000000..5c6c82a9 --- /dev/null +++ "b/public/images/keywords/\354\225\210\354\240\225\354\240\201\354\235\270 \354\204\240\355\203\235\354\235\204 \355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\225\225\353\260\225\354\227\220 \352\260\225\355\225\264\354\247\200\353\212\224.svg" "b/public/images/keywords/\354\225\225\353\260\225\354\227\220 \352\260\225\355\225\264\354\247\200\353\212\224.svg" new file mode 100644 index 00000000..890fecd8 --- /dev/null +++ "b/public/images/keywords/\354\225\225\353\260\225\354\227\220 \352\260\225\355\225\264\354\247\200\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\225\275\354\206\215\354\235\204 \354\236\230 \354\247\200\355\202\244\353\212\224.svg" "b/public/images/keywords/\354\225\275\354\206\215\354\235\204 \354\236\230 \354\247\200\355\202\244\353\212\224.svg" new file mode 100644 index 00000000..09465e03 --- /dev/null +++ "b/public/images/keywords/\354\225\275\354\206\215\354\235\204 \354\236\230 \354\247\200\355\202\244\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\227\220\353\204\210\354\247\200 \353\204\230\354\271\230\353\212\224.svg" "b/public/images/keywords/\354\227\220\353\204\210\354\247\200 \353\204\230\354\271\230\353\212\224.svg" index 5ff0829c..f613b5e5 100644 --- "a/public/images/keywords/\354\227\220\353\204\210\354\247\200 \353\204\230\354\271\230\353\212\224.svg" +++ "b/public/images/keywords/\354\227\220\353\204\210\354\247\200 \353\204\230\354\271\230\353\212\224.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\227\220\353\204\210\354\247\200 \355\216\270\354\260\250\352\260\200 \354\236\210\353\212\224.svg" "b/public/images/keywords/\354\227\220\353\204\210\354\247\200 \355\216\270\354\260\250\352\260\200 \354\236\210\353\212\224.svg" index f8baba26..cbe8d9cc 100644 --- "a/public/images/keywords/\354\227\220\353\204\210\354\247\200 \355\216\270\354\260\250\352\260\200 \354\236\210\353\212\224.svg" +++ "b/public/images/keywords/\354\227\220\353\204\210\354\247\200 \355\216\270\354\260\250\352\260\200 \354\236\210\353\212\224.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\227\255\355\225\240 \353\266\204\353\213\264\354\235\204 \353\252\205\355\231\225\355\236\210 \355\225\230\353\212\224.svg" "b/public/images/keywords/\354\227\255\355\225\240 \353\266\204\353\213\264\354\235\204 \353\252\205\355\231\225\355\236\210 \355\225\230\353\212\224.svg" new file mode 100644 index 00000000..40c9b8fa --- /dev/null +++ "b/public/images/keywords/\354\227\255\355\225\240 \353\266\204\353\213\264\354\235\204 \353\252\205\355\231\225\355\236\210 \355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\227\255\355\225\240\354\227\220 \354\265\234\354\204\240\354\235\204 \353\213\244\355\225\230\353\212\224.svg" "b/public/images/keywords/\354\227\255\355\225\240\354\227\220 \354\265\234\354\204\240\354\235\204 \353\213\244\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..28fc4143 --- /dev/null +++ "b/public/images/keywords/\354\227\255\355\225\240\354\227\220 \354\265\234\354\204\240\354\235\204 \353\213\244\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\227\260\353\235\275\354\235\264 \353\271\240\353\245\270.svg" "b/public/images/keywords/\354\227\260\353\235\275\354\235\264 \353\271\240\353\245\270.svg" new file mode 100644 index 00000000..d5158461 --- /dev/null +++ "b/public/images/keywords/\354\227\260\353\235\275\354\235\264 \353\271\240\353\245\270.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\227\264\354\240\225\354\240\201\354\235\270.svg" "b/public/images/keywords/\354\227\264\354\240\225\354\240\201\354\235\270.svg" index 6fe97060..e637549d 100644 --- "a/public/images/keywords/\354\227\264\354\240\225\354\240\201\354\235\270.svg" +++ "b/public/images/keywords/\354\227\264\354\240\225\354\240\201\354\235\270.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\230\210\353\257\274\355\225\234.svg" "b/public/images/keywords/\354\230\210\353\257\274\355\225\234.svg" new file mode 100644 index 00000000..4974a9f2 --- /dev/null +++ "b/public/images/keywords/\354\230\210\353\257\274\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\230\244\355\225\264\353\245\274 \354\244\204\354\235\264\353\212\224.svg" "b/public/images/keywords/\354\230\244\355\225\264\353\245\274 \354\244\204\354\235\264\353\212\224.svg" new file mode 100644 index 00000000..0aa3b0d9 --- /dev/null +++ "b/public/images/keywords/\354\230\244\355\225\264\353\245\274 \354\244\204\354\235\264\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\231\204\353\262\275\354\243\274\354\235\230\354\240\201\354\235\270.svg" "b/public/images/keywords/\354\231\204\353\262\275\354\243\274\354\235\230\354\240\201\354\235\270.svg" index eefe8026..6f4cbc30 100644 --- "a/public/images/keywords/\354\231\204\353\262\275\354\243\274\354\235\230\354\240\201\354\235\270.svg" +++ "b/public/images/keywords/\354\231\204\353\262\275\354\243\274\354\235\230\354\240\201\354\235\270.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\231\204\354\204\261 \354\232\225\352\265\254\352\260\200 \355\201\260.svg" "b/public/images/keywords/\354\231\204\354\204\261 \354\232\225\352\265\254\352\260\200 \355\201\260.svg" new file mode 100644 index 00000000..415c5076 --- /dev/null +++ "b/public/images/keywords/\354\231\204\354\204\261 \354\232\225\352\265\254\352\260\200 \355\201\260.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\231\204\354\204\261\353\217\204 \354\244\221\354\213\234\355\230\225\354\235\270.svg" "b/public/images/keywords/\354\231\204\354\204\261\353\217\204 \354\244\221\354\213\234\355\230\225\354\235\270.svg" new file mode 100644 index 00000000..7a5f5d60 --- /dev/null +++ "b/public/images/keywords/\354\231\204\354\204\261\353\217\204 \354\244\221\354\213\234\355\230\225\354\235\270.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\231\204\354\204\261\353\217\204\353\245\274 \354\244\221\354\213\234\355\225\230\353\212\224.svg" "b/public/images/keywords/\354\231\204\354\204\261\353\217\204\353\245\274 \354\244\221\354\213\234\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..8c48b4d3 --- /dev/null +++ "b/public/images/keywords/\354\231\204\354\204\261\353\217\204\353\245\274 \354\244\221\354\213\234\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\231\270\353\266\200 \354\236\220\352\267\271\354\227\220 \353\257\274\352\260\220\355\225\234.svg" "b/public/images/keywords/\354\231\270\353\266\200 \354\236\220\352\267\271\354\227\220 \353\257\274\352\260\220\355\225\234.svg" new file mode 100644 index 00000000..cb965023 --- /dev/null +++ "b/public/images/keywords/\354\231\270\353\266\200 \354\236\220\352\267\271\354\227\220 \353\257\274\352\260\220\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\232\224\352\265\254\354\202\254\355\225\255\354\235\204 \354\236\230 \354\240\225\353\246\254\355\225\230\353\212\224.svg" "b/public/images/keywords/\354\232\224\352\265\254\354\202\254\355\225\255\354\235\204 \354\236\230 \354\240\225\353\246\254\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..dd3b3140 --- /dev/null +++ "b/public/images/keywords/\354\232\224\352\265\254\354\202\254\355\225\255\354\235\204 \354\236\230 \354\240\225\353\246\254\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\232\260\354\204\240\354\210\234\354\234\204\352\260\200 \353\263\200\355\225\230\353\212\224.svg" "b/public/images/keywords/\354\232\260\354\204\240\354\210\234\354\234\204\352\260\200 \353\263\200\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..5daaebee --- /dev/null +++ "b/public/images/keywords/\354\232\260\354\204\240\354\210\234\354\234\204\352\260\200 \353\263\200\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\232\260\354\204\240\354\210\234\354\234\204\353\245\274 \354\236\230 \354\204\270\354\232\260\353\212\224.svg" "b/public/images/keywords/\354\232\260\354\204\240\354\210\234\354\234\204\353\245\274 \354\236\230 \354\204\270\354\232\260\353\212\224.svg" index 172bf2f0..ec7b54d0 100644 --- "a/public/images/keywords/\354\232\260\354\204\240\354\210\234\354\234\204\353\245\274 \354\236\230 \354\204\270\354\232\260\353\212\224.svg" +++ "b/public/images/keywords/\354\232\260\354\204\240\354\210\234\354\234\204\353\245\274 \354\236\230 \354\204\270\354\232\260\353\212\224.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\354\232\260\354\204\240\354\210\234\354\234\204\353\245\274 \354\236\241\354\235\200.svg" "b/public/images/keywords/\354\232\260\354\204\240\354\210\234\354\234\204\353\245\274 \354\236\241\354\235\200.svg" new file mode 100644 index 00000000..210e041c --- /dev/null +++ "b/public/images/keywords/\354\232\260\354\204\240\354\210\234\354\234\204\353\245\274 \354\236\241\354\235\200.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\232\260\354\234\240\353\266\200\353\213\250\355\225\234.svg" "b/public/images/keywords/\354\232\260\354\234\240\353\266\200\353\213\250\355\225\234.svg" new file mode 100644 index 00000000..989638f4 --- /dev/null +++ "b/public/images/keywords/\354\232\260\354\234\240\353\266\200\353\213\250\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\234\204\352\270\260 \353\214\200\354\262\230\354\227\220 \352\260\225\355\225\234.svg" "b/public/images/keywords/\354\234\204\352\270\260 \353\214\200\354\262\230\354\227\220 \352\260\225\355\225\234.svg" index 587d6e35..ffb32e97 100644 --- "a/public/images/keywords/\354\234\204\352\270\260 \353\214\200\354\262\230\354\227\220 \352\260\225\355\225\234.svg" +++ "b/public/images/keywords/\354\234\204\352\270\260 \353\214\200\354\262\230\354\227\220 \352\260\225\355\225\234.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\234\240\353\250\270\353\237\254\354\212\244\355\225\234.svg" "b/public/images/keywords/\354\234\240\353\250\270\353\237\254\354\212\244\355\225\234.svg" index 1c2e2653..ee196acc 100644 --- "a/public/images/keywords/\354\234\240\353\250\270\353\237\254\354\212\244\355\225\234.svg" +++ "b/public/images/keywords/\354\234\240\353\250\270\353\237\254\354\212\244\355\225\234.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\354\234\240\353\263\264\354\240\201\354\235\270.svg" "b/public/images/keywords/\354\234\240\353\263\264\354\240\201\354\235\270.svg" new file mode 100644 index 00000000..2b1dbea0 --- /dev/null +++ "b/public/images/keywords/\354\234\240\353\263\264\354\240\201\354\235\270.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\234\240\354\227\260\354\204\261\354\235\264 \354\225\204\354\211\254\354\232\264.svg" "b/public/images/keywords/\354\234\240\354\227\260\354\204\261\354\235\264 \354\225\204\354\211\254\354\232\264.svg" index cb6e185a..bc71ae06 100644 --- "a/public/images/keywords/\354\234\240\354\227\260\354\204\261\354\235\264 \354\225\204\354\211\254\354\232\264.svg" +++ "b/public/images/keywords/\354\234\240\354\227\260\354\204\261\354\235\264 \354\225\204\354\211\254\354\232\264.svg" @@ -1,22 +1,22 @@ - - - - - + + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\234\240\354\227\260\355\225\230\352\262\214 \354\202\254\352\263\240\355\225\230\353\212\224.svg" "b/public/images/keywords/\354\234\240\354\227\260\355\225\230\352\262\214 \354\202\254\352\263\240\355\225\230\353\212\224.svg" index 15322d14..7a21d9a9 100644 --- "a/public/images/keywords/\354\234\240\354\227\260\355\225\230\352\262\214 \354\202\254\352\263\240\355\225\230\353\212\224.svg" +++ "b/public/images/keywords/\354\234\240\354\227\260\355\225\230\352\262\214 \354\202\254\352\263\240\355\225\230\353\212\224.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\354\235\221\353\213\265\354\235\264 \353\271\240\353\245\270.svg" "b/public/images/keywords/\354\235\221\353\213\265\354\235\264 \353\271\240\353\245\270.svg" index 7ca50f27..8944126e 100644 --- "a/public/images/keywords/\354\235\221\353\213\265\354\235\264 \353\271\240\353\245\270.svg" +++ "b/public/images/keywords/\354\235\221\353\213\265\354\235\264 \353\271\240\353\245\270.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\354\235\230\352\262\254 \354\210\230\354\232\251\354\235\264 \353\212\220\353\246\260.svg" "b/public/images/keywords/\354\235\230\352\262\254 \354\210\230\354\232\251\354\235\264 \353\212\220\353\246\260.svg" index 302dde1e..040f093a 100644 --- "a/public/images/keywords/\354\235\230\352\262\254 \354\210\230\354\232\251\354\235\264 \353\212\220\353\246\260.svg" +++ "b/public/images/keywords/\354\235\230\352\262\254 \354\210\230\354\232\251\354\235\264 \353\212\220\353\246\260.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\235\230\352\262\254 \355\221\234\355\230\204\354\235\264 \352\260\225\355\225\234.svg" "b/public/images/keywords/\354\235\230\352\262\254 \355\221\234\355\230\204\354\235\264 \352\260\225\355\225\234.svg" new file mode 100644 index 00000000..932ca5b6 --- /dev/null +++ "b/public/images/keywords/\354\235\230\352\262\254 \355\221\234\355\230\204\354\235\264 \352\260\225\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\235\230\352\262\254 \355\221\234\355\230\204\354\235\264 \354\240\201\354\235\200.svg" "b/public/images/keywords/\354\235\230\352\262\254 \355\221\234\355\230\204\354\235\264 \354\240\201\354\235\200.svg" index a8d6c0ea..03de0720 100644 --- "a/public/images/keywords/\354\235\230\352\262\254 \355\221\234\355\230\204\354\235\264 \354\240\201\354\235\200.svg" +++ "b/public/images/keywords/\354\235\230\352\262\254 \355\221\234\355\230\204\354\235\264 \354\240\201\354\235\200.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\235\230\352\262\254\354\235\204 \354\241\264\354\244\221\355\225\230\353\212\224.svg" "b/public/images/keywords/\354\235\230\352\262\254\354\235\204 \354\241\264\354\244\221\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..e281ff79 --- /dev/null +++ "b/public/images/keywords/\354\235\230\352\262\254\354\235\204 \354\241\264\354\244\221\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\235\230\352\262\254\355\221\234\355\230\204\354\235\264 \352\260\225\355\225\234.svg" "b/public/images/keywords/\354\235\230\352\262\254\355\221\234\355\230\204\354\235\264 \352\260\225\355\225\234.svg" deleted file mode 100644 index fec3c341..00000000 --- "a/public/images/keywords/\354\235\230\352\262\254\355\221\234\355\230\204\354\235\264 \352\260\225\355\225\234.svg" +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git "a/public/images/keywords/\354\235\230\353\257\270 \354\244\221\354\213\234\355\230\225\354\235\270.svg" "b/public/images/keywords/\354\235\230\353\257\270 \354\244\221\354\213\234\355\230\225\354\235\270.svg" new file mode 100644 index 00000000..bf62aa31 --- /dev/null +++ "b/public/images/keywords/\354\235\230\353\257\270 \354\244\221\354\213\234\355\230\225\354\235\270.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\235\230\354\232\225\354\235\264 \354\225\236\354\204\234\353\212\224.svg" "b/public/images/keywords/\354\235\230\354\232\225\354\235\264 \354\225\236\354\204\234\353\212\224.svg" index e6dd0e20..d65eb31b 100644 --- "a/public/images/keywords/\354\235\230\354\232\225\354\235\264 \354\225\236\354\204\234\353\212\224.svg" +++ "b/public/images/keywords/\354\235\230\354\232\225\354\235\264 \354\225\236\354\204\234\353\212\224.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\235\264\354\203\201 \354\213\244\355\230\204\355\230\225\354\235\270.svg" "b/public/images/keywords/\354\235\264\354\203\201 \354\213\244\355\230\204\355\230\225\354\235\270.svg" new file mode 100644 index 00000000..f86b0412 --- /dev/null +++ "b/public/images/keywords/\354\235\264\354\203\201 \354\213\244\355\230\204\355\230\225\354\235\270.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\235\264\354\203\201\354\235\204 \354\242\207\353\212\224.svg" "b/public/images/keywords/\354\235\264\354\203\201\354\235\204 \354\242\207\353\212\224.svg" index d1c61f9f..351d2193 100644 --- "a/public/images/keywords/\354\235\264\354\203\201\354\235\204 \354\242\207\353\212\224.svg" +++ "b/public/images/keywords/\354\235\264\354\203\201\354\235\204 \354\242\207\353\212\224.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\354\235\264\354\203\201\354\240\201\354\235\270.svg" "b/public/images/keywords/\354\235\264\354\203\201\354\240\201\354\235\270.svg" new file mode 100644 index 00000000..e2ecf0ca --- /dev/null +++ "b/public/images/keywords/\354\235\264\354\203\201\354\240\201\354\235\270.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\235\264\354\234\240 \354\227\206\353\212\224 \354\235\274\354\227\220 \354\225\275\355\225\234.svg" "b/public/images/keywords/\354\235\264\354\234\240 \354\227\206\353\212\224 \354\235\274\354\227\220 \354\225\275\355\225\234.svg" new file mode 100644 index 00000000..9c307813 --- /dev/null +++ "b/public/images/keywords/\354\235\264\354\234\240 \354\227\206\353\212\224 \354\235\274\354\227\220 \354\225\275\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\235\270\354\202\254\354\235\264\355\212\270\352\260\200 \352\271\212\354\235\200.svg" "b/public/images/keywords/\354\235\270\354\202\254\354\235\264\355\212\270\352\260\200 \352\271\212\354\235\200.svg" index fcb7114f..613b16a0 100644 --- "a/public/images/keywords/\354\235\270\354\202\254\354\235\264\355\212\270\352\260\200 \352\271\212\354\235\200.svg" +++ "b/public/images/keywords/\354\235\270\354\202\254\354\235\264\355\212\270\352\260\200 \352\271\212\354\235\200.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\235\270\354\210\230\354\235\270\352\263\204\352\260\200 \353\252\205\355\231\225\355\225\234.svg" "b/public/images/keywords/\354\235\270\354\210\230\354\235\270\352\263\204\352\260\200 \353\252\205\355\231\225\355\225\234.svg" new file mode 100644 index 00000000..b45812e6 --- /dev/null +++ "b/public/images/keywords/\354\235\270\354\210\230\354\235\270\352\263\204\352\260\200 \353\252\205\355\231\225\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\235\274\352\264\200\354\204\261 \354\236\210\353\212\224.svg" "b/public/images/keywords/\354\235\274\352\264\200\354\204\261 \354\236\210\353\212\224.svg" new file mode 100644 index 00000000..6ba67cde --- /dev/null +++ "b/public/images/keywords/\354\235\274\352\264\200\354\204\261 \354\236\210\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\235\274\352\264\200\354\204\261\354\235\204 \352\263\240\353\257\274\355\225\230\353\212\224.svg" "b/public/images/keywords/\354\235\274\352\264\200\354\204\261\354\235\204 \352\263\240\353\257\274\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..f292bf60 --- /dev/null +++ "b/public/images/keywords/\354\235\274\352\264\200\354\204\261\354\235\204 \352\263\240\353\257\274\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\235\274\352\264\200\354\204\261\354\235\264 \353\266\200\354\241\261\355\225\234.svg" "b/public/images/keywords/\354\235\274\352\264\200\354\204\261\354\235\264 \353\266\200\354\241\261\355\225\234.svg" new file mode 100644 index 00000000..9bc761ce --- /dev/null +++ "b/public/images/keywords/\354\235\274\352\264\200\354\204\261\354\235\264 \353\266\200\354\241\261\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\235\274\354\235\230 \353\263\270\354\247\210\354\235\204 \354\247\232\353\212\224.svg" "b/public/images/keywords/\354\235\274\354\235\230 \353\263\270\354\247\210\354\235\204 \354\247\232\353\212\224.svg" new file mode 100644 index 00000000..564dc446 --- /dev/null +++ "b/public/images/keywords/\354\235\274\354\235\230 \353\263\270\354\247\210\354\235\204 \354\247\232\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\235\274\354\235\230 \354\210\234\354\204\234\353\245\274 \354\236\241\354\225\204\354\243\274\353\212\224.svg" "b/public/images/keywords/\354\235\274\354\235\230 \354\210\234\354\204\234\353\245\274 \354\236\241\354\225\204\354\243\274\353\212\224.svg" new file mode 100644 index 00000000..10f5e4df --- /dev/null +++ "b/public/images/keywords/\354\235\274\354\235\230 \354\210\234\354\204\234\353\245\274 \354\236\241\354\225\204\354\243\274\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\235\274\354\240\225 \352\264\200\353\246\254\352\260\200 \354\225\204\354\211\254\354\232\264.svg" "b/public/images/keywords/\354\235\274\354\240\225 \352\264\200\353\246\254\352\260\200 \354\225\204\354\211\254\354\232\264.svg" new file mode 100644 index 00000000..f6a96baa --- /dev/null +++ "b/public/images/keywords/\354\235\274\354\240\225 \352\264\200\353\246\254\352\260\200 \354\225\204\354\211\254\354\232\264.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\235\274\354\240\225 \352\264\200\353\246\254\352\260\200 \354\262\240\354\240\200\355\225\234.svg" "b/public/images/keywords/\354\235\274\354\240\225 \352\264\200\353\246\254\352\260\200 \354\262\240\354\240\200\355\225\234.svg" new file mode 100644 index 00000000..1cfc17bd --- /dev/null +++ "b/public/images/keywords/\354\235\274\354\240\225 \352\264\200\353\246\254\352\260\200 \354\262\240\354\240\200\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\235\274\354\240\225 \352\264\200\353\246\254\352\260\200 \354\262\240\354\262\230\355\225\234.svg" "b/public/images/keywords/\354\235\274\354\240\225 \352\264\200\353\246\254\352\260\200 \354\262\240\354\262\230\355\225\234.svg" deleted file mode 100644 index 465a1e7c..00000000 --- "a/public/images/keywords/\354\235\274\354\240\225 \352\264\200\353\246\254\352\260\200 \354\262\240\354\262\230\355\225\234.svg" +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git "a/public/images/keywords/\354\235\274\354\240\225 \354\244\200\354\210\230\352\260\200 \354\225\204\354\211\254\354\232\264.svg" "b/public/images/keywords/\354\235\274\354\240\225 \354\244\200\354\210\230\352\260\200 \354\225\204\354\211\254\354\232\264.svg" new file mode 100644 index 00000000..ee8bc436 --- /dev/null +++ "b/public/images/keywords/\354\235\274\354\240\225 \354\244\200\354\210\230\352\260\200 \354\225\204\354\211\254\354\232\264.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\235\274\354\240\225\353\263\264\353\213\244 \354\263\220\354\247\200\353\212\224.svg" "b/public/images/keywords/\354\235\274\354\240\225\353\263\264\353\213\244 \354\263\220\354\247\200\353\212\224.svg" new file mode 100644 index 00000000..971a0d34 --- /dev/null +++ "b/public/images/keywords/\354\235\274\354\240\225\353\263\264\353\213\244 \354\263\220\354\247\200\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\235\274\354\240\225\354\235\264 \353\247\216\354\235\200.svg" "b/public/images/keywords/\354\235\274\354\240\225\354\235\264 \353\247\216\354\235\200.svg" index c9cd2807..b4f324f4 100644 --- "a/public/images/keywords/\354\235\274\354\240\225\354\235\264 \353\247\216\354\235\200.svg" +++ "b/public/images/keywords/\354\235\274\354\240\225\354\235\264 \353\247\216\354\235\200.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\235\274\354\240\225\354\244\200\354\210\230\352\260\200 \354\225\204\354\211\254\354\232\264.svg" "b/public/images/keywords/\354\235\274\354\240\225\354\244\200\354\210\230\352\260\200 \354\225\204\354\211\254\354\232\264.svg" deleted file mode 100644 index cb8dad6c..00000000 --- "a/public/images/keywords/\354\235\274\354\240\225\354\244\200\354\210\230\352\260\200 \354\225\204\354\211\254\354\232\264.svg" +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git "a/public/images/keywords/\354\235\274\354\262\230\353\246\254\352\260\200 \353\271\240\353\245\270.svg" "b/public/images/keywords/\354\235\274\354\262\230\353\246\254\352\260\200 \353\271\240\353\245\270.svg" index 8a193a36..f2c8d6d3 100644 --- "a/public/images/keywords/\354\235\274\354\262\230\353\246\254\352\260\200 \353\271\240\353\245\270.svg" +++ "b/public/images/keywords/\354\235\274\354\262\230\353\246\254\352\260\200 \353\271\240\353\245\270.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\236\220\352\270\260 \352\260\235\352\264\200\355\231\224\352\260\200 \353\220\230\353\212\224.svg" "b/public/images/keywords/\354\236\220\352\270\260 \352\260\235\352\264\200\355\231\224\352\260\200 \353\220\230\353\212\224.svg" new file mode 100644 index 00000000..28db34e7 --- /dev/null +++ "b/public/images/keywords/\354\236\220\352\270\260 \352\260\235\352\264\200\355\231\224\352\260\200 \353\220\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\236\220\352\270\260 \352\264\200\353\246\254\352\260\200 \353\220\230\353\212\224.svg" "b/public/images/keywords/\354\236\220\352\270\260 \352\264\200\353\246\254\352\260\200 \353\220\230\353\212\224.svg" new file mode 100644 index 00000000..fe846b76 --- /dev/null +++ "b/public/images/keywords/\354\236\220\352\270\260 \352\264\200\353\246\254\352\260\200 \353\220\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\236\220\352\270\260 \352\270\260\354\244\200\354\235\264 \352\260\225\355\225\234.svg" "b/public/images/keywords/\354\236\220\352\270\260 \352\270\260\354\244\200\354\235\264 \352\260\225\355\225\234.svg" new file mode 100644 index 00000000..57a3a4cb --- /dev/null +++ "b/public/images/keywords/\354\236\220\352\270\260 \352\270\260\354\244\200\354\235\264 \352\260\225\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\236\220\352\270\260 \354\204\261\355\226\245\354\227\220 \353\250\270\353\254\264\353\245\264\353\212\224.svg" "b/public/images/keywords/\354\236\220\352\270\260 \354\204\261\355\226\245\354\227\220 \353\250\270\353\254\264\353\245\264\353\212\224.svg" new file mode 100644 index 00000000..bc7ffdaf --- /dev/null +++ "b/public/images/keywords/\354\236\220\352\270\260 \354\204\261\355\226\245\354\227\220 \353\250\270\353\254\264\353\245\264\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\236\220\352\270\260 \355\216\230\354\235\264\354\212\244\354\227\220 \352\260\207\355\236\214.svg" "b/public/images/keywords/\354\236\220\352\270\260 \355\216\230\354\235\264\354\212\244\354\227\220 \352\260\207\355\236\214.svg" new file mode 100644 index 00000000..ee45c5f2 --- /dev/null +++ "b/public/images/keywords/\354\236\220\352\270\260 \355\216\230\354\235\264\354\212\244\354\227\220 \352\260\207\355\236\214.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\236\220\352\270\260 \355\216\230\354\235\264\354\212\244\355\230\225.svg" "b/public/images/keywords/\354\236\220\352\270\260 \355\216\230\354\235\264\354\212\244\355\230\225.svg" deleted file mode 100644 index 9a8e73b1..00000000 --- "a/public/images/keywords/\354\236\220\352\270\260 \355\216\230\354\235\264\354\212\244\355\230\225.svg" +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git "a/public/images/keywords/\354\236\220\352\270\260 \355\216\230\354\235\264\354\212\244\355\230\225\354\235\270.svg" "b/public/images/keywords/\354\236\220\352\270\260 \355\216\230\354\235\264\354\212\244\355\230\225\354\235\270.svg" new file mode 100644 index 00000000..c82d5b94 --- /dev/null +++ "b/public/images/keywords/\354\236\220\352\270\260 \355\216\230\354\235\264\354\212\244\355\230\225\354\235\270.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\236\220\352\270\260\353\271\204\355\214\220\354\240\201\354\235\270.svg" "b/public/images/keywords/\354\236\220\352\270\260\353\271\204\355\214\220\354\240\201\354\235\270.svg" index bdfd53f6..bb2b556e 100644 --- "a/public/images/keywords/\354\236\220\352\270\260\353\271\204\355\214\220\354\240\201\354\235\270.svg" +++ "b/public/images/keywords/\354\236\220\352\270\260\353\271\204\355\214\220\354\240\201\354\235\270.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\236\220\352\270\260\354\243\274\353\217\204\354\240\201\354\235\270.svg" "b/public/images/keywords/\354\236\220\352\270\260\354\243\274\353\217\204\354\240\201\354\235\270.svg" new file mode 100644 index 00000000..babf4dc2 --- /dev/null +++ "b/public/images/keywords/\354\236\220\352\270\260\354\243\274\353\217\204\354\240\201\354\235\270.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\236\220\354\213\240\352\260\220 \354\236\210\353\212\224.svg" "b/public/images/keywords/\354\236\220\354\213\240\352\260\220 \354\236\210\353\212\224.svg" index 4155bf2d..bf20c5d3 100644 --- "a/public/images/keywords/\354\236\220\354\213\240\352\260\220 \354\236\210\353\212\224.svg" +++ "b/public/images/keywords/\354\236\220\354\213\240\352\260\220 \354\236\210\353\212\224.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\236\220\354\213\240\352\260\220\354\235\264 \355\235\224\353\223\244\353\246\254\353\212\224.svg" "b/public/images/keywords/\354\236\220\354\213\240\352\260\220\354\235\264 \355\235\224\353\223\244\353\246\254\353\212\224.svg" new file mode 100644 index 00000000..34930967 --- /dev/null +++ "b/public/images/keywords/\354\236\220\354\213\240\352\260\220\354\235\264 \355\235\224\353\223\244\353\246\254\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\236\221\354\227\205 \354\206\215\353\217\204\352\260\200 \354\235\274\354\240\225\355\225\230\354\247\200 \354\225\212\354\235\200.svg" "b/public/images/keywords/\354\236\221\354\227\205 \354\206\215\353\217\204\352\260\200 \354\235\274\354\240\225\355\225\230\354\247\200 \354\225\212\354\235\200.svg" index e85a0971..51cd316a 100644 --- "a/public/images/keywords/\354\236\221\354\227\205 \354\206\215\353\217\204\352\260\200 \354\235\274\354\240\225\355\225\230\354\247\200 \354\225\212\354\235\200.svg" +++ "b/public/images/keywords/\354\236\221\354\227\205 \354\206\215\353\217\204\352\260\200 \354\235\274\354\240\225\355\225\230\354\247\200 \354\225\212\354\235\200.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\236\221\354\227\205 \355\232\250\354\234\250\354\235\204 \353\206\222\354\235\264\353\212\224.svg" "b/public/images/keywords/\354\236\221\354\227\205 \355\232\250\354\234\250\354\235\204 \353\206\222\354\235\264\353\212\224.svg" new file mode 100644 index 00000000..0cd9fea2 --- /dev/null +++ "b/public/images/keywords/\354\236\221\354\227\205 \355\232\250\354\234\250\354\235\204 \353\206\222\354\235\264\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\240\201\352\267\271\354\240\201\354\235\270.svg" "b/public/images/keywords/\354\240\201\352\267\271\354\240\201\354\235\270.svg" index 28c03685..afbb14a7 100644 --- "a/public/images/keywords/\354\240\201\352\267\271\354\240\201\354\235\270.svg" +++ "b/public/images/keywords/\354\240\201\352\267\271\354\240\201\354\235\270.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\240\204\353\213\254 \354\236\220\353\243\214\352\260\200 \352\271\224\353\201\224\355\225\234.svg" "b/public/images/keywords/\354\240\204\353\213\254 \354\236\220\353\243\214\352\260\200 \352\271\224\353\201\224\355\225\234.svg" new file mode 100644 index 00000000..97288151 --- /dev/null +++ "b/public/images/keywords/\354\240\204\353\213\254 \354\236\220\353\243\214\352\260\200 \352\271\224\353\201\224\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\240\225\353\246\254 \353\254\270\354\204\234\353\245\274 \354\236\230 \353\247\214\353\223\234\353\212\224.svg" "b/public/images/keywords/\354\240\225\353\246\254 \353\254\270\354\204\234\353\245\274 \354\236\230 \353\247\214\353\223\234\353\212\224.svg" new file mode 100644 index 00000000..d15bbc50 --- /dev/null +++ "b/public/images/keywords/\354\240\225\353\246\254 \353\254\270\354\204\234\353\245\274 \354\236\230 \353\247\214\353\223\234\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\240\225\353\246\254 \355\233\204 \353\247\220\355\225\230\353\212\224.svg" "b/public/images/keywords/\354\240\225\353\246\254 \355\233\204 \353\247\220\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..c0d8a793 --- /dev/null +++ "b/public/images/keywords/\354\240\225\353\246\254 \355\233\204 \353\247\220\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\240\225\353\246\254\355\225\264\354\204\234 \353\247\220\355\225\230\353\212\224.svg" "b/public/images/keywords/\354\240\225\353\246\254\355\225\264\354\204\234 \353\247\220\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..8d65a418 --- /dev/null +++ "b/public/images/keywords/\354\240\225\353\246\254\355\225\264\354\204\234 \353\247\220\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\240\225\353\263\264 \354\210\230\354\247\221\354\235\264 \353\271\240\353\245\270.svg" "b/public/images/keywords/\354\240\225\353\263\264 \354\210\230\354\247\221\354\235\264 \353\271\240\353\245\270.svg" index 2de78b68..b27563a5 100644 --- "a/public/images/keywords/\354\240\225\353\263\264 \354\210\230\354\247\221\354\235\264 \353\271\240\353\245\270.svg" +++ "b/public/images/keywords/\354\240\225\353\263\264 \354\210\230\354\247\221\354\235\264 \353\271\240\353\245\270.svg" @@ -1,22 +1,22 @@ - - - - - + + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\241\260\354\232\251\355\225\234 \355\216\270\354\235\270.svg" "b/public/images/keywords/\354\241\260\354\232\251\355\225\234 \355\216\270\354\235\270.svg" new file mode 100644 index 00000000..daff6166 --- /dev/null +++ "b/public/images/keywords/\354\241\260\354\232\251\355\225\234 \355\216\270\354\235\270.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\241\264\354\244\221\354\235\264 \354\227\206\353\212\224.svg" "b/public/images/keywords/\354\241\264\354\244\221\354\235\264 \354\227\206\353\212\224.svg" new file mode 100644 index 00000000..8de0426f --- /dev/null +++ "b/public/images/keywords/\354\241\264\354\244\221\354\235\264 \354\227\206\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\244\200\353\271\204\352\260\200 \352\263\274\353\217\204\355\225\234.svg" "b/public/images/keywords/\354\244\200\353\271\204\352\260\200 \352\263\274\353\217\204\355\225\234.svg" new file mode 100644 index 00000000..fff40719 --- /dev/null +++ "b/public/images/keywords/\354\244\200\353\271\204\352\260\200 \352\263\274\353\217\204\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\244\200\353\271\204\352\260\200 \352\270\264.svg" "b/public/images/keywords/\354\244\200\353\271\204\352\260\200 \352\270\264.svg" index 689bbc05..b438cef9 100644 --- "a/public/images/keywords/\354\244\200\353\271\204\352\260\200 \352\270\264.svg" +++ "b/public/images/keywords/\354\244\200\353\271\204\352\260\200 \352\270\264.svg" @@ -1,22 +1,22 @@ - - - - - + + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\244\200\353\271\204\354\204\261\354\235\264 \354\262\240\354\240\200\355\225\234.svg" "b/public/images/keywords/\354\244\200\353\271\204\354\204\261\354\235\264 \354\262\240\354\240\200\355\225\234.svg" new file mode 100644 index 00000000..4a80a8d8 --- /dev/null +++ "b/public/images/keywords/\354\244\200\353\271\204\354\204\261\354\235\264 \354\262\240\354\240\200\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\244\221\353\246\275\354\240\201\354\235\270.svg" "b/public/images/keywords/\354\244\221\353\246\275\354\240\201\354\235\270.svg" new file mode 100644 index 00000000..9b306c98 --- /dev/null +++ "b/public/images/keywords/\354\244\221\353\246\275\354\240\201\354\235\270.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\244\221\354\213\254\354\235\204 \354\236\230 \354\236\241\354\235\200.svg" "b/public/images/keywords/\354\244\221\354\213\254\354\235\204 \354\236\230 \354\236\241\354\235\200.svg" new file mode 100644 index 00000000..3d56eca6 --- /dev/null +++ "b/public/images/keywords/\354\244\221\354\213\254\354\235\204 \354\236\230 \354\236\241\354\235\200.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\244\221\354\213\254\354\235\204 \354\236\241\354\225\204\354\243\274\353\212\224.svg" "b/public/images/keywords/\354\244\221\354\213\254\354\235\204 \354\236\241\354\225\204\354\243\274\353\212\224.svg" new file mode 100644 index 00000000..d2cb5cc4 --- /dev/null +++ "b/public/images/keywords/\354\244\221\354\213\254\354\235\204 \354\236\241\354\225\204\354\243\274\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\244\221\354\236\254\353\245\274 \354\236\230\355\225\230\353\212\224.svg" "b/public/images/keywords/\354\244\221\354\236\254\353\245\274 \354\236\230\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..0a79ecc3 --- /dev/null +++ "b/public/images/keywords/\354\244\221\354\236\254\353\245\274 \354\236\230\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\246\211\352\260\201 \353\214\200\354\235\221\354\235\264 \353\212\220\353\246\260.svg" "b/public/images/keywords/\354\246\211\352\260\201 \353\214\200\354\235\221\354\235\264 \353\212\220\353\246\260.svg" new file mode 100644 index 00000000..dc38374c --- /dev/null +++ "b/public/images/keywords/\354\246\211\352\260\201 \353\214\200\354\235\221\354\235\264 \353\212\220\353\246\260.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\246\211\355\235\245\354\240\201\354\235\270.svg" "b/public/images/keywords/\354\246\211\355\235\245\354\240\201\354\235\270.svg" index be94a97e..ad369e0f 100644 --- "a/public/images/keywords/\354\246\211\355\235\245\354\240\201\354\235\270.svg" +++ "b/public/images/keywords/\354\246\211\355\235\245\354\240\201\354\235\270.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\354\247\201\352\264\200\354\227\220 \354\235\230\354\241\264\355\225\230\353\212\224.svg" "b/public/images/keywords/\354\247\201\352\264\200\354\227\220 \354\235\230\354\241\264\355\225\230\353\212\224.svg" index 68ad2e28..4ab8ab56 100644 --- "a/public/images/keywords/\354\247\201\352\264\200\354\227\220 \354\235\230\354\241\264\355\225\230\353\212\224.svg" +++ "b/public/images/keywords/\354\247\201\352\264\200\354\227\220 \354\235\230\354\241\264\355\225\230\353\212\224.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\247\201\352\264\200\354\240\201\354\235\270.svg" "b/public/images/keywords/\354\247\201\352\264\200\354\240\201\354\235\270.svg" index b3bd9b52..283f4308 100644 --- "a/public/images/keywords/\354\247\201\352\264\200\354\240\201\354\235\270.svg" +++ "b/public/images/keywords/\354\247\201\352\264\200\354\240\201\354\235\270.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\247\204\355\226\211 \354\203\201\355\231\251\354\235\204 \352\263\265\354\234\240\355\225\230\353\212\224.svg" "b/public/images/keywords/\354\247\204\355\226\211 \354\203\201\355\231\251\354\235\204 \352\263\265\354\234\240\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..cd967683 --- /dev/null +++ "b/public/images/keywords/\354\247\204\355\226\211 \354\203\201\355\231\251\354\235\204 \352\263\265\354\234\240\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\247\221\354\244\221 \353\266\204\354\202\260\354\240\201\354\235\270.svg" "b/public/images/keywords/\354\247\221\354\244\221 \353\266\204\354\202\260\354\240\201\354\235\270.svg" new file mode 100644 index 00000000..c45165b1 --- /dev/null +++ "b/public/images/keywords/\354\247\221\354\244\221 \353\266\204\354\202\260\354\240\201\354\235\270.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\247\221\354\244\221\353\240\245\354\235\264 \354\242\213\354\235\200.svg" "b/public/images/keywords/\354\247\221\354\244\221\353\240\245\354\235\264 \354\242\213\354\235\200.svg" index 16a3737c..369fdebe 100644 --- "a/public/images/keywords/\354\247\221\354\244\221\353\240\245\354\235\264 \354\242\213\354\235\200.svg" +++ "b/public/images/keywords/\354\247\221\354\244\221\353\240\245\354\235\264 \354\242\213\354\235\200.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\247\221\354\244\221\354\235\264 \353\271\240\353\245\270.svg" "b/public/images/keywords/\354\247\221\354\244\221\354\235\264 \353\271\240\353\245\270.svg" index 9c9676a9..a12bef70 100644 --- "a/public/images/keywords/\354\247\221\354\244\221\354\235\264 \353\271\240\353\245\270.svg" +++ "b/public/images/keywords/\354\247\221\354\244\221\354\235\264 \353\271\240\353\245\270.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\260\250\353\266\204\355\225\230\352\262\214 \354\210\230\354\232\251\355\225\234.svg" "b/public/images/keywords/\354\260\250\353\266\204\355\225\230\352\262\214 \354\210\230\354\232\251\355\225\234.svg" new file mode 100644 index 00000000..ab4791ee --- /dev/null +++ "b/public/images/keywords/\354\260\250\353\266\204\355\225\230\352\262\214 \354\210\230\354\232\251\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\260\251\354\213\244\355\225\234.svg" "b/public/images/keywords/\354\260\251\354\213\244\355\225\234.svg" new file mode 100644 index 00000000..5f131500 --- /dev/null +++ "b/public/images/keywords/\354\260\251\354\213\244\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\260\275\354\235\230\354\240\201 \352\264\200\354\240\220\354\235\204 \354\240\234\354\213\234\355\225\230\353\212\224.svg" "b/public/images/keywords/\354\260\275\354\235\230\354\240\201 \352\264\200\354\240\220\354\235\204 \354\240\234\354\213\234\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..5043ba3a --- /dev/null +++ "b/public/images/keywords/\354\260\275\354\235\230\354\240\201 \352\264\200\354\240\220\354\235\204 \354\240\234\354\213\234\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\260\275\354\235\230\354\240\201\354\235\270 \352\264\200\354\240\220\354\235\204 \354\240\234\354\213\234\355\225\230\353\212\224.svg" "b/public/images/keywords/\354\260\275\354\235\230\354\240\201\354\235\270 \352\264\200\354\240\220\354\235\204 \354\240\234\354\213\234\355\225\230\353\212\224.svg" deleted file mode 100644 index 2ecd43e0..00000000 --- "a/public/images/keywords/\354\260\275\354\235\230\354\240\201\354\235\270 \352\264\200\354\240\220\354\235\204 \354\240\234\354\213\234\355\225\230\353\212\224.svg" +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git "a/public/images/keywords/\354\261\205\354\236\204\352\260\220 \354\236\210\353\212\224.svg" "b/public/images/keywords/\354\261\205\354\236\204\352\260\220 \354\236\210\353\212\224.svg" index 7cc756bd..e87b6614 100644 --- "a/public/images/keywords/\354\261\205\354\236\204\352\260\220 \354\236\210\353\212\224.svg" +++ "b/public/images/keywords/\354\261\205\354\236\204\352\260\220 \354\236\210\353\212\224.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\261\205\354\236\204\352\260\220\354\235\264 \354\225\275\355\225\234.svg" "b/public/images/keywords/\354\261\205\354\236\204\352\260\220\354\235\264 \354\225\275\355\225\234.svg" new file mode 100644 index 00000000..079f4266 --- /dev/null +++ "b/public/images/keywords/\354\261\205\354\236\204\352\260\220\354\235\264 \354\225\275\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\354\266\224\354\247\204\353\240\245 \354\236\210\353\212\224.svg" "b/public/images/keywords/\354\266\224\354\247\204\353\240\245 \354\236\210\353\212\224.svg" index 47bc83f7..2e73652e 100644 --- "a/public/images/keywords/\354\266\224\354\247\204\353\240\245 \354\236\210\353\212\224.svg" +++ "b/public/images/keywords/\354\266\224\354\247\204\353\240\245 \354\236\210\353\212\224.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\354\271\250\354\260\251\355\225\234.svg" "b/public/images/keywords/\354\271\250\354\260\251\355\225\234.svg" index b6ca1fad..45db842c 100644 --- "a/public/images/keywords/\354\271\250\354\260\251\355\225\234.svg" +++ "b/public/images/keywords/\354\271\250\354\260\251\355\225\234.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\273\244\353\256\244\353\213\210\354\274\200\354\235\264\354\205\230\354\235\264 \353\233\260\354\226\264\353\202\234.svg" "b/public/images/keywords/\354\273\244\353\256\244\353\213\210\354\274\200\354\235\264\354\205\230\354\235\264 \353\233\260\354\226\264\353\202\234.svg" index e96dc609..9cd477a4 100644 --- "a/public/images/keywords/\354\273\244\353\256\244\353\213\210\354\274\200\354\235\264\354\205\230\354\235\264 \353\233\260\354\226\264\353\202\234.svg" +++ "b/public/images/keywords/\354\273\244\353\256\244\353\213\210\354\274\200\354\235\264\354\205\230\354\235\264 \353\233\260\354\226\264\353\202\234.svg" @@ -1,22 +1,22 @@ - - - - - + + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\354\273\250\353\224\224\354\205\230 \354\230\201\355\226\245\354\235\264 \355\201\260.svg" "b/public/images/keywords/\354\273\250\353\224\224\354\205\230 \354\230\201\355\226\245\354\235\264 \355\201\260.svg" new file mode 100644 index 00000000..867841a1 --- /dev/null +++ "b/public/images/keywords/\354\273\250\353\224\224\354\205\230 \354\230\201\355\226\245\354\235\264 \355\201\260.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\201\260 \352\267\270\353\246\274\354\235\204 \353\263\264\353\212\224.svg" "b/public/images/keywords/\355\201\260 \352\267\270\353\246\274\354\235\204 \353\263\264\353\212\224.svg" new file mode 100644 index 00000000..0bc65eed --- /dev/null +++ "b/public/images/keywords/\355\201\260 \352\267\270\353\246\274\354\235\204 \353\263\264\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\203\200\354\235\270\354\235\204 \354\241\264\354\244\221\355\225\230\353\212\224.svg" "b/public/images/keywords/\355\203\200\354\235\270\354\235\204 \354\241\264\354\244\221\355\225\230\353\212\224.svg" index ff36e199..864d6b30 100644 --- "a/public/images/keywords/\355\203\200\354\235\270\354\235\204 \354\241\264\354\244\221\355\225\230\353\212\224.svg" +++ "b/public/images/keywords/\355\203\200\354\235\270\354\235\204 \354\241\264\354\244\221\355\225\230\353\212\224.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\355\203\200\355\230\221\354\227\220 \354\225\204\354\211\254\354\232\264.svg" "b/public/images/keywords/\355\203\200\355\230\221\354\227\220 \354\225\204\354\211\254\354\232\264.svg" new file mode 100644 index 00000000..1ee8001d --- /dev/null +++ "b/public/images/keywords/\355\203\200\355\230\221\354\227\220 \354\225\204\354\211\254\354\232\264.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\203\200\355\230\221\354\235\264 \354\226\264\353\240\244\354\232\264.svg" "b/public/images/keywords/\355\203\200\355\230\221\354\235\264 \354\226\264\353\240\244\354\232\264.svg" new file mode 100644 index 00000000..e940ff5d --- /dev/null +++ "b/public/images/keywords/\355\203\200\355\230\221\354\235\264 \354\226\264\353\240\244\354\232\264.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\203\234\353\217\204\352\260\200 \354\204\261\354\210\231\355\225\234.svg" "b/public/images/keywords/\355\203\234\353\217\204\352\260\200 \354\204\261\354\210\231\355\225\234.svg" new file mode 100644 index 00000000..31eecdc1 --- /dev/null +++ "b/public/images/keywords/\355\203\234\353\217\204\352\260\200 \354\204\261\354\210\231\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\203\234\353\217\204\352\260\200 \354\235\274\352\264\200\353\220\234.svg" "b/public/images/keywords/\355\203\234\353\217\204\352\260\200 \354\235\274\352\264\200\353\220\234.svg" new file mode 100644 index 00000000..8dc51959 --- /dev/null +++ "b/public/images/keywords/\355\203\234\353\217\204\352\260\200 \354\235\274\352\264\200\353\220\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\203\234\353\217\204\353\245\274 \354\240\220\352\262\200\355\225\230\353\212\224.svg" "b/public/images/keywords/\355\203\234\353\217\204\353\245\274 \354\240\220\352\262\200\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..7258a081 --- /dev/null +++ "b/public/images/keywords/\355\203\234\353\217\204\353\245\274 \354\240\220\352\262\200\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\206\265\354\260\260\353\240\245 \354\236\210\353\212\224.svg" "b/public/images/keywords/\355\206\265\354\260\260\353\240\245 \354\236\210\353\212\224.svg" index 0251cdf4..51944160 100644 --- "a/public/images/keywords/\355\206\265\354\260\260\353\240\245 \354\236\210\353\212\224.svg" +++ "b/public/images/keywords/\355\206\265\354\260\260\353\240\245 \354\236\210\353\212\224.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\355\210\264 \355\231\234\354\232\251\354\235\264 \353\212\245\354\210\231\355\225\234.svg" "b/public/images/keywords/\355\210\264 \355\231\234\354\232\251\354\235\264 \353\212\245\354\210\231\355\225\234.svg" new file mode 100644 index 00000000..c1d27fd2 --- /dev/null +++ "b/public/images/keywords/\355\210\264 \355\231\234\354\232\251\354\235\264 \353\212\245\354\210\231\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\212\270\353\240\214\353\223\234\354\227\220 \353\257\274\352\260\220\355\225\234.svg" "b/public/images/keywords/\355\212\270\353\240\214\353\223\234\354\227\220 \353\257\274\352\260\220\355\225\234.svg" index 05dc0eda..e13e3cbf 100644 --- "a/public/images/keywords/\355\212\270\353\240\214\353\223\234\354\227\220 \353\257\274\352\260\220\355\225\234.svg" +++ "b/public/images/keywords/\355\212\270\353\240\214\353\223\234\354\227\220 \353\257\274\352\260\220\355\225\234.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\355\214\200 \353\252\260\354\236\205\353\217\204\353\245\274 \353\206\222\354\235\264\353\212\224.svg" "b/public/images/keywords/\355\214\200 \353\252\260\354\236\205\353\217\204\353\245\274 \353\206\222\354\235\264\353\212\224.svg" new file mode 100644 index 00000000..a81ffe8a --- /dev/null +++ "b/public/images/keywords/\355\214\200 \353\252\260\354\236\205\353\217\204\353\245\274 \353\206\222\354\235\264\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\214\200 \353\266\204\354\234\204\352\270\260\353\245\274 \354\240\225\353\217\210\355\225\230\353\212\224.svg" "b/public/images/keywords/\355\214\200 \353\266\204\354\234\204\352\270\260\353\245\274 \354\240\225\353\217\210\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..67362bfb --- /dev/null +++ "b/public/images/keywords/\355\214\200 \353\266\204\354\234\204\352\270\260\353\245\274 \354\240\225\353\217\210\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\214\200\354\227\220 \354\225\210\354\240\225\352\260\220\354\235\204 \354\243\274\353\212\224.svg" "b/public/images/keywords/\355\214\200\354\227\220 \354\225\210\354\240\225\352\260\220\354\235\204 \354\243\274\353\212\224.svg" index ea5e8779..30b35cfe 100644 --- "a/public/images/keywords/\355\214\200\354\227\220 \354\225\210\354\240\225\352\260\220\354\235\204 \354\243\274\353\212\224.svg" +++ "b/public/images/keywords/\355\214\200\354\227\220 \354\225\210\354\240\225\352\260\220\354\235\204 \354\243\274\353\212\224.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\355\214\200\354\227\220 \354\227\254\354\234\240\353\245\274 \353\247\214\353\223\234\353\212\224.svg" "b/public/images/keywords/\355\214\200\354\227\220 \354\227\254\354\234\240\353\245\274 \353\247\214\353\223\234\353\212\224.svg" new file mode 100644 index 00000000..41055eef --- /dev/null +++ "b/public/images/keywords/\355\214\200\354\227\220 \354\227\254\354\234\240\353\245\274 \353\247\214\353\223\234\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\214\200\354\227\220 \354\230\250\352\270\260\353\245\274 \353\215\224\355\225\230\353\212\224.svg" "b/public/images/keywords/\355\214\200\354\227\220 \354\230\250\352\270\260\353\245\274 \353\215\224\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..f503ea27 --- /dev/null +++ "b/public/images/keywords/\355\214\200\354\227\220 \354\230\250\352\270\260\353\245\274 \353\215\224\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\214\200\354\227\220 \355\231\234\353\240\245\354\235\204 \354\243\274\353\212\224.svg" "b/public/images/keywords/\355\214\200\354\227\220 \355\231\234\353\240\245\354\235\204 \354\243\274\353\212\224.svg" index 2d8e0d4a..4ee85f1b 100644 --- "a/public/images/keywords/\355\214\200\354\227\220 \355\231\234\353\240\245\354\235\204 \354\243\274\353\212\224.svg" +++ "b/public/images/keywords/\355\214\200\354\227\220 \355\231\234\353\240\245\354\235\204 \354\243\274\353\212\224.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\355\214\200\354\233\220 \354\204\261\354\236\245\354\235\204 \353\217\225\353\212\224.svg" "b/public/images/keywords/\355\214\200\354\233\220 \354\204\261\354\236\245\354\235\204 \353\217\225\353\212\224.svg" new file mode 100644 index 00000000..2b0e284f --- /dev/null +++ "b/public/images/keywords/\355\214\200\354\233\220 \354\204\261\354\236\245\354\235\204 \353\217\225\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\214\200\354\235\204 \354\236\230 \354\261\231\352\270\260\353\212\224.svg" "b/public/images/keywords/\355\214\200\354\235\204 \354\236\230 \354\261\231\352\270\260\353\212\224.svg" new file mode 100644 index 00000000..339bb0b8 --- /dev/null +++ "b/public/images/keywords/\355\214\200\354\235\204 \354\236\230 \354\261\231\352\270\260\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\214\200\354\235\230 \352\267\240\355\230\225\354\235\204 \353\247\236\354\266\224\353\212\224.svg" "b/public/images/keywords/\355\214\200\354\235\230 \352\267\240\355\230\225\354\235\204 \353\247\236\354\266\224\353\212\224.svg" index e631c4b2..e544f0c6 100644 --- "a/public/images/keywords/\355\214\200\354\235\230 \352\267\240\355\230\225\354\235\204 \353\247\236\354\266\224\353\212\224.svg" +++ "b/public/images/keywords/\355\214\200\354\235\230 \352\267\240\355\230\225\354\235\204 \353\247\236\354\266\224\353\212\224.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\355\214\200\354\235\230 \353\246\254\353\223\254\354\235\204 \353\247\236\354\266\230.svg" "b/public/images/keywords/\355\214\200\354\235\230 \353\246\254\353\223\254\354\235\204 \353\247\236\354\266\230.svg" new file mode 100644 index 00000000..159a3339 --- /dev/null +++ "b/public/images/keywords/\355\214\200\354\235\230 \353\246\254\353\223\254\354\235\204 \353\247\236\354\266\230.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\214\200\354\235\230 \353\266\200\353\213\264\354\235\204 \353\202\230\353\210\204\353\212\224.svg" "b/public/images/keywords/\355\214\200\354\235\230 \353\266\200\353\213\264\354\235\204 \353\202\230\353\210\204\353\212\224.svg" new file mode 100644 index 00000000..9003ac31 --- /dev/null +++ "b/public/images/keywords/\355\214\200\354\235\230 \353\266\200\353\213\264\354\235\204 \353\202\230\353\210\204\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\214\200\354\235\230 \354\206\215\353\217\204\353\245\274 \353\247\236\354\266\224\353\212\224.svg" "b/public/images/keywords/\355\214\200\354\235\230 \354\206\215\353\217\204\353\245\274 \353\247\236\354\266\224\353\212\224.svg" new file mode 100644 index 00000000..d3518a2d --- /dev/null +++ "b/public/images/keywords/\355\214\200\354\235\230 \354\206\215\353\217\204\353\245\274 \353\247\236\354\266\224\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\214\200\354\235\230 \354\213\240\353\242\260 \354\236\220\354\202\260\354\235\264 \353\220\230\353\212\224.svg" "b/public/images/keywords/\355\214\200\354\235\230 \354\213\240\353\242\260 \354\236\220\354\202\260\354\235\264 \353\220\230\353\212\224.svg" new file mode 100644 index 00000000..73e4e656 --- /dev/null +++ "b/public/images/keywords/\355\214\200\354\235\230 \354\213\240\353\242\260 \354\236\220\354\202\260\354\235\264 \353\220\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\214\220\353\213\250 \352\267\274\352\261\260\352\260\200 \353\266\204\353\252\205\355\225\234.svg" "b/public/images/keywords/\355\214\220\353\213\250 \352\267\274\352\261\260\352\260\200 \353\266\204\353\252\205\355\225\234.svg" new file mode 100644 index 00000000..5c9654fd --- /dev/null +++ "b/public/images/keywords/\355\214\220\353\213\250 \352\267\274\352\261\260\352\260\200 \353\266\204\353\252\205\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\214\220\353\213\250\354\227\220 \354\261\205\354\236\204\354\247\200\353\212\224.svg" "b/public/images/keywords/\355\214\220\353\213\250\354\227\220 \354\261\205\354\236\204\354\247\200\353\212\224.svg" new file mode 100644 index 00000000..48623761 --- /dev/null +++ "b/public/images/keywords/\355\214\220\353\213\250\354\227\220 \354\261\205\354\236\204\354\247\200\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\214\220\353\213\250\354\235\204 \353\257\270\353\243\250\353\212\224.svg" "b/public/images/keywords/\355\214\220\353\213\250\354\235\204 \353\257\270\353\243\250\353\212\224.svg" new file mode 100644 index 00000000..f124de3a --- /dev/null +++ "b/public/images/keywords/\355\214\220\353\213\250\354\235\204 \353\257\270\353\243\250\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\214\220\353\213\250\354\235\264 \353\252\205\355\231\225\355\225\234.svg" "b/public/images/keywords/\355\214\220\353\213\250\354\235\264 \353\252\205\355\231\225\355\225\234.svg" index 4d5efa3c..094a78a9 100644 --- "a/public/images/keywords/\355\214\220\353\213\250\354\235\264 \353\252\205\355\231\225\355\225\234.svg" +++ "b/public/images/keywords/\355\214\220\353\213\250\354\235\264 \353\252\205\355\231\225\355\225\234.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\355\214\220\353\213\250\354\235\264 \354\234\240\353\263\264\354\240\201\354\235\270.svg" "b/public/images/keywords/\355\214\220\353\213\250\354\235\264 \354\234\240\353\263\264\354\240\201\354\235\270.svg" deleted file mode 100644 index 444f3332..00000000 --- "a/public/images/keywords/\355\214\220\353\213\250\354\235\264 \354\234\240\353\263\264\354\240\201\354\235\270.svg" +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git "a/public/images/keywords/\355\216\270\352\262\254\354\236\210\353\212\224.svg" "b/public/images/keywords/\355\216\270\352\262\254\354\236\210\353\212\224.svg" new file mode 100644 index 00000000..c35a4e67 --- /dev/null +++ "b/public/images/keywords/\355\216\270\352\262\254\354\236\210\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\216\270\355\225\230\352\262\214 \353\247\214\353\223\234\353\212\224.svg" "b/public/images/keywords/\355\216\270\355\225\230\352\262\214 \353\247\214\353\223\234\353\212\224.svg" new file mode 100644 index 00000000..6c78feba --- /dev/null +++ "b/public/images/keywords/\355\216\270\355\225\230\352\262\214 \353\247\214\353\223\234\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\217\254\354\232\251\354\240\201\354\235\270.svg" "b/public/images/keywords/\355\217\254\354\232\251\354\240\201\354\235\270.svg" index d8df69ec..7bb013ea 100644 --- "a/public/images/keywords/\355\217\254\354\232\251\354\240\201\354\235\270.svg" +++ "b/public/images/keywords/\355\217\254\354\232\251\354\240\201\354\235\270.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\355\221\234\355\230\204\354\235\264 \353\213\250\354\241\260\353\241\234\354\232\264.svg" "b/public/images/keywords/\355\221\234\355\230\204\354\235\264 \353\213\250\354\241\260\353\241\234\354\232\264.svg" new file mode 100644 index 00000000..612832e8 --- /dev/null +++ "b/public/images/keywords/\355\221\234\355\230\204\354\235\264 \353\213\250\354\241\260\353\241\234\354\232\264.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\224\274\353\223\234\353\260\261 \353\260\230\354\230\201\354\235\264 \353\212\220\353\246\260.svg" "b/public/images/keywords/\355\224\274\353\223\234\353\260\261 \353\260\230\354\230\201\354\235\264 \353\212\220\353\246\260.svg" new file mode 100644 index 00000000..b8afe2c9 --- /dev/null +++ "b/public/images/keywords/\355\224\274\353\223\234\353\260\261 \353\260\230\354\230\201\354\235\264 \353\212\220\353\246\260.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\224\274\353\223\234\353\260\261\354\235\204 \352\261\264\354\204\244\354\240\201\354\234\274\353\241\234 \354\243\274\353\212\224.svg" "b/public/images/keywords/\355\224\274\353\223\234\353\260\261\354\235\204 \352\261\264\354\204\244\354\240\201\354\234\274\353\241\234 \354\243\274\353\212\224.svg" index 13c7d00e..43d8cd62 100644 --- "a/public/images/keywords/\355\224\274\353\223\234\353\260\261\354\235\204 \352\261\264\354\204\244\354\240\201\354\234\274\353\241\234 \354\243\274\353\212\224.svg" +++ "b/public/images/keywords/\355\224\274\353\223\234\353\260\261\354\235\204 \352\261\264\354\204\244\354\240\201\354\234\274\353\241\234 \354\243\274\353\212\224.svg" @@ -1,22 +1,22 @@ - - - - + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\355\224\274\353\223\234\353\260\261\354\235\204 \352\263\261\354\224\271\353\212\224.svg" "b/public/images/keywords/\355\224\274\353\223\234\353\260\261\354\235\204 \352\263\261\354\224\271\353\212\224.svg" new file mode 100644 index 00000000..22cdd05c --- /dev/null +++ "b/public/images/keywords/\355\224\274\353\223\234\353\260\261\354\235\204 \352\263\261\354\224\271\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\224\274\353\223\234\353\260\261\354\235\204 \354\227\264\353\246\260 \355\203\234\353\217\204\353\241\234 \353\260\233\353\212\224.svg" "b/public/images/keywords/\355\224\274\353\223\234\353\260\261\354\235\204 \354\227\264\353\246\260 \355\203\234\353\217\204\353\241\234 \353\260\233\353\212\224.svg" new file mode 100644 index 00000000..23477d02 --- /dev/null +++ "b/public/images/keywords/\355\224\274\353\223\234\353\260\261\354\235\204 \354\227\264\353\246\260 \355\203\234\353\217\204\353\241\234 \353\260\233\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\224\274\353\223\234\353\260\261\354\235\264 \353\271\240\353\245\270.svg" "b/public/images/keywords/\355\224\274\353\223\234\353\260\261\354\235\264 \353\271\240\353\245\270.svg" new file mode 100644 index 00000000..d2b06a5f --- /dev/null +++ "b/public/images/keywords/\355\224\274\353\223\234\353\260\261\354\235\264 \353\271\240\353\245\270.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\225\231\354\212\265 \354\235\230\354\247\200\352\260\200 \353\206\222\354\235\200.svg" "b/public/images/keywords/\355\225\231\354\212\265 \354\235\230\354\247\200\352\260\200 \353\206\222\354\235\200.svg" new file mode 100644 index 00000000..8897d6d5 --- /dev/null +++ "b/public/images/keywords/\355\225\231\354\212\265 \354\235\230\354\247\200\352\260\200 \353\206\222\354\235\200.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\225\250\352\273\230 \354\204\261\354\236\245\355\225\230\352\262\214 \355\225\230\353\212\224.svg" "b/public/images/keywords/\355\225\250\352\273\230 \354\204\261\354\236\245\355\225\230\352\262\214 \355\225\230\353\212\224.svg" new file mode 100644 index 00000000..06706212 --- /dev/null +++ "b/public/images/keywords/\355\225\250\352\273\230 \354\204\261\354\236\245\355\225\230\352\262\214 \355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\225\250\352\273\230 \354\235\274\355\225\230\352\270\260 \355\216\270\355\225\234.svg" "b/public/images/keywords/\355\225\250\352\273\230 \354\235\274\355\225\230\352\270\260 \355\216\270\355\225\234.svg" new file mode 100644 index 00000000..fbd30846 --- /dev/null +++ "b/public/images/keywords/\355\225\250\352\273\230 \354\235\274\355\225\230\352\270\260 \355\216\270\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\225\251\354\235\230\353\245\274 \354\236\230 \354\235\264\353\201\210.svg" "b/public/images/keywords/\355\225\251\354\235\230\353\245\274 \354\236\230 \354\235\264\353\201\210.svg" new file mode 100644 index 00000000..8f966723 --- /dev/null +++ "b/public/images/keywords/\355\225\251\354\235\230\353\245\274 \354\236\230 \354\235\264\353\201\210.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\226\211\353\217\231 \354\244\221\354\213\254\354\240\201\354\235\270.svg" "b/public/images/keywords/\355\226\211\353\217\231 \354\244\221\354\213\254\354\240\201\354\235\270.svg" new file mode 100644 index 00000000..8c14c21a --- /dev/null +++ "b/public/images/keywords/\355\226\211\353\217\231 \354\244\221\354\213\254\354\240\201\354\235\270.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\230\204\354\213\244 \352\260\220\352\260\201\354\235\264 \353\233\260\354\226\264\353\202\234.svg" "b/public/images/keywords/\355\230\204\354\213\244 \352\260\220\352\260\201\354\235\264 \353\233\260\354\226\264\353\202\234.svg" index b2776cf9..024061b3 100644 --- "a/public/images/keywords/\355\230\204\354\213\244 \352\260\220\352\260\201\354\235\264 \353\233\260\354\226\264\353\202\234.svg" +++ "b/public/images/keywords/\355\230\204\354\213\244 \352\260\220\352\260\201\354\235\264 \353\233\260\354\226\264\353\202\234.svg" @@ -1,22 +1,22 @@ - - - - - + + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\355\230\204\354\213\244\354\227\220 \354\225\210\354\243\274\355\225\230\353\212\224.svg" "b/public/images/keywords/\355\230\204\354\213\244\354\227\220 \354\225\210\354\243\274\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..beff700f --- /dev/null +++ "b/public/images/keywords/\355\230\204\354\213\244\354\227\220 \354\225\210\354\243\274\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\230\204\354\213\244\354\240\201\354\235\270.svg" "b/public/images/keywords/\355\230\204\354\213\244\354\240\201\354\235\270.svg" new file mode 100644 index 00000000..556d194b --- /dev/null +++ "b/public/images/keywords/\355\230\204\354\213\244\354\240\201\354\235\270.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\230\221\354\203\201\354\227\220 \353\212\245\355\225\234.svg" "b/public/images/keywords/\355\230\221\354\203\201\354\227\220 \353\212\245\355\225\234.svg" index b8e655e3..ccfe6205 100644 --- "a/public/images/keywords/\355\230\221\354\203\201\354\227\220 \353\212\245\355\225\234.svg" +++ "b/public/images/keywords/\355\230\221\354\203\201\354\227\220 \353\212\245\355\225\234.svg" @@ -1,22 +1,22 @@ - - - - - + + + + + - - + + - + - - + + diff --git "a/public/images/keywords/\355\230\221\354\227\205 \354\234\240\354\227\260\354\204\261\354\235\264 \353\202\256\354\235\200.svg" "b/public/images/keywords/\355\230\221\354\227\205 \354\234\240\354\227\260\354\204\261\354\235\264 \353\202\256\354\235\200.svg" new file mode 100644 index 00000000..616ab9b3 --- /dev/null +++ "b/public/images/keywords/\355\230\221\354\227\205 \354\234\240\354\227\260\354\204\261\354\235\264 \353\202\256\354\235\200.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\230\221\354\227\205\352\262\275\352\263\204\352\260\200 \353\266\210\353\266\204\353\252\205\355\225\234.svg" "b/public/images/keywords/\355\230\221\354\227\205\352\262\275\352\263\204\352\260\200 \353\266\210\353\266\204\353\252\205\355\225\234.svg" new file mode 100644 index 00000000..a79349db --- /dev/null +++ "b/public/images/keywords/\355\230\221\354\227\205\352\262\275\352\263\204\352\260\200 \353\266\210\353\266\204\353\252\205\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\230\274\354\236\220 \355\225\264\352\262\260\355\225\230\353\240\244\353\212\224.svg" "b/public/images/keywords/\355\230\274\354\236\220 \355\225\264\352\262\260\355\225\230\353\240\244\353\212\224.svg" new file mode 100644 index 00000000..ef6cd8ee --- /dev/null +++ "b/public/images/keywords/\355\230\274\354\236\220 \355\225\264\352\262\260\355\225\230\353\240\244\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\230\274\354\236\220 \355\232\214\353\263\265\355\225\230\353\212\224.svg" "b/public/images/keywords/\355\230\274\354\236\220 \355\232\214\353\263\265\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..6ffc9220 --- /dev/null +++ "b/public/images/keywords/\355\230\274\354\236\220 \355\232\214\353\263\265\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\232\214\353\263\265\354\227\220 \354\213\234\352\260\204\354\235\264 \355\225\204\354\232\224\355\225\234.svg" "b/public/images/keywords/\355\232\214\353\263\265\354\227\220 \354\213\234\352\260\204\354\235\264 \355\225\204\354\232\224\355\225\234.svg" new file mode 100644 index 00000000..af20a389 --- /dev/null +++ "b/public/images/keywords/\355\232\214\353\263\265\354\227\220 \354\213\234\352\260\204\354\235\264 \355\225\204\354\232\224\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\232\214\355\224\274\355\225\230\353\212\224.svg" "b/public/images/keywords/\355\232\214\355\224\274\355\225\230\353\212\224.svg" new file mode 100644 index 00000000..2da9b1ce --- /dev/null +++ "b/public/images/keywords/\355\232\214\355\224\274\355\225\230\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\232\250\354\234\250\354\240\201\354\235\270.svg" "b/public/images/keywords/\355\232\250\354\234\250\354\240\201\354\235\270.svg" index 1ce16323..b5c47fdd 100644 --- "a/public/images/keywords/\355\232\250\354\234\250\354\240\201\354\235\270.svg" +++ "b/public/images/keywords/\355\232\250\354\234\250\354\240\201\354\235\270.svg" @@ -1,22 +1,22 @@ - - + + - + - + - - + + diff --git "a/public/images/keywords/\355\234\264\354\213\235 \352\264\200\353\246\254\352\260\200 \354\225\275\355\225\234.svg" "b/public/images/keywords/\355\234\264\354\213\235 \352\264\200\353\246\254\352\260\200 \354\225\275\355\225\234.svg" new file mode 100644 index 00000000..6b6a70d6 --- /dev/null +++ "b/public/images/keywords/\355\234\264\354\213\235 \352\264\200\353\246\254\352\260\200 \354\225\275\355\225\234.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\235\220\353\246\204\354\235\204 \354\236\230 \354\235\275\353\212\224.svg" "b/public/images/keywords/\355\235\220\353\246\204\354\235\204 \354\236\230 \354\235\275\353\212\224.svg" new file mode 100644 index 00000000..88e97354 --- /dev/null +++ "b/public/images/keywords/\355\235\220\353\246\204\354\235\204 \354\236\230 \354\235\275\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/keywords/\355\235\220\355\212\270\353\237\254\354\247\200\354\247\200 \354\225\212\353\212\224.svg" "b/public/images/keywords/\355\235\220\355\212\270\353\237\254\354\247\200\354\247\200 \354\225\212\353\212\224.svg" new file mode 100644 index 00000000..8cc72ef8 --- /dev/null +++ "b/public/images/keywords/\355\235\220\355\212\270\353\237\254\354\247\200\354\247\200 \354\225\212\353\212\224.svg" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/next.svg b/public/next.svg deleted file mode 100644 index 5174b28c..00000000 --- a/public/next.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/vercel.svg b/public/vercel.svg deleted file mode 100644 index 77053960..00000000 --- a/public/vercel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/window.svg b/public/window.svg deleted file mode 100644 index b2b2a44f..00000000 --- a/public/window.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/app/(auth)/(callback)/google/oauth/GoogleCallback.tsx b/src/app/(auth)/(callback)/google/oauth/GoogleCallback.tsx index 3c319011..acd2d3a5 100644 --- a/src/app/(auth)/(callback)/google/oauth/GoogleCallback.tsx +++ b/src/app/(auth)/(callback)/google/oauth/GoogleCallback.tsx @@ -4,6 +4,7 @@ import { useEffect } from 'react'; import { useRouter, useSearchParams } from 'next/navigation'; import api from '@/libs/api/api'; import { useUserStore } from '@/store/useUserStore'; +import { setCookie } from '@/utils/cookie'; export default function GoogleCallbackClient() { const router = useRouter(); @@ -35,6 +36,7 @@ export default function GoogleCallbackClient() { localStorage.setItem('accessToken', accessToken); localStorage.setItem('refreshToken', refreshToken); + setCookie('lastLoginProvider', 'google', { expires: 365 }); const redirectPath = localStorage.getItem('redirectAfterLogin'); localStorage.removeItem('redirectAfterLogin'); diff --git a/src/app/(auth)/(callback)/kakao/oauth/KakaoCallback.tsx b/src/app/(auth)/(callback)/kakao/oauth/KakaoCallback.tsx index 5338b3a1..f511f6a1 100644 --- a/src/app/(auth)/(callback)/kakao/oauth/KakaoCallback.tsx +++ b/src/app/(auth)/(callback)/kakao/oauth/KakaoCallback.tsx @@ -4,6 +4,7 @@ import { useEffect } from 'react'; import { useRouter, useSearchParams } from 'next/navigation'; import api from '@/libs/api/api'; import { useUserStore } from '@/store/useUserStore'; +import { setCookie } from '@/utils/cookie'; export default function KakaoCallbackClient() { const router = useRouter(); @@ -35,6 +36,7 @@ export default function KakaoCallbackClient() { localStorage.setItem('accessToken', accessToken); localStorage.setItem('refreshToken', refreshToken); + setCookie('lastLoginProvider', 'kakao', { expires: 365 }); const redirectPath = localStorage.getItem('redirectAfterLogin'); localStorage.removeItem('redirectAfterLogin'); diff --git a/src/app/(auth)/(callback)/naver/oauth/NaverCallback.tsx b/src/app/(auth)/(callback)/naver/oauth/NaverCallback.tsx index f3e72e30..d56d8acf 100644 --- a/src/app/(auth)/(callback)/naver/oauth/NaverCallback.tsx +++ b/src/app/(auth)/(callback)/naver/oauth/NaverCallback.tsx @@ -4,6 +4,7 @@ import { useEffect } from 'react'; import { useRouter, useSearchParams } from 'next/navigation'; import api from '@/libs/api/api'; import { useUserStore } from '@/store/useUserStore'; +import { setCookie } from '@/utils/cookie'; export default function NaverCallbackClient() { const router = useRouter(); @@ -37,6 +38,7 @@ export default function NaverCallbackClient() { localStorage.setItem('accessToken', accessToken); localStorage.setItem('refreshToken', refreshToken); + setCookie('lastLoginProvider', 'naver', { expires: 365 }); const redirectPath = localStorage.getItem('redirectAfterLogin'); localStorage.removeItem('redirectAfterLogin'); diff --git a/src/app/(main)/layout.tsx b/src/app/(main)/layout.tsx index f1f713a1..f5ef1dbb 100644 --- a/src/app/(main)/layout.tsx +++ b/src/app/(main)/layout.tsx @@ -9,7 +9,7 @@ export default function MainLayout({ children }: { children: React.ReactNode })
{children}
-
+
diff --git a/src/app/(main)/mypage/_components/applicant/ApplicantStatusSection.tsx b/src/app/(main)/mypage/_components/applicant/ApplicantStatusSection.tsx index 4f91e7fe..2bf2ea0a 100644 --- a/src/app/(main)/mypage/_components/applicant/ApplicantStatusSection.tsx +++ b/src/app/(main)/mypage/_components/applicant/ApplicantStatusSection.tsx @@ -51,7 +51,7 @@ const ApplicantStatusSection = ({ recruitings }: ApplicantStatusSectionProps) => ))}
-
+
{displayApplicants.length > 1 && ( -
+
{displayApplicants.map((_, i) => (
-
+
팀원 모집하기 @@ -22,6 +22,17 @@ const EmptyApplicantStatus = () => { 함께할 프로젝트 팀원을 모집해보세요!
+
+ + + 팀원 모집하기 + {' '} + 페이지로
+ 이동해서 함께할 프로젝트 +
+ 팀원을 모집해보세요! +
+
); }; diff --git a/src/app/(main)/mypage/_components/applied/AppliedTeamsSection.tsx b/src/app/(main)/mypage/_components/applied/AppliedTeamsSection.tsx index d47d4446..2805a1a0 100644 --- a/src/app/(main)/mypage/_components/applied/AppliedTeamsSection.tsx +++ b/src/app/(main)/mypage/_components/applied/AppliedTeamsSection.tsx @@ -51,7 +51,7 @@ const AppliedTeamSection = ({ applications }: AppliedTeamSectionProps) => { ))}
-
+
{
{displayApplications.length > 1 && ( -
+
{displayApplications.map((_, i) => (
-
+
프로젝트 @@ -19,6 +19,17 @@ const EmptyAppliedTeam = () => { 내가 가진 소프트 스킬로 팀에 지원해보세요!
+
+ + + 프로젝트 + {' '} + 페이지로 이동해서 +
+ 내가 가진 소프트 스킬로
+ 팀에 지원해보세요! +
+
); }; diff --git a/src/app/(main)/mypage/_components/myteam/EmptyMyTeam.tsx b/src/app/(main)/mypage/_components/myteam/EmptyMyTeam.tsx index 3b938d67..62b6bbc3 100644 --- a/src/app/(main)/mypage/_components/myteam/EmptyMyTeam.tsx +++ b/src/app/(main)/mypage/_components/myteam/EmptyMyTeam.tsx @@ -9,13 +9,22 @@ const EmptyMyTeam = () => { 전체보기
-
+
누가 함께하게 될까요?
프로젝트에 지원해 팀에 들어가보세요!
+
+ + 누가 함께하게 될까요? +
+ 프로젝트에 지원해 팀에 +
+ 들어가보세요! +
+
); }; diff --git a/src/app/(main)/mypage/_components/myteam/MyTeamSection.tsx b/src/app/(main)/mypage/_components/myteam/MyTeamSection.tsx index 7ddf570f..008a7638 100644 --- a/src/app/(main)/mypage/_components/myteam/MyTeamSection.tsx +++ b/src/app/(main)/mypage/_components/myteam/MyTeamSection.tsx @@ -53,7 +53,7 @@ const MyTeamSection = ({ teams }: MyTeamSectionProps) => { ))}
-
+
{
{displayTeams.length > 1 && ( -
+
{displayTeams.map((_, i) => ( + )}
diff --git a/src/app/(main)/mypage/profile/_components/ProfileTitle.tsx b/src/app/(main)/mypage/profile/_components/ProfileTitle.tsx index 7de74729..c8db087e 100644 --- a/src/app/(main)/mypage/profile/_components/ProfileTitle.tsx +++ b/src/app/(main)/mypage/profile/_components/ProfileTitle.tsx @@ -3,7 +3,7 @@ import React from 'react'; const ProfileTitle = () => { return ( -
+

프로필 관리하기

대표 키워드 수정은{' '} diff --git a/src/app/(main)/page.tsx b/src/app/(main)/page.tsx index 373935ff..3ef30c2f 100644 --- a/src/app/(main)/page.tsx +++ b/src/app/(main)/page.tsx @@ -1,5 +1,24 @@ +import { Metadata } from 'next'; import { redirect } from 'next/navigation'; +export async function generateMetadata(): Promise { + return { + title: `TEAMFICIAL`, + description: `소프트스킬 팀빌딩 서비스, 팀피셜`, + openGraph: { + title: `TEAMFICIAL`, + description: `소프트스킬 팀빌딩 서비스, 팀피셜`, + images: [ + { + url: 'https://www.teamficial.com/og/Teamficial_metatag_Image.jpg', + width: 1200, + height: 630, + }, + ], + }, + }; +} + export default function RootPage() { redirect('/project'); } diff --git a/src/app/(main)/project/[id]/_components/InfoItem.tsx b/src/app/(main)/project/[id]/_components/InfoItem.tsx index 38d43e32..f3d06f70 100644 --- a/src/app/(main)/project/[id]/_components/InfoItem.tsx +++ b/src/app/(main)/project/[id]/_components/InfoItem.tsx @@ -18,7 +18,7 @@ const InfoItem = ({ label, value, className = '' }: InfoItemProps) => { href={value} target="_blank" rel="noopener noreferrer" - className="body-4 text-primary-900 line-clamp-1 break-all underline" + className="desktop:body-4 body-8 text-primary-900 line-clamp-1 break-all underline" title={value} > {value} diff --git a/src/app/(main)/project/[id]/_components/ProjectImage.tsx b/src/app/(main)/project/[id]/_components/ProjectImage.tsx new file mode 100644 index 00000000..e569778e --- /dev/null +++ b/src/app/(main)/project/[id]/_components/ProjectImage.tsx @@ -0,0 +1,22 @@ +import { ResponseProject } from '@/types/project'; +import Image from 'next/image'; + +const ProjectImage = ({ images }: ResponseProject) => { + if (!images || images.length === 0) return null; + return ( +

+ {images.map((img, index) => ( + {`Project + ))} +
+ ); +}; + +export default ProjectImage; diff --git a/src/app/(main)/project/[id]/_components/ProjectInfo.tsx b/src/app/(main)/project/[id]/_components/ProjectInfo.tsx index 012de31c..90926dbf 100644 --- a/src/app/(main)/project/[id]/_components/ProjectInfo.tsx +++ b/src/app/(main)/project/[id]/_components/ProjectInfo.tsx @@ -5,21 +5,33 @@ import ProjectTitle from './ProjectTitle'; import InfoCard from './InfoCard'; import Profile1 from '@/components/profile/Profile1'; import { useGetProject } from '@/hooks/queries/useProject'; +import ProjectImage from './ProjectImage'; const ProjectInfo = ({ id }: { id: string }) => { - const { data } = useGetProject({ postId: Number(id) }); + const { data } = useGetProject( + { postId: Number(id) }, + { refetchOnMount: true, refetchOnWindowFocus: true }, + ); if (!data) return null; - const sanitizedContent = DOMPurify.sanitize(data.content); + const sanitizedContent = DOMPurify.sanitize(data.content.replace(/

<\/p>/g, '


')); + const isWriter = data.writer; return ( -
+
+ {/* TODO: 프로젝트 이미지 부분 복구 */} + {/* */}
diff --git a/src/app/(main)/project/[id]/_components/ProjectTitle.tsx b/src/app/(main)/project/[id]/_components/ProjectTitle.tsx index d2589e50..a89b173d 100644 --- a/src/app/(main)/project/[id]/_components/ProjectTitle.tsx +++ b/src/app/(main)/project/[id]/_components/ProjectTitle.tsx @@ -9,6 +9,7 @@ import Link from 'next/link'; import { useUserStore } from '@/store/useUserStore'; import { useRouter } from 'next/navigation'; import Image from 'next/image'; +import { useMediaQuery } from '@/hooks/useMediaQuery'; const ProjectTitle = ({ postId, @@ -26,12 +27,15 @@ const ProjectTitle = ({ const isLoggedIn = !!userName; const navigate = useRouter(); + const isDesktop = useMediaQuery('(min-width: 1024px)'); + const handleApplyModal = () => { if (!isLoggedIn) { window.alert('로그인이 필요합니다.'); navigate.push('/login'); } else { - openModal('apply', { postId, recruitingPositions }); + const modalType = isDesktop ? 'apply' : 'applyMo'; + openModal(modalType, { postId, recruitingPositions }); } }; @@ -49,7 +53,7 @@ const ProjectTitle = ({
-
+

{title}

diff --git a/src/app/(main)/project/[id]/applicants/_components/CurrentApplicantItem.tsx b/src/app/(main)/project/[id]/applicants/_components/CurrentApplicantItem.tsx index 3bc73a75..bda5c225 100644 --- a/src/app/(main)/project/[id]/applicants/_components/CurrentApplicantItem.tsx +++ b/src/app/(main)/project/[id]/applicants/_components/CurrentApplicantItem.tsx @@ -61,7 +61,9 @@ const CurrentApplicantItem = ({ {item.profilePosition}
- 키워드 + {(item.keywordList || []).map((keyword, index) => ( + {keyword} + ))}
); diff --git a/src/app/(main)/project/[id]/applicants/_components/CurrentApplicants.tsx b/src/app/(main)/project/[id]/applicants/_components/CurrentApplicants.tsx index 8af22fac..8c2f1fd6 100644 --- a/src/app/(main)/project/[id]/applicants/_components/CurrentApplicants.tsx +++ b/src/app/(main)/project/[id]/applicants/_components/CurrentApplicants.tsx @@ -28,6 +28,8 @@ const CurrentApplicants = ({ openModal('partner', { applicationId, recruitingPostId, + profilePosition: applicants.find((app) => app.applicationId === applicationId) + ?.profilePosition, }); }; diff --git a/src/app/(main)/project/[id]/applicants/_components/ProjectInfo.tsx b/src/app/(main)/project/[id]/applicants/_components/ProjectInfo.tsx index b9ec59f8..5fa9d739 100644 --- a/src/app/(main)/project/[id]/applicants/_components/ProjectInfo.tsx +++ b/src/app/(main)/project/[id]/applicants/_components/ProjectInfo.tsx @@ -55,7 +55,9 @@ const ProjectInfo = ({ id }: { id: string }) => { ); if (!data) return null; - const sanitizedContent = DOMPurify.sanitize(data.recruitingPost.recruitingPostContent); + const sanitizedContent = DOMPurify.sanitize( + data.recruitingPost.recruitingPostContent.replace(/

<\/p>/g, '


'), + ); const filteredApplicants = selectedPosition ? data.applicantList.filter((item) => item.profilePosition === POSITION_KR[selectedPosition]) diff --git a/src/app/(main)/project/[id]/edit/_components/FormEditor.tsx b/src/app/(main)/project/[id]/edit/_components/FormEditor.tsx index ca46e1ee..e75cd23d 100644 --- a/src/app/(main)/project/[id]/edit/_components/FormEditor.tsx +++ b/src/app/(main)/project/[id]/edit/_components/FormEditor.tsx @@ -9,7 +9,11 @@ type Props = { }; const FormEditor = ({ postId }: Props) => { - const { data: projectData, isLoading, isError } = useGetProject({ postId }); + const { + data: projectData, + isLoading, + isError, + } = useGetProject({ postId }, { refetchOnMount: false, refetchOnWindowFocus: false }); if (isLoading) { return ( diff --git a/src/app/(main)/project/[id]/page.tsx b/src/app/(main)/project/[id]/page.tsx index c2e16416..34902c93 100644 --- a/src/app/(main)/project/[id]/page.tsx +++ b/src/app/(main)/project/[id]/page.tsx @@ -1,5 +1,24 @@ import React from 'react'; import ProjectInfo from './_components/ProjectInfo'; +import { Metadata } from 'next'; + +export async function generateMetadata(): Promise { + return { + title: `TEAMFICIAL`, + description: `소프트스킬 팀빌딩 서비스, 팀피셜`, + openGraph: { + title: `TEAMFICIAL`, + description: `소프트스킬 팀빌딩 서비스, 팀피셜`, + images: [ + { + url: 'https://www.teamficial.com/og/Teamficial_metatag_Image.jpg', + width: 1200, + height: 630, + }, + ], + }, + }; +} type Props = { params: Promise<{ id: string }>; diff --git a/src/app/(main)/project/_components/Banner.tsx b/src/app/(main)/project/_components/Banner.tsx index 82f37dae..6d644368 100644 --- a/src/app/(main)/project/_components/Banner.tsx +++ b/src/app/(main)/project/_components/Banner.tsx @@ -17,7 +17,7 @@ const Banner = () => { } router.push(`/teampsylog`); - const url = `${window.location.origin}/question/${uuid}`; + const url = `${window.location.origin}/teampsylog/head/${uuid}`; await navigator.clipboard.writeText(url); addToast({ message: '링크가 복사되었어요' }); }; @@ -26,7 +26,7 @@ const Banner = () => { <>