diff --git a/.claude/prompt/upgrade-next-16.md b/.claude/prompt/upgrade-next-16.md new file mode 100644 index 0000000..ea7345a --- /dev/null +++ b/.claude/prompt/upgrade-next-16.md @@ -0,0 +1,234 @@ +# ارتقای Next.js از 15 به 16 (آخرین نسخه) + فعال‌سازی امکانات جدید + +## پروژه + +`nobat724_front` + +## زمینه + +پروژه روی `next@15.5.7` و `react@18.3.1` است (React با `overrides` در `package.json` روی 18 پین شده). آخرین نسخه پایدار Next.js نسخه **16.3.x** است (16.2.10 LTS هم موجود است — هدف این ارتقا `next@latest` یعنی 16.3.x). Next 16 چند breaking change دارد (React 19 اجباری، حذف `next lint`، deprecate شدن `middleware` به نفع `proxy`، Turbopack به‌عنوان پیش‌فرض build/dev) و چند قابلیت جدید (Cache Components، React Compiler، Instant Navigations / Partial Prefetching در 16.3). + +**تمام کار باید روی برنچ جدا انجام شود** — `main` دست نخورد. + +## مشکل / هدف + +1. ارتقای `next` به آخرین نسخه (16.3.x) و `react`/`react-dom` به 19 +2. رفع همه breaking changeها تا `npm run build` و `npm run test` سبز شود +3. فعال‌سازی امکانات جدید نسخه 16 که با معماری multi-domain پروژه سازگارند +4. رفتار SEO فعلی (متادیتا داخل ``، canonical، sitemap، robots) عیناً حفظ شود + +## فایل‌های مرتبط + +| فایل | نقش | +|------|-----| +| `package.json` | نسخه‌ها، `overrides` پین React 18، اسکریپت `next lint` | +| `next.config.js` | کانفیگ — شامل `htmlLimitedBots: /.*/` (فیکس SEO، **نباید حذف شود**)، `output: 'standalone'`، CSP headers | +| `middleware.js` | تزریق هدر `x-pathname` برای canonical — در 16 باید به `proxy.js` تبدیل شود | +| `app/layout.js` | `generateMetadata` مبتنی بر host (multi-domain) | +| `lib/getStateInfo.js`, `lib/getCanonicalUrl.js`, `lib/auth.js` | خواندن `headers()`/`cookies()` — ۱۰ فایل از `next/headers` استفاده می‌کنند | +| `app/doctor/[slug]/page.js`, `app/clinic/[slug]/page.js`, `app/blog/[slug]/page.js`, `app/sitemap.js` | fetch با `next: { revalidate: 3600, tags: [...] }` | +| `Dockerfile`, `nixpacks.toml`, `liara.json` | deploy — خروجی standalone | +| `vitest.config.mjs`, `test/` | تست‌ها با vitest + @testing-library/react | + +## وضعیت فعلی + +```json +// package.json (بخش‌های مرتبط) +"scripts": { + "dev": "cross-env HOST=yazd-nobat.localhost PORT=3000 NODE_TLS_REJECT_UNAUTHORIZED=0 next dev", + "build": "next build", + "lint": "next lint" +}, +"dependencies": { + "next": "^15.5.7", + "@next/third-parties": "^15.5.7", + "react": "^18.3.1", + "react-dom": "^18.3.1", + "@mui/material": "^5.18.0", + "@mui/x-charts": "^7.29.1", + "@mui/x-date-pickers": "^7.29.4" +}, +"overrides": { + "react": "^18.3.1", + "react-dom": "^18.3.1" +} +``` + +```js +// middleware.js — کل فایل +import { NextResponse } from 'next/server'; + +export function middleware(request) { + const response = NextResponse.next(); + response.headers.set('x-pathname', request.nextUrl.pathname); + return response; +} + +export const config = { + matcher: [ + '/((?!api|_next/static|_next/image|favicon.ico|panel|dashboard|login|login-verify).*)', + ], +}; +``` + +نکات پیش‌بررسی‌شده (لازم نیست دوباره جستجو شوند): + +- هیچ استفاده‌ای از `legacyBehavior`، `useFormState`، `publicRuntimeConfig`/`serverRuntimeConfig`، `getInitialProps`، `next/legacy/image`، prop سفارشی `quality` روی ``، custom webpack config، یا `export const dynamic/revalidate` در پروژه **وجود ندارد**. +- `await params` از قبل در همه صفحات dynamic رعایت شده (الگوی Next 15). +- هیچ فایل کانفیگ ESLint وجود ندارد (`next lint` بدون config اجرا می‌شده) و `eslint` در devDependencies نیست. +- Node محلی v22 است (Next 16 حداقل 20.9 می‌خواهد — OK). + +## وظایف + +### ۱. ساخت برنچ + +```bash +cd nobat724_front +git checkout -b upgrade/next-16 +``` + +همه commitها روی این برنچ. به `main` هیچ چیزی push نشود. + +### ۲. ارتقای پکیج‌ها + +```bash +npx @next/codemod@latest upgrade latest +``` + +اگر codemod به هر دلیل کامل اجرا نشد، دستی: + +```bash +npm install next@latest react@latest react-dom@latest @next/third-parties@latest +``` + +- بخش `overrides` (پین React 18) از `package.json` **حذف شود** — دلیل پین، سازگاری قدیمی MUI بود؛ `@mui/material@5.18` و `@mui/x-*@7.29` هر دو peer-dep React 19 را پشتیبانی می‌کنند. +- اگر پکیج‌های قدیمی (`react-google-map-picker`، `react-images-uploading`، `aos`) خطای peer-dep برای React 19 دادند: اول `npm install --legacy-peer-deps` را امتحان کن و در گزارش نهایی صریح ذکر کن؛ سپس در مرحله تست، صفحات استفاده‌کننده از این پکیج‌ها را در مرورگر چک کن (map picker در پنل، آپلود عکس، انیمیشن‌های AOS صفحه اصلی). +- `@testing-library/react@16` و `vitest@2` با React 19 سازگارند؛ اگر تست‌ها خطای rendering دادند فقط نسخه `@testing-library/react` را به آخرین minor ارتقا بده. + +### ۳. تبدیل `middleware.js` به `proxy.js` + +در Next 16 نام `middleware` deprecated و جایگزینش `proxy` است. فایل `middleware.js` را به `proxy.js` تغییر نام بده و تابع را rename کن: + +```js +// proxy.js +import { NextResponse } from 'next/server'; + +export function proxy(request) { + const response = NextResponse.next(); + response.headers.set('x-pathname', request.nextUrl.pathname); + return response; +} + +export const config = { + matcher: [ + '/((?!api|_next/static|_next/image|favicon.ico|panel|dashboard|login|login-verify).*)', + ], +}; +``` + +**تست حیاتی بعد از این تغییر:** هدر `x-pathname` باید همچنان برسد — `curl -s http://yazd-nobat.localhost:3000/doctors | grep canonical` باید `https://nobat724.com/doctors` بدهد (اگر header نرسد، `getCanonicalUrl` مقدار `null` برمی‌گرداند و تگ canonical حذف می‌شود — این یعنی regression). + +### ۴. جایگزینی `next lint` + +`next lint` در Next 16 حذف شده. چون هیچ کانفیگ ESLint موجود نیست: + +```bash +npm install -D eslint eslint-config-next +``` + +فایل `eslint.config.mjs` (flat config) بساز: + +```js +import { FlatCompat } from '@eslint/eslintrc'; + +const compat = new FlatCompat({ baseDirectory: import.meta.dirname }); + +export default [ + ...compat.extends('next/core-web-vitals'), +]; +``` + +و در `package.json`: + +```json +"lint": "eslint app components lib services hooks context utils helper" +``` + +خطاهای lint موجود را فیکس نکن (خارج از scope) — فقط مطمئن شو دستور اجرا می‌شود؛ در صورت نیاز سطح خطاهای پرتکرار را در config به `warn` تنزل بده. + +### ۵. Turbopack (پیش‌فرض جدید dev و build) + +Next 16 هم `next dev` و هم `next build` را با Turbopack اجرا می‌کند. پروژه custom webpack config ندارد، پس انتظار سازگاری می‌رود. فقط verify کن: + +- `npm run dev` بالا بیاید و صفحه اول، `/doctors`، `/doctor/[slug]` (یک uuid واقعی از خروجی `/doctors`) و `/panel` بدون خطای کنسول رندر شوند +- `npm run build` موفق شود و خروجی `standalone` تولید کند (برای Docker/liara لازم است — `ls .next/standalone`) +- استایل‌های emotion RTL (`stylis-plugin-rtl` در `mui/index.js` یا `ThemeRegistry`) درست کار کنند — یک صفحه را چک کن که دکمه‌ها/فرم‌ها RTL باشند + +اگر Turbopack با emotion/styled-components مشکل داشت، ابتدا `compiler.styledComponents: true` را در `next.config.js` امتحان کن؛ فقط به‌عنوان آخرین راه‌حل build را با فلگ `--webpack` برگردان و دلیل را در گزارش بنویس. + +### ۶. فعال‌سازی React Compiler + +قابلیت پایدار نسخه 16 (و در 16.3 پشتیبانی Rust در Turbopack): + +```bash +npm install -D babel-plugin-react-compiler +``` + +```js +// next.config.js +const nextConfig = { + reactCompiler: true, + // ... +}; +``` + +بعد از فعال‌سازی، `npm run build` و تست‌های vitest باید سبز بمانند. اگر کامپایلر روی کامپوننت خاصی خطا داد (کامپوننت‌های کلاسی یا الگوهای غیراستاندارد)، همان کامپوننت را با `"use no memo"` مستثنا کن — کل قابلیت را خاموش نکن. + +### ۷. Cache Components — ارزیابی محتاطانه (فعال‌سازی مشروط) + +`cacheComponents: true` مدل کش جدید نسخه 16 است (`"use cache"`, `cacheLife`, `cacheTag`) و پیش‌نیاز Partial Prefetching در 16.3. + +**هشدار معماری:** این پروژه multi-domain است — `generateMetadata` و layout و ده فایل دیگر به `headers()` (هدر `host`) وابسته‌اند؛ خروجی هر صفحه per-host متفاوت است. با `cacheComponents`، هر چیزی که `headers()` می‌خواند dynamic می‌ماند و کش کردنش باعث نشت محتوای یک شهر به دامنه شهر دیگر می‌شود. + +ترتیب کار: + +1. ابتدا **بدون** فعال‌سازی، fetchهای موجود را دست‌نخورده بگذار — الگوی `next: { revalidate: 3600, tags: [...] }` در Next 16 همچنان پشتیبانی می‌شود +2. `cacheComponents: true` را روی یک commit جدا فعال کن و `npm run build` بگیر +3. اگر build خطای «uncached data access» برای مسیرهای متکی به `headers()` داد و رفعش نیاز به `Suspense`گذاری گسترده یا `"use cache"` روی توابع host-dependent داشت → **فعال‌سازی را revert کن** و در گزارش نهایی بنویس چرا (این قابلیت برای این معماری فعلاً امن نیست) +4. اگر build پاس شد → با دو host تست کن (`HOST=yazd-nobat.localhost` و یک شهر دیگر از `data/city.json` مثلاً با تغییر موقت HOST در اسکریپت dev) و مطمئن شو title/description/canonical هر دامنه مستقل است + +### ۸. تمیزکاری‌های کانفیگ نسخه 16 + +در `next.config.js`: + +- `htmlLimitedBots: /.*/` **باید بماند** — فیکس عمدی برای رندر متادیتا داخل `` است (streaming metadata خاموش). بعد از ارتقا با `curl -s -A "Mozilla/5.0" http://yazd-nobat.localhost:3000/ | python3 -c "import sys; h=sys.stdin.read(); e=h.find(''); print('HEAD' if 0<=h.find('rel=\"canonical\"')` + +Commitها را مرحله‌ای بزن (ارتقا پکیج‌ها / proxy / eslint / react compiler / cache components هرکدام جدا) تا در صورت مشکل، revert تکی ممکن باشد. + +## نکات مهم + +- **برنچ:** همه‌چیز روی `upgrade/next-16`؛ merge به `main` با کاربر است، خودت merge نکن. +- **SEO regression خط قرمز است:** canonical به `https://nobat724.com/`، متادیتا در ``، `robots.js` و `sitemap.js` باید عیناً مثل قبل کار کنند. +- ده فایل از `next/headers` استفاده می‌کنند — همه `await headers()` هستند (الگوی 15)؛ در 16 هم همین درست است. +- `services/response.js` قرارداد API با backend (`clinicpro`) است — این ارتقا نباید هیچ تغییری در آن بدهد. +- اسکریپت dev به `NODE_TLS_REJECT_UNAUTHORIZED=0` و `HOST` سفارشی وابسته است — بدون تغییر بماند. +- اگر در حین کار مستندات لازم شد: راهنمای رسمی مهاجرت `https://nextjs.org/docs/app/guides/upgrading/version-16` و بلاگ‌های `nextjs.org/blog/next-16`, `next-16-1`, `next-16-2`, و 16.3. +- بعد از اتمام: `graphify update .` در روت workspace اجرا شود. diff --git a/eslint.config.mjs b/eslint.config.mjs new file mode 100644 index 0000000..167d066 --- /dev/null +++ b/eslint.config.mjs @@ -0,0 +1,25 @@ +import next from 'eslint-config-next/core-web-vitals'; + +const eslintConfig = [ + ...next, + { + ignores: ['.next/**', 'node_modules/**', 'public/**'], + }, + { + // قوانین پرتکراری که با ارتقا به eslint-config-next@16 / react-hooks@7 سخت‌گیرتر شدند + // و در کد موجود نقض می‌شوند؛ برای عبور از ارتقا به warn تنزل داده شده‌اند. + // پاک‌سازی این warningها خارج از scope این ارتقاست. + rules: { + 'react/jsx-key': 'warn', + 'react-hooks/set-state-in-effect': 'warn', + 'react-hooks/exhaustive-deps': 'warn', + 'react-hooks/refs': 'warn', + 'react-hooks/purity': 'warn', + 'react-hooks/immutability': 'warn', + 'jsx-a11y/alt-text': 'warn', + '@next/next/no-img-element': 'warn', + }, + }, +]; + +export default eslintConfig; diff --git a/graphify-out/.graphify_labels.json b/graphify-out/.graphify_labels.json new file mode 100644 index 0000000..ce083b1 --- /dev/null +++ b/graphify-out/.graphify_labels.json @@ -0,0 +1,367 @@ +{ + "0": "Community 0", + "1": "Community 1", + "2": "Community 2", + "3": "Community 3", + "4": "Community 4", + "5": "Community 5", + "6": "Community 6", + "7": "Community 7", + "8": "Community 8", + "9": "Community 9", + "10": "Community 10", + "11": "Community 11", + "12": "Community 12", + "13": "Community 13", + "14": "Community 14", + "15": "Community 15", + "16": "Community 16", + "17": "Community 17", + "18": "Community 18", + "19": "Community 19", + "20": "Community 20", + "21": "Community 21", + "22": "Community 22", + "23": "Community 23", + "24": "Community 24", + "25": "Community 25", + "26": "Community 26", + "27": "Community 27", + "28": "Community 28", + "29": "Community 29", + "30": "Community 30", + "31": "Community 31", + "32": "Community 32", + "33": "Community 33", + "34": "Community 34", + "35": "Community 35", + "36": "Community 36", + "37": "Community 37", + "38": "Community 38", + "39": "Community 39", + "40": "Community 40", + "41": "Community 41", + "42": "Community 42", + "43": "Community 43", + "44": "Community 44", + "45": "Community 45", + "46": "Community 46", + "47": "Community 47", + "48": "Community 48", + "49": "Community 49", + "50": "Community 50", + "51": "Community 51", + "52": "Community 52", + "53": "Community 53", + "54": "Community 54", + "55": "Community 55", + "56": "Community 56", + "57": "Community 57", + "58": "Community 58", + "59": "Community 59", + "60": "Community 60", + "61": "Community 61", + "62": "Community 62", + "63": "Community 63", + "64": "Community 64", + "65": "Community 65", + "66": "Community 66", + "67": "Community 67", + "68": "Community 68", + "69": "Community 69", + "70": "Community 70", + "71": "Community 71", + "72": "Community 72", + "73": "Community 73", + "74": "Community 74", + "75": "Community 75", + "76": "Community 76", + "77": "Community 77", + "78": "Community 78", + "79": "Community 79", + "80": "Community 80", + "81": "Community 81", + "82": "Community 82", + "83": "Community 83", + "84": "Community 84", + "85": "Community 85", + "86": "Community 86", + "87": "Community 87", + "88": "Community 88", + "89": "Community 89", + "90": "Community 90", + "91": "Community 91", + "92": "Community 92", + "93": "Community 93", + "94": "Community 94", + "95": "Community 95", + "96": "Community 96", + "97": "Community 97", + "98": "Community 98", + "99": "Community 99", + "100": "Community 100", + "101": "Community 101", + "102": "Community 102", + "103": "Community 103", + "104": "Community 104", + "105": "Community 105", + "106": "Community 106", + "107": "Community 107", + "108": "Community 108", + "109": "Community 109", + "110": "Community 110", + "111": "Community 111", + "112": "Community 112", + "113": "Community 113", + "114": "Community 114", + "115": "Community 115", + "116": "Community 116", + "117": "Community 117", + "118": "Community 118", + "119": "Community 119", + "120": "Community 120", + "121": "Community 121", + "122": "Community 122", + "123": "Community 123", + "124": "Community 124", + "125": "Community 125", + "126": "Community 126", + "127": "Community 127", + "128": "Community 128", + "129": "Community 129", + "130": "Community 130", + "131": "Community 131", + "132": "Community 132", + "133": "Community 133", + "134": "Community 134", + "135": "Community 135", + "136": "Community 136", + "137": "Community 137", + "138": "Community 138", + "139": "Community 139", + "140": "Community 140", + "141": "Community 141", + "142": "Community 142", + "143": "Community 143", + "144": "Community 144", + "145": "Community 145", + "146": "Community 146", + "147": "Community 147", + "148": "Community 148", + "149": "Community 149", + "150": "Community 150", + "151": "Community 151", + "152": "Community 152", + "153": "Community 153", + "154": "Community 154", + "155": "Community 155", + "156": "Community 156", + "157": "Community 157", + "158": "Community 158", + "159": "Community 159", + "160": "Community 160", + "161": "Community 161", + "162": "Community 162", + "163": "Community 163", + "164": "Community 164", + "165": "Community 165", + "166": "Community 166", + "167": "Community 167", + "168": "Community 168", + "169": "Community 169", + "170": "Community 170", + "171": "Community 171", + "172": "Community 172", + "173": "Community 173", + "174": "Community 174", + "175": "Community 175", + "176": "Community 176", + "177": "Community 177", + "178": "Community 178", + "179": "Community 179", + "180": "Community 180", + "181": "Community 181", + "182": "Community 182", + "183": "Community 183", + "184": "Community 184", + "185": "Community 185", + "186": "Community 186", + "187": "Community 187", + "188": "Community 188", + "189": "Community 189", + "190": "Community 190", + "191": "Community 191", + "192": "Community 192", + "193": "Community 193", + "194": "Community 194", + "195": "Community 195", + "196": "Community 196", + "197": "Community 197", + "198": "Community 198", + "199": "Community 199", + "200": "Community 200", + "201": "Community 201", + "202": "Community 202", + "203": "Community 203", + "204": "Community 204", + "205": "Community 205", + "206": "Community 206", + "207": "Community 207", + "208": "Community 208", + "209": "Community 209", + "210": "Community 210", + "211": "Community 211", + "212": "Community 212", + "213": "Community 213", + "214": "Community 214", + "215": "Community 215", + "216": "Community 216", + "217": "Community 217", + "218": "Community 218", + "219": "Community 219", + "220": "Community 220", + "221": "Community 221", + "222": "Community 222", + "223": "Community 223", + "224": "Community 224", + "225": "Community 225", + "226": "Community 226", + "227": "Community 227", + "228": "Community 228", + "229": "Community 229", + "230": "Community 230", + "231": "Community 231", + "232": "Community 232", + "233": "Community 233", + "234": "Community 234", + "235": "Community 235", + "236": "Community 236", + "237": "Community 237", + "238": "Community 238", + "239": "Community 239", + "240": "Community 240", + "241": "Community 241", + "242": "Community 242", + "243": "Community 243", + "244": "Community 244", + "245": "Community 245", + "246": "Community 246", + "247": "Community 247", + "248": "Community 248", + "249": "Community 249", + "250": "Community 250", + "251": "Community 251", + "252": "Community 252", + "253": "Community 253", + "254": "Community 254", + "255": "Community 255", + "256": "Community 256", + "257": "Community 257", + "258": "Community 258", + "259": "Community 259", + "260": "Community 260", + "261": "Community 261", + "262": "Community 262", + "263": "Community 263", + "264": "Community 264", + "265": "Community 265", + "266": "Community 266", + "267": "Community 267", + "268": "Community 268", + "269": "Community 269", + "270": "Community 270", + "271": "Community 271", + "272": "Community 272", + "273": "Community 273", + "274": "Community 274", + "275": "Community 275", + "276": "Community 276", + "277": "Community 277", + "278": "Community 278", + "279": "Community 279", + "280": "Community 280", + "281": "Community 281", + "282": "Community 282", + "283": "Community 283", + "284": "Community 284", + "285": "Community 285", + "286": "Community 286", + "287": "Community 287", + "288": "Community 288", + "289": "Community 289", + "290": "Community 290", + "291": "Community 291", + "292": "Community 292", + "293": "Community 293", + "294": "Community 294", + "295": "Community 295", + "296": "Community 296", + "297": "Community 297", + "298": "Community 298", + "299": "Community 299", + "300": "Community 300", + "301": "Community 301", + "302": "Community 302", + "303": "Community 303", + "304": "Community 304", + "305": "Community 305", + "306": "Community 306", + "307": "Community 307", + "308": "Community 308", + "309": "Community 309", + "310": "Community 310", + "311": "Community 311", + "312": "Community 312", + "313": "Community 313", + "314": "Community 314", + "315": "Community 315", + "316": "Community 316", + "317": "Community 317", + "318": "Community 318", + "319": "Community 319", + "320": "Community 320", + "321": "Community 321", + "322": "Community 322", + "323": "Community 323", + "324": "Community 324", + "325": "Community 325", + "326": "Community 326", + "327": "Community 327", + "328": "Community 328", + "329": "Community 329", + "330": "Community 330", + "331": "Community 331", + "332": "Community 332", + "333": "Community 333", + "334": "Community 334", + "335": "Community 335", + "336": "Community 336", + "337": "Community 337", + "338": "Community 338", + "339": "Community 339", + "340": "Community 340", + "341": "Community 341", + "342": "Community 342", + "343": "Community 343", + "344": "Community 344", + "345": "Community 345", + "346": "Community 346", + "347": "Community 347", + "348": "Community 348", + "349": "Community 349", + "350": "Community 350", + "351": "Community 351", + "352": "Community 352", + "353": "Community 353", + "354": "Community 354", + "355": "Community 355", + "356": "Community 356", + "357": "Community 357", + "358": "Community 358", + "359": "Community 359", + "360": "Community 360", + "361": "Community 361", + "362": "Community 362", + "363": "Community 363", + "364": "Community 364" +} diff --git a/graphify-out/.graphify_root b/graphify-out/.graphify_root new file mode 100644 index 0000000..fe0ffda --- /dev/null +++ b/graphify-out/.graphify_root @@ -0,0 +1 @@ +nobat724_front \ No newline at end of file diff --git a/graphify-out/GRAPH_REPORT.md b/graphify-out/GRAPH_REPORT.md new file mode 100644 index 0000000..640ae30 --- /dev/null +++ b/graphify-out/GRAPH_REPORT.md @@ -0,0 +1,578 @@ +# Graph Report - nobat724_front (2026-07-06) + +## Corpus Check +- 592 files · ~534,127 words +- Verdict: corpus is large enough that graph structure adds value. + +## Summary +- 2012 nodes · 1996 edges · 365 communities (336 shown, 29 thin omitted) +- Extraction: 95% EXTRACTED · 5% INFERRED · 0% AMBIGUOUS · INFERRED: 98 edges (avg confidence: 0.8) +- Token cost: 0 input · 0 output + +## Graph Freshness +- Built from commit: `fd5935a1` +- Run `git rev-parse HEAD` and compare to check if the graph is stale. +- Run `graphify update .` after code changes (no API cost). + +## Community Hubs (Navigation) +- [[_COMMUNITY_Community 0|Community 0]] +- [[_COMMUNITY_Community 1|Community 1]] +- [[_COMMUNITY_Community 2|Community 2]] +- [[_COMMUNITY_Community 3|Community 3]] +- [[_COMMUNITY_Community 4|Community 4]] +- [[_COMMUNITY_Community 5|Community 5]] +- [[_COMMUNITY_Community 6|Community 6]] +- [[_COMMUNITY_Community 7|Community 7]] +- [[_COMMUNITY_Community 8|Community 8]] +- [[_COMMUNITY_Community 9|Community 9]] +- [[_COMMUNITY_Community 10|Community 10]] +- [[_COMMUNITY_Community 11|Community 11]] +- [[_COMMUNITY_Community 12|Community 12]] +- [[_COMMUNITY_Community 13|Community 13]] +- [[_COMMUNITY_Community 14|Community 14]] +- [[_COMMUNITY_Community 15|Community 15]] +- [[_COMMUNITY_Community 16|Community 16]] +- [[_COMMUNITY_Community 17|Community 17]] +- [[_COMMUNITY_Community 18|Community 18]] +- [[_COMMUNITY_Community 19|Community 19]] +- [[_COMMUNITY_Community 20|Community 20]] +- [[_COMMUNITY_Community 21|Community 21]] +- [[_COMMUNITY_Community 22|Community 22]] +- [[_COMMUNITY_Community 23|Community 23]] +- [[_COMMUNITY_Community 24|Community 24]] +- [[_COMMUNITY_Community 25|Community 25]] +- [[_COMMUNITY_Community 26|Community 26]] +- [[_COMMUNITY_Community 27|Community 27]] +- [[_COMMUNITY_Community 28|Community 28]] +- [[_COMMUNITY_Community 29|Community 29]] +- [[_COMMUNITY_Community 30|Community 30]] +- [[_COMMUNITY_Community 31|Community 31]] +- [[_COMMUNITY_Community 32|Community 32]] +- [[_COMMUNITY_Community 33|Community 33]] +- [[_COMMUNITY_Community 34|Community 34]] +- [[_COMMUNITY_Community 35|Community 35]] +- [[_COMMUNITY_Community 36|Community 36]] +- [[_COMMUNITY_Community 37|Community 37]] +- [[_COMMUNITY_Community 38|Community 38]] +- [[_COMMUNITY_Community 39|Community 39]] +- [[_COMMUNITY_Community 40|Community 40]] +- [[_COMMUNITY_Community 41|Community 41]] +- [[_COMMUNITY_Community 42|Community 42]] +- [[_COMMUNITY_Community 43|Community 43]] +- [[_COMMUNITY_Community 44|Community 44]] +- [[_COMMUNITY_Community 45|Community 45]] +- [[_COMMUNITY_Community 46|Community 46]] +- [[_COMMUNITY_Community 47|Community 47]] +- [[_COMMUNITY_Community 48|Community 48]] +- [[_COMMUNITY_Community 49|Community 49]] +- [[_COMMUNITY_Community 50|Community 50]] +- [[_COMMUNITY_Community 51|Community 51]] +- [[_COMMUNITY_Community 52|Community 52]] +- [[_COMMUNITY_Community 53|Community 53]] +- [[_COMMUNITY_Community 54|Community 54]] +- [[_COMMUNITY_Community 55|Community 55]] +- [[_COMMUNITY_Community 56|Community 56]] +- [[_COMMUNITY_Community 57|Community 57]] +- [[_COMMUNITY_Community 58|Community 58]] +- [[_COMMUNITY_Community 59|Community 59]] +- [[_COMMUNITY_Community 60|Community 60]] +- [[_COMMUNITY_Community 61|Community 61]] +- [[_COMMUNITY_Community 62|Community 62]] +- [[_COMMUNITY_Community 63|Community 63]] +- [[_COMMUNITY_Community 64|Community 64]] +- [[_COMMUNITY_Community 65|Community 65]] +- [[_COMMUNITY_Community 66|Community 66]] +- [[_COMMUNITY_Community 67|Community 67]] +- [[_COMMUNITY_Community 68|Community 68]] +- [[_COMMUNITY_Community 69|Community 69]] +- [[_COMMUNITY_Community 70|Community 70]] +- [[_COMMUNITY_Community 71|Community 71]] +- [[_COMMUNITY_Community 72|Community 72]] +- [[_COMMUNITY_Community 73|Community 73]] +- [[_COMMUNITY_Community 74|Community 74]] +- [[_COMMUNITY_Community 75|Community 75]] +- [[_COMMUNITY_Community 76|Community 76]] +- [[_COMMUNITY_Community 77|Community 77]] +- [[_COMMUNITY_Community 78|Community 78]] +- [[_COMMUNITY_Community 79|Community 79]] +- [[_COMMUNITY_Community 80|Community 80]] +- [[_COMMUNITY_Community 81|Community 81]] +- [[_COMMUNITY_Community 82|Community 82]] +- [[_COMMUNITY_Community 83|Community 83]] +- [[_COMMUNITY_Community 84|Community 84]] +- [[_COMMUNITY_Community 85|Community 85]] +- [[_COMMUNITY_Community 86|Community 86]] +- [[_COMMUNITY_Community 87|Community 87]] +- [[_COMMUNITY_Community 88|Community 88]] +- [[_COMMUNITY_Community 89|Community 89]] +- [[_COMMUNITY_Community 90|Community 90]] +- [[_COMMUNITY_Community 91|Community 91]] +- [[_COMMUNITY_Community 92|Community 92]] +- [[_COMMUNITY_Community 93|Community 93]] +- [[_COMMUNITY_Community 94|Community 94]] +- [[_COMMUNITY_Community 95|Community 95]] +- [[_COMMUNITY_Community 96|Community 96]] +- [[_COMMUNITY_Community 97|Community 97]] +- [[_COMMUNITY_Community 98|Community 98]] +- [[_COMMUNITY_Community 99|Community 99]] +- [[_COMMUNITY_Community 100|Community 100]] +- [[_COMMUNITY_Community 101|Community 101]] +- [[_COMMUNITY_Community 102|Community 102]] +- [[_COMMUNITY_Community 103|Community 103]] +- [[_COMMUNITY_Community 104|Community 104]] +- [[_COMMUNITY_Community 105|Community 105]] +- [[_COMMUNITY_Community 106|Community 106]] +- [[_COMMUNITY_Community 107|Community 107]] +- [[_COMMUNITY_Community 108|Community 108]] +- [[_COMMUNITY_Community 109|Community 109]] +- [[_COMMUNITY_Community 110|Community 110]] +- [[_COMMUNITY_Community 111|Community 111]] +- [[_COMMUNITY_Community 112|Community 112]] +- [[_COMMUNITY_Community 113|Community 113]] +- [[_COMMUNITY_Community 116|Community 116]] +- [[_COMMUNITY_Community 118|Community 118]] +- [[_COMMUNITY_Community 119|Community 119]] +- [[_COMMUNITY_Community 120|Community 120]] +- [[_COMMUNITY_Community 121|Community 121]] +- [[_COMMUNITY_Community 122|Community 122]] +- [[_COMMUNITY_Community 124|Community 124]] +- [[_COMMUNITY_Community 195|Community 195]] +- [[_COMMUNITY_Community 339|Community 339]] +- [[_COMMUNITY_Community 347|Community 347]] +- [[_COMMUNITY_Community 348|Community 348]] + +## God Nodes (most connected - your core abstractions) +1. `getStateInfo()` - 23 edges +2. `🏥 نوبت724 (Nobat724) - سیستم نوبت‌دهی آنلاین پزشکی` - 19 edges +3. `imageUrl()` - 15 edges +4. `Dashboard()` - 10 edges +5. `بهینه‌سازی SEO تک‌تک شهرها در city.json (سطح حرفه‌ای)` - 10 edges +6. `بازطراحی حرفه‌ای پوستر اشتراک‌گذاری پزشک (دانلود)` - 10 edges +7. `وظایف` - 10 edges +8. `وظایف` - 10 edges +9. `وظایف` - 10 edges +10. `Architecture Overview` - 10 edges + +## Surprising Connections (you probably didn't know these) +- `AboutUsPage()` --calls--> `getStateInfo()` [INFERRED] + components/aboutUs/index.js → lib/getStateInfo.js +- `ContactUsPage()` --calls--> `getStateInfo()` [INFERRED] + components/contactUs/index.js → lib/getStateInfo.js +- `SearchBar()` --calls--> `getStateInfo()` [INFERRED] + components/home/search/index.js → lib/getStateInfo.js +- `StLayout()` --calls--> `getStateInfo()` [INFERRED] + components/layout/StLayout.js → lib/getStateInfo.js +- `generateMetadata()` --calls--> `getStateInfo()` [INFERRED] + app/about-us/page.js → lib/getStateInfo.js + +## Import Cycles +- None detected. + +## Communities (365 total, 29 thin omitted) + +### Community 0 - "Community 0" +Cohesion: 0.05 +Nodes (27): BgGray(), ButtonMenu(), Col(), ModalLogout(), Footer(), head, LogoNamad(), Namads (+19 more) + +### Community 1 - "Community 1" +Cohesion: 0.07 +Nodes (23): Head(), Head(), HeadTab(), convertTimestampToJalali(), convertTimestampToTime(), ButtonData(), DetailLg(), DetailSm() (+15 more) + +### Community 2 - "Community 2" +Cohesion: 0.04 +Nodes (45): dependencies, aos, axios, @casl/ability, @casl/react, date-fns, dayjs, @emotion/cache (+37 more) + +### Community 3 - "Community 3" +Cohesion: 0.06 +Nodes (21): ClinicsPage(), ProvinceContext, ProvinceProvider(), Probe(), useProvince(), Content(), Form(), SubmitData() (+13 more) + +### Community 4 - "Community 4" +Cohesion: 0.07 +Nodes (21): ContentDetail(), About(), ListBime(), Services(), Specialties(), TextDetail(), listTab, AddComment() (+13 more) + +### Community 5 - "Community 5" +Cohesion: 0.08 +Nodes (18): AppointmentList(), ItemAppointment(), AboutDcotor(), DetailDoctor(), Link(), listLink, List(), VAZIR_WEIGHTS (+10 more) + +### Community 6 - "Community 6" +Cohesion: 0.07 +Nodes (16): Dashboard(), metadata, defineAbilitiesFor(), getUser(), formatToman(), rialToToman(), buildPatientUser(), safeJsonParse() (+8 more) + +### Community 8 - "Community 8" +Cohesion: 0.07 +Nodes (28): devDependencies, babel-plugin-react-compiler, cross-env, eslint, eslint-config-next, @eslint/eslintrc, jsdom, prettier (+20 more) + +### Community 9 - "Community 9" +Cohesion: 0.07 +Nodes (27): `app/appointment/[doctorId]/page.js`, `app/component/date/dateTime/hours/List.js`, `app/component/date/dateTime/index.js`, `components/appointment/detail/SubmitData.js`, `components/appointment/index.js` (خواندن پروفایل), `components/appointment/paying/index.js`, `services/response.js`, بازنویسی صفحه‌ی گرفتن نوبت (`/appointment/[doctorId]`) برای هم‌خوانی با API واقعی (+19 more) + +### Community 10 - "Community 10" +Cohesion: 0.08 +Nodes (25): زمینه, فایل‌های مرتبط, مشکل / هدف, ممیزی و رفع کامل Technical SEO با محوریت معماری چند-دامنه‌ای, نقش, نکات مهم, وضعیت فعلی (یافته‌های ممیزی اولیه — از کد واقعی), وظایف (+17 more) + +### Community 11 - "Community 11" +Cohesion: 0.13 +Nodes (10): Container(), Content(), defaultData, Date(), Hour(), Address(), Head(), Location() (+2 more) + +### Community 12 - "Community 12" +Cohesion: 0.10 +Nodes (20): `app/doctors/page.js` (باگ نوع), `app/specialties/page.js`, `components/doctors/index.js` (باگ نوع در defaultFilter), `context/ProvinceProvider.js`, `lib/getStateInfo.js`, `services/response.js` (بدون تغییر — فقط برای مرجع), دامنهٔ ریشهٔ nobat724.com نباید مثل «شهر» رفتار کند, زمینه (+12 more) + +### Community 13 - "Community 13" +Cohesion: 0.10 +Nodes (20): `app/doctor/[slug]/page.js` — دو فراخوانی تکراری, `app/doctors/page.js` — بدون og:images، بدون cache, `lib/req.js` — مشکل اصلی caching, `middleware.js` — اجرا روی همه مسیرها, بازبینی کامل Rendering Strategy، SEO، Performance و امنیت (Next.js 15), زمینه, فایل‌های مرتبط, نکات مهم (+12 more) + +### Community 14 - "Community 14" +Cohesion: 0.15 +Nodes (10): Call(), Links(), Connect(), ContentContact(), FieldLabel(), ContactUsPage(), ArrowLeftC(), CallC() (+2 more) + +### Community 15 - "Community 15" +Cohesion: 0.14 +Nodes (10): Chart(), ProgressAll(), fallbackLabels, ProgressDetail(), Form(), Content(), Rates(), numberToArStyle() (+2 more) + +### Community 16 - "Community 16" +Cohesion: 0.14 +Nodes (10): Head(), AboutUsPage(), ourServices, Services(), SearchBar(), TickOrangeA(), UnderlineLG(), ButtonFilter() (+2 more) + +### Community 17 - "Community 17" +Cohesion: 0.11 +Nodes (18): باگ ۱ — شماره موبایل با `09` اضافی, باگ ۲ — redirect به `/login` بعد از refresh صفحه, زمینه, علت, علت احتمالی, فایل‌های مرتبط, فیکس, فیکس دو باگ در فلو login (+10 more) + +### Community 18 - "Community 18" +Cohesion: 0.11 +Nodes (17): بهینه‌سازی SEO تک‌تک شهرها در city.json (سطح حرفه‌ای), زمینه, فایل‌های مرتبط, فهرست ۳۴ رکورد (همه باید پردازش شوند), مشکل / هدف, نقش, نکات مهم, وضعیت فعلی (+9 more) + +### Community 19 - "Community 19" +Cohesion: 0.11 +Nodes (17): باگ ۱ — SubmitData: خواندن نتیجه‌ی نوبت, باگ ۲ — paying: frontend_address و config, باگ ۳ — payment/[uuid]/page.js, رفع جریان پرداخت و اطلاعات حساب در نوبت‌گیری آنلاین, زمینه, فایل‌های مرتبط, مشکل / هدف, نکات مهم (+9 more) + +### Community 20 - "Community 20" +Cohesion: 0.11 +Nodes (17): ارتقای Next.js از 15 به 16 (آخرین نسخه) + فعال‌سازی امکانات جدید, زمینه, فایل‌های مرتبط, مشکل / هدف, نکات مهم, وضعیت فعلی, وظایف, پروژه (+9 more) + +### Community 21 - "Community 21" +Cohesion: 0.24 +Nodes (14): getCurrentDomain(), robots(), cityFilterParams(), fetchAllPages(), getBlogUrls(), getCityScope(), getClinicUrls(), getCurrentDomain() (+6 more) + +### Community 22 - "Community 22" +Cohesion: 0.12 +Nodes (16): `app/appointment/[doctorId]/page.js` — disabledDates خالی, `app/component/date/datePicker/index.js` — مصرف disabledDates, `services/response.js` — توابع slot موجود, زمینه, فایل‌های مرتبط, قرارداد endpoint جدید backend (مرجع), مشکل / هدف, نمایش روزهای تعطیل/غیرقابل‌انتخاب روی تقویم صفحه‌ی نوبت + احترام به بازه‌ی رزرو (+8 more) + +### Community 23 - "Community 23" +Cohesion: 0.12 +Nodes (16): `detail/index.js` — دکمه‌ی mock «برای فرد دیگر», `paying/index.js` — تایمر محلی ۶۰۰ ثانیه (قلابی), `SubmitData.js` — بدنه‌ی نوبت بدون بیمار, زمینه, فایل‌های مرتبط, فلوی نوبت‌گیری: قفل واقعی ۱۵دقیقه‌ای، فرم «نوبت برای شخص دیگر»، و UX وضعیت‌محور, قرارداد backend (بعد از اجرای پرامپت همتا), مشکل / هدف (+8 more) + +### Community 24 - "Community 24" +Cohesion: 0.12 +Nodes (16): اتصال پنل نماینده و داشبورد کاربر به API واقعی (حذف داده‌های mock), داشبورد کاربر: کاملاً mock, زمینه, فایل‌های مرتبط, لایه‌ی API موجود (در `services/response.js`), مشکل / هدف, نکات مهم, وضعیت فعلی (+8 more) + +### Community 25 - "Community 25" +Cohesion: 0.12 +Nodes (16): `app/dashboard/page.js` (تبدیل دستی ناهماهنگ), `app/payment/[uuid]/page.js`, `components/appointment/paying/index.js`, زمینه, فایل‌های مرتبط, مشکل / هدف, نکات مهم, واحد پول = تومان در سایت عمومی (نمایش ÷۱۰ / ورودی ×۱۰) — API ریال می‌ماند (+8 more) + +### Community 26 - "Community 26" +Cohesion: 0.12 +Nodes (16): بازطراحی حرفه‌ای پوستر اشتراک‌گذاری پزشک (دانلود), داده‌های در دسترس, زمینه, فایل‌های مرتبط, نقش, نکات مهم, هدف, وضعیت فعلی (+8 more) + +### Community 27 - "Community 27" +Cohesion: 0.12 +Nodes (16): `app/dashboard/page.js`, `Head.js`, `services/response.js` — URLهای ناموجود, رفع باگ‌های داشبورد کاربر: کوکی uuid اشتباه، URL غلط نوبت‌ها/پرداخت‌ها، و crash هدر, ریشه‌ی اصلی کوکی `uuid`, زمینه, فایل‌های مرتبط, نکات مهم (+8 more) + +### Community 28 - "Community 28" +Cohesion: 0.12 +Nodes (16): دیپلوی nobat724_front روی Liara (پلتفرم Next.js), زمینه, فایل‌های مرتبط, مشکل / هدف, نکات مهم, وضعیت فعلی, وظایف, پروژه (+8 more) + +### Community 29 - "Community 29" +Cohesion: 0.13 +Nodes (8): generateMetadata(), generateMetadata(), Appointment(), metadata, getStateInfo(), ContentLogin(), generateMetadata(), Specialties() + +### Community 30 - "Community 30" +Cohesion: 0.12 +Nodes (15): اتصال دقیق همه‌ی تب‌های داشبورد کاربر به داده‌ی واقعی backend, ذخیره در `detailUser/index.js`, زمینه, فایل‌های مرتبط, قرارداد backend (از `user-profile.md` و entity `toArray`), مشکل / هدف, مپینگ غلط بیمه در `information/index.js`, نکات مهم (+7 more) + +### Community 31 - "Community 31" +Cohesion: 0.12 +Nodes (15): `components/doctor/detailDoctor/List.js` (بخش دانلود), `components/doctor/poster/ImageProfile.js`, `components/doctor/poster/QrImg.js` (خلاصه), رفع مشکل عکس نادرست در پوستر دانلودی صفحه پزشک (اشتراک‌گذاری), زمینه, فایل‌های مرتبط, مشکل / هدف, نکات مهم (+7 more) + +### Community 32 - "Community 32" +Cohesion: 0.12 +Nodes (15): باگ ۱ — مودال شهر/استان دیر بسته می‌شود, باگ ۲ — دسته‌بندی کار نمی‌کند, باگ ۳ — کندی کلی, زمینه, فایل‌های مرتبط, فیکس کندی و باگ‌های فیلتر صفحه پزشکان, نکات مهم, وضعیت فعلی (+7 more) + +### Community 33 - "Community 33" +Cohesion: 0.12 +Nodes (15): راه‌اندازی تست و نوشتن تست‌سوئیت برای سایت عمومی (nobat724_front), زمینه, فایل‌های مرتبط, مشکل / هدف, نکات مهم, وضعیت فعلی, وظایف, پروژه (+7 more) + +### Community 34 - "Community 34" +Cohesion: 0.18 +Nodes (7): Tabs(), listTab, nameHours, SendAppo(), Hours(), List(), Loading() + +### Community 35 - "Community 35" +Cohesion: 0.13 +Nodes (14): تطبیق سایت عمومی با تغییرات API برنچ `backend-audit`, تغییر, جدول تغییرات API مرتبط با سایت عمومی, رفتار جدید backend, زمینه, 🔴 مشکل اصلی: rotation توکن refresh (`POST /oauth/token/refresh`), نکات مهم, وضعیت فعلی (`app/doctor/[slug]/page.js`) (+6 more) + +### Community 36 - "Community 36" +Cohesion: 0.13 +Nodes (14): `app/doctor/[slug]/page.js` — schema فعلی (ناقص), `app/sitemap.js` — فعلاً یک فایل واحد, SEO پیشرفته صفحه پزشک: Schema کامل، Sitelinks، Knowledge Panel، Local SEO, زمینه, فایل‌های مرتبط, مشکل / هدف, نکات مهم, وضعیت فعلی (+6 more) + +### Community 37 - "Community 37" +Cohesion: 0.13 +Nodes (14): `app/component/ItemDoctor.js` (حوالی خط ۸۴), `components/doctor/appointmentList/index.js` (نوار موبایل، خط ۱۶–۳۴), `components/doctor/appointmentList/ItemAppointment.js` (خط ۳۶–۵۸), رفع نمایش نوبت آزاد و دکمه نوبت برای پزشک با نوبت‌دهی غیرفعال, زمینه, فایل‌های مرتبط, مشکل / هدف, نکات مهم (+6 more) + +### Community 38 - "Community 38" +Cohesion: 0.13 +Nodes (14): `header/Content.js` — تصمیم فقط بر اساس prop سرور, `StLayout.js` — مقدار اولیه از کوکی سرور, رفع نمایش «ورود | ثبت‌نام» در هدر با وجود لاگین‌بودن کاربر, زمینه, فایل‌های مرتبط, مشکل / هدف, نکات مهم, وضعیت فعلی (کد واقعی) (+6 more) + +### Community 39 - "Community 39" +Cohesion: 0.14 +Nodes (12): Architecture Overview, Authentication & Authorization, Commands, Data Fetching, Doctor & Clinic Slugs, Environment Variables, JSON-LD Structured Data, Key Data Files (+4 more) + +### Community 40 - "Community 40" +Cohesion: 0.22 +Nodes (9): Field(), Form(), Content(), DateBirthday(), blood_group, gender, job, marital_status (+1 more) + +### Community 41 - "Community 41" +Cohesion: 0.14 +Nodes (13): `SendReq.js` → `getInfo` (باگ‌دار), رفع ماندن صفحه‌ی لاگین بعد از وارد کردن کد OTP (نشست ساخته نمی‌شود), زمینه, فایل‌های مرتبط, قرارداد واقعی `GET /oauth/userinfo` (از `clinicpro/docs/api/auth.md`), مشکل / هدف, نکات مهم, وضعیت فعلی (کد واقعی) (+5 more) + +### Community 42 - "Community 42" +Cohesion: 0.14 +Nodes (13): اتصال UI غنیِ نظرات/امتیاز صفحه پزشک به قرارداد جدید بک‌اند, زمینه, فایل‌های مرتبط (UI موجود که باید وصل شود), قرارداد بک‌اند (مرجع — از پرامپت همتا), نکات مهم, وظایف, پروژه, ۱. fetch تجمیع امتیاز در صفحه و عبور prop (+5 more) + +### Community 43 - "Community 43" +Cohesion: 0.14 +Nodes (13): `components/appointment/index.js` — هندل ویژه‌ی 404, `SubmitData.js` — انتخاب POST یا PATCH بر اساس وجود `uuid`, زمینه, فایل‌های مرتبط, مشکل / هدف, نکات مهم, هم‌خوان‌کردن مصرف پروفایل کاربر با endpoint اصلاح‌شده (بدون 404 برای کاربر جدید), وضعیت فعلی (کد واقعی) (+5 more) + +### Community 44 - "Community 44" +Cohesion: 0.14 +Nodes (13): `hours/List.js`, آبجکت اسلات (از `adaptSlots` / API), تأیید و سخت‌سازی غیرفعال‌بودن اسلات‌های گذشته در صفحه‌ی نوبت, زمینه, فایل‌های مرتبط, مشکل / هدف, نکات مهم, وضعیت فعلی (کد واقعی) (+5 more) + +### Community 45 - "Community 45" +Cohesion: 0.26 +Nodes (11): generateMetadata(), generateMetadata(), RootLayout(), imageUrl(), normalizeBlog(), safeJsonLd(), Blog(), Clinic() (+3 more) + +### Community 46 - "Community 46" +Cohesion: 0.22 +Nodes (6): Messages(), Message(), Head(), listTab, UserAccountPage(), NotfoundDashboard() + +### Community 47 - "Community 47" +Cohesion: 0.15 +Nodes (12): Schema.org کامل و Knowledge Panel برای صفحه کلینیک, زمینه, فایل‌های مرتبط, مشکل / هدف, نکات مهم, وضعیت فعلی API کلینیک, وظایف, پروژه (+4 more) + +### Community 48 - "Community 48" +Cohesion: 0.15 +Nodes (12): زمینه, سخت‌سازی امنیتی سایت عمومی: ذخیره‌ی توکن، XSS، هدرها، client_secret, فایل‌های مرتبط, مشکل / هدف, نکات مهم, وضعیت فعلی (کد واقعی), وظایف, پروژه (+4 more) + +### Community 49 - "Community 49" +Cohesion: 0.15 +Nodes (12): جریان پرداخت سمت کلاینت — انتقال از طریق بک‌اند + صفحات نتیجه (Frontend), زمینه, فایل‌های مرتبط, مشکل / هدف, نکات مهم, وضعیت فعلی, وظایف, پروژه (+4 more) + +### Community 50 - "Community 50" +Cohesion: 0.15 +Nodes (12): زمینه, فایل‌های مرتبط, مشکل / هدف, نمایش تعداد پزشکان هر تخصص در صفحه /specialties, نکات مهم, وضعیت فعلی (کد واقعی), وظایف, پروژه (+4 more) + +### Community 51 - "Community 51" +Cohesion: 0.19 +Nodes (9): Card(), PAYMENT_STATUS, TYPE_LABELS, Head(), listTab, Transactions(), List(), PAYMENT_STATUS (+1 more) + +### Community 52 - "Community 52" +Cohesion: 0.24 +Nodes (5): OTPForm(), ArrowRightS(), EditLogin(), Recode(), SendReq() + +### Community 53 - "Community 53" +Cohesion: 0.17 +Nodes (11): اصلاح جریان پرداخت: انتخاب فقط درگاه‌های فعالِ بک‌اند + بازگشت به دامنه مبدأ, زمینه, فایل‌های مرتبط, مشکل / هدف, نکات مهم, وضعیت فعلی, وظایف, پروژه (+3 more) + +### Community 54 - "Community 54" +Cohesion: 0.17 +Nodes (11): entry پرداخت به‌صورت ریدایرکت خالص به Backend (بدون XHR) — سایت عمومی, زمینه, فایل‌های مرتبط, مشکل / هدف, نکات مهم, وضعیت فعلی, وظایف, پروژه (+3 more) + +### Community 55 - "Community 55" +Cohesion: 0.27 +Nodes (5): Field(), ItemUser(), Replies(), SendAnswer(), timeAgo() + +### Community 56 - "Community 56" +Cohesion: 0.27 +Nodes (5): DoctorAvatar(), getInitials(), CircularLoading(), CustomLoading(), TextLoading() + +### Community 57 - "Community 57" +Cohesion: 0.18 +Nodes (10): اصلاح فیلدهای «جزئیات نوبت» در داشبورد, زمینه, فایل‌های مرتبط, مشکل / هدف, نکات مهم, وضعیت فعلی (کد واقعی — هر دو فایل مشابه), وظایف, پروژه (+2 more) + +### Community 58 - "Community 58" +Cohesion: 0.18 +Nodes (10): اجباری‌کردن فیلدهای اطلاعات حساب کاربری در صفحه نوبت‌گیری, زمینه, فایل‌های مرتبط, مشکل / هدف, نکات مهم, وضعیت فعلی (کد واقعی), وظایف, پروژه (+2 more) + +### Community 59 - "Community 59" +Cohesion: 0.18 +Nodes (10): انتخاب تاریخ تولد به‌صورت مرحله‌ای: سال ← ماه ← روز, زمینه, فایل‌های مرتبط, مشکل / هدف, نکات مهم, وضعیت فعلی (کد واقعی), وظایف, پروژه (+2 more) + +### Community 60 - "Community 60" +Cohesion: 0.18 +Nodes (10): ارسال city_id دامنه‌ی جاری هنگام رزرو نوبت, زمینه, فایل‌های مرتبط, مشکل / هدف, نکات مهم, وضعیت فعلی, وظایف, پروژه (+2 more) + +### Community 61 - "Community 61" +Cohesion: 0.18 +Nodes (10): رفع فیلتر وضعیت در «نوبت‌های من» (نوبت ثبت‌شده نمایش داده نمی‌شود), زمینه, فایل‌های مرتبط, مشکل / هدف, نکات مهم, وضعیت فعلی (کد واقعی), وظایف, پروژه (+2 more) + +### Community 62 - "Community 62" +Cohesion: 0.18 +Nodes (10): ارسال دامنه‌ی شهر همراه درخواست کد تأیید (برای اسم سایت در پیامک OTP), زمینه, فایل‌های مرتبط, مشکل / هدف, نکات مهم, وضعیت فعلی, وظایف, پروژه (+2 more) + +### Community 63 - "Community 63" +Cohesion: 0.18 +Nodes (10): 🔧 Troubleshooting, 👥 تیم توسعه, 📁 ساختار پروژه, 📋 فهرست مطالب, مشکلات رایج, 🎯 معرفی پروژه, 📚 منابع مفید, 🏥 نوبت724 (Nobat724) - سیستم نوبت‌دهی آنلاین پزشکی (+2 more) + +### Community 64 - "Community 64" +Cohesion: 0.33 +Nodes (6): Crop(), createImage(), cropImage(), dataURLtoFile(), getCroppedImg(), ModalUpload() + +### Community 65 - "Community 65" +Cohesion: 0.29 +Nodes (5): CustomToastify(), viewport, Providers(), ThemeRegistry(), theme + +### Community 66 - "Community 66" +Cohesion: 0.36 +Nodes (4): fixedIconData, nextIconData, prevIconData, LoadingDate() + +### Community 67 - "Community 67" +Cohesion: 0.29 +Nodes (4): FrequentSearches(), TextHeader(), AText(), BText() + +### Community 68 - "Community 68" +Cohesion: 0.27 +Nodes (6): clearRefreshCookie(), cookieDomain(), setRefreshCookie(), POST(), POST(), POST() + +### Community 69 - "Community 69" +Cohesion: 0.20 +Nodes (9): رفع جهت تبدیل تاریخ تولد هنگام ایجاد پروفایل, زمینه, فایل‌های مرتبط, مشکل / هدف, نکات مهم, وضعیت فعلی (کد واقعی), وظایف, پروژه (+1 more) + +### Community 70 - "Community 70" +Cohesion: 0.25 +Nodes (7): Clinics(), FILTER_KEYS, generateMetadata(), listingRobots(), buildClinicParams(), axiosInstance, fetchReq() + +### Community 71 - "Community 71" +Cohesion: 0.22 +Nodes (7): degree, Form(), gender, degree, Form(), gender, filterList() + +### Community 72 - "Community 72" +Cohesion: 0.46 +Nodes (7): generateMetadata(), buildCanonicalPath(), buildCanonicalUrl(), buildMainCanonicalUrl(), getCanonicalUrl(), getRequestOrigin(), normalizeHost() + +### Community 73 - "Community 73" +Cohesion: 0.32 +Nodes (3): getStateInfoClient(), AddressSelector(), Content() + +### Community 74 - "Community 74" +Cohesion: 0.38 +Nodes (3): listSort, ArrowBottomD(), SortD() + +### Community 75 - "Community 75" +Cohesion: 0.29 +Nodes (7): Authentication & Authorization, Development Tools, Frontend Framework, State Management & Data Fetching, UI/UX, 🏗️ معماری و تکنولوژی, کتابخانه‌های تخصصی + +### Community 76 - "Community 76" +Cohesion: 0.40 +Nodes (3): Allergies(), ItemAllergie(), ModalAddAlergie() + +### Community 79 - "Community 79" +Cohesion: 0.40 +Nodes (3): FamilyHistory(), ItemHistory(), ModalAddHistory() + +### Community 81 - "Community 81" +Cohesion: 0.40 +Nodes (3): Medications(), ItemMedication(), ModalAddMedications() + +### Community 82 - "Community 82" +Cohesion: 0.40 +Nodes (3): ModalAddRelatives(), Relatives(), ItemRelatives() + +### Community 83 - "Community 83" +Cohesion: 0.40 +Nodes (3): ModalAddSurgeries(), Surgeries(), ItemSurgeries() + +### Community 85 - "Community 85" +Cohesion: 0.53 +Nodes (3): setNewData(), DetailUser(), Disease() + +### Community 86 - "Community 86" +Cohesion: 0.40 +Nodes (5): Doctors(), FILTER_KEYS, generateMetadata(), listingRobots(), buildDoctorParams() + +### Community 87 - "Community 87" +Cohesion: 0.33 +Nodes (6): 1. افزودن صفحه جدید, 2. افزودن API Endpoint جدید, 3. افزودن کامپوننت جدید, 4. کار با تاریخ شمسی, 5. استفاده از Context, 📝 نکات توسعه + +### Community 89 - "Community 89" +Cohesion: 0.70 +Nodes (4): generateMetadata(), Doctor(), getDoctor, getDoctorAddresses + +### Community 90 - "Community 90" +Cohesion: 0.50 +Nodes (4): buildDays(), InlineJalaliMonth(), MONTHS, WEEKDAYS + +### Community 92 - "Community 92" +Cohesion: 0.40 +Nodes (4): footerL, footerR, frequentSearches, listNav + +### Community 93 - "Community 93" +Cohesion: 0.40 +Nodes (5): 1. Multi-Domain Architecture, 2. سیستم احراز هویت, 3. سیستم رزرو نوبت, 4. پنل مدیریتی, ✨ ویژگی‌های کلیدی + +### Community 94 - "Community 94" +Cohesion: 0.40 +Nodes (5): Build Production, 🐳 Deployment, Docker Compose, Docker Deployment, متغیرهای محیطی مورد نیاز + +### Community 95 - "Community 95" +Cohesion: 0.40 +Nodes (5): اسکریپت‌های موجود, راه‌اندازی با Docker, 🚀 راه‌اندازی پروژه, نصب و راه‌اندازی, پیش‌نیازها + +### Community 96 - "Community 96" +Cohesion: 0.40 +Nodes (5): صفحات احراز هویت, صفحات رزرو نوبت, صفحات عمومی (Public), 📍 مسیرها و صفحات, پنل مدیریتی (Protected) + +### Community 102 - "Community 102" +Cohesion: 0.50 +Nodes (3): compilerOptions, paths, @/* + +### Community 104 - "Community 104" +Cohesion: 0.50 +Nodes (4): API Endpoints (`services/response.js`), 🔌 API و سرویس‌ها, Helper Functions (`helper/index.js`), تنظیمات Axios (`services/api.js`) + +### Community 105 - "Community 105" +Cohesion: 0.50 +Nodes (4): Cookies استفاده شده, 🔐 احراز هویت و مجوزها, فرآیند ورود, محافظت از مسیرها + +### Community 106 - "Community 106" +Cohesion: 0.50 +Nodes (4): Dark Mode, Material-UI Theme, Tailwind CSS, 🎨 استایل‌دهی + +### Community 107 - "Community 107" +Cohesion: 0.50 +Nodes (4): Metadata داینامیک بر اساس شهر, ساختار دامنه‌ها, 🌐 سیستم Multi-Domain, فرآیند تشخیص شهر + +### Community 122 - "Community 122" +Cohesion: 0.67 +Nodes (3): Feature Components, Layout Components, 🧩 کامپوننت‌های اصلی + +## Knowledge Gaps +- **668 isolated node(s):** `metadata`, `FILTER_KEYS`, `fallbackLabels`, `MaterialUISwitch`, `fixedIconData` (+663 more) + These have ≤1 connection - possible missing edges or undocumented components. +- **29 thin communities (<3 nodes) omitted from report** — run `graphify query` to explore isolated nodes. + +## Suggested Questions +_Questions this graph is uniquely positioned to answer:_ + +- **Why does `getStateInfo()` connect `Community 29` to `Community 0`, `Community 67`, `Community 3`, `Community 70`, `Community 6`, `Community 72`, `Community 45`, `Community 14`, `Community 16`, `Community 86`, `Community 89`?** + _High betweenness centrality (0.040) - this node is a cross-community bridge._ +- **Why does `imageUrl()` connect `Community 45` to `Community 0`, `Community 1`, `Community 99`, `Community 4`, `Community 7`, `Community 55`, `Community 56`, `Community 89`?** + _High betweenness centrality (0.039) - this node is a cross-community bridge._ +- **Why does `Dashboard()` connect `Community 6` to `Community 29`, `Community 70`?** + _High betweenness centrality (0.015) - this node is a cross-community bridge._ +- **Are the 22 inferred relationships involving `getStateInfo()` (e.g. with `generateMetadata()` and `AboutUsPage()`) actually correct?** + _`getStateInfo()` has 22 INFERRED edges - model-reasoned connections that need verification._ +- **Are the 14 inferred relationships involving `imageUrl()` (e.g. with `generateMetadata()` and `generateMetadata()`) actually correct?** + _`imageUrl()` has 14 INFERRED edges - model-reasoned connections that need verification._ +- **What connects `metadata`, `FILTER_KEYS`, `fallbackLabels` to the rest of the system?** + _668 weakly-connected nodes found - possible documentation gaps or missing edges._ +- **Should `Community 0` be split into smaller, more focused modules?** + _Cohesion score 0.05263157894736842 - nodes in this community are weakly interconnected._ \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/01769376a658f7bf4c1c2ad9349b00581d485f9b199f48871b79333430847f0e.json b/graphify-out/cache/ast/v0.8.44/01769376a658f7bf4c1c2ad9349b00581d485f9b199f48871b79333430847f0e.json new file mode 100644 index 0000000..c720c49 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/01769376a658f7bf4c1c2ad9349b00581d485f9b199f48871b79333430847f0e.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_fix_doctor_free_turn_disabled_md", "label": "fix-doctor-free-turn-disabled.md", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "source_location": "L1"}, {"id": "prompt_fix_doctor_free_turn_disabled_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0648\u0628\u062a_\u0622\u0632\u0627\u062f_\u0648_\u062f\u06a9\u0645\u0647_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0627_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644", "label": "\u0631\u0641\u0639 \u0646\u0645\u0627\u06cc\u0634 \u0646\u0648\u0628\u062a \u0622\u0632\u0627\u062f \u0648 \u062f\u06a9\u0645\u0647 \u0646\u0648\u0628\u062a \u0628\u0631\u0627\u06cc \u067e\u0632\u0634\u06a9 \u0628\u0627 \u0646\u0648\u0628\u062a\u200c\u062f\u0647\u06cc \u063a\u06cc\u0631\u0641\u0639\u0627\u0644", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "source_location": "L1"}, {"id": "prompt_fix_doctor_free_turn_disabled_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "source_location": "L3"}, {"id": "prompt_fix_doctor_free_turn_disabled_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "source_location": "L7"}, {"id": "prompt_fix_doctor_free_turn_disabled_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "source_location": "L15"}, {"id": "prompt_fix_doctor_free_turn_disabled_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "source_location": "L21"}, {"id": "prompt_fix_doctor_free_turn_disabled_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "source_location": "L29"}, {"id": "prompt_fix_doctor_free_turn_disabled_app_component_itemdoctor_js_\u062d\u0648\u0627\u0644\u06cc_\u062e\u0637_\u06f8\u06f4", "label": "`app/component/ItemDoctor.js` (\u062d\u0648\u0627\u0644\u06cc \u062e\u0637 \u06f8\u06f4)", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "source_location": "L31"}, {"id": "prompt_fix_doctor_free_turn_disabled_components_doctor_appointmentlist_itemappointment_js_\u062e\u0637_\u06f3\u06f6_\u06f5\u06f8", "label": "`components/doctor/appointmentList/ItemAppointment.js` (\u062e\u0637 \u06f3\u06f6\u2013\u06f5\u06f8)", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "source_location": "L47"}, {"id": "prompt_fix_doctor_free_turn_disabled_components_doctor_appointmentlist_index_js_\u0646\u0648\u0627\u0631_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062e\u0637_\u06f1\u06f6_\u06f3\u06f4", "label": "`components/doctor/appointmentList/index.js` (\u0646\u0648\u0627\u0631 \u0645\u0648\u0628\u0627\u06cc\u0644\u060c \u062e\u0637 \u06f1\u06f6\u2013\u06f3\u06f4)", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "source_location": "L76"}, {"id": "prompt_fix_doctor_free_turn_disabled_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "source_location": "L92"}, {"id": "prompt_fix_doctor_free_turn_disabled_\u06f1_\u06a9\u0627\u0631\u062a_\u0644\u06cc\u0633\u062a_app_component_itemdoctor_js", "label": "\u06f1. \u06a9\u0627\u0631\u062a \u0644\u06cc\u0633\u062a \u2014 `app/component/ItemDoctor.js`", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "source_location": "L94"}, {"id": "prompt_fix_doctor_free_turn_disabled_\u06f2_\u0628\u0627\u06a9\u0633_\u062f\u0633\u06a9\u062a\u0627\u067e_components_doctor_appointmentlist_itemappointment_js", "label": "\u06f2. \u0628\u0627\u06a9\u0633 \u062f\u0633\u06a9\u062a\u0627\u067e \u2014 `components/doctor/appointmentList/ItemAppointment.js`", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "source_location": "L105"}, {"id": "prompt_fix_doctor_free_turn_disabled_\u06f3_\u0646\u0648\u0627\u0631_\u0645\u0648\u0628\u0627\u06cc\u0644_components_doctor_appointmentlist_index_js", "label": "\u06f3. \u0646\u0648\u0627\u0631 \u0645\u0648\u0628\u0627\u06cc\u0644 \u2014 `components/doctor/appointmentList/index.js`", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "source_location": "L139"}, {"id": "prompt_fix_doctor_free_turn_disabled_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "source_location": "L166"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_fix_doctor_free_turn_disabled_md", "target": "prompt_fix_doctor_free_turn_disabled_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0648\u0628\u062a_\u0622\u0632\u0627\u062f_\u0648_\u062f\u06a9\u0645\u0647_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0627_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_fix_doctor_free_turn_disabled_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0648\u0628\u062a_\u0622\u0632\u0627\u062f_\u0648_\u062f\u06a9\u0645\u0647_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0627_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644", "target": "prompt_fix_doctor_free_turn_disabled_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_fix_doctor_free_turn_disabled_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0648\u0628\u062a_\u0622\u0632\u0627\u062f_\u0648_\u062f\u06a9\u0645\u0647_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0627_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644", "target": "prompt_fix_doctor_free_turn_disabled_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "source_location": "L7", "weight": 1.0}, {"source": "prompt_fix_doctor_free_turn_disabled_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0648\u0628\u062a_\u0622\u0632\u0627\u062f_\u0648_\u062f\u06a9\u0645\u0647_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0627_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644", "target": "prompt_fix_doctor_free_turn_disabled_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "source_location": "L15", "weight": 1.0}, {"source": "prompt_fix_doctor_free_turn_disabled_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0648\u0628\u062a_\u0622\u0632\u0627\u062f_\u0648_\u062f\u06a9\u0645\u0647_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0627_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644", "target": "prompt_fix_doctor_free_turn_disabled_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "source_location": "L21", "weight": 1.0}, {"source": "prompt_fix_doctor_free_turn_disabled_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0648\u0628\u062a_\u0622\u0632\u0627\u062f_\u0648_\u062f\u06a9\u0645\u0647_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0627_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644", "target": "prompt_fix_doctor_free_turn_disabled_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "source_location": "L29", "weight": 1.0}, {"source": "prompt_fix_doctor_free_turn_disabled_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "target": "prompt_fix_doctor_free_turn_disabled_app_component_itemdoctor_js_\u062d\u0648\u0627\u0644\u06cc_\u062e\u0637_\u06f8\u06f4", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "source_location": "L31", "weight": 1.0}, {"source": "prompt_fix_doctor_free_turn_disabled_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "target": "prompt_fix_doctor_free_turn_disabled_components_doctor_appointmentlist_itemappointment_js_\u062e\u0637_\u06f3\u06f6_\u06f5\u06f8", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "source_location": "L47", "weight": 1.0}, {"source": "prompt_fix_doctor_free_turn_disabled_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "target": "prompt_fix_doctor_free_turn_disabled_components_doctor_appointmentlist_index_js_\u0646\u0648\u0627\u0631_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062e\u0637_\u06f1\u06f6_\u06f3\u06f4", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "source_location": "L76", "weight": 1.0}, {"source": "prompt_fix_doctor_free_turn_disabled_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0648\u0628\u062a_\u0622\u0632\u0627\u062f_\u0648_\u062f\u06a9\u0645\u0647_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0627_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644", "target": "prompt_fix_doctor_free_turn_disabled_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "source_location": "L92", "weight": 1.0}, {"source": "prompt_fix_doctor_free_turn_disabled_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_doctor_free_turn_disabled_\u06f1_\u06a9\u0627\u0631\u062a_\u0644\u06cc\u0633\u062a_app_component_itemdoctor_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "source_location": "L94", "weight": 1.0}, {"source": "prompt_fix_doctor_free_turn_disabled_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_doctor_free_turn_disabled_\u06f2_\u0628\u0627\u06a9\u0633_\u062f\u0633\u06a9\u062a\u0627\u067e_components_doctor_appointmentlist_itemappointment_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "source_location": "L105", "weight": 1.0}, {"source": "prompt_fix_doctor_free_turn_disabled_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_doctor_free_turn_disabled_\u06f3_\u0646\u0648\u0627\u0631_\u0645\u0648\u0628\u0627\u06cc\u0644_components_doctor_appointmentlist_index_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "source_location": "L139", "weight": 1.0}, {"source": "prompt_fix_doctor_free_turn_disabled_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0648\u0628\u062a_\u0622\u0632\u0627\u062f_\u0648_\u062f\u06a9\u0645\u0647_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0627_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644", "target": "prompt_fix_doctor_free_turn_disabled_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", "source_location": "L166", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/10033b140aad3ee501bd9a5653eb0a1d43fe53aee55877becfca5a5d1b8a14b5.json b/graphify-out/cache/ast/v0.8.44/10033b140aad3ee501bd9a5653eb0a1d43fe53aee55877becfca5a5d1b8a14b5.json new file mode 100644 index 0000000..ca479ef --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/10033b140aad3ee501bd9a5653eb0a1d43fe53aee55877becfca5a5d1b8a14b5.json @@ -0,0 +1 @@ +{"nodes": [], "edges": [], "skipped": "data json (not a config/manifest)"} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/10bcf71f9a660ad56f97bb92cb033794f8e65858f761c286191277095231e09a.json b/graphify-out/cache/ast/v0.8.44/10bcf71f9a660ad56f97bb92cb033794f8e65858f761c286191277095231e09a.json new file mode 100644 index 0000000..40538bc --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/10bcf71f9a660ad56f97bb92cb033794f8e65858f761c286191277095231e09a.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_seo_performance_rendering_audit_md", "label": "seo-performance-rendering-audit.md", "file_type": "document", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L1"}, {"id": "prompt_seo_performance_rendering_audit_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_\u06a9\u0627\u0645\u0644_rendering_strategy_seo_performance_\u0648_\u0627\u0645\u0646\u06cc\u062a_next_js_15", "label": "\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc \u06a9\u0627\u0645\u0644 Rendering Strategy\u060c SEO\u060c Performance \u0648 \u0627\u0645\u0646\u06cc\u062a (Next.js 15)", "file_type": "document", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L1"}, {"id": "prompt_seo_performance_rendering_audit_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L3"}, {"id": "prompt_seo_performance_rendering_audit_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L7"}, {"id": "prompt_seo_performance_rendering_audit_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L18"}, {"id": "prompt_seo_performance_rendering_audit_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "file_type": "document", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L34"}, {"id": "prompt_seo_performance_rendering_audit_lib_req_js_\u0645\u0634\u06a9\u0644_\u0627\u0635\u0644\u06cc_caching", "label": "`lib/req.js` \u2014 \u0645\u0634\u06a9\u0644 \u0627\u0635\u0644\u06cc caching", "file_type": "document", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L36"}, {"id": "prompt_seo_performance_rendering_audit_app_doctor_slug_page_js_\u062f\u0648_\u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc_\u062a\u06a9\u0631\u0627\u0631\u06cc", "label": "`app/doctor/[slug]/page.js` \u2014 \u062f\u0648 \u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc \u062a\u06a9\u0631\u0627\u0631\u06cc", "file_type": "document", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L59"}, {"id": "prompt_seo_performance_rendering_audit_middleware_js_\u0627\u062c\u0631\u0627_\u0631\u0648\u06cc_\u0647\u0645\u0647_\u0645\u0633\u06cc\u0631\u0647\u0627", "label": "`middleware.js` \u2014 \u0627\u062c\u0631\u0627 \u0631\u0648\u06cc \u0647\u0645\u0647 \u0645\u0633\u06cc\u0631\u0647\u0627", "file_type": "document", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L77"}, {"id": "prompt_seo_performance_rendering_audit_app_doctors_page_js_\u0628\u062f\u0648\u0646_og_images_\u0628\u062f\u0648\u0646_cache", "label": "`app/doctors/page.js` \u2014 \u0628\u062f\u0648\u0646 og:images\u060c \u0628\u062f\u0648\u0646 cache", "file_type": "document", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L91"}, {"id": "prompt_seo_performance_rendering_audit_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L110"}, {"id": "prompt_seo_performance_rendering_audit_\u06f1_\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc_fetch_\u0644\u0627\u06cc\u0647_\u06cc_axios_\u0628\u0627_fetch_\u0628\u0648\u0645\u06cc_next_js_\u06cc\u0627_wrapper_\u0631\u0648\u06cc_\u0622\u0646_\u0628\u0631\u0627\u06cc_\u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc_\u0647\u0627\u06cc_server_component", "label": "\u06f1. \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc fetch \u0644\u0627\u06cc\u0647\u200c\u06cc axios \u0628\u0627 `fetch` \u0628\u0648\u0645\u06cc Next.js (\u06cc\u0627 wrapper \u0631\u0648\u06cc \u0622\u0646) \u0628\u0631\u0627\u06cc \u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc\u200c\u0647\u0627\u06cc Server Component", "file_type": "document", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L112"}, {"id": "prompt_seo_performance_rendering_audit_\u06f2_\u062d\u0630\u0641_\u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc_\u062a\u06a9\u0631\u0627\u0631\u06cc_\u062f\u0631_doctor_slug_page_js_\u0648_\u0627\u0644\u06af\u0648\u06cc_\u0645\u0634\u0627\u0628\u0647_\u062f\u0631_clinic_slug_blog_slug", "label": "\u06f2. \u062d\u0630\u0641 \u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc \u062a\u06a9\u0631\u0627\u0631\u06cc \u062f\u0631 `doctor/[slug]/page.js` (\u0648 \u0627\u0644\u06af\u0648\u06cc \u0645\u0634\u0627\u0628\u0647 \u062f\u0631 `clinic/[slug]`, `blog/[slug]`)", "file_type": "document", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L130"}, {"id": "prompt_seo_performance_rendering_audit_\u06f3_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_middleware_js_\u0645\u062d\u062f\u0648\u062f_\u06a9\u0631\u062f\u0646_matcher_\u06cc\u0627_\u062d\u0630\u0641_\u0648\u0627\u0628\u0633\u062a\u06af\u06cc_\u063a\u06cc\u0631\u0636\u0631\u0648\u0631\u06cc", "label": "\u06f3. \u0628\u0627\u0632\u0628\u06cc\u0646\u06cc `middleware.js` \u2014 \u0645\u062d\u062f\u0648\u062f \u06a9\u0631\u062f\u0646 matcher \u06cc\u0627 \u062d\u0630\u0641 \u0648\u0627\u0628\u0633\u062a\u06af\u06cc \u063a\u06cc\u0631\u0636\u0631\u0648\u0631\u06cc", "file_type": "document", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L161"}, {"id": "prompt_seo_performance_rendering_audit_\u06f4_\u0627\u0641\u0632\u0648\u062f\u0646_json_ld_\u0633\u0631\u0627\u0633\u0631\u06cc_\u062f\u0631_app_layout_js", "label": "\u06f4. \u0627\u0641\u0632\u0648\u062f\u0646 JSON-LD \u0633\u0631\u0627\u0633\u0631\u06cc \u062f\u0631 `app/layout.js`", "file_type": "document", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L181"}, {"id": "prompt_seo_performance_rendering_audit_\u06f5_\u062a\u06a9\u0645\u06cc\u0644_og_image_twitter_image_\u062f\u0631_\u0647\u0645\u0647_\u0635\u0641\u062d\u0627\u062a", "label": "\u06f5. \u062a\u06a9\u0645\u06cc\u0644 og:image/twitter:image \u062f\u0631 \u0647\u0645\u0647 \u0635\u0641\u062d\u0627\u062a", "file_type": "document", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L219"}, {"id": "prompt_seo_performance_rendering_audit_\u06f6_\u0627\u0636\u0627\u0641\u0647_\u06a9\u0631\u062f\u0646_loading_js_\u0628\u0631\u0627\u06cc_\u0645\u0633\u06cc\u0631\u0647\u0627\u06cc_\u062f\u0627\u062f\u0647_\u0645\u062d\u0648\u0631", "label": "\u06f6. \u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 `loading.js` \u0628\u0631\u0627\u06cc \u0645\u0633\u06cc\u0631\u0647\u0627\u06cc \u062f\u0627\u062f\u0647\u200c\u0645\u062d\u0648\u0631", "file_type": "document", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L232"}, {"id": "prompt_seo_performance_rendering_audit_\u06f7_\u0627\u0636\u0627\u0641\u0647_\u06a9\u0631\u062f\u0646_error_js_\u062f\u0631_\u0633\u0637\u062d_root_\u0648_\u0628\u0631\u0627\u06cc_\u0645\u0633\u06cc\u0631\u0647\u0627\u06cc_\u067e\u0631\u062a\u0642\u0627\u0636\u0627", "label": "\u06f7. \u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 `error.js` \u062f\u0631 \u0633\u0637\u062d root \u0648 \u0628\u0631\u0627\u06cc \u0645\u0633\u06cc\u0631\u0647\u0627\u06cc \u067e\u0631\u062a\u0642\u0627\u0636\u0627", "file_type": "document", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L236"}, {"id": "prompt_seo_performance_rendering_audit_\u06f8_\u0628\u0631\u0631\u0633\u06cc_app_sitemap_js_\u0648_app_robots_js", "label": "\u06f8. \u0628\u0631\u0631\u0633\u06cc `app/sitemap.js` \u0648 `app/robots.js`", "file_type": "document", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L252"}, {"id": "prompt_seo_performance_rendering_audit_\u06f9_\u06af\u0632\u0627\u0631\u0634_\u0646\u0647\u0627\u06cc\u06cc_\u0628\u0647_\u0635\u0648\u0631\u062a_\u062c\u062f\u0648\u0644", "label": "\u06f9. \u06af\u0632\u0627\u0631\u0634 \u0646\u0647\u0627\u06cc\u06cc \u0628\u0647\u200c\u0635\u0648\u0631\u062a \u062c\u062f\u0648\u0644", "file_type": "document", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L259"}, {"id": "prompt_seo_performance_rendering_audit_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L268"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_seo_performance_rendering_audit_md", "target": "prompt_seo_performance_rendering_audit_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_\u06a9\u0627\u0645\u0644_rendering_strategy_seo_performance_\u0648_\u0627\u0645\u0646\u06cc\u062a_next_js_15", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_seo_performance_rendering_audit_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_\u06a9\u0627\u0645\u0644_rendering_strategy_seo_performance_\u0648_\u0627\u0645\u0646\u06cc\u062a_next_js_15", "target": "prompt_seo_performance_rendering_audit_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_seo_performance_rendering_audit_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_\u06a9\u0627\u0645\u0644_rendering_strategy_seo_performance_\u0648_\u0627\u0645\u0646\u06cc\u062a_next_js_15", "target": "prompt_seo_performance_rendering_audit_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L7", "weight": 1.0}, {"source": "prompt_seo_performance_rendering_audit_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_\u06a9\u0627\u0645\u0644_rendering_strategy_seo_performance_\u0648_\u0627\u0645\u0646\u06cc\u062a_next_js_15", "target": "prompt_seo_performance_rendering_audit_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L18", "weight": 1.0}, {"source": "prompt_seo_performance_rendering_audit_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_\u06a9\u0627\u0645\u0644_rendering_strategy_seo_performance_\u0648_\u0627\u0645\u0646\u06cc\u062a_next_js_15", "target": "prompt_seo_performance_rendering_audit_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L34", "weight": 1.0}, {"source": "prompt_seo_performance_rendering_audit_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "target": "prompt_seo_performance_rendering_audit_lib_req_js_\u0645\u0634\u06a9\u0644_\u0627\u0635\u0644\u06cc_caching", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L36", "weight": 1.0}, {"source": "prompt_seo_performance_rendering_audit_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "target": "prompt_seo_performance_rendering_audit_app_doctor_slug_page_js_\u062f\u0648_\u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc_\u062a\u06a9\u0631\u0627\u0631\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L59", "weight": 1.0}, {"source": "prompt_seo_performance_rendering_audit_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "target": "prompt_seo_performance_rendering_audit_middleware_js_\u0627\u062c\u0631\u0627_\u0631\u0648\u06cc_\u0647\u0645\u0647_\u0645\u0633\u06cc\u0631\u0647\u0627", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L77", "weight": 1.0}, {"source": "prompt_seo_performance_rendering_audit_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "target": "prompt_seo_performance_rendering_audit_app_doctors_page_js_\u0628\u062f\u0648\u0646_og_images_\u0628\u062f\u0648\u0646_cache", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L91", "weight": 1.0}, {"source": "prompt_seo_performance_rendering_audit_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_\u06a9\u0627\u0645\u0644_rendering_strategy_seo_performance_\u0648_\u0627\u0645\u0646\u06cc\u062a_next_js_15", "target": "prompt_seo_performance_rendering_audit_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L110", "weight": 1.0}, {"source": "prompt_seo_performance_rendering_audit_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_seo_performance_rendering_audit_\u06f1_\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc_fetch_\u0644\u0627\u06cc\u0647_\u06cc_axios_\u0628\u0627_fetch_\u0628\u0648\u0645\u06cc_next_js_\u06cc\u0627_wrapper_\u0631\u0648\u06cc_\u0622\u0646_\u0628\u0631\u0627\u06cc_\u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc_\u0647\u0627\u06cc_server_component", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L112", "weight": 1.0}, {"source": "prompt_seo_performance_rendering_audit_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_seo_performance_rendering_audit_\u06f2_\u062d\u0630\u0641_\u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc_\u062a\u06a9\u0631\u0627\u0631\u06cc_\u062f\u0631_doctor_slug_page_js_\u0648_\u0627\u0644\u06af\u0648\u06cc_\u0645\u0634\u0627\u0628\u0647_\u062f\u0631_clinic_slug_blog_slug", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L130", "weight": 1.0}, {"source": "prompt_seo_performance_rendering_audit_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_seo_performance_rendering_audit_\u06f3_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_middleware_js_\u0645\u062d\u062f\u0648\u062f_\u06a9\u0631\u062f\u0646_matcher_\u06cc\u0627_\u062d\u0630\u0641_\u0648\u0627\u0628\u0633\u062a\u06af\u06cc_\u063a\u06cc\u0631\u0636\u0631\u0648\u0631\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L161", "weight": 1.0}, {"source": "prompt_seo_performance_rendering_audit_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_seo_performance_rendering_audit_\u06f4_\u0627\u0641\u0632\u0648\u062f\u0646_json_ld_\u0633\u0631\u0627\u0633\u0631\u06cc_\u062f\u0631_app_layout_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L181", "weight": 1.0}, {"source": "prompt_seo_performance_rendering_audit_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_seo_performance_rendering_audit_\u06f5_\u062a\u06a9\u0645\u06cc\u0644_og_image_twitter_image_\u062f\u0631_\u0647\u0645\u0647_\u0635\u0641\u062d\u0627\u062a", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L219", "weight": 1.0}, {"source": "prompt_seo_performance_rendering_audit_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_seo_performance_rendering_audit_\u06f6_\u0627\u0636\u0627\u0641\u0647_\u06a9\u0631\u062f\u0646_loading_js_\u0628\u0631\u0627\u06cc_\u0645\u0633\u06cc\u0631\u0647\u0627\u06cc_\u062f\u0627\u062f\u0647_\u0645\u062d\u0648\u0631", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L232", "weight": 1.0}, {"source": "prompt_seo_performance_rendering_audit_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_seo_performance_rendering_audit_\u06f7_\u0627\u0636\u0627\u0641\u0647_\u06a9\u0631\u062f\u0646_error_js_\u062f\u0631_\u0633\u0637\u062d_root_\u0648_\u0628\u0631\u0627\u06cc_\u0645\u0633\u06cc\u0631\u0647\u0627\u06cc_\u067e\u0631\u062a\u0642\u0627\u0636\u0627", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L236", "weight": 1.0}, {"source": "prompt_seo_performance_rendering_audit_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_seo_performance_rendering_audit_\u06f8_\u0628\u0631\u0631\u0633\u06cc_app_sitemap_js_\u0648_app_robots_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L252", "weight": 1.0}, {"source": "prompt_seo_performance_rendering_audit_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_seo_performance_rendering_audit_\u06f9_\u06af\u0632\u0627\u0631\u0634_\u0646\u0647\u0627\u06cc\u06cc_\u0628\u0647_\u0635\u0648\u0631\u062a_\u062c\u062f\u0648\u0644", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L259", "weight": 1.0}, {"source": "prompt_seo_performance_rendering_audit_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_\u06a9\u0627\u0645\u0644_rendering_strategy_seo_performance_\u0648_\u0627\u0645\u0646\u06cc\u062a_next_js_15", "target": "prompt_seo_performance_rendering_audit_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/seo-performance-rendering-audit.md", "source_location": "L268", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/11395172e2e3d905b4873294ed9df03919796e3c27396fcfc3816fccf38d456c.json b/graphify-out/cache/ast/v0.8.44/11395172e2e3d905b4873294ed9df03919796e3c27396fcfc3816fccf38d456c.json new file mode 100644 index 0000000..93377fd --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/11395172e2e3d905b4873294ed9df03919796e3c27396fcfc3816fccf38d456c.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_fix_doctor_poster_download_image_md", "label": "fix-doctor-poster-download-image.md", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "source_location": "L1"}, {"id": "prompt_fix_doctor_poster_download_image_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644_\u0639\u06a9\u0633_\u0646\u0627\u062f\u0631\u0633\u062a_\u062f\u0631_\u067e\u0648\u0633\u062a\u0631_\u062f\u0627\u0646\u0644\u0648\u062f\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc", "label": "\u0631\u0641\u0639 \u0645\u0634\u06a9\u0644 \u0639\u06a9\u0633 \u0646\u0627\u062f\u0631\u0633\u062a \u062f\u0631 \u067e\u0648\u0633\u062a\u0631 \u062f\u0627\u0646\u0644\u0648\u062f\u06cc \u0635\u0641\u062d\u0647 \u067e\u0632\u0634\u06a9 (\u0627\u0634\u062a\u0631\u0627\u06a9\u200c\u06af\u0630\u0627\u0631\u06cc)", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "source_location": "L1"}, {"id": "prompt_fix_doctor_poster_download_image_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "source_location": "L3"}, {"id": "prompt_fix_doctor_poster_download_image_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "source_location": "L7"}, {"id": "prompt_fix_doctor_poster_download_image_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "source_location": "L14"}, {"id": "prompt_fix_doctor_poster_download_image_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "source_location": "L24"}, {"id": "prompt_fix_doctor_poster_download_image_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "source_location": "L35"}, {"id": "prompt_fix_doctor_poster_download_image_components_doctor_detaildoctor_list_js_\u0628\u062e\u0634_\u062f\u0627\u0646\u0644\u0648\u062f", "label": "`components/doctor/detailDoctor/List.js` (\u0628\u062e\u0634 \u062f\u0627\u0646\u0644\u0648\u062f)", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "source_location": "L37"}, {"id": "prompt_fix_doctor_poster_download_image_components_doctor_poster_imageprofile_js", "label": "`components/doctor/poster/ImageProfile.js`", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "source_location": "L56"}, {"id": "prompt_fix_doctor_poster_download_image_components_doctor_poster_qrimg_js_\u062e\u0644\u0627\u0635\u0647", "label": "`components/doctor/poster/QrImg.js` (\u062e\u0644\u0627\u0635\u0647)", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "source_location": "L77"}, {"id": "prompt_fix_doctor_poster_download_image_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "source_location": "L89"}, {"id": "prompt_fix_doctor_poster_download_image_\u06f1_\u0645\u0646\u062a\u0638\u0631_\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc_\u06a9\u0627\u0645\u0644_\u0647\u0645\u0647_\u06cc_img_\u0647\u0627_\u0628\u0645\u0627\u0646_\u0642\u0628\u0644_\u0627\u0632_html2canvas", "label": "\u06f1. \u0645\u0646\u062a\u0638\u0631 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u06a9\u0627\u0645\u0644 \u0647\u0645\u0647\u200c\u06cc ``\u0647\u0627 \u0628\u0645\u0627\u0646 \u0642\u0628\u0644 \u0627\u0632 `html2canvas`", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "source_location": "L91"}, {"id": "prompt_fix_doctor_poster_download_image_\u06f2_\u0627\u0637\u0645\u06cc\u0646\u0627\u0646_\u0627\u0632_\u0622\u0645\u0627\u062f\u0647_\u0628\u0648\u062f\u0646_qr_\u0642\u0628\u0644_\u0627\u0632_\u062f\u0627\u0646\u0644\u0648\u062f", "label": "\u06f2. \u0627\u0637\u0645\u06cc\u0646\u0627\u0646 \u0627\u0632 \u0622\u0645\u0627\u062f\u0647 \u0628\u0648\u062f\u0646 QR \u0642\u0628\u0644 \u0627\u0632 \u062f\u0627\u0646\u0644\u0648\u062f", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "source_location": "L128"}, {"id": "prompt_fix_doctor_poster_download_image_\u06f3_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u0639\u06a9\u0633_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u0627_html2canvas", "label": "\u06f3. \u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u0639\u06a9\u0633 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u0628\u0627 html2canvas", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "source_location": "L137"}, {"id": "prompt_fix_doctor_poster_download_image_\u06f4_ux_\u062f\u06a9\u0645\u0647_\u06cc_\u062f\u0627\u0646\u0644\u0648\u062f", "label": "\u06f4. UX \u062f\u06a9\u0645\u0647\u200c\u06cc \u062f\u0627\u0646\u0644\u0648\u062f", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "source_location": "L158"}, {"id": "prompt_fix_doctor_poster_download_image_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "source_location": "L163"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_fix_doctor_poster_download_image_md", "target": "prompt_fix_doctor_poster_download_image_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644_\u0639\u06a9\u0633_\u0646\u0627\u062f\u0631\u0633\u062a_\u062f\u0631_\u067e\u0648\u0633\u062a\u0631_\u062f\u0627\u0646\u0644\u0648\u062f\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_fix_doctor_poster_download_image_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644_\u0639\u06a9\u0633_\u0646\u0627\u062f\u0631\u0633\u062a_\u062f\u0631_\u067e\u0648\u0633\u062a\u0631_\u062f\u0627\u0646\u0644\u0648\u062f\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc", "target": "prompt_fix_doctor_poster_download_image_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_fix_doctor_poster_download_image_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644_\u0639\u06a9\u0633_\u0646\u0627\u062f\u0631\u0633\u062a_\u062f\u0631_\u067e\u0648\u0633\u062a\u0631_\u062f\u0627\u0646\u0644\u0648\u062f\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc", "target": "prompt_fix_doctor_poster_download_image_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "source_location": "L7", "weight": 1.0}, {"source": "prompt_fix_doctor_poster_download_image_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644_\u0639\u06a9\u0633_\u0646\u0627\u062f\u0631\u0633\u062a_\u062f\u0631_\u067e\u0648\u0633\u062a\u0631_\u062f\u0627\u0646\u0644\u0648\u062f\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc", "target": "prompt_fix_doctor_poster_download_image_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "source_location": "L14", "weight": 1.0}, {"source": "prompt_fix_doctor_poster_download_image_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644_\u0639\u06a9\u0633_\u0646\u0627\u062f\u0631\u0633\u062a_\u062f\u0631_\u067e\u0648\u0633\u062a\u0631_\u062f\u0627\u0646\u0644\u0648\u062f\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc", "target": "prompt_fix_doctor_poster_download_image_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "source_location": "L24", "weight": 1.0}, {"source": "prompt_fix_doctor_poster_download_image_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644_\u0639\u06a9\u0633_\u0646\u0627\u062f\u0631\u0633\u062a_\u062f\u0631_\u067e\u0648\u0633\u062a\u0631_\u062f\u0627\u0646\u0644\u0648\u062f\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc", "target": "prompt_fix_doctor_poster_download_image_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "source_location": "L35", "weight": 1.0}, {"source": "prompt_fix_doctor_poster_download_image_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "target": "prompt_fix_doctor_poster_download_image_components_doctor_detaildoctor_list_js_\u0628\u062e\u0634_\u062f\u0627\u0646\u0644\u0648\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "source_location": "L37", "weight": 1.0}, {"source": "prompt_fix_doctor_poster_download_image_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "target": "prompt_fix_doctor_poster_download_image_components_doctor_poster_imageprofile_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "source_location": "L56", "weight": 1.0}, {"source": "prompt_fix_doctor_poster_download_image_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "target": "prompt_fix_doctor_poster_download_image_components_doctor_poster_qrimg_js_\u062e\u0644\u0627\u0635\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "source_location": "L77", "weight": 1.0}, {"source": "prompt_fix_doctor_poster_download_image_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644_\u0639\u06a9\u0633_\u0646\u0627\u062f\u0631\u0633\u062a_\u062f\u0631_\u067e\u0648\u0633\u062a\u0631_\u062f\u0627\u0646\u0644\u0648\u062f\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc", "target": "prompt_fix_doctor_poster_download_image_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "source_location": "L89", "weight": 1.0}, {"source": "prompt_fix_doctor_poster_download_image_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_doctor_poster_download_image_\u06f1_\u0645\u0646\u062a\u0638\u0631_\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc_\u06a9\u0627\u0645\u0644_\u0647\u0645\u0647_\u06cc_img_\u0647\u0627_\u0628\u0645\u0627\u0646_\u0642\u0628\u0644_\u0627\u0632_html2canvas", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "source_location": "L91", "weight": 1.0}, {"source": "prompt_fix_doctor_poster_download_image_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_doctor_poster_download_image_\u06f2_\u0627\u0637\u0645\u06cc\u0646\u0627\u0646_\u0627\u0632_\u0622\u0645\u0627\u062f\u0647_\u0628\u0648\u062f\u0646_qr_\u0642\u0628\u0644_\u0627\u0632_\u062f\u0627\u0646\u0644\u0648\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "source_location": "L128", "weight": 1.0}, {"source": "prompt_fix_doctor_poster_download_image_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_doctor_poster_download_image_\u06f3_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u0639\u06a9\u0633_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u0627_html2canvas", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "source_location": "L137", "weight": 1.0}, {"source": "prompt_fix_doctor_poster_download_image_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_doctor_poster_download_image_\u06f4_ux_\u062f\u06a9\u0645\u0647_\u06cc_\u062f\u0627\u0646\u0644\u0648\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "source_location": "L158", "weight": 1.0}, {"source": "prompt_fix_doctor_poster_download_image_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644_\u0639\u06a9\u0633_\u0646\u0627\u062f\u0631\u0633\u062a_\u062f\u0631_\u067e\u0648\u0633\u062a\u0631_\u062f\u0627\u0646\u0644\u0648\u062f\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc", "target": "prompt_fix_doctor_poster_download_image_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", "source_location": "L163", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/17a0579ff0b02c7d73fbdaaabdf26ae1dc668a0e6ab1fe3ff70a8222630b548f.json b/graphify-out/cache/ast/v0.8.44/17a0579ff0b02c7d73fbdaaabdf26ae1dc668a0e6ab1fe3ff70a8222630b548f.json new file mode 100644 index 0000000..d68efaf --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/17a0579ff0b02c7d73fbdaaabdf26ae1dc668a0e6ab1fe3ff70a8222630b548f.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_connect_panel_dashboard_to_api_md", "label": "connect-panel-dashboard-to-api.md", "file_type": "document", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "source_location": "L1"}, {"id": "prompt_connect_panel_dashboard_to_api_\u0627\u062a\u0635\u0627\u0644_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0648_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_api_\u0648\u0627\u0642\u0639\u06cc_\u062d\u0630\u0641_\u062f\u0627\u062f\u0647_\u0647\u0627\u06cc_mock", "label": "\u0627\u062a\u0635\u0627\u0644 \u067e\u0646\u0644 \u0646\u0645\u0627\u06cc\u0646\u062f\u0647 \u0648 \u062f\u0627\u0634\u0628\u0648\u0631\u062f \u06a9\u0627\u0631\u0628\u0631 \u0628\u0647 API \u0648\u0627\u0642\u0639\u06cc (\u062d\u0630\u0641 \u062f\u0627\u062f\u0647\u200c\u0647\u0627\u06cc mock)", "file_type": "document", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "source_location": "L1"}, {"id": "prompt_connect_panel_dashboard_to_api_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "source_location": "L3"}, {"id": "prompt_connect_panel_dashboard_to_api_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "source_location": "L7"}, {"id": "prompt_connect_panel_dashboard_to_api_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "source_location": "L16"}, {"id": "prompt_connect_panel_dashboard_to_api_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "source_location": "L22"}, {"id": "prompt_connect_panel_dashboard_to_api_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "file_type": "document", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "source_location": "L40"}, {"id": "prompt_connect_panel_dashboard_to_api_\u067e\u0646\u0644_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u0645\u0648\u062c\u0648\u062f_\u0627\u0633\u062a_\u0648\u0644\u06cc_\u0646\u0627\u062f\u06cc\u062f\u0647_\u06af\u0631\u0641\u062a\u0647_\u0645\u06cc_\u0634\u0648\u062f", "label": "\u067e\u0646\u0644: \u062f\u0627\u062f\u0647\u200c\u06cc \u0648\u0627\u0642\u0639\u06cc \u0645\u0648\u062c\u0648\u062f \u0627\u0633\u062a \u0648\u0644\u06cc \u0646\u0627\u062f\u06cc\u062f\u0647 \u06af\u0631\u0641\u062a\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f", "file_type": "document", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "source_location": "L42"}, {"id": "prompt_connect_panel_dashboard_to_api_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u06a9\u0627\u0645\u0644\u0627_mock", "label": "\u062f\u0627\u0634\u0628\u0648\u0631\u062f \u06a9\u0627\u0631\u0628\u0631: \u06a9\u0627\u0645\u0644\u0627\u064b mock", "file_type": "document", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "source_location": "L76"}, {"id": "prompt_connect_panel_dashboard_to_api_\u0644\u0627\u06cc\u0647_\u06cc_api_\u0645\u0648\u062c\u0648\u062f_\u062f\u0631_services_response_js", "label": "\u0644\u0627\u06cc\u0647\u200c\u06cc API \u0645\u0648\u062c\u0648\u062f (\u062f\u0631 `services/response.js`)", "file_type": "document", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "source_location": "L88"}, {"id": "prompt_connect_panel_dashboard_to_api_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "source_location": "L101"}, {"id": "prompt_connect_panel_dashboard_to_api_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_\u062a\u0648\u0627\u0628\u0639_representation_dashboard_\u0628\u0647_services_response_js", "label": "\u06f1. \u0627\u0641\u0632\u0648\u062f\u0646 \u062a\u0648\u0627\u0628\u0639 representation dashboard \u0628\u0647 `services/response.js`", "file_type": "document", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "source_location": "L105"}, {"id": "prompt_connect_panel_dashboard_to_api_\u06f2_\u0648\u0635\u0644_\u06a9\u0631\u062f\u0646_header_\u0648_userdetail_\u067e\u0646\u0644_\u0628\u0647_representationinfo", "label": "\u06f2. \u0648\u0635\u0644\u200c\u06a9\u0631\u062f\u0646 Header \u0648 UserDetail \u067e\u0646\u0644 \u0628\u0647 `representationInfo`", "file_type": "document", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "source_location": "L124"}, {"id": "prompt_connect_panel_dashboard_to_api_\u06f3_\u0635\u0641\u062d\u0647_\u06cc_dashboard_\u067e\u0646\u0644_\u0628\u0627_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc", "label": "\u06f3. \u0635\u0641\u062d\u0647\u200c\u06cc dashboard \u067e\u0646\u0644 \u0628\u0627 \u062f\u0627\u062f\u0647\u200c\u06cc \u0648\u0627\u0642\u0639\u06cc", "file_type": "document", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "source_location": "L131"}, {"id": "prompt_connect_panel_dashboard_to_api_\u06f4_\u0635\u0641\u062d\u0627\u062a_turns_\u0648_user_account_\u0648_add_doctor_\u067e\u0646\u0644", "label": "\u06f4. \u0635\u0641\u062d\u0627\u062a turns \u0648 user-account \u0648 add-doctor \u067e\u0646\u0644", "file_type": "document", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "source_location": "L139"}, {"id": "prompt_connect_panel_dashboard_to_api_\u06f5_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u0628\u06cc\u0645\u0627\u0631_\u0628\u0627_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc", "label": "\u06f5. \u062f\u0627\u0634\u0628\u0648\u0631\u062f/\u062d\u0633\u0627\u0628 \u06a9\u0627\u0631\u0628\u0631\u06cc \u0628\u06cc\u0645\u0627\u0631 \u0628\u0627 \u062f\u0627\u062f\u0647\u200c\u06cc \u0648\u0627\u0642\u0639\u06cc", "file_type": "document", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "source_location": "L145"}, {"id": "prompt_connect_panel_dashboard_to_api_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "source_location": "L154"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_connect_panel_dashboard_to_api_md", "target": "prompt_connect_panel_dashboard_to_api_\u0627\u062a\u0635\u0627\u0644_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0648_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_api_\u0648\u0627\u0642\u0639\u06cc_\u062d\u0630\u0641_\u062f\u0627\u062f\u0647_\u0647\u0627\u06cc_mock", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_connect_panel_dashboard_to_api_\u0627\u062a\u0635\u0627\u0644_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0648_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_api_\u0648\u0627\u0642\u0639\u06cc_\u062d\u0630\u0641_\u062f\u0627\u062f\u0647_\u0647\u0627\u06cc_mock", "target": "prompt_connect_panel_dashboard_to_api_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_connect_panel_dashboard_to_api_\u0627\u062a\u0635\u0627\u0644_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0648_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_api_\u0648\u0627\u0642\u0639\u06cc_\u062d\u0630\u0641_\u062f\u0627\u062f\u0647_\u0647\u0627\u06cc_mock", "target": "prompt_connect_panel_dashboard_to_api_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "source_location": "L7", "weight": 1.0}, {"source": "prompt_connect_panel_dashboard_to_api_\u0627\u062a\u0635\u0627\u0644_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0648_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_api_\u0648\u0627\u0642\u0639\u06cc_\u062d\u0630\u0641_\u062f\u0627\u062f\u0647_\u0647\u0627\u06cc_mock", "target": "prompt_connect_panel_dashboard_to_api_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "source_location": "L16", "weight": 1.0}, {"source": "prompt_connect_panel_dashboard_to_api_\u0627\u062a\u0635\u0627\u0644_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0648_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_api_\u0648\u0627\u0642\u0639\u06cc_\u062d\u0630\u0641_\u062f\u0627\u062f\u0647_\u0647\u0627\u06cc_mock", "target": "prompt_connect_panel_dashboard_to_api_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "source_location": "L22", "weight": 1.0}, {"source": "prompt_connect_panel_dashboard_to_api_\u0627\u062a\u0635\u0627\u0644_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0648_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_api_\u0648\u0627\u0642\u0639\u06cc_\u062d\u0630\u0641_\u062f\u0627\u062f\u0647_\u0647\u0627\u06cc_mock", "target": "prompt_connect_panel_dashboard_to_api_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "source_location": "L40", "weight": 1.0}, {"source": "prompt_connect_panel_dashboard_to_api_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "target": "prompt_connect_panel_dashboard_to_api_\u067e\u0646\u0644_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u0645\u0648\u062c\u0648\u062f_\u0627\u0633\u062a_\u0648\u0644\u06cc_\u0646\u0627\u062f\u06cc\u062f\u0647_\u06af\u0631\u0641\u062a\u0647_\u0645\u06cc_\u0634\u0648\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "source_location": "L42", "weight": 1.0}, {"source": "prompt_connect_panel_dashboard_to_api_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "target": "prompt_connect_panel_dashboard_to_api_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u06a9\u0627\u0645\u0644\u0627_mock", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "source_location": "L76", "weight": 1.0}, {"source": "prompt_connect_panel_dashboard_to_api_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "target": "prompt_connect_panel_dashboard_to_api_\u0644\u0627\u06cc\u0647_\u06cc_api_\u0645\u0648\u062c\u0648\u062f_\u062f\u0631_services_response_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "source_location": "L88", "weight": 1.0}, {"source": "prompt_connect_panel_dashboard_to_api_\u0627\u062a\u0635\u0627\u0644_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0648_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_api_\u0648\u0627\u0642\u0639\u06cc_\u062d\u0630\u0641_\u062f\u0627\u062f\u0647_\u0647\u0627\u06cc_mock", "target": "prompt_connect_panel_dashboard_to_api_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "source_location": "L101", "weight": 1.0}, {"source": "prompt_connect_panel_dashboard_to_api_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_connect_panel_dashboard_to_api_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_\u062a\u0648\u0627\u0628\u0639_representation_dashboard_\u0628\u0647_services_response_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "source_location": "L105", "weight": 1.0}, {"source": "prompt_connect_panel_dashboard_to_api_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_connect_panel_dashboard_to_api_\u06f2_\u0648\u0635\u0644_\u06a9\u0631\u062f\u0646_header_\u0648_userdetail_\u067e\u0646\u0644_\u0628\u0647_representationinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "source_location": "L124", "weight": 1.0}, {"source": "prompt_connect_panel_dashboard_to_api_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_connect_panel_dashboard_to_api_\u06f3_\u0635\u0641\u062d\u0647_\u06cc_dashboard_\u067e\u0646\u0644_\u0628\u0627_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "source_location": "L131", "weight": 1.0}, {"source": "prompt_connect_panel_dashboard_to_api_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_connect_panel_dashboard_to_api_\u06f4_\u0635\u0641\u062d\u0627\u062a_turns_\u0648_user_account_\u0648_add_doctor_\u067e\u0646\u0644", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "source_location": "L139", "weight": 1.0}, {"source": "prompt_connect_panel_dashboard_to_api_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_connect_panel_dashboard_to_api_\u06f5_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u0628\u06cc\u0645\u0627\u0631_\u0628\u0627_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "source_location": "L145", "weight": 1.0}, {"source": "prompt_connect_panel_dashboard_to_api_\u0627\u062a\u0635\u0627\u0644_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0648_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_api_\u0648\u0627\u0642\u0639\u06cc_\u062d\u0630\u0641_\u062f\u0627\u062f\u0647_\u0647\u0627\u06cc_mock", "target": "prompt_connect_panel_dashboard_to_api_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", "source_location": "L154", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/18b75a0aa94343da7fe5d77403f73b9e704527a92f8da7db04c627303413ef82.json b/graphify-out/cache/ast/v0.8.44/18b75a0aa94343da7fe5d77403f73b9e704527a92f8da7db04c627303413ef82.json new file mode 100644 index 0000000..dc02088 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/18b75a0aa94343da7fe5d77403f73b9e704527a92f8da7db04c627303413ef82.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_fix_appointment_payment_flow_md", "label": "fix-appointment-payment-flow.md", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "source_location": "L1"}, {"id": "prompt_fix_appointment_payment_flow_\u0631\u0641\u0639_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u062f\u0631_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646", "label": "\u0631\u0641\u0639 \u062c\u0631\u06cc\u0627\u0646 \u067e\u0631\u062f\u0627\u062e\u062a \u0648 \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u062d\u0633\u0627\u0628 \u062f\u0631 \u0646\u0648\u0628\u062a\u200c\u06af\u06cc\u0631\u06cc \u0622\u0646\u0644\u0627\u06cc\u0646", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "source_location": "L1"}, {"id": "prompt_fix_appointment_payment_flow_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "source_location": "L3"}, {"id": "prompt_fix_appointment_payment_flow_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "source_location": "L9"}, {"id": "prompt_fix_appointment_payment_flow_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "source_location": "L15"}, {"id": "prompt_fix_appointment_payment_flow_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "source_location": "L22"}, {"id": "prompt_fix_appointment_payment_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "source_location": "L32"}, {"id": "prompt_fix_appointment_payment_flow_\u0628\u0627\u06af_\u06f1_submitdata_\u062e\u0648\u0627\u0646\u062f\u0646_\u0646\u062a\u06cc\u062c\u0647_\u06cc_\u0646\u0648\u0628\u062a", "label": "\u0628\u0627\u06af \u06f1 \u2014 SubmitData: \u062e\u0648\u0627\u0646\u062f\u0646 \u0646\u062a\u06cc\u062c\u0647\u200c\u06cc \u0646\u0648\u0628\u062a", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "source_location": "L34"}, {"id": "prompt_fix_appointment_payment_flow_\u0628\u0627\u06af_\u06f2_paying_frontend_address_\u0648_config", "label": "\u0628\u0627\u06af \u06f2 \u2014 paying: frontend_address \u0648 config", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "source_location": "L45"}, {"id": "prompt_fix_appointment_payment_flow_\u0628\u0627\u06af_\u06f3_payment_uuid_page_js", "label": "\u0628\u0627\u06af \u06f3 \u2014 payment/[uuid]/page.js", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "source_location": "L57"}, {"id": "prompt_fix_appointment_payment_flow_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "source_location": "L66"}, {"id": "prompt_fix_appointment_payment_flow_\u06f1_\u0631\u0641\u0639_double_nest_\u062f\u0631_submitdata_\u0634\u0645\u0627\u0631\u0646\u062f\u0647_appointmentid", "label": "\u06f1. \u0631\u0641\u0639 double-nest \u062f\u0631 SubmitData (\u0634\u0645\u0627\u0631\u0646\u062f\u0647 + appointmentId)", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "source_location": "L68"}, {"id": "prompt_fix_appointment_payment_flow_\u06f2_\u0627\u0635\u0644\u0627\u062d_frontend_address_\u0648_redirect_url_\u062f\u0631_paying", "label": "\u06f2. \u0627\u0635\u0644\u0627\u062d frontend_address \u0648 redirect_url \u062f\u0631 paying", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "source_location": "L81"}, {"id": "prompt_fix_appointment_payment_flow_\u06f3_\u062a\u0623\u06cc\u06cc\u062f_getpaymentconfig", "label": "\u06f3. \u062a\u0623\u06cc\u06cc\u062f getPaymentConfig", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "source_location": "L98"}, {"id": "prompt_fix_appointment_payment_flow_\u06f4_\u0627\u0635\u0644\u0627\u062d_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u062a\u06cc\u062c\u0647_app_payment_uuid_page_js", "label": "\u06f4. \u0627\u0635\u0644\u0627\u062d \u0635\u0641\u062d\u0647\u200c\u06cc \u0646\u062a\u06cc\u062c\u0647 `app/payment/[uuid]/page.js`", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "source_location": "L101"}, {"id": "prompt_fix_appointment_payment_flow_\u06f5_\u0635\u0641\u062d\u0647_\u06cc_\u0648\u0627\u0633\u0637_\u0646\u062a\u06cc\u062c\u0647_\u0627\u06af\u0631_\u06af\u0632\u06cc\u0646\u0647_\u0627\u0644\u0641_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u062f", "label": "\u06f5. \u0635\u0641\u062d\u0647\u200c\u06cc \u0648\u0627\u0633\u0637 \u0646\u062a\u06cc\u062c\u0647 (\u0627\u06af\u0631 \u06af\u0632\u06cc\u0646\u0647 \u0627\u0644\u0641 \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f)", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "source_location": "L111"}, {"id": "prompt_fix_appointment_payment_flow_\u06f6_\u062a\u062b\u0628\u06cc\u062a_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u0627\u0646\u062c\u0627\u0645_\u0634\u062f\u0647_\u062a\u0623\u06cc\u06cc\u062f", "label": "\u06f6. \u062a\u062b\u0628\u06cc\u062a \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u062d\u0633\u0627\u0628 \u06a9\u0627\u0631\u0628\u0631\u06cc (\u0627\u0646\u062c\u0627\u0645\u200c\u0634\u062f\u0647 \u2014 \u062a\u0623\u06cc\u06cc\u062f)", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "source_location": "L117"}, {"id": "prompt_fix_appointment_payment_flow_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "source_location": "L120"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_fix_appointment_payment_flow_md", "target": "prompt_fix_appointment_payment_flow_\u0631\u0641\u0639_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u062f\u0631_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_fix_appointment_payment_flow_\u0631\u0641\u0639_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u062f\u0631_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646", "target": "prompt_fix_appointment_payment_flow_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_fix_appointment_payment_flow_\u0631\u0641\u0639_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u062f\u0631_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646", "target": "prompt_fix_appointment_payment_flow_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "source_location": "L9", "weight": 1.0}, {"source": "prompt_fix_appointment_payment_flow_\u0631\u0641\u0639_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u062f\u0631_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646", "target": "prompt_fix_appointment_payment_flow_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "source_location": "L15", "weight": 1.0}, {"source": "prompt_fix_appointment_payment_flow_\u0631\u0641\u0639_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u062f\u0631_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646", "target": "prompt_fix_appointment_payment_flow_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "source_location": "L22", "weight": 1.0}, {"source": "prompt_fix_appointment_payment_flow_\u0631\u0641\u0639_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u062f\u0631_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646", "target": "prompt_fix_appointment_payment_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "source_location": "L32", "weight": 1.0}, {"source": "prompt_fix_appointment_payment_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_fix_appointment_payment_flow_\u0628\u0627\u06af_\u06f1_submitdata_\u062e\u0648\u0627\u0646\u062f\u0646_\u0646\u062a\u06cc\u062c\u0647_\u06cc_\u0646\u0648\u0628\u062a", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "source_location": "L34", "weight": 1.0}, {"source": "prompt_fix_appointment_payment_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_fix_appointment_payment_flow_\u0628\u0627\u06af_\u06f2_paying_frontend_address_\u0648_config", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "source_location": "L45", "weight": 1.0}, {"source": "prompt_fix_appointment_payment_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_fix_appointment_payment_flow_\u0628\u0627\u06af_\u06f3_payment_uuid_page_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "source_location": "L57", "weight": 1.0}, {"source": "prompt_fix_appointment_payment_flow_\u0631\u0641\u0639_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u062f\u0631_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646", "target": "prompt_fix_appointment_payment_flow_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "source_location": "L66", "weight": 1.0}, {"source": "prompt_fix_appointment_payment_flow_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_appointment_payment_flow_\u06f1_\u0631\u0641\u0639_double_nest_\u062f\u0631_submitdata_\u0634\u0645\u0627\u0631\u0646\u062f\u0647_appointmentid", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "source_location": "L68", "weight": 1.0}, {"source": "prompt_fix_appointment_payment_flow_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_appointment_payment_flow_\u06f2_\u0627\u0635\u0644\u0627\u062d_frontend_address_\u0648_redirect_url_\u062f\u0631_paying", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "source_location": "L81", "weight": 1.0}, {"source": "prompt_fix_appointment_payment_flow_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_appointment_payment_flow_\u06f3_\u062a\u0623\u06cc\u06cc\u062f_getpaymentconfig", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "source_location": "L98", "weight": 1.0}, {"source": "prompt_fix_appointment_payment_flow_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_appointment_payment_flow_\u06f4_\u0627\u0635\u0644\u0627\u062d_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u062a\u06cc\u062c\u0647_app_payment_uuid_page_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "source_location": "L101", "weight": 1.0}, {"source": "prompt_fix_appointment_payment_flow_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_appointment_payment_flow_\u06f5_\u0635\u0641\u062d\u0647_\u06cc_\u0648\u0627\u0633\u0637_\u0646\u062a\u06cc\u062c\u0647_\u0627\u06af\u0631_\u06af\u0632\u06cc\u0646\u0647_\u0627\u0644\u0641_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "source_location": "L111", "weight": 1.0}, {"source": "prompt_fix_appointment_payment_flow_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_appointment_payment_flow_\u06f6_\u062a\u062b\u0628\u06cc\u062a_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u0627\u0646\u062c\u0627\u0645_\u0634\u062f\u0647_\u062a\u0623\u06cc\u06cc\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "source_location": "L117", "weight": 1.0}, {"source": "prompt_fix_appointment_payment_flow_\u0631\u0641\u0639_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u062f\u0631_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646", "target": "prompt_fix_appointment_payment_flow_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-payment-flow.md", "source_location": "L120", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/22044e56711732a73f5130b6d38607cd52df0e22fc19c6bd5778544486df932e.json b/graphify-out/cache/ast/v0.8.44/22044e56711732a73f5130b6d38607cd52df0e22fc19c6bd5778544486df932e.json new file mode 100644 index 0000000..19d650a --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/22044e56711732a73f5130b6d38607cd52df0e22fc19c6bd5778544486df932e.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_fix_login_session_userinfo_md", "label": "fix-login-session-userinfo.md", "file_type": "document", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "source_location": "L1"}, {"id": "prompt_fix_login_session_userinfo_\u0631\u0641\u0639_\u0645\u0627\u0646\u062f\u0646_\u0635\u0641\u062d\u0647_\u06cc_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0639\u062f_\u0627\u0632_\u0648\u0627\u0631\u062f_\u06a9\u0631\u062f\u0646_\u06a9\u062f_otp_\u0646\u0634\u0633\u062a_\u0633\u0627\u062e\u062a\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", "label": "\u0631\u0641\u0639 \u0645\u0627\u0646\u062f\u0646 \u0635\u0641\u062d\u0647\u200c\u06cc \u0644\u0627\u06af\u06cc\u0646 \u0628\u0639\u062f \u0627\u0632 \u0648\u0627\u0631\u062f \u06a9\u0631\u062f\u0646 \u06a9\u062f OTP (\u0646\u0634\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0646\u0645\u06cc\u200c\u0634\u0648\u062f)", "file_type": "document", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "source_location": "L1"}, {"id": "prompt_fix_login_session_userinfo_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "source_location": "L3"}, {"id": "prompt_fix_login_session_userinfo_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "source_location": "L7"}, {"id": "prompt_fix_login_session_userinfo_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "source_location": "L15"}, {"id": "prompt_fix_login_session_userinfo_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "source_location": "L19"}, {"id": "prompt_fix_login_session_userinfo_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "file_type": "document", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "source_location": "L29"}, {"id": "prompt_fix_login_session_userinfo_sendreq_js_getinfo_\u0628\u0627\u06af_\u062f\u0627\u0631", "label": "`SendReq.js` \u2192 `getInfo` (\u0628\u0627\u06af\u200c\u062f\u0627\u0631)", "file_type": "document", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "source_location": "L31"}, {"id": "prompt_fix_login_session_userinfo_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0648\u0627\u0642\u0639\u06cc_get_oauth_userinfo_\u0627\u0632_clinicpro_docs_api_auth_md", "label": "\u0642\u0631\u0627\u0631\u062f\u0627\u062f \u0648\u0627\u0642\u0639\u06cc `GET /oauth/userinfo` (\u0627\u0632 `clinicpro/docs/api/auth.md`)", "file_type": "document", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "source_location": "L56"}, {"id": "prompt_fix_login_session_userinfo_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "source_location": "L76"}, {"id": "prompt_fix_login_session_userinfo_\u06f1_\u062e\u0648\u0627\u0646\u062f\u0646_\u06a9\u0627\u0631\u0628\u0631_\u0627\u0632_res_data_\u0648_\u0633\u062a_\u06a9\u0631\u062f\u0646_\u06a9\u0648\u06a9\u06cc_\u0628\u0627_\u0634\u06cc\u0621_\u06a9\u0627\u0631\u0628\u0631", "label": "\u06f1. \u062e\u0648\u0627\u0646\u062f\u0646 \u06a9\u0627\u0631\u0628\u0631 \u0627\u0632 `res.data` \u0648 \u0633\u062a\u200c\u06a9\u0631\u062f\u0646 \u06a9\u0648\u06a9\u06cc \u0628\u0627 \u0634\u06cc\u0621 \u06a9\u0627\u0631\u0628\u0631", "file_type": "document", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "source_location": "L78"}, {"id": "prompt_fix_login_session_userinfo_\u06f2_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u0645\u0635\u0631\u0641_\u06a9\u0646\u0646\u062f\u0647_\u0647\u0627\u06cc_username", "label": "\u06f2. \u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u0645\u0635\u0631\u0641\u200c\u06a9\u0646\u0646\u062f\u0647\u200c\u0647\u0627\u06cc `username`", "file_type": "document", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "source_location": "L110"}, {"id": "prompt_fix_login_session_userinfo_\u06f3_\u062a\u0623\u06cc\u06cc\u062f_\u0639\u062f\u0645_\u0645\u0627\u0646\u062f\u0646_\u0628\u06cc_\u0635\u062f\u0627", "label": "\u06f3. \u062a\u0623\u06cc\u06cc\u062f \u0639\u062f\u0645 \u0645\u0627\u0646\u062f\u0646 \u0628\u06cc\u200c\u0635\u062f\u0627", "file_type": "document", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "source_location": "L120"}, {"id": "prompt_fix_login_session_userinfo_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "source_location": "L124"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_fix_login_session_userinfo_md", "target": "prompt_fix_login_session_userinfo_\u0631\u0641\u0639_\u0645\u0627\u0646\u062f\u0646_\u0635\u0641\u062d\u0647_\u06cc_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0639\u062f_\u0627\u0632_\u0648\u0627\u0631\u062f_\u06a9\u0631\u062f\u0646_\u06a9\u062f_otp_\u0646\u0634\u0633\u062a_\u0633\u0627\u062e\u062a\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_fix_login_session_userinfo_\u0631\u0641\u0639_\u0645\u0627\u0646\u062f\u0646_\u0635\u0641\u062d\u0647_\u06cc_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0639\u062f_\u0627\u0632_\u0648\u0627\u0631\u062f_\u06a9\u0631\u062f\u0646_\u06a9\u062f_otp_\u0646\u0634\u0633\u062a_\u0633\u0627\u062e\u062a\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", "target": "prompt_fix_login_session_userinfo_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_fix_login_session_userinfo_\u0631\u0641\u0639_\u0645\u0627\u0646\u062f\u0646_\u0635\u0641\u062d\u0647_\u06cc_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0639\u062f_\u0627\u0632_\u0648\u0627\u0631\u062f_\u06a9\u0631\u062f\u0646_\u06a9\u062f_otp_\u0646\u0634\u0633\u062a_\u0633\u0627\u062e\u062a\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", "target": "prompt_fix_login_session_userinfo_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "source_location": "L7", "weight": 1.0}, {"source": "prompt_fix_login_session_userinfo_\u0631\u0641\u0639_\u0645\u0627\u0646\u062f\u0646_\u0635\u0641\u062d\u0647_\u06cc_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0639\u062f_\u0627\u0632_\u0648\u0627\u0631\u062f_\u06a9\u0631\u062f\u0646_\u06a9\u062f_otp_\u0646\u0634\u0633\u062a_\u0633\u0627\u062e\u062a\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", "target": "prompt_fix_login_session_userinfo_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "source_location": "L15", "weight": 1.0}, {"source": "prompt_fix_login_session_userinfo_\u0631\u0641\u0639_\u0645\u0627\u0646\u062f\u0646_\u0635\u0641\u062d\u0647_\u06cc_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0639\u062f_\u0627\u0632_\u0648\u0627\u0631\u062f_\u06a9\u0631\u062f\u0646_\u06a9\u062f_otp_\u0646\u0634\u0633\u062a_\u0633\u0627\u062e\u062a\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", "target": "prompt_fix_login_session_userinfo_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "source_location": "L19", "weight": 1.0}, {"source": "prompt_fix_login_session_userinfo_\u0631\u0641\u0639_\u0645\u0627\u0646\u062f\u0646_\u0635\u0641\u062d\u0647_\u06cc_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0639\u062f_\u0627\u0632_\u0648\u0627\u0631\u062f_\u06a9\u0631\u062f\u0646_\u06a9\u062f_otp_\u0646\u0634\u0633\u062a_\u0633\u0627\u062e\u062a\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", "target": "prompt_fix_login_session_userinfo_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "source_location": "L29", "weight": 1.0}, {"source": "prompt_fix_login_session_userinfo_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_fix_login_session_userinfo_sendreq_js_getinfo_\u0628\u0627\u06af_\u062f\u0627\u0631", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "source_location": "L31", "weight": 1.0}, {"source": "prompt_fix_login_session_userinfo_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_fix_login_session_userinfo_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0648\u0627\u0642\u0639\u06cc_get_oauth_userinfo_\u0627\u0632_clinicpro_docs_api_auth_md", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "source_location": "L56", "weight": 1.0}, {"source": "prompt_fix_login_session_userinfo_\u0631\u0641\u0639_\u0645\u0627\u0646\u062f\u0646_\u0635\u0641\u062d\u0647_\u06cc_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0639\u062f_\u0627\u0632_\u0648\u0627\u0631\u062f_\u06a9\u0631\u062f\u0646_\u06a9\u062f_otp_\u0646\u0634\u0633\u062a_\u0633\u0627\u062e\u062a\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", "target": "prompt_fix_login_session_userinfo_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "source_location": "L76", "weight": 1.0}, {"source": "prompt_fix_login_session_userinfo_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_login_session_userinfo_\u06f1_\u062e\u0648\u0627\u0646\u062f\u0646_\u06a9\u0627\u0631\u0628\u0631_\u0627\u0632_res_data_\u0648_\u0633\u062a_\u06a9\u0631\u062f\u0646_\u06a9\u0648\u06a9\u06cc_\u0628\u0627_\u0634\u06cc\u0621_\u06a9\u0627\u0631\u0628\u0631", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "source_location": "L78", "weight": 1.0}, {"source": "prompt_fix_login_session_userinfo_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_login_session_userinfo_\u06f2_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u0645\u0635\u0631\u0641_\u06a9\u0646\u0646\u062f\u0647_\u0647\u0627\u06cc_username", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "source_location": "L110", "weight": 1.0}, {"source": "prompt_fix_login_session_userinfo_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_login_session_userinfo_\u06f3_\u062a\u0623\u06cc\u06cc\u062f_\u0639\u062f\u0645_\u0645\u0627\u0646\u062f\u0646_\u0628\u06cc_\u0635\u062f\u0627", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "source_location": "L120", "weight": 1.0}, {"source": "prompt_fix_login_session_userinfo_\u0631\u0641\u0639_\u0645\u0627\u0646\u062f\u0646_\u0635\u0641\u062d\u0647_\u06cc_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0639\u062f_\u0627\u0632_\u0648\u0627\u0631\u062f_\u06a9\u0631\u062f\u0646_\u06a9\u062f_otp_\u0646\u0634\u0633\u062a_\u0633\u0627\u062e\u062a\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", "target": "prompt_fix_login_session_userinfo_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-login-session-userinfo.md", "source_location": "L124", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/22951fe28fe51ecddfb70bcea671dc4be57fa388df6c4f17473d605b52951902.json b/graphify-out/cache/ast/v0.8.44/22951fe28fe51ecddfb70bcea671dc4be57fa388df6c4f17473d605b52951902.json new file mode 100644 index 0000000..9635c36 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/22951fe28fe51ecddfb70bcea671dc4be57fa388df6c4f17473d605b52951902.json @@ -0,0 +1 @@ +{"nodes": [], "edges": [], "skipped": "data json (non-object root)"} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/2ab9c060be8be2d461b1ffd2995851906d66e25c229735a3219f85e1f8195839.json b/graphify-out/cache/ast/v0.8.44/2ab9c060be8be2d461b1ffd2995851906d66e25c229735a3219f85e1f8195839.json new file mode 100644 index 0000000..69dff09 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/2ab9c060be8be2d461b1ffd2995851906d66e25c229735a3219f85e1f8195839.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_appointment_detail_fields_fix_md", "label": "appointment-detail-fields-fix.md", "file_type": "document", "source_file": ".claude/prompt/appointment-detail-fields-fix.md", "source_location": "L1"}, {"id": "prompt_appointment_detail_fields_fix_\u0627\u0635\u0644\u0627\u062d_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u062c\u0632\u0626\u06cc\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0631_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", "label": "\u0627\u0635\u0644\u0627\u062d \u0641\u06cc\u0644\u062f\u0647\u0627\u06cc \u00ab\u062c\u0632\u0626\u06cc\u0627\u062a \u0646\u0648\u0628\u062a\u00bb \u062f\u0631 \u062f\u0627\u0634\u0628\u0648\u0631\u062f", "file_type": "document", "source_file": ".claude/prompt/appointment-detail-fields-fix.md", "source_location": "L1"}, {"id": "prompt_appointment_detail_fields_fix_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/appointment-detail-fields-fix.md", "source_location": "L3"}, {"id": "prompt_appointment_detail_fields_fix_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/appointment-detail-fields-fix.md", "source_location": "L9"}, {"id": "prompt_appointment_detail_fields_fix_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/appointment-detail-fields-fix.md", "source_location": "L15"}, {"id": "prompt_appointment_detail_fields_fix_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/appointment-detail-fields-fix.md", "source_location": "L28"}, {"id": "prompt_appointment_detail_fields_fix_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_\u0647\u0631_\u062f\u0648_\u0641\u0627\u06cc\u0644_\u0645\u0634\u0627\u0628\u0647", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc \u2014 \u0647\u0631 \u062f\u0648 \u0641\u0627\u06cc\u0644 \u0645\u0634\u0627\u0628\u0647)", "file_type": "document", "source_file": ".claude/prompt/appointment-detail-fields-fix.md", "source_location": "L35"}, {"id": "prompt_appointment_detail_fields_fix_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/appointment-detail-fields-fix.md", "source_location": "L45"}, {"id": "prompt_appointment_detail_fields_fix_\u06f1_\u0627\u0635\u0644\u0627\u062d_detaillg_js", "label": "\u06f1. \u0627\u0635\u0644\u0627\u062d `DetailLg.js`", "file_type": "document", "source_file": ".claude/prompt/appointment-detail-fields-fix.md", "source_location": "L47"}, {"id": "prompt_appointment_detail_fields_fix_\u06f2_\u0627\u0635\u0644\u0627\u062d_detailsm_js", "label": "\u06f2. \u0627\u0635\u0644\u0627\u062d `DetailSm.js`", "file_type": "document", "source_file": ".claude/prompt/appointment-detail-fields-fix.md", "source_location": "L54"}, {"id": "prompt_appointment_detail_fields_fix_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/appointment-detail-fields-fix.md", "source_location": "L57"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_appointment_detail_fields_fix_md", "target": "prompt_appointment_detail_fields_fix_\u0627\u0635\u0644\u0627\u062d_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u062c\u0632\u0626\u06cc\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0631_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/appointment-detail-fields-fix.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_appointment_detail_fields_fix_\u0627\u0635\u0644\u0627\u062d_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u062c\u0632\u0626\u06cc\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0631_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", "target": "prompt_appointment_detail_fields_fix_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/appointment-detail-fields-fix.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_appointment_detail_fields_fix_\u0627\u0635\u0644\u0627\u062d_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u062c\u0632\u0626\u06cc\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0631_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", "target": "prompt_appointment_detail_fields_fix_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/appointment-detail-fields-fix.md", "source_location": "L9", "weight": 1.0}, {"source": "prompt_appointment_detail_fields_fix_\u0627\u0635\u0644\u0627\u062d_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u062c\u0632\u0626\u06cc\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0631_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", "target": "prompt_appointment_detail_fields_fix_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/appointment-detail-fields-fix.md", "source_location": "L15", "weight": 1.0}, {"source": "prompt_appointment_detail_fields_fix_\u0627\u0635\u0644\u0627\u062d_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u062c\u0632\u0626\u06cc\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0631_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", "target": "prompt_appointment_detail_fields_fix_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/appointment-detail-fields-fix.md", "source_location": "L28", "weight": 1.0}, {"source": "prompt_appointment_detail_fields_fix_\u0627\u0635\u0644\u0627\u062d_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u062c\u0632\u0626\u06cc\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0631_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", "target": "prompt_appointment_detail_fields_fix_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_\u0647\u0631_\u062f\u0648_\u0641\u0627\u06cc\u0644_\u0645\u0634\u0627\u0628\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/appointment-detail-fields-fix.md", "source_location": "L35", "weight": 1.0}, {"source": "prompt_appointment_detail_fields_fix_\u0627\u0635\u0644\u0627\u062d_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u062c\u0632\u0626\u06cc\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0631_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", "target": "prompt_appointment_detail_fields_fix_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/appointment-detail-fields-fix.md", "source_location": "L45", "weight": 1.0}, {"source": "prompt_appointment_detail_fields_fix_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_appointment_detail_fields_fix_\u06f1_\u0627\u0635\u0644\u0627\u062d_detaillg_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/appointment-detail-fields-fix.md", "source_location": "L47", "weight": 1.0}, {"source": "prompt_appointment_detail_fields_fix_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_appointment_detail_fields_fix_\u06f2_\u0627\u0635\u0644\u0627\u062d_detailsm_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/appointment-detail-fields-fix.md", "source_location": "L54", "weight": 1.0}, {"source": "prompt_appointment_detail_fields_fix_\u0627\u0635\u0644\u0627\u062d_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u062c\u0632\u0626\u06cc\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0631_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", "target": "prompt_appointment_detail_fields_fix_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/appointment-detail-fields-fix.md", "source_location": "L57", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/33b42f2ce8cac4d3129ca3504a45b69acb7d2d8a95b8a4965cd207f8faa66044.json b/graphify-out/cache/ast/v0.8.44/33b42f2ce8cac4d3129ca3504a45b69acb7d2d8a95b8a4965cd207f8faa66044.json new file mode 100644 index 0000000..e65f589 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/33b42f2ce8cac4d3129ca3504a45b69acb7d2d8a95b8a4965cd207f8faa66044.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_package_json", "label": "package.json", "file_type": "code", "source_file": "package.json", "source_location": "L1"}, {"id": "nobat724_front_package_name", "label": "name", "file_type": "code", "source_file": "package.json", "source_location": "L2"}, {"id": "nobat724_front_package_version", "label": "version", "file_type": "code", "source_file": "package.json", "source_location": "L3"}, {"id": "nobat724_front_package_private", "label": "private", "file_type": "code", "source_file": "package.json", "source_location": "L4"}, {"id": "nobat724_front_package_engines", "label": "engines", "file_type": "code", "source_file": "package.json", "source_location": "L5"}, {"id": "nobat724_front_package_engines_node", "label": "node", "file_type": "code", "source_file": "package.json", "source_location": "L6"}, {"id": "nobat724_front_package_scripts", "label": "scripts", "file_type": "code", "source_file": "package.json", "source_location": "L8"}, {"id": "nobat724_front_package_scripts_dev", "label": "dev", "file_type": "code", "source_file": "package.json", "source_location": "L9"}, {"id": "nobat724_front_package_scripts_build", "label": "build", "file_type": "code", "source_file": "package.json", "source_location": "L10"}, {"id": "nobat724_front_package_scripts_start", "label": "start", "file_type": "code", "source_file": "package.json", "source_location": "L11"}, {"id": "nobat724_front_package_scripts_lint", "label": "lint", "file_type": "code", "source_file": "package.json", "source_location": "L12"}, {"id": "nobat724_front_package_scripts_test", "label": "test", "file_type": "code", "source_file": "package.json", "source_location": "L13"}, {"id": "nobat724_front_package_scripts_test_watch", "label": "test:watch", "file_type": "code", "source_file": "package.json", "source_location": "L14"}, {"id": "nobat724_front_package_scripts_test_cov", "label": "test:cov", "file_type": "code", "source_file": "package.json", "source_location": "L15"}, {"id": "nobat724_front_package_dependencies", "label": "dependencies", "file_type": "code", "source_file": "package.json", "source_location": "L17"}, {"id": "nobat724_front_package_dependencies_casl_ability", "label": "@casl/ability", "file_type": "code", "source_file": "package.json", "source_location": "L18"}, {"id": "nobat724_front_package_dependencies_casl_react", "label": "@casl/react", "file_type": "code", "source_file": "package.json", "source_location": "L19"}, {"id": "nobat724_front_package_dependencies_emotion_cache", "label": "@emotion/cache", "file_type": "code", "source_file": "package.json", "source_location": "L20"}, {"id": "nobat724_front_package_dependencies_emotion_react", "label": "@emotion/react", "file_type": "code", "source_file": "package.json", "source_location": "L21"}, {"id": "nobat724_front_package_dependencies_emotion_styled", "label": "@emotion/styled", "file_type": "code", "source_file": "package.json", "source_location": "L22"}, {"id": "nobat724_front_package_dependencies_maptiler_sdk", "label": "@maptiler/sdk", "file_type": "code", "source_file": "package.json", "source_location": "L23"}, {"id": "nobat724_front_package_dependencies_mui_icons_material", "label": "@mui/icons-material", "file_type": "code", "source_file": "package.json", "source_location": "L24"}, {"id": "nobat724_front_package_dependencies_mui_material", "label": "@mui/material", "file_type": "code", "source_file": "package.json", "source_location": "L25"}, {"id": "nobat724_front_package_dependencies_mui_styled_engine", "label": "@mui/styled-engine", "file_type": "code", "source_file": "package.json", "source_location": "L26"}, {"id": "nobat724_front_package_dependencies_mui_x_charts", "label": "@mui/x-charts", "file_type": "code", "source_file": "package.json", "source_location": "L27"}, {"id": "nobat724_front_package_dependencies_mui_x_date_pickers", "label": "@mui/x-date-pickers", "file_type": "code", "source_file": "package.json", "source_location": "L28"}, {"id": "nobat724_front_package_dependencies_next_third_parties", "label": "@next/third-parties", "file_type": "code", "source_file": "package.json", "source_location": "L29"}, {"id": "nobat724_front_package_dependencies_aos", "label": "aos", "file_type": "code", "source_file": "package.json", "source_location": "L30"}, {"id": "nobat724_front_package_dependencies_axios", "label": "axios", "file_type": "code", "source_file": "package.json", "source_location": "L31"}, {"id": "nobat724_front_package_dependencies_date_fns", "label": "date-fns", "file_type": "code", "source_file": "package.json", "source_location": "L32"}, {"id": "nobat724_front_package_dependencies_dayjs", "label": "dayjs", "file_type": "code", "source_file": "package.json", "source_location": "L33"}, {"id": "nobat724_front_package_dependencies_html_to_image", "label": "html-to-image", "file_type": "code", "source_file": "package.json", "source_location": "L34"}, {"id": "nobat724_front_package_dependencies_html2canvas", "label": "html2canvas", "file_type": "code", "source_file": "package.json", "source_location": "L35"}, {"id": "nobat724_front_package_dependencies_i", "label": "i", "file_type": "code", "source_file": "package.json", "source_location": "L36"}, {"id": "nobat724_front_package_dependencies_isomorphic_dompurify", "label": "isomorphic-dompurify", "file_type": "code", "source_file": "package.json", "source_location": "L37"}, {"id": "nobat724_front_package_dependencies_jalaali_js", "label": "jalaali-js", "file_type": "code", "source_file": "package.json", "source_location": "L38"}, {"id": "nobat724_front_package_dependencies_jalali_moment", "label": "jalali-moment", "file_type": "code", "source_file": "package.json", "source_location": "L39"}, {"id": "nobat724_front_package_dependencies_js_cookie", "label": "js-cookie", "file_type": "code", "source_file": "package.json", "source_location": "L40"}, {"id": "nobat724_front_package_dependencies_jspdf", "label": "jspdf", "file_type": "code", "source_file": "package.json", "source_location": "L41"}, {"id": "nobat724_front_package_dependencies_moment_jalaali", "label": "moment-jalaali", "file_type": "code", "source_file": "package.json", "source_location": "L42"}, {"id": "nobat724_front_package_dependencies_next", "label": "next", "file_type": "code", "source_file": "package.json", "source_location": "L43"}, {"id": "nobat724_front_package_dependencies_next_themes", "label": "next-themes", "file_type": "code", "source_file": "package.json", "source_location": "L44"}, {"id": "nobat724_front_package_dependencies_npm", "label": "npm", "file_type": "code", "source_file": "package.json", "source_location": "L45"}, {"id": "nobat724_front_package_dependencies_postcss", "label": "postcss", "file_type": "code", "source_file": "package.json", "source_location": "L46"}, {"id": "nobat724_front_package_dependencies_qrcode", "label": "qrcode", "file_type": "code", "source_file": "package.json", "source_location": "L47"}, {"id": "nobat724_front_package_dependencies_qrcode_react", "label": "qrcode.react", "file_type": "code", "source_file": "package.json", "source_location": "L48"}, {"id": "nobat724_front_package_dependencies_react", "label": "react", "file_type": "code", "source_file": "package.json", "source_location": "L49"}, {"id": "nobat724_front_package_dependencies_react_dom", "label": "react-dom", "file_type": "code", "source_file": "package.json", "source_location": "L50"}, {"id": "nobat724_front_package_dependencies_react_easy_crop", "label": "react-easy-crop", "file_type": "code", "source_file": "package.json", "source_location": "L51"}, {"id": "nobat724_front_package_dependencies_react_google_map_picker", "label": "react-google-map-picker", "file_type": "code", "source_file": "package.json", "source_location": "L52"}, {"id": "nobat724_front_package_dependencies_react_images_uploading", "label": "react-images-uploading", "file_type": "code", "source_file": "package.json", "source_location": "L53"}, {"id": "nobat724_front_package_dependencies_react_toastify", "label": "react-toastify", "file_type": "code", "source_file": "package.json", "source_location": "L54"}, {"id": "nobat724_front_package_dependencies_sharp", "label": "sharp", "file_type": "code", "source_file": "package.json", "source_location": "L55"}, {"id": "nobat724_front_package_dependencies_styled_components", "label": "styled-components", "file_type": "code", "source_file": "package.json", "source_location": "L56"}, {"id": "nobat724_front_package_dependencies_stylis", "label": "stylis", "file_type": "code", "source_file": "package.json", "source_location": "L57"}, {"id": "nobat724_front_package_dependencies_stylis_plugin_rtl", "label": "stylis-plugin-rtl", "file_type": "code", "source_file": "package.json", "source_location": "L58"}, {"id": "nobat724_front_package_dependencies_swiper", "label": "swiper", "file_type": "code", "source_file": "package.json", "source_location": "L59"}, {"id": "nobat724_front_package_dependencies_tailwindcss", "label": "tailwindcss", "file_type": "code", "source_file": "package.json", "source_location": "L60"}, {"id": "nobat724_front_package_dependencies_uninstall", "label": "uninstall", "file_type": "code", "source_file": "package.json", "source_location": "L61"}, {"id": "nobat724_front_package_devdependencies", "label": "devDependencies", "file_type": "code", "source_file": "package.json", "source_location": "L63"}, {"id": "nobat724_front_package_devdependencies_eslint_eslintrc", "label": "@eslint/eslintrc", "file_type": "code", "source_file": "package.json", "source_location": "L64"}, {"id": "nobat724_front_package_devdependencies_testing_library_dom", "label": "@testing-library/dom", "file_type": "code", "source_file": "package.json", "source_location": "L65"}, {"id": "nobat724_front_package_devdependencies_testing_library_jest_dom", "label": "@testing-library/jest-dom", "file_type": "code", "source_file": "package.json", "source_location": "L66"}, {"id": "nobat724_front_package_devdependencies_testing_library_react", "label": "@testing-library/react", "file_type": "code", "source_file": "package.json", "source_location": "L67"}, {"id": "nobat724_front_package_devdependencies_testing_library_user_event", "label": "@testing-library/user-event", "file_type": "code", "source_file": "package.json", "source_location": "L68"}, {"id": "nobat724_front_package_devdependencies_vitejs_plugin_react", "label": "@vitejs/plugin-react", "file_type": "code", "source_file": "package.json", "source_location": "L69"}, {"id": "nobat724_front_package_devdependencies_babel_plugin_react_compiler", "label": "babel-plugin-react-compiler", "file_type": "code", "source_file": "package.json", "source_location": "L70"}, {"id": "nobat724_front_package_devdependencies_cross_env", "label": "cross-env", "file_type": "code", "source_file": "package.json", "source_location": "L71"}, {"id": "nobat724_front_package_devdependencies_eslint", "label": "eslint", "file_type": "code", "source_file": "package.json", "source_location": "L72"}, {"id": "nobat724_front_package_devdependencies_eslint_config_next", "label": "eslint-config-next", "file_type": "code", "source_file": "package.json", "source_location": "L73"}, {"id": "nobat724_front_package_devdependencies_jsdom", "label": "jsdom", "file_type": "code", "source_file": "package.json", "source_location": "L74"}, {"id": "nobat724_front_package_devdependencies_prettier", "label": "prettier", "file_type": "code", "source_file": "package.json", "source_location": "L75"}, {"id": "nobat724_front_package_devdependencies_typescript", "label": "typescript", "file_type": "code", "source_file": "package.json", "source_location": "L76"}, {"id": "nobat724_front_package_devdependencies_vitest", "label": "vitest", "file_type": "code", "source_file": "package.json", "source_location": "L77"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_package_json", "target": "nobat724_front_package_name", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L2", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_package_json", "target": "nobat724_front_package_version", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L3", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_package_json", "target": "nobat724_front_package_private", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L4", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_package_json", "target": "nobat724_front_package_engines", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L5", "weight": 1.0}, {"source": "nobat724_front_package_engines", "target": "nobat724_front_package_engines_node", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_package_json", "target": "nobat724_front_package_scripts", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L8", "weight": 1.0}, {"source": "nobat724_front_package_scripts", "target": "nobat724_front_package_scripts_dev", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L9", "weight": 1.0}, {"source": "nobat724_front_package_scripts", "target": "nobat724_front_package_scripts_build", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L10", "weight": 1.0}, {"source": "nobat724_front_package_scripts", "target": "nobat724_front_package_scripts_start", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L11", "weight": 1.0}, {"source": "nobat724_front_package_scripts", "target": "nobat724_front_package_scripts_lint", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L12", "weight": 1.0}, {"source": "nobat724_front_package_scripts", "target": "nobat724_front_package_scripts_test", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L13", "weight": 1.0}, {"source": "nobat724_front_package_scripts", "target": "nobat724_front_package_scripts_test_watch", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L14", "weight": 1.0}, {"source": "nobat724_front_package_scripts", "target": "nobat724_front_package_scripts_test_cov", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L15", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_package_json", "target": "nobat724_front_package_dependencies", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L17", "weight": 1.0}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_casl_ability", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L18", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_casl_ability", "target": "casl_ability", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L18", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_casl_react", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L19", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_casl_react", "target": "casl_react", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L19", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_emotion_cache", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L20", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_emotion_cache", "target": "emotion_cache", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L20", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_emotion_react", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L21", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_emotion_react", "target": "emotion_react", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L21", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_emotion_styled", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L22", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_emotion_styled", "target": "emotion_styled", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L22", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_maptiler_sdk", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L23", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_maptiler_sdk", "target": "maptiler_sdk", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L23", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_mui_icons_material", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L24", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_mui_icons_material", "target": "mui_icons_material", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L24", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_mui_material", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L25", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_mui_material", "target": "mui_material", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L25", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_mui_styled_engine", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L26", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_mui_styled_engine", "target": "mui_styled_engine", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L26", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_mui_x_charts", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L27", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_mui_x_charts", "target": "mui_x_charts", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L27", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_mui_x_date_pickers", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L28", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_mui_x_date_pickers", "target": "mui_x_date_pickers", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L28", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_next_third_parties", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L29", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_next_third_parties", "target": "next_third_parties", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L29", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_aos", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L30", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_aos", "target": "aos", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L30", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_axios", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L31", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_axios", "target": "axios", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L31", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_date_fns", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L32", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_date_fns", "target": "date_fns", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L32", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_dayjs", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L33", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_dayjs", "target": "dayjs", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L33", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_html_to_image", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L34", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_html_to_image", "target": "html_to_image", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L34", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_html2canvas", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L35", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_html2canvas", "target": "html2canvas", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L35", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_i", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L36", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_i", "target": "i", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L36", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_isomorphic_dompurify", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L37", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_isomorphic_dompurify", "target": "isomorphic_dompurify", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L37", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_jalaali_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L38", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_jalaali_js", "target": "jalaali_js", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L38", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_jalali_moment", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L39", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_jalali_moment", "target": "jalali_moment", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L39", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_js_cookie", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L40", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_js_cookie", "target": "js_cookie", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L40", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_jspdf", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L41", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_jspdf", "target": "jspdf", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L41", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_moment_jalaali", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L42", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_moment_jalaali", "target": "moment_jalaali", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L42", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_next", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L43", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_next", "target": "next", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L43", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_next_themes", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L44", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_next_themes", "target": "next_themes", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L44", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_npm", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L45", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_npm", "target": "npm", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L45", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_postcss", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L46", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_postcss", "target": "postcss", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L46", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_qrcode", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L47", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_qrcode", "target": "qrcode", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L47", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_qrcode_react", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L48", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_qrcode_react", "target": "qrcode_react", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L48", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_react", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L49", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_react", "target": "react", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L49", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_react_dom", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L50", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_react_dom", "target": "react_dom", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L50", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_react_easy_crop", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L51", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_react_easy_crop", "target": "react_easy_crop", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L51", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_react_google_map_picker", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L52", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_react_google_map_picker", "target": "react_google_map_picker", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L52", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_react_images_uploading", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L53", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_react_images_uploading", "target": "react_images_uploading", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L53", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_react_toastify", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L54", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_react_toastify", "target": "react_toastify", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L54", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_sharp", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L55", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_sharp", "target": "sharp", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L55", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_styled_components", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L56", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_styled_components", "target": "styled_components", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L56", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_stylis", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L57", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_stylis", "target": "stylis", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L57", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_stylis_plugin_rtl", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L58", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_stylis_plugin_rtl", "target": "stylis_plugin_rtl", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L58", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_swiper", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L59", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_swiper", "target": "swiper", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L59", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_tailwindcss", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L60", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_tailwindcss", "target": "tailwindcss", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L60", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_dependencies", "target": "nobat724_front_package_dependencies_uninstall", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L61", "weight": 1.0}, {"source": "nobat724_front_package_dependencies_uninstall", "target": "uninstall", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L61", "weight": 1.0, "context": "import"}, {"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_package_json", "target": "nobat724_front_package_devdependencies", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L63", "weight": 1.0}, {"source": "nobat724_front_package_devdependencies", "target": "nobat724_front_package_devdependencies_eslint_eslintrc", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L64", "weight": 1.0}, {"source": "nobat724_front_package_devdependencies_eslint_eslintrc", "target": "eslint_eslintrc", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L64", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_devdependencies", "target": "nobat724_front_package_devdependencies_testing_library_dom", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L65", "weight": 1.0}, {"source": "nobat724_front_package_devdependencies_testing_library_dom", "target": "testing_library_dom", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L65", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_devdependencies", "target": "nobat724_front_package_devdependencies_testing_library_jest_dom", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L66", "weight": 1.0}, {"source": "nobat724_front_package_devdependencies_testing_library_jest_dom", "target": "testing_library_jest_dom", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L66", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_devdependencies", "target": "nobat724_front_package_devdependencies_testing_library_react", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L67", "weight": 1.0}, {"source": "nobat724_front_package_devdependencies_testing_library_react", "target": "testing_library_react", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L67", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_devdependencies", "target": "nobat724_front_package_devdependencies_testing_library_user_event", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L68", "weight": 1.0}, {"source": "nobat724_front_package_devdependencies_testing_library_user_event", "target": "testing_library_user_event", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L68", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_devdependencies", "target": "nobat724_front_package_devdependencies_vitejs_plugin_react", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L69", "weight": 1.0}, {"source": "nobat724_front_package_devdependencies_vitejs_plugin_react", "target": "vitejs_plugin_react", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L69", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_devdependencies", "target": "nobat724_front_package_devdependencies_babel_plugin_react_compiler", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L70", "weight": 1.0}, {"source": "nobat724_front_package_devdependencies_babel_plugin_react_compiler", "target": "babel_plugin_react_compiler", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L70", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_devdependencies", "target": "nobat724_front_package_devdependencies_cross_env", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L71", "weight": 1.0}, {"source": "nobat724_front_package_devdependencies_cross_env", "target": "cross_env", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L71", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_devdependencies", "target": "nobat724_front_package_devdependencies_eslint", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L72", "weight": 1.0}, {"source": "nobat724_front_package_devdependencies_eslint", "target": "eslint", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L72", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_devdependencies", "target": "nobat724_front_package_devdependencies_eslint_config_next", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L73", "weight": 1.0}, {"source": "nobat724_front_package_devdependencies_eslint_config_next", "target": "eslint_config_next", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L73", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_devdependencies", "target": "nobat724_front_package_devdependencies_jsdom", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L74", "weight": 1.0}, {"source": "nobat724_front_package_devdependencies_jsdom", "target": "jsdom", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L74", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_devdependencies", "target": "nobat724_front_package_devdependencies_prettier", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L75", "weight": 1.0}, {"source": "nobat724_front_package_devdependencies_prettier", "target": "prettier", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L75", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_devdependencies", "target": "nobat724_front_package_devdependencies_typescript", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L76", "weight": 1.0}, {"source": "nobat724_front_package_devdependencies_typescript", "target": "typescript", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L76", "weight": 1.0, "context": "import"}, {"source": "nobat724_front_package_devdependencies", "target": "nobat724_front_package_devdependencies_vitest", "relation": "contains", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L77", "weight": 1.0}, {"source": "nobat724_front_package_devdependencies_vitest", "target": "vitest", "relation": "imports", "confidence": "EXTRACTED", "source_file": "package.json", "source_location": "L77", "weight": 1.0, "context": "import"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/3c07efb26e59f46bcab477c7b4d1d68958c43ec0cceda5cb735726790af4fe76.json b/graphify-out/cache/ast/v0.8.44/3c07efb26e59f46bcab477c7b4d1d68958c43ec0cceda5cb735726790af4fe76.json new file mode 100644 index 0000000..8798349 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/3c07efb26e59f46bcab477c7b4d1d68958c43ec0cceda5cb735726790af4fe76.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_jsconfig_json", "label": "jsconfig.json", "file_type": "code", "source_file": "jsconfig.json", "source_location": "L1"}, {"id": "nobat724_front_jsconfig_compileroptions", "label": "compilerOptions", "file_type": "code", "source_file": "jsconfig.json", "source_location": "L2"}, {"id": "nobat724_front_jsconfig_compileroptions_paths", "label": "paths", "file_type": "code", "source_file": "jsconfig.json", "source_location": "L3"}, {"id": "nobat724_front_jsconfig_paths", "label": "@/*", "file_type": "code", "source_file": "jsconfig.json", "source_location": "L4"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_jsconfig_json", "target": "nobat724_front_jsconfig_compileroptions", "relation": "contains", "confidence": "EXTRACTED", "source_file": "jsconfig.json", "source_location": "L2", "weight": 1.0}, {"source": "nobat724_front_jsconfig_compileroptions", "target": "nobat724_front_jsconfig_compileroptions_paths", "relation": "contains", "confidence": "EXTRACTED", "source_file": "jsconfig.json", "source_location": "L3", "weight": 1.0}, {"source": "nobat724_front_jsconfig_compileroptions_paths", "target": "nobat724_front_jsconfig_paths", "relation": "contains", "confidence": "EXTRACTED", "source_file": "jsconfig.json", "source_location": "L4", "weight": 1.0}, {"source": "nobat724_front_jsconfig_paths", "target": "ref", "relation": "extends", "confidence": "EXTRACTED", "source_file": "jsconfig.json", "source_location": "L4", "weight": 1.0, "context": "import"}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/40d115b3bc3a43851f8e317427e23bd857de37f77bb5b2080077c69e774d1a53.json b/graphify-out/cache/ast/v0.8.44/40d115b3bc3a43851f8e317427e23bd857de37f77bb5b2080077c69e774d1a53.json new file mode 100644 index 0000000..4ddf5fc --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/40d115b3bc3a43851f8e317427e23bd857de37f77bb5b2080077c69e774d1a53.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_liara_deploy_md", "label": "liara-deploy.md", "file_type": "document", "source_file": ".claude/prompt/liara-deploy.md", "source_location": "L1"}, {"id": "prompt_liara_deploy_\u062f\u06cc\u067e\u0644\u0648\u06cc_nobat724_front_\u0631\u0648\u06cc_liara_\u067e\u0644\u062a\u0641\u0631\u0645_next_js", "label": "\u062f\u06cc\u067e\u0644\u0648\u06cc nobat724_front \u0631\u0648\u06cc Liara (\u067e\u0644\u062a\u0641\u0631\u0645 Next.js)", "file_type": "document", "source_file": ".claude/prompt/liara-deploy.md", "source_location": "L1"}, {"id": "prompt_liara_deploy_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/liara-deploy.md", "source_location": "L3"}, {"id": "prompt_liara_deploy_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/liara-deploy.md", "source_location": "L9"}, {"id": "prompt_liara_deploy_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/liara-deploy.md", "source_location": "L18"}, {"id": "prompt_liara_deploy_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/liara-deploy.md", "source_location": "L22"}, {"id": "prompt_liara_deploy_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "file_type": "document", "source_file": ".claude/prompt/liara-deploy.md", "source_location": "L34"}, {"id": "prompt_liara_deploy_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/liara-deploy.md", "source_location": "L76"}, {"id": "prompt_liara_deploy_\u06f1_\u062d\u0630\u0641_\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0646\u0641\u06cc\u06af_\u062a\u06a9\u0631\u0627\u0631\u06cc", "label": "\u06f1. \u062d\u0630\u0641 \u0641\u0627\u06cc\u0644 \u06a9\u0627\u0646\u0641\u06cc\u06af \u062a\u06a9\u0631\u0627\u0631\u06cc", "file_type": "document", "source_file": ".claude/prompt/liara-deploy.md", "source_location": "L78"}, {"id": "prompt_liara_deploy_\u06f2_\u062a\u0639\u06cc\u06cc\u0646_\u0646\u0633\u062e\u0647_node_\u062f\u0631_package_json", "label": "\u06f2. \u062a\u0639\u06cc\u06cc\u0646 \u0646\u0633\u062e\u0647 Node \u062f\u0631 `package.json`", "file_type": "document", "source_file": ".claude/prompt/liara-deploy.md", "source_location": "L87"}, {"id": "prompt_liara_deploy_\u06f3_\u0633\u0627\u062e\u062a_liara_json", "label": "\u06f3. \u0633\u0627\u062e\u062a `liara.json`", "file_type": "document", "source_file": ".claude/prompt/liara-deploy.md", "source_location": "L97"}, {"id": "prompt_liara_deploy_\u06f4_\u0633\u0627\u062e\u062a_liaraignore", "label": "\u06f4. \u0633\u0627\u062e\u062a `.liaraignore`", "file_type": "document", "source_file": ".claude/prompt/liara-deploy.md", "source_location": "L113"}, {"id": "prompt_liara_deploy_\u06f5_\u0633\u062a_\u06a9\u0631\u062f\u0646_env_\u0631\u0648\u06cc_liara_\u0642\u0628\u0644_\u0627\u0632_\u0627\u0648\u0644\u06cc\u0646_build", "label": "\u06f5. \u0633\u062a \u06a9\u0631\u062f\u0646 env \u0631\u0648\u06cc Liara (\u0642\u0628\u0644 \u0627\u0632 \u0627\u0648\u0644\u06cc\u0646 build)", "file_type": "document", "source_file": ".claude/prompt/liara-deploy.md", "source_location": "L143"}, {"id": "prompt_liara_deploy_\u06f6_\u0627\u062a\u0635\u0627\u0644_\u062f\u0627\u0645\u0646\u0647_\u0647\u0627\u06cc_\u0686\u0646\u062f_\u0634\u0647\u0631\u06cc", "label": "\u06f6. \u0627\u062a\u0635\u0627\u0644 \u062f\u0627\u0645\u0646\u0647\u200c\u0647\u0627\u06cc \u0686\u0646\u062f-\u0634\u0647\u0631\u06cc", "file_type": "document", "source_file": ".claude/prompt/liara-deploy.md", "source_location": "L162"}, {"id": "prompt_liara_deploy_\u06f7_\u062f\u0631_\u0635\u0648\u0631\u062a_\u0646\u06cc\u0627\u0632_\u0627\u0641\u0632\u0648\u062f\u0646_\u062f\u0627\u0645\u0646\u0647_backend_\u0628\u0647_images_remotepatterns", "label": "\u06f7. (\u062f\u0631 \u0635\u0648\u0631\u062a \u0646\u06cc\u0627\u0632) \u0627\u0641\u0632\u0648\u062f\u0646 \u062f\u0627\u0645\u0646\u0647 backend \u0628\u0647 `images.remotePatterns`", "file_type": "document", "source_file": ".claude/prompt/liara-deploy.md", "source_location": "L166"}, {"id": "prompt_liara_deploy_\u06f8_\u062f\u06cc\u067e\u0644\u0648\u06cc", "label": "\u06f8. \u062f\u06cc\u067e\u0644\u0648\u06cc", "file_type": "document", "source_file": ".claude/prompt/liara-deploy.md", "source_location": "L174"}, {"id": "prompt_liara_deploy_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/liara-deploy.md", "source_location": "L181"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_liara_deploy_md", "target": "prompt_liara_deploy_\u062f\u06cc\u067e\u0644\u0648\u06cc_nobat724_front_\u0631\u0648\u06cc_liara_\u067e\u0644\u062a\u0641\u0631\u0645_next_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/liara-deploy.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_liara_deploy_\u062f\u06cc\u067e\u0644\u0648\u06cc_nobat724_front_\u0631\u0648\u06cc_liara_\u067e\u0644\u062a\u0641\u0631\u0645_next_js", "target": "prompt_liara_deploy_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/liara-deploy.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_liara_deploy_\u062f\u06cc\u067e\u0644\u0648\u06cc_nobat724_front_\u0631\u0648\u06cc_liara_\u067e\u0644\u062a\u0641\u0631\u0645_next_js", "target": "prompt_liara_deploy_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/liara-deploy.md", "source_location": "L9", "weight": 1.0}, {"source": "prompt_liara_deploy_\u062f\u06cc\u067e\u0644\u0648\u06cc_nobat724_front_\u0631\u0648\u06cc_liara_\u067e\u0644\u062a\u0641\u0631\u0645_next_js", "target": "prompt_liara_deploy_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/liara-deploy.md", "source_location": "L18", "weight": 1.0}, {"source": "prompt_liara_deploy_\u062f\u06cc\u067e\u0644\u0648\u06cc_nobat724_front_\u0631\u0648\u06cc_liara_\u067e\u0644\u062a\u0641\u0631\u0645_next_js", "target": "prompt_liara_deploy_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/liara-deploy.md", "source_location": "L22", "weight": 1.0}, {"source": "prompt_liara_deploy_\u062f\u06cc\u067e\u0644\u0648\u06cc_nobat724_front_\u0631\u0648\u06cc_liara_\u067e\u0644\u062a\u0641\u0631\u0645_next_js", "target": "prompt_liara_deploy_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/liara-deploy.md", "source_location": "L34", "weight": 1.0}, {"source": "prompt_liara_deploy_\u062f\u06cc\u067e\u0644\u0648\u06cc_nobat724_front_\u0631\u0648\u06cc_liara_\u067e\u0644\u062a\u0641\u0631\u0645_next_js", "target": "prompt_liara_deploy_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/liara-deploy.md", "source_location": "L76", "weight": 1.0}, {"source": "prompt_liara_deploy_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_liara_deploy_\u06f1_\u062d\u0630\u0641_\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0646\u0641\u06cc\u06af_\u062a\u06a9\u0631\u0627\u0631\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/liara-deploy.md", "source_location": "L78", "weight": 1.0}, {"source": "prompt_liara_deploy_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_liara_deploy_\u06f2_\u062a\u0639\u06cc\u06cc\u0646_\u0646\u0633\u062e\u0647_node_\u062f\u0631_package_json", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/liara-deploy.md", "source_location": "L87", "weight": 1.0}, {"source": "prompt_liara_deploy_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_liara_deploy_\u06f3_\u0633\u0627\u062e\u062a_liara_json", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/liara-deploy.md", "source_location": "L97", "weight": 1.0}, {"source": "prompt_liara_deploy_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_liara_deploy_\u06f4_\u0633\u0627\u062e\u062a_liaraignore", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/liara-deploy.md", "source_location": "L113", "weight": 1.0}, {"source": "prompt_liara_deploy_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_liara_deploy_\u06f5_\u0633\u062a_\u06a9\u0631\u062f\u0646_env_\u0631\u0648\u06cc_liara_\u0642\u0628\u0644_\u0627\u0632_\u0627\u0648\u0644\u06cc\u0646_build", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/liara-deploy.md", "source_location": "L143", "weight": 1.0}, {"source": "prompt_liara_deploy_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_liara_deploy_\u06f6_\u0627\u062a\u0635\u0627\u0644_\u062f\u0627\u0645\u0646\u0647_\u0647\u0627\u06cc_\u0686\u0646\u062f_\u0634\u0647\u0631\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/liara-deploy.md", "source_location": "L162", "weight": 1.0}, {"source": "prompt_liara_deploy_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_liara_deploy_\u06f7_\u062f\u0631_\u0635\u0648\u0631\u062a_\u0646\u06cc\u0627\u0632_\u0627\u0641\u0632\u0648\u062f\u0646_\u062f\u0627\u0645\u0646\u0647_backend_\u0628\u0647_images_remotepatterns", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/liara-deploy.md", "source_location": "L166", "weight": 1.0}, {"source": "prompt_liara_deploy_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_liara_deploy_\u06f8_\u062f\u06cc\u067e\u0644\u0648\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/liara-deploy.md", "source_location": "L174", "weight": 1.0}, {"source": "prompt_liara_deploy_\u062f\u06cc\u067e\u0644\u0648\u06cc_nobat724_front_\u0631\u0648\u06cc_liara_\u067e\u0644\u062a\u0641\u0631\u0645_next_js", "target": "prompt_liara_deploy_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/liara-deploy.md", "source_location": "L181", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/440ac7ee3fcce903f6aca0296103712fc17a1e9e86611527e9999c591573a2a2.json b/graphify-out/cache/ast/v0.8.44/440ac7ee3fcce903f6aca0296103712fc17a1e9e86611527e9999c591573a2a2.json new file mode 100644 index 0000000..9635c36 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/440ac7ee3fcce903f6aca0296103712fc17a1e9e86611527e9999c591573a2a2.json @@ -0,0 +1 @@ +{"nodes": [], "edges": [], "skipped": "data json (non-object root)"} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/4bf6587d44aa63a0b48c7a22fe7d01cf30be8d2a5385fc3205e3ba4155437411.json b/graphify-out/cache/ast/v0.8.44/4bf6587d44aa63a0b48c7a22fe7d01cf30be8d2a5385fc3205e3ba4155437411.json new file mode 100644 index 0000000..385c0d4 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/4bf6587d44aa63a0b48c7a22fe7d01cf30be8d2a5385fc3205e3ba4155437411.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_payment_single_flow_frontend_md", "label": "payment-single-flow-frontend.md", "file_type": "document", "source_file": ".claude/prompt/payment-single-flow-frontend.md", "source_location": "L1"}, {"id": "prompt_payment_single_flow_frontend_entry_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a_\u062e\u0627\u0644\u0635_\u0628\u0647_backend_\u0628\u062f\u0648\u0646_xhr_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", "label": "entry \u067e\u0631\u062f\u0627\u062e\u062a \u0628\u0647\u200c\u0635\u0648\u0631\u062a \u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a \u062e\u0627\u0644\u0635 \u0628\u0647 Backend (\u0628\u062f\u0648\u0646 XHR) \u2014 \u0633\u0627\u06cc\u062a \u0639\u0645\u0648\u0645\u06cc", "file_type": "document", "source_file": ".claude/prompt/payment-single-flow-frontend.md", "source_location": "L1"}, {"id": "prompt_payment_single_flow_frontend_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/payment-single-flow-frontend.md", "source_location": "L3"}, {"id": "prompt_payment_single_flow_frontend_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/payment-single-flow-frontend.md", "source_location": "L7"}, {"id": "prompt_payment_single_flow_frontend_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/payment-single-flow-frontend.md", "source_location": "L19"}, {"id": "prompt_payment_single_flow_frontend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/payment-single-flow-frontend.md", "source_location": "L23"}, {"id": "prompt_payment_single_flow_frontend_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "file_type": "document", "source_file": ".claude/prompt/payment-single-flow-frontend.md", "source_location": "L32"}, {"id": "prompt_payment_single_flow_frontend_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/payment-single-flow-frontend.md", "source_location": "L55"}, {"id": "prompt_payment_single_flow_frontend_\u06f1_\u062a\u0628\u062f\u06cc\u0644_\u062f\u06a9\u0645\u0647_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0647_\u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a_\u062e\u0627\u0644\u0635_\u062d\u0630\u0641_xhr", "label": "\u06f1. \u062a\u0628\u062f\u06cc\u0644 \u062f\u06a9\u0645\u0647\u0654 \u067e\u0631\u062f\u0627\u062e\u062a \u0628\u0647 \u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a\u0650 \u062e\u0627\u0644\u0635 (\u062d\u0630\u0641 XHR)", "file_type": "document", "source_file": ".claude/prompt/payment-single-flow-frontend.md", "source_location": "L57"}, {"id": "prompt_payment_single_flow_frontend_\u06f2_\u062d\u0641\u0638_\u0627\u0646\u062a\u062e\u0627\u0628_\u062f\u0631\u06af\u0627\u0647_\u0645\u0631\u062d\u0644\u0647_\u06f2_\u0646\u06cc\u0627\u0632", "label": "\u06f2. \u062d\u0641\u0638 \u0627\u0646\u062a\u062e\u0627\u0628 \u062f\u0631\u06af\u0627\u0647 (\u0645\u0631\u062d\u0644\u0647\u0654 \u06f2 \u0646\u06cc\u0627\u0632)", "file_type": "document", "source_file": ".claude/prompt/payment-single-flow-frontend.md", "source_location": "L80"}, {"id": "prompt_payment_single_flow_frontend_\u06f3_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc", "label": "\u06f3. \u067e\u0627\u06a9\u200c\u0633\u0627\u0632\u06cc", "file_type": "document", "source_file": ".claude/prompt/payment-single-flow-frontend.md", "source_location": "L86"}, {"id": "prompt_payment_single_flow_frontend_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/payment-single-flow-frontend.md", "source_location": "L91"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_payment_single_flow_frontend_md", "target": "prompt_payment_single_flow_frontend_entry_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a_\u062e\u0627\u0644\u0635_\u0628\u0647_backend_\u0628\u062f\u0648\u0646_xhr_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/payment-single-flow-frontend.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_payment_single_flow_frontend_entry_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a_\u062e\u0627\u0644\u0635_\u0628\u0647_backend_\u0628\u062f\u0648\u0646_xhr_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", "target": "prompt_payment_single_flow_frontend_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/payment-single-flow-frontend.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_payment_single_flow_frontend_entry_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a_\u062e\u0627\u0644\u0635_\u0628\u0647_backend_\u0628\u062f\u0648\u0646_xhr_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", "target": "prompt_payment_single_flow_frontend_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/payment-single-flow-frontend.md", "source_location": "L7", "weight": 1.0}, {"source": "prompt_payment_single_flow_frontend_entry_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a_\u062e\u0627\u0644\u0635_\u0628\u0647_backend_\u0628\u062f\u0648\u0646_xhr_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", "target": "prompt_payment_single_flow_frontend_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/payment-single-flow-frontend.md", "source_location": "L19", "weight": 1.0}, {"source": "prompt_payment_single_flow_frontend_entry_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a_\u062e\u0627\u0644\u0635_\u0628\u0647_backend_\u0628\u062f\u0648\u0646_xhr_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", "target": "prompt_payment_single_flow_frontend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/payment-single-flow-frontend.md", "source_location": "L23", "weight": 1.0}, {"source": "prompt_payment_single_flow_frontend_entry_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a_\u062e\u0627\u0644\u0635_\u0628\u0647_backend_\u0628\u062f\u0648\u0646_xhr_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", "target": "prompt_payment_single_flow_frontend_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/payment-single-flow-frontend.md", "source_location": "L32", "weight": 1.0}, {"source": "prompt_payment_single_flow_frontend_entry_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a_\u062e\u0627\u0644\u0635_\u0628\u0647_backend_\u0628\u062f\u0648\u0646_xhr_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", "target": "prompt_payment_single_flow_frontend_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/payment-single-flow-frontend.md", "source_location": "L55", "weight": 1.0}, {"source": "prompt_payment_single_flow_frontend_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_payment_single_flow_frontend_\u06f1_\u062a\u0628\u062f\u06cc\u0644_\u062f\u06a9\u0645\u0647_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0647_\u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a_\u062e\u0627\u0644\u0635_\u062d\u0630\u0641_xhr", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/payment-single-flow-frontend.md", "source_location": "L57", "weight": 1.0}, {"source": "prompt_payment_single_flow_frontend_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_payment_single_flow_frontend_\u06f2_\u062d\u0641\u0638_\u0627\u0646\u062a\u062e\u0627\u0628_\u062f\u0631\u06af\u0627\u0647_\u0645\u0631\u062d\u0644\u0647_\u06f2_\u0646\u06cc\u0627\u0632", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/payment-single-flow-frontend.md", "source_location": "L80", "weight": 1.0}, {"source": "prompt_payment_single_flow_frontend_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_payment_single_flow_frontend_\u06f3_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/payment-single-flow-frontend.md", "source_location": "L86", "weight": 1.0}, {"source": "prompt_payment_single_flow_frontend_entry_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a_\u062e\u0627\u0644\u0635_\u0628\u0647_backend_\u0628\u062f\u0648\u0646_xhr_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", "target": "prompt_payment_single_flow_frontend_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/payment-single-flow-frontend.md", "source_location": "L91", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/556a7ecaeb0c4bde3e6b682a03fea79fdaf7827c9d62ebb5c9b1cd58c427dc13.json b/graphify-out/cache/ast/v0.8.44/556a7ecaeb0c4bde3e6b682a03fea79fdaf7827c9d62ebb5c9b1cd58c427dc13.json new file mode 100644 index 0000000..d6a336f --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/556a7ecaeb0c4bde3e6b682a03fea79fdaf7827c9d62ebb5c9b1cd58c427dc13.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_appointment_required_account_fields_md", "label": "appointment-required-account-fields.md", "file_type": "document", "source_file": ".claude/prompt/appointment-required-account-fields.md", "source_location": "L1"}, {"id": "prompt_appointment_required_account_fields_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc", "label": "\u0627\u062c\u0628\u0627\u0631\u06cc\u200c\u06a9\u0631\u062f\u0646 \u0641\u06cc\u0644\u062f\u0647\u0627\u06cc \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u062d\u0633\u0627\u0628 \u06a9\u0627\u0631\u0628\u0631\u06cc \u062f\u0631 \u0635\u0641\u062d\u0647 \u0646\u0648\u0628\u062a\u200c\u06af\u06cc\u0631\u06cc", "file_type": "document", "source_file": ".claude/prompt/appointment-required-account-fields.md", "source_location": "L1"}, {"id": "prompt_appointment_required_account_fields_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/appointment-required-account-fields.md", "source_location": "L3"}, {"id": "prompt_appointment_required_account_fields_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/appointment-required-account-fields.md", "source_location": "L9"}, {"id": "prompt_appointment_required_account_fields_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/appointment-required-account-fields.md", "source_location": "L13"}, {"id": "prompt_appointment_required_account_fields_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/appointment-required-account-fields.md", "source_location": "L22"}, {"id": "prompt_appointment_required_account_fields_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "file_type": "document", "source_file": ".claude/prompt/appointment-required-account-fields.md", "source_location": "L30"}, {"id": "prompt_appointment_required_account_fields_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/appointment-required-account-fields.md", "source_location": "L67"}, {"id": "prompt_appointment_required_account_fields_\u06f1_\u062a\u0627\u0628\u0639_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_\u0627\u062c\u0628\u0627\u0631\u06cc_\u062f\u0631_submitdata", "label": "\u06f1. \u062a\u0627\u0628\u0639 \u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc \u0627\u062c\u0628\u0627\u0631\u06cc \u062f\u0631 `SubmitData`", "file_type": "document", "source_file": ".claude/prompt/appointment-required-account-fields.md", "source_location": "L69"}, {"id": "prompt_appointment_required_account_fields_\u06f2_\u0647\u0645\u0627\u0647\u0646\u06af\u06cc_\u0634\u06a9\u0644_\u062f\u0627\u062f\u0647", "label": "\u06f2. \u0647\u0645\u0627\u0647\u0646\u06af\u06cc \u0634\u06a9\u0644 \u062f\u0627\u062f\u0647", "file_type": "document", "source_file": ".claude/prompt/appointment-required-account-fields.md", "source_location": "L103"}, {"id": "prompt_appointment_required_account_fields_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/appointment-required-account-fields.md", "source_location": "L109"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_appointment_required_account_fields_md", "target": "prompt_appointment_required_account_fields_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/appointment-required-account-fields.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_appointment_required_account_fields_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc", "target": "prompt_appointment_required_account_fields_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/appointment-required-account-fields.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_appointment_required_account_fields_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc", "target": "prompt_appointment_required_account_fields_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/appointment-required-account-fields.md", "source_location": "L9", "weight": 1.0}, {"source": "prompt_appointment_required_account_fields_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc", "target": "prompt_appointment_required_account_fields_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/appointment-required-account-fields.md", "source_location": "L13", "weight": 1.0}, {"source": "prompt_appointment_required_account_fields_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc", "target": "prompt_appointment_required_account_fields_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/appointment-required-account-fields.md", "source_location": "L22", "weight": 1.0}, {"source": "prompt_appointment_required_account_fields_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc", "target": "prompt_appointment_required_account_fields_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/appointment-required-account-fields.md", "source_location": "L30", "weight": 1.0}, {"source": "prompt_appointment_required_account_fields_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc", "target": "prompt_appointment_required_account_fields_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/appointment-required-account-fields.md", "source_location": "L67", "weight": 1.0}, {"source": "prompt_appointment_required_account_fields_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_appointment_required_account_fields_\u06f1_\u062a\u0627\u0628\u0639_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_\u0627\u062c\u0628\u0627\u0631\u06cc_\u062f\u0631_submitdata", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/appointment-required-account-fields.md", "source_location": "L69", "weight": 1.0}, {"source": "prompt_appointment_required_account_fields_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_appointment_required_account_fields_\u06f2_\u0647\u0645\u0627\u0647\u0646\u06af\u06cc_\u0634\u06a9\u0644_\u062f\u0627\u062f\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/appointment-required-account-fields.md", "source_location": "L103", "weight": 1.0}, {"source": "prompt_appointment_required_account_fields_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc", "target": "prompt_appointment_required_account_fields_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/appointment-required-account-fields.md", "source_location": "L109", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/5d9ed62a164217933720bd64bef89e07413a7e82fe92171cf9508b24e0e5d838.json b/graphify-out/cache/ast/v0.8.44/5d9ed62a164217933720bd64bef89e07413a7e82fe92171cf9508b24e0e5d838.json new file mode 100644 index 0000000..a5df8e0 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/5d9ed62a164217933720bd64bef89e07413a7e82fe92171cf9508b24e0e5d838.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_specialties_doctor_count_wire_md", "label": "specialties-doctor-count-wire.md", "file_type": "document", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "source_location": "L1"}, {"id": "prompt_specialties_doctor_count_wire_\u0646\u0645\u0627\u06cc\u0634_\u062a\u0639\u062f\u0627\u062f_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0647\u0631_\u062a\u062e\u0635\u0635_\u062f\u0631_\u0635\u0641\u062d\u0647_specialties", "label": "\u0646\u0645\u0627\u06cc\u0634 \u062a\u0639\u062f\u0627\u062f \u067e\u0632\u0634\u06a9\u0627\u0646 \u0647\u0631 \u062a\u062e\u0635\u0635 \u062f\u0631 \u0635\u0641\u062d\u0647 /specialties", "file_type": "document", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "source_location": "L1"}, {"id": "prompt_specialties_doctor_count_wire_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "source_location": "L3"}, {"id": "prompt_specialties_doctor_count_wire_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "source_location": "L9"}, {"id": "prompt_specialties_doctor_count_wire_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "source_location": "L15"}, {"id": "prompt_specialties_doctor_count_wire_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "source_location": "L19"}, {"id": "prompt_specialties_doctor_count_wire_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "file_type": "document", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "source_location": "L28"}, {"id": "prompt_specialties_doctor_count_wire_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "source_location": "L53"}, {"id": "prompt_specialties_doctor_count_wire_\u06f1_wrapper_\u062f\u0631_services_response_js", "label": "\u06f1. wrapper \u062f\u0631 `services/response.js`", "file_type": "document", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "source_location": "L55"}, {"id": "prompt_specialties_doctor_count_wire_\u06f2_\u067e\u0627\u0633_\u062f\u0627\u062f\u0646_city_id_\u0627\u0632_\u0635\u0641\u062d\u0647_\u06cc_server_\u0628\u0647_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a_client", "label": "\u06f2. \u067e\u0627\u0633\u200c\u062f\u0627\u062f\u0646 city id \u0627\u0632 \u0635\u0641\u062d\u0647\u200c\u06cc server \u0628\u0647 \u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a client", "file_type": "document", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "source_location": "L61"}, {"id": "prompt_specialties_doctor_count_wire_\u06f3_fetch_\u062f\u0631_components_specialties_index_js", "label": "\u06f3. fetch \u062f\u0631 `components/specialties/index.js`", "file_type": "document", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "source_location": "L76"}, {"id": "prompt_specialties_doctor_count_wire_\u06f4_itemspecialties_js", "label": "\u06f4. `ItemSpecialties.js`", "file_type": "document", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "source_location": "L94"}, {"id": "prompt_specialties_doctor_count_wire_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "source_location": "L97"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_specialties_doctor_count_wire_md", "target": "prompt_specialties_doctor_count_wire_\u0646\u0645\u0627\u06cc\u0634_\u062a\u0639\u062f\u0627\u062f_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0647\u0631_\u062a\u062e\u0635\u0635_\u062f\u0631_\u0635\u0641\u062d\u0647_specialties", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_specialties_doctor_count_wire_\u0646\u0645\u0627\u06cc\u0634_\u062a\u0639\u062f\u0627\u062f_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0647\u0631_\u062a\u062e\u0635\u0635_\u062f\u0631_\u0635\u0641\u062d\u0647_specialties", "target": "prompt_specialties_doctor_count_wire_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_specialties_doctor_count_wire_\u0646\u0645\u0627\u06cc\u0634_\u062a\u0639\u062f\u0627\u062f_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0647\u0631_\u062a\u062e\u0635\u0635_\u062f\u0631_\u0635\u0641\u062d\u0647_specialties", "target": "prompt_specialties_doctor_count_wire_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "source_location": "L9", "weight": 1.0}, {"source": "prompt_specialties_doctor_count_wire_\u0646\u0645\u0627\u06cc\u0634_\u062a\u0639\u062f\u0627\u062f_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0647\u0631_\u062a\u062e\u0635\u0635_\u062f\u0631_\u0635\u0641\u062d\u0647_specialties", "target": "prompt_specialties_doctor_count_wire_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "source_location": "L15", "weight": 1.0}, {"source": "prompt_specialties_doctor_count_wire_\u0646\u0645\u0627\u06cc\u0634_\u062a\u0639\u062f\u0627\u062f_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0647\u0631_\u062a\u062e\u0635\u0635_\u062f\u0631_\u0635\u0641\u062d\u0647_specialties", "target": "prompt_specialties_doctor_count_wire_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "source_location": "L19", "weight": 1.0}, {"source": "prompt_specialties_doctor_count_wire_\u0646\u0645\u0627\u06cc\u0634_\u062a\u0639\u062f\u0627\u062f_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0647\u0631_\u062a\u062e\u0635\u0635_\u062f\u0631_\u0635\u0641\u062d\u0647_specialties", "target": "prompt_specialties_doctor_count_wire_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "source_location": "L28", "weight": 1.0}, {"source": "prompt_specialties_doctor_count_wire_\u0646\u0645\u0627\u06cc\u0634_\u062a\u0639\u062f\u0627\u062f_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0647\u0631_\u062a\u062e\u0635\u0635_\u062f\u0631_\u0635\u0641\u062d\u0647_specialties", "target": "prompt_specialties_doctor_count_wire_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "source_location": "L53", "weight": 1.0}, {"source": "prompt_specialties_doctor_count_wire_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_specialties_doctor_count_wire_\u06f1_wrapper_\u062f\u0631_services_response_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "source_location": "L55", "weight": 1.0}, {"source": "prompt_specialties_doctor_count_wire_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_specialties_doctor_count_wire_\u06f2_\u067e\u0627\u0633_\u062f\u0627\u062f\u0646_city_id_\u0627\u0632_\u0635\u0641\u062d\u0647_\u06cc_server_\u0628\u0647_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a_client", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "source_location": "L61", "weight": 1.0}, {"source": "prompt_specialties_doctor_count_wire_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_specialties_doctor_count_wire_\u06f3_fetch_\u062f\u0631_components_specialties_index_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "source_location": "L76", "weight": 1.0}, {"source": "prompt_specialties_doctor_count_wire_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_specialties_doctor_count_wire_\u06f4_itemspecialties_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "source_location": "L94", "weight": 1.0}, {"source": "prompt_specialties_doctor_count_wire_\u0646\u0645\u0627\u06cc\u0634_\u062a\u0639\u062f\u0627\u062f_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0647\u0631_\u062a\u062e\u0635\u0635_\u062f\u0631_\u0635\u0641\u062d\u0647_specialties", "target": "prompt_specialties_doctor_count_wire_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/specialties-doctor-count-wire.md", "source_location": "L97", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/62b3ddfef408bb4f96f9ddd86862aa84919e27188e9fee49244dd8255e516914.json b/graphify-out/cache/ast/v0.8.44/62b3ddfef408bb4f96f9ddd86862aa84919e27188e9fee49244dd8255e516914.json new file mode 100644 index 0000000..9635c36 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/62b3ddfef408bb4f96f9ddd86862aa84919e27188e9fee49244dd8255e516914.json @@ -0,0 +1 @@ +{"nodes": [], "edges": [], "skipped": "data json (non-object root)"} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/66a55129ea309cca03cc872462fd47053c309c64720784e79f21b4efb5ae4ec0.json b/graphify-out/cache/ast/v0.8.44/66a55129ea309cca03cc872462fd47053c309c64720784e79f21b4efb5ae4ec0.json new file mode 100644 index 0000000..e2b982b --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/66a55129ea309cca03cc872462fd47053c309c64720784e79f21b4efb5ae4ec0.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_profile_birthday_send_direction_fix_md", "label": "profile-birthday-send-direction-fix.md", "file_type": "document", "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", "source_location": "L1"}, {"id": "prompt_profile_birthday_send_direction_fix_\u0631\u0641\u0639_\u062c\u0647\u062a_\u062a\u0628\u062f\u06cc\u0644_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0647\u0646\u06af\u0627\u0645_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "label": "\u0631\u0641\u0639 \u062c\u0647\u062a \u062a\u0628\u062f\u06cc\u0644 \u062a\u0627\u0631\u06cc\u062e \u062a\u0648\u0644\u062f \u0647\u0646\u06af\u0627\u0645 \u0627\u06cc\u062c\u0627\u062f \u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "file_type": "document", "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", "source_location": "L1"}, {"id": "prompt_profile_birthday_send_direction_fix_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", "source_location": "L3"}, {"id": "prompt_profile_birthday_send_direction_fix_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", "source_location": "L9"}, {"id": "prompt_profile_birthday_send_direction_fix_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", "source_location": "L17"}, {"id": "prompt_profile_birthday_send_direction_fix_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", "source_location": "L21"}, {"id": "prompt_profile_birthday_send_direction_fix_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "file_type": "document", "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", "source_location": "L28"}, {"id": "prompt_profile_birthday_send_direction_fix_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", "source_location": "L45"}, {"id": "prompt_profile_birthday_send_direction_fix_\u06f1_\u0627\u0635\u0644\u0627\u062d_\u062c\u0647\u062a_\u062f\u0631_postdata", "label": "\u06f1. \u0627\u0635\u0644\u0627\u062d \u062c\u0647\u062a \u062f\u0631 `postData`", "file_type": "document", "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", "source_location": "L47"}, {"id": "prompt_profile_birthday_send_direction_fix_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", "source_location": "L53"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_profile_birthday_send_direction_fix_md", "target": "prompt_profile_birthday_send_direction_fix_\u0631\u0641\u0639_\u062c\u0647\u062a_\u062a\u0628\u062f\u06cc\u0644_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0647\u0646\u06af\u0627\u0645_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_profile_birthday_send_direction_fix_\u0631\u0641\u0639_\u062c\u0647\u062a_\u062a\u0628\u062f\u06cc\u0644_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0647\u0646\u06af\u0627\u0645_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "target": "prompt_profile_birthday_send_direction_fix_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_profile_birthday_send_direction_fix_\u0631\u0641\u0639_\u062c\u0647\u062a_\u062a\u0628\u062f\u06cc\u0644_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0647\u0646\u06af\u0627\u0645_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "target": "prompt_profile_birthday_send_direction_fix_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", "source_location": "L9", "weight": 1.0}, {"source": "prompt_profile_birthday_send_direction_fix_\u0631\u0641\u0639_\u062c\u0647\u062a_\u062a\u0628\u062f\u06cc\u0644_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0647\u0646\u06af\u0627\u0645_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "target": "prompt_profile_birthday_send_direction_fix_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", "source_location": "L17", "weight": 1.0}, {"source": "prompt_profile_birthday_send_direction_fix_\u0631\u0641\u0639_\u062c\u0647\u062a_\u062a\u0628\u062f\u06cc\u0644_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0647\u0646\u06af\u0627\u0645_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "target": "prompt_profile_birthday_send_direction_fix_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", "source_location": "L21", "weight": 1.0}, {"source": "prompt_profile_birthday_send_direction_fix_\u0631\u0641\u0639_\u062c\u0647\u062a_\u062a\u0628\u062f\u06cc\u0644_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0647\u0646\u06af\u0627\u0645_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "target": "prompt_profile_birthday_send_direction_fix_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", "source_location": "L28", "weight": 1.0}, {"source": "prompt_profile_birthday_send_direction_fix_\u0631\u0641\u0639_\u062c\u0647\u062a_\u062a\u0628\u062f\u06cc\u0644_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0647\u0646\u06af\u0627\u0645_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "target": "prompt_profile_birthday_send_direction_fix_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", "source_location": "L45", "weight": 1.0}, {"source": "prompt_profile_birthday_send_direction_fix_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_profile_birthday_send_direction_fix_\u06f1_\u0627\u0635\u0644\u0627\u062d_\u062c\u0647\u062a_\u062f\u0631_postdata", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", "source_location": "L47", "weight": 1.0}, {"source": "prompt_profile_birthday_send_direction_fix_\u0631\u0641\u0639_\u062c\u0647\u062a_\u062a\u0628\u062f\u06cc\u0644_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0647\u0646\u06af\u0627\u0645_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "target": "prompt_profile_birthday_send_direction_fix_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", "source_location": "L53", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/6913de88e303725560499adef7c1ce2583e257eef0b083758cb67eab05d46151.json b/graphify-out/cache/ast/v0.8.44/6913de88e303725560499adef7c1ce2583e257eef0b083758cb67eab05d46151.json new file mode 100644 index 0000000..3cd5f05 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/6913de88e303725560499adef7c1ce2583e257eef0b083758cb67eab05d46151.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_payment_flow_frontend_md", "label": "payment-flow-frontend.md", "file_type": "document", "source_file": ".claude/prompt/payment-flow-frontend.md", "source_location": "L1"}, {"id": "prompt_payment_flow_frontend_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0633\u0645\u062a_\u06a9\u0644\u0627\u06cc\u0646\u062a_\u0627\u0646\u062a\u0642\u0627\u0644_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u0628\u06a9_\u0627\u0646\u062f_\u0635\u0641\u062d\u0627\u062a_\u0646\u062a\u06cc\u062c\u0647_frontend", "label": "\u062c\u0631\u06cc\u0627\u0646 \u067e\u0631\u062f\u0627\u062e\u062a \u0633\u0645\u062a \u06a9\u0644\u0627\u06cc\u0646\u062a \u2014 \u0627\u0646\u062a\u0642\u0627\u0644 \u0627\u0632 \u0637\u0631\u06cc\u0642 \u0628\u06a9\u200c\u0627\u0646\u062f + \u0635\u0641\u062d\u0627\u062a \u0646\u062a\u06cc\u062c\u0647 (Frontend)", "file_type": "document", "source_file": ".claude/prompt/payment-flow-frontend.md", "source_location": "L1"}, {"id": "prompt_payment_flow_frontend_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/payment-flow-frontend.md", "source_location": "L3"}, {"id": "prompt_payment_flow_frontend_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/payment-flow-frontend.md", "source_location": "L7"}, {"id": "prompt_payment_flow_frontend_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/payment-flow-frontend.md", "source_location": "L15"}, {"id": "prompt_payment_flow_frontend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/payment-flow-frontend.md", "source_location": "L24"}, {"id": "prompt_payment_flow_frontend_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "file_type": "document", "source_file": ".claude/prompt/payment-flow-frontend.md", "source_location": "L33"}, {"id": "prompt_payment_flow_frontend_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/payment-flow-frontend.md", "source_location": "L53"}, {"id": "prompt_payment_flow_frontend_\u06f1_\u062a\u062b\u0628\u06cc\u062a_\u0627\u0646\u062a\u0642\u0627\u0644_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u0628\u06a9_\u0627\u0646\u062f_\u0628\u062f\u0648\u0646_\u062a\u0645\u0627\u0633_\u0645\u0633\u062a\u0642\u06cc\u0645_\u0628\u0627_\u0628\u0627\u0646\u06a9", "label": "\u06f1. \u062a\u062b\u0628\u06cc\u062a \u0627\u0646\u062a\u0642\u0627\u0644 \u0627\u0632 \u0637\u0631\u06cc\u0642 \u0628\u06a9\u200c\u0627\u0646\u062f (\u0628\u062f\u0648\u0646 \u062a\u0645\u0627\u0633 \u0645\u0633\u062a\u0642\u06cc\u0645 \u0628\u0627 \u0628\u0627\u0646\u06a9)", "file_type": "document", "source_file": ".claude/prompt/payment-flow-frontend.md", "source_location": "L55"}, {"id": "prompt_payment_flow_frontend_\u06f2_\u0635\u0641\u062d\u0647_\u0646\u062a\u06cc\u062c\u0647_\u0628\u0631_\u0627\u0633\u0627\u0633_status", "label": "\u06f2. \u0635\u0641\u062d\u0647\u0654 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0631 \u0627\u0633\u0627\u0633 `status`", "file_type": "document", "source_file": ".claude/prompt/payment-flow-frontend.md", "source_location": "L68"}, {"id": "prompt_payment_flow_frontend_\u06f3_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u0628\u0627_\u0634\u06a9\u0644_\u067e\u0627\u0633\u062e_getpayment", "label": "\u06f3. \u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u0628\u0627 \u0634\u06a9\u0644 \u067e\u0627\u0633\u062e `getPayment`", "file_type": "document", "source_file": ".claude/prompt/payment-flow-frontend.md", "source_location": "L81"}, {"id": "prompt_payment_flow_frontend_\u06f4_ux_\u0627\u0646\u0635\u0631\u0627\u0641_\u0634\u06a9\u0633\u062a", "label": "\u06f4. UX \u0627\u0646\u0635\u0631\u0627\u0641/\u0634\u06a9\u0633\u062a", "file_type": "document", "source_file": ".claude/prompt/payment-flow-frontend.md", "source_location": "L90"}, {"id": "prompt_payment_flow_frontend_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/payment-flow-frontend.md", "source_location": "L94"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_payment_flow_frontend_md", "target": "prompt_payment_flow_frontend_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0633\u0645\u062a_\u06a9\u0644\u0627\u06cc\u0646\u062a_\u0627\u0646\u062a\u0642\u0627\u0644_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u0628\u06a9_\u0627\u0646\u062f_\u0635\u0641\u062d\u0627\u062a_\u0646\u062a\u06cc\u062c\u0647_frontend", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/payment-flow-frontend.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_payment_flow_frontend_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0633\u0645\u062a_\u06a9\u0644\u0627\u06cc\u0646\u062a_\u0627\u0646\u062a\u0642\u0627\u0644_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u0628\u06a9_\u0627\u0646\u062f_\u0635\u0641\u062d\u0627\u062a_\u0646\u062a\u06cc\u062c\u0647_frontend", "target": "prompt_payment_flow_frontend_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/payment-flow-frontend.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_payment_flow_frontend_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0633\u0645\u062a_\u06a9\u0644\u0627\u06cc\u0646\u062a_\u0627\u0646\u062a\u0642\u0627\u0644_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u0628\u06a9_\u0627\u0646\u062f_\u0635\u0641\u062d\u0627\u062a_\u0646\u062a\u06cc\u062c\u0647_frontend", "target": "prompt_payment_flow_frontend_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/payment-flow-frontend.md", "source_location": "L7", "weight": 1.0}, {"source": "prompt_payment_flow_frontend_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0633\u0645\u062a_\u06a9\u0644\u0627\u06cc\u0646\u062a_\u0627\u0646\u062a\u0642\u0627\u0644_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u0628\u06a9_\u0627\u0646\u062f_\u0635\u0641\u062d\u0627\u062a_\u0646\u062a\u06cc\u062c\u0647_frontend", "target": "prompt_payment_flow_frontend_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/payment-flow-frontend.md", "source_location": "L15", "weight": 1.0}, {"source": "prompt_payment_flow_frontend_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0633\u0645\u062a_\u06a9\u0644\u0627\u06cc\u0646\u062a_\u0627\u0646\u062a\u0642\u0627\u0644_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u0628\u06a9_\u0627\u0646\u062f_\u0635\u0641\u062d\u0627\u062a_\u0646\u062a\u06cc\u062c\u0647_frontend", "target": "prompt_payment_flow_frontend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/payment-flow-frontend.md", "source_location": "L24", "weight": 1.0}, {"source": "prompt_payment_flow_frontend_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0633\u0645\u062a_\u06a9\u0644\u0627\u06cc\u0646\u062a_\u0627\u0646\u062a\u0642\u0627\u0644_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u0628\u06a9_\u0627\u0646\u062f_\u0635\u0641\u062d\u0627\u062a_\u0646\u062a\u06cc\u062c\u0647_frontend", "target": "prompt_payment_flow_frontend_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/payment-flow-frontend.md", "source_location": "L33", "weight": 1.0}, {"source": "prompt_payment_flow_frontend_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0633\u0645\u062a_\u06a9\u0644\u0627\u06cc\u0646\u062a_\u0627\u0646\u062a\u0642\u0627\u0644_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u0628\u06a9_\u0627\u0646\u062f_\u0635\u0641\u062d\u0627\u062a_\u0646\u062a\u06cc\u062c\u0647_frontend", "target": "prompt_payment_flow_frontend_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/payment-flow-frontend.md", "source_location": "L53", "weight": 1.0}, {"source": "prompt_payment_flow_frontend_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_payment_flow_frontend_\u06f1_\u062a\u062b\u0628\u06cc\u062a_\u0627\u0646\u062a\u0642\u0627\u0644_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u0628\u06a9_\u0627\u0646\u062f_\u0628\u062f\u0648\u0646_\u062a\u0645\u0627\u0633_\u0645\u0633\u062a\u0642\u06cc\u0645_\u0628\u0627_\u0628\u0627\u0646\u06a9", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/payment-flow-frontend.md", "source_location": "L55", "weight": 1.0}, {"source": "prompt_payment_flow_frontend_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_payment_flow_frontend_\u06f2_\u0635\u0641\u062d\u0647_\u0646\u062a\u06cc\u062c\u0647_\u0628\u0631_\u0627\u0633\u0627\u0633_status", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/payment-flow-frontend.md", "source_location": "L68", "weight": 1.0}, {"source": "prompt_payment_flow_frontend_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_payment_flow_frontend_\u06f3_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u0628\u0627_\u0634\u06a9\u0644_\u067e\u0627\u0633\u062e_getpayment", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/payment-flow-frontend.md", "source_location": "L81", "weight": 1.0}, {"source": "prompt_payment_flow_frontend_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_payment_flow_frontend_\u06f4_ux_\u0627\u0646\u0635\u0631\u0627\u0641_\u0634\u06a9\u0633\u062a", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/payment-flow-frontend.md", "source_location": "L90", "weight": 1.0}, {"source": "prompt_payment_flow_frontend_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0633\u0645\u062a_\u06a9\u0644\u0627\u06cc\u0646\u062a_\u0627\u0646\u062a\u0642\u0627\u0644_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u0628\u06a9_\u0627\u0646\u062f_\u0635\u0641\u062d\u0627\u062a_\u0646\u062a\u06cc\u062c\u0647_frontend", "target": "prompt_payment_flow_frontend_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/payment-flow-frontend.md", "source_location": "L94", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/69c0d8624eabb28ee1926dd11d83d02a01adf8913f80dede1ad843c21ebc0258.json b/graphify-out/cache/ast/v0.8.44/69c0d8624eabb28ee1926dd11d83d02a01adf8913f80dede1ad843c21ebc0258.json new file mode 100644 index 0000000..9635c36 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/69c0d8624eabb28ee1926dd11d83d02a01adf8913f80dede1ad843c21ebc0258.json @@ -0,0 +1 @@ +{"nodes": [], "edges": [], "skipped": "data json (non-object root)"} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/76e8926e91c5544fd793ecba45b8b4db9bff5f11593d3ed64a5a8f308ee745e9.json b/graphify-out/cache/ast/v0.8.44/76e8926e91c5544fd793ecba45b8b4db9bff5f11593d3ed64a5a8f308ee745e9.json new file mode 100644 index 0000000..e0bf29c --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/76e8926e91c5544fd793ecba45b8b4db9bff5f11593d3ed64a5a8f308ee745e9.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_nobat724_test_suite_md", "label": "nobat724-test-suite.md", "file_type": "document", "source_file": ".claude/prompt/nobat724-test-suite.md", "source_location": "L1"}, {"id": "prompt_nobat724_test_suite_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u062a\u0633\u062a_\u0648_\u0646\u0648\u0634\u062a\u0646_\u062a\u0633\u062a_\u0633\u0648\u0626\u06cc\u062a_\u0628\u0631\u0627\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_nobat724_front", "label": "\u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u062a\u0633\u062a \u0648 \u0646\u0648\u0634\u062a\u0646 \u062a\u0633\u062a\u200c\u0633\u0648\u0626\u06cc\u062a \u0628\u0631\u0627\u06cc \u0633\u0627\u06cc\u062a \u0639\u0645\u0648\u0645\u06cc (nobat724_front)", "file_type": "document", "source_file": ".claude/prompt/nobat724-test-suite.md", "source_location": "L1"}, {"id": "prompt_nobat724_test_suite_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/nobat724-test-suite.md", "source_location": "L3"}, {"id": "prompt_nobat724_test_suite_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/nobat724-test-suite.md", "source_location": "L9"}, {"id": "prompt_nobat724_test_suite_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/nobat724-test-suite.md", "source_location": "L13"}, {"id": "prompt_nobat724_test_suite_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/nobat724-test-suite.md", "source_location": "L19"}, {"id": "prompt_nobat724_test_suite_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "file_type": "document", "source_file": ".claude/prompt/nobat724-test-suite.md", "source_location": "L42"}, {"id": "prompt_nobat724_test_suite_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/nobat724-test-suite.md", "source_location": "L102"}, {"id": "prompt_nobat724_test_suite_\u06f1_\u0646\u0635\u0628_\u0627\u0628\u0632\u0627\u0631_\u0648_\u06a9\u0627\u0646\u0641\u06cc\u06af_runner", "label": "\u06f1. \u0646\u0635\u0628 \u0627\u0628\u0632\u0627\u0631 \u0648 \u06a9\u0627\u0646\u0641\u06cc\u06af runner", "file_type": "document", "source_file": ".claude/prompt/nobat724-test-suite.md", "source_location": "L104"}, {"id": "prompt_nobat724_test_suite_\u06f2_\u062a\u0633\u062a_\u062a\u0648\u0627\u0628\u0639_\u062e\u0627\u0644\u0635_utils_index_js_\u0627\u0648\u0644_\u0648_\u0633\u0646\u06af\u06cc\u0646_\u062a\u0631\u06cc\u0646", "label": "\u06f2. \u062a\u0633\u062a \u062a\u0648\u0627\u0628\u0639 \u062e\u0627\u0644\u0635 `utils/index.js` (\u0627\u0648\u0644 \u0648 \u0633\u0646\u06af\u06cc\u0646\u200c\u062a\u0631\u06cc\u0646)", "file_type": "document", "source_file": ".claude/prompt/nobat724-test-suite.md", "source_location": "L171"}, {"id": "prompt_nobat724_test_suite_\u06f3_\u062a\u0633\u062a_\u062e\u0627\u0644\u0635_lib", "label": "\u06f3. \u062a\u0633\u062a \u062e\u0627\u0644\u0635 `lib/`", "file_type": "document", "source_file": ".claude/prompt/nobat724-test-suite.md", "source_location": "L219"}, {"id": "prompt_nobat724_test_suite_\u06f4_\u062a\u0634\u062e\u06cc\u0635_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc_mock_host_window_next_headers", "label": "\u06f4. \u062a\u0634\u062e\u06cc\u0635 \u0686\u0646\u062f-\u062f\u0627\u0645\u0646\u0647\u200c\u0627\u06cc (mock host / window / next/headers)", "file_type": "document", "source_file": ".claude/prompt/nobat724-test-suite.md", "source_location": "L233"}, {"id": "prompt_nobat724_test_suite_\u06f5_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627", "label": "\u06f5. \u0633\u0631\u0648\u06cc\u0633\u200c\u0647\u0627", "file_type": "document", "source_file": ".claude/prompt/nobat724-test-suite.md", "source_location": "L256"}, {"id": "prompt_nobat724_test_suite_\u06f6_casl_context_\u0648_\u06cc\u06a9_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a", "label": "\u06f6. CASL context \u0648 \u06cc\u06a9 \u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a", "file_type": "document", "source_file": ".claude/prompt/nobat724-test-suite.md", "source_location": "L295"}, {"id": "prompt_nobat724_test_suite_\u06f7_\u0627\u062c\u0631\u0627_\u0648_\u0633\u0628\u0632\u06a9\u0631\u062f\u0646_lint", "label": "\u06f7. \u0627\u062c\u0631\u0627 \u0648 \u0633\u0628\u0632\u06a9\u0631\u062f\u0646 + lint", "file_type": "document", "source_file": ".claude/prompt/nobat724-test-suite.md", "source_location": "L314"}, {"id": "prompt_nobat724_test_suite_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/nobat724-test-suite.md", "source_location": "L323"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_nobat724_test_suite_md", "target": "prompt_nobat724_test_suite_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u062a\u0633\u062a_\u0648_\u0646\u0648\u0634\u062a\u0646_\u062a\u0633\u062a_\u0633\u0648\u0626\u06cc\u062a_\u0628\u0631\u0627\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_nobat724_front", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/nobat724-test-suite.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_nobat724_test_suite_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u062a\u0633\u062a_\u0648_\u0646\u0648\u0634\u062a\u0646_\u062a\u0633\u062a_\u0633\u0648\u0626\u06cc\u062a_\u0628\u0631\u0627\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_nobat724_front", "target": "prompt_nobat724_test_suite_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/nobat724-test-suite.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_nobat724_test_suite_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u062a\u0633\u062a_\u0648_\u0646\u0648\u0634\u062a\u0646_\u062a\u0633\u062a_\u0633\u0648\u0626\u06cc\u062a_\u0628\u0631\u0627\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_nobat724_front", "target": "prompt_nobat724_test_suite_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/nobat724-test-suite.md", "source_location": "L9", "weight": 1.0}, {"source": "prompt_nobat724_test_suite_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u062a\u0633\u062a_\u0648_\u0646\u0648\u0634\u062a\u0646_\u062a\u0633\u062a_\u0633\u0648\u0626\u06cc\u062a_\u0628\u0631\u0627\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_nobat724_front", "target": "prompt_nobat724_test_suite_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/nobat724-test-suite.md", "source_location": "L13", "weight": 1.0}, {"source": "prompt_nobat724_test_suite_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u062a\u0633\u062a_\u0648_\u0646\u0648\u0634\u062a\u0646_\u062a\u0633\u062a_\u0633\u0648\u0626\u06cc\u062a_\u0628\u0631\u0627\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_nobat724_front", "target": "prompt_nobat724_test_suite_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/nobat724-test-suite.md", "source_location": "L19", "weight": 1.0}, {"source": "prompt_nobat724_test_suite_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u062a\u0633\u062a_\u0648_\u0646\u0648\u0634\u062a\u0646_\u062a\u0633\u062a_\u0633\u0648\u0626\u06cc\u062a_\u0628\u0631\u0627\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_nobat724_front", "target": "prompt_nobat724_test_suite_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/nobat724-test-suite.md", "source_location": "L42", "weight": 1.0}, {"source": "prompt_nobat724_test_suite_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u062a\u0633\u062a_\u0648_\u0646\u0648\u0634\u062a\u0646_\u062a\u0633\u062a_\u0633\u0648\u0626\u06cc\u062a_\u0628\u0631\u0627\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_nobat724_front", "target": "prompt_nobat724_test_suite_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/nobat724-test-suite.md", "source_location": "L102", "weight": 1.0}, {"source": "prompt_nobat724_test_suite_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_nobat724_test_suite_\u06f1_\u0646\u0635\u0628_\u0627\u0628\u0632\u0627\u0631_\u0648_\u06a9\u0627\u0646\u0641\u06cc\u06af_runner", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/nobat724-test-suite.md", "source_location": "L104", "weight": 1.0}, {"source": "prompt_nobat724_test_suite_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_nobat724_test_suite_\u06f2_\u062a\u0633\u062a_\u062a\u0648\u0627\u0628\u0639_\u062e\u0627\u0644\u0635_utils_index_js_\u0627\u0648\u0644_\u0648_\u0633\u0646\u06af\u06cc\u0646_\u062a\u0631\u06cc\u0646", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/nobat724-test-suite.md", "source_location": "L171", "weight": 1.0}, {"source": "prompt_nobat724_test_suite_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_nobat724_test_suite_\u06f3_\u062a\u0633\u062a_\u062e\u0627\u0644\u0635_lib", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/nobat724-test-suite.md", "source_location": "L219", "weight": 1.0}, {"source": "prompt_nobat724_test_suite_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_nobat724_test_suite_\u06f4_\u062a\u0634\u062e\u06cc\u0635_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc_mock_host_window_next_headers", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/nobat724-test-suite.md", "source_location": "L233", "weight": 1.0}, {"source": "prompt_nobat724_test_suite_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_nobat724_test_suite_\u06f5_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/nobat724-test-suite.md", "source_location": "L256", "weight": 1.0}, {"source": "prompt_nobat724_test_suite_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_nobat724_test_suite_\u06f6_casl_context_\u0648_\u06cc\u06a9_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/nobat724-test-suite.md", "source_location": "L295", "weight": 1.0}, {"source": "prompt_nobat724_test_suite_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_nobat724_test_suite_\u06f7_\u0627\u062c\u0631\u0627_\u0648_\u0633\u0628\u0632\u06a9\u0631\u062f\u0646_lint", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/nobat724-test-suite.md", "source_location": "L314", "weight": 1.0}, {"source": "prompt_nobat724_test_suite_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u062a\u0633\u062a_\u0648_\u0646\u0648\u0634\u062a\u0646_\u062a\u0633\u062a_\u0633\u0648\u0626\u06cc\u062a_\u0628\u0631\u0627\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_nobat724_front", "target": "prompt_nobat724_test_suite_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/nobat724-test-suite.md", "source_location": "L323", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/7abb24fe0c3e3ea6125318b160cba6c41c57be779a3a96dccc77be825cb2d713.json b/graphify-out/cache/ast/v0.8.44/7abb24fe0c3e3ea6125318b160cba6c41c57be779a3a96dccc77be825cb2d713.json new file mode 100644 index 0000000..8f5ae11 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/7abb24fe0c3e3ea6125318b160cba6c41c57be779a3a96dccc77be825cb2d713.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_nobat724_root_domain_not_city_md", "label": "nobat724-root-domain-not-city.md", "file_type": "document", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L1"}, {"id": "prompt_nobat724_root_domain_not_city_\u062f\u0627\u0645\u0646\u0647_\u0631\u06cc\u0634\u0647_nobat724_com_\u0646\u0628\u0627\u06cc\u062f_\u0645\u062b\u0644_\u0634\u0647\u0631_\u0631\u0641\u062a\u0627\u0631_\u06a9\u0646\u062f", "label": "\u062f\u0627\u0645\u0646\u0647\u0654 \u0631\u06cc\u0634\u0647\u0654 nobat724.com \u0646\u0628\u0627\u06cc\u062f \u0645\u062b\u0644 \u00ab\u0634\u0647\u0631\u00bb \u0631\u0641\u062a\u0627\u0631 \u06a9\u0646\u062f", "file_type": "document", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L1"}, {"id": "prompt_nobat724_root_domain_not_city_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L3"}, {"id": "prompt_nobat724_root_domain_not_city_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L7"}, {"id": "prompt_nobat724_root_domain_not_city_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L17"}, {"id": "prompt_nobat724_root_domain_not_city_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L24"}, {"id": "prompt_nobat724_root_domain_not_city_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "file_type": "document", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L35"}, {"id": "prompt_nobat724_root_domain_not_city_lib_getstateinfo_js", "label": "`lib/getStateInfo.js`", "file_type": "document", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L37"}, {"id": "prompt_nobat724_root_domain_not_city_app_doctors_page_js_\u0628\u0627\u06af_\u0646\u0648\u0639", "label": "`app/doctors/page.js` (\u0628\u0627\u06af \u0646\u0648\u0639)", "file_type": "document", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L49"}, {"id": "prompt_nobat724_root_domain_not_city_components_doctors_index_js_\u0628\u0627\u06af_\u0646\u0648\u0639_\u062f\u0631_defaultfilter", "label": "`components/doctors/index.js` (\u0628\u0627\u06af \u0646\u0648\u0639 \u062f\u0631 defaultFilter)", "file_type": "document", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L57"}, {"id": "prompt_nobat724_root_domain_not_city_context_provinceprovider_js", "label": "`context/ProvinceProvider.js`", "file_type": "document", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L65"}, {"id": "prompt_nobat724_root_domain_not_city_app_specialties_page_js", "label": "`app/specialties/page.js`", "file_type": "document", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L73"}, {"id": "prompt_nobat724_root_domain_not_city_services_response_js_\u0628\u062f\u0648\u0646_\u062a\u063a\u06cc\u06cc\u0631_\u0641\u0642\u0637_\u0628\u0631\u0627\u06cc_\u0645\u0631\u062c\u0639", "label": "`services/response.js` (\u0628\u062f\u0648\u0646 \u062a\u063a\u06cc\u06cc\u0631 \u2014 \u0641\u0642\u0637 \u0628\u0631\u0627\u06cc \u0645\u0631\u062c\u0639)", "file_type": "document", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L78"}, {"id": "prompt_nobat724_root_domain_not_city_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L86"}, {"id": "prompt_nobat724_root_domain_not_city_\u06f1_\u062a\u0639\u0631\u06cc\u0641_\u0645\u0631\u06a9\u0632\u06cc_\u0631\u06cc\u0634\u0647_isroot_\u062f\u0631_getstateinfo", "label": "\u06f1. \u062a\u0639\u0631\u06cc\u0641 \u0645\u0631\u06a9\u0632\u06cc \u0631\u06cc\u0634\u0647 + `isRoot` \u062f\u0631 `getStateInfo`", "file_type": "document", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L88"}, {"id": "prompt_nobat724_root_domain_not_city_\u06f2_app_doctors_page_js_\u0631\u0648\u06cc_\u0631\u06cc\u0634\u0647_city_\u062a\u0632\u0631\u06cc\u0642_\u0646\u0634\u0648\u062f", "label": "\u06f2. `app/doctors/page.js` \u2014 \u0631\u0648\u06cc \u0631\u06cc\u0634\u0647 city \u062a\u0632\u0631\u06cc\u0642 \u0646\u0634\u0648\u062f", "file_type": "document", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L106"}, {"id": "prompt_nobat724_root_domain_not_city_\u06f3_components_doctors_index_js_defaultfilter_\u0628\u062f\u0648\u0646_\u0634\u0647\u0631_\u0631\u0648\u06cc_\u0631\u06cc\u0634\u0647", "label": "\u06f3. `components/doctors/index.js` \u2014 defaultFilter \u0628\u062f\u0648\u0646 \u0634\u0647\u0631 \u0631\u0648\u06cc \u0631\u06cc\u0634\u0647", "file_type": "document", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L117"}, {"id": "prompt_nobat724_root_domain_not_city_\u06f4_context_provinceprovider_js_cityid_\u0631\u0648\u06cc_\u0631\u06cc\u0634\u0647_null", "label": "\u06f4. `context/ProvinceProvider.js` \u2014 cityId \u0631\u0648\u06cc \u0631\u06cc\u0634\u0647 null", "file_type": "document", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L128"}, {"id": "prompt_nobat724_root_domain_not_city_\u06f5_app_specialties_page_js_\u0648_\u0647\u0631_getspecialtydoctorcounts_\u0634\u0645\u0627\u0631\u0634_\u0645\u0628\u062a\u0646\u06cc_\u0628\u0631_\u0634\u0647\u0631", "label": "\u06f5. `app/specialties/page.js` (\u0648 \u0647\u0631 `getSpecialtyDoctorCounts`/\u0634\u0645\u0627\u0631\u0634 \u0645\u0628\u062a\u0646\u06cc \u0628\u0631 \u0634\u0647\u0631)", "file_type": "document", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L139"}, {"id": "prompt_nobat724_root_domain_not_city_\u06f6_\u062c\u0633\u062a\u062c\u0648\u06cc_\u0628\u0627\u0642\u06cc_\u0645\u0627\u0646\u062f\u0647_\u0627\u0644\u06af\u0648\u06cc_\u0628\u0627\u06af", "label": "\u06f6. \u062c\u0633\u062a\u062c\u0648\u06cc \u0628\u0627\u0642\u06cc\u200c\u0645\u0627\u0646\u062f\u0647\u0654 \u0627\u0644\u06af\u0648\u06cc \u0628\u0627\u06af", "file_type": "document", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L147"}, {"id": "prompt_nobat724_root_domain_not_city_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L154"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_nobat724_root_domain_not_city_md", "target": "prompt_nobat724_root_domain_not_city_\u062f\u0627\u0645\u0646\u0647_\u0631\u06cc\u0634\u0647_nobat724_com_\u0646\u0628\u0627\u06cc\u062f_\u0645\u062b\u0644_\u0634\u0647\u0631_\u0631\u0641\u062a\u0627\u0631_\u06a9\u0646\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_nobat724_root_domain_not_city_\u062f\u0627\u0645\u0646\u0647_\u0631\u06cc\u0634\u0647_nobat724_com_\u0646\u0628\u0627\u06cc\u062f_\u0645\u062b\u0644_\u0634\u0647\u0631_\u0631\u0641\u062a\u0627\u0631_\u06a9\u0646\u062f", "target": "prompt_nobat724_root_domain_not_city_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_nobat724_root_domain_not_city_\u062f\u0627\u0645\u0646\u0647_\u0631\u06cc\u0634\u0647_nobat724_com_\u0646\u0628\u0627\u06cc\u062f_\u0645\u062b\u0644_\u0634\u0647\u0631_\u0631\u0641\u062a\u0627\u0631_\u06a9\u0646\u062f", "target": "prompt_nobat724_root_domain_not_city_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L7", "weight": 1.0}, {"source": "prompt_nobat724_root_domain_not_city_\u062f\u0627\u0645\u0646\u0647_\u0631\u06cc\u0634\u0647_nobat724_com_\u0646\u0628\u0627\u06cc\u062f_\u0645\u062b\u0644_\u0634\u0647\u0631_\u0631\u0641\u062a\u0627\u0631_\u06a9\u0646\u062f", "target": "prompt_nobat724_root_domain_not_city_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L17", "weight": 1.0}, {"source": "prompt_nobat724_root_domain_not_city_\u062f\u0627\u0645\u0646\u0647_\u0631\u06cc\u0634\u0647_nobat724_com_\u0646\u0628\u0627\u06cc\u062f_\u0645\u062b\u0644_\u0634\u0647\u0631_\u0631\u0641\u062a\u0627\u0631_\u06a9\u0646\u062f", "target": "prompt_nobat724_root_domain_not_city_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L24", "weight": 1.0}, {"source": "prompt_nobat724_root_domain_not_city_\u062f\u0627\u0645\u0646\u0647_\u0631\u06cc\u0634\u0647_nobat724_com_\u0646\u0628\u0627\u06cc\u062f_\u0645\u062b\u0644_\u0634\u0647\u0631_\u0631\u0641\u062a\u0627\u0631_\u06a9\u0646\u062f", "target": "prompt_nobat724_root_domain_not_city_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L35", "weight": 1.0}, {"source": "prompt_nobat724_root_domain_not_city_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "target": "prompt_nobat724_root_domain_not_city_lib_getstateinfo_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L37", "weight": 1.0}, {"source": "prompt_nobat724_root_domain_not_city_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "target": "prompt_nobat724_root_domain_not_city_app_doctors_page_js_\u0628\u0627\u06af_\u0646\u0648\u0639", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L49", "weight": 1.0}, {"source": "prompt_nobat724_root_domain_not_city_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "target": "prompt_nobat724_root_domain_not_city_components_doctors_index_js_\u0628\u0627\u06af_\u0646\u0648\u0639_\u062f\u0631_defaultfilter", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L57", "weight": 1.0}, {"source": "prompt_nobat724_root_domain_not_city_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "target": "prompt_nobat724_root_domain_not_city_context_provinceprovider_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L65", "weight": 1.0}, {"source": "prompt_nobat724_root_domain_not_city_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "target": "prompt_nobat724_root_domain_not_city_app_specialties_page_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L73", "weight": 1.0}, {"source": "prompt_nobat724_root_domain_not_city_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "target": "prompt_nobat724_root_domain_not_city_services_response_js_\u0628\u062f\u0648\u0646_\u062a\u063a\u06cc\u06cc\u0631_\u0641\u0642\u0637_\u0628\u0631\u0627\u06cc_\u0645\u0631\u062c\u0639", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L78", "weight": 1.0}, {"source": "prompt_nobat724_root_domain_not_city_\u062f\u0627\u0645\u0646\u0647_\u0631\u06cc\u0634\u0647_nobat724_com_\u0646\u0628\u0627\u06cc\u062f_\u0645\u062b\u0644_\u0634\u0647\u0631_\u0631\u0641\u062a\u0627\u0631_\u06a9\u0646\u062f", "target": "prompt_nobat724_root_domain_not_city_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L86", "weight": 1.0}, {"source": "prompt_nobat724_root_domain_not_city_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_nobat724_root_domain_not_city_\u06f1_\u062a\u0639\u0631\u06cc\u0641_\u0645\u0631\u06a9\u0632\u06cc_\u0631\u06cc\u0634\u0647_isroot_\u062f\u0631_getstateinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L88", "weight": 1.0}, {"source": "prompt_nobat724_root_domain_not_city_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_nobat724_root_domain_not_city_\u06f2_app_doctors_page_js_\u0631\u0648\u06cc_\u0631\u06cc\u0634\u0647_city_\u062a\u0632\u0631\u06cc\u0642_\u0646\u0634\u0648\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L106", "weight": 1.0}, {"source": "prompt_nobat724_root_domain_not_city_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_nobat724_root_domain_not_city_\u06f3_components_doctors_index_js_defaultfilter_\u0628\u062f\u0648\u0646_\u0634\u0647\u0631_\u0631\u0648\u06cc_\u0631\u06cc\u0634\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L117", "weight": 1.0}, {"source": "prompt_nobat724_root_domain_not_city_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_nobat724_root_domain_not_city_\u06f4_context_provinceprovider_js_cityid_\u0631\u0648\u06cc_\u0631\u06cc\u0634\u0647_null", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L128", "weight": 1.0}, {"source": "prompt_nobat724_root_domain_not_city_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_nobat724_root_domain_not_city_\u06f5_app_specialties_page_js_\u0648_\u0647\u0631_getspecialtydoctorcounts_\u0634\u0645\u0627\u0631\u0634_\u0645\u0628\u062a\u0646\u06cc_\u0628\u0631_\u0634\u0647\u0631", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L139", "weight": 1.0}, {"source": "prompt_nobat724_root_domain_not_city_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_nobat724_root_domain_not_city_\u06f6_\u062c\u0633\u062a\u062c\u0648\u06cc_\u0628\u0627\u0642\u06cc_\u0645\u0627\u0646\u062f\u0647_\u0627\u0644\u06af\u0648\u06cc_\u0628\u0627\u06af", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L147", "weight": 1.0}, {"source": "prompt_nobat724_root_domain_not_city_\u062f\u0627\u0645\u0646\u0647_\u0631\u06cc\u0634\u0647_nobat724_com_\u0646\u0628\u0627\u06cc\u062f_\u0645\u062b\u0644_\u0634\u0647\u0631_\u0631\u0641\u062a\u0627\u0631_\u06a9\u0646\u062f", "target": "prompt_nobat724_root_domain_not_city_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", "source_location": "L154", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/80fa177614a400037aa8b30941d025013544ef3ee864a7696d732cdac1cc6c3c.json b/graphify-out/cache/ast/v0.8.44/80fa177614a400037aa8b30941d025013544ef3ee864a7696d732cdac1cc6c3c.json new file mode 100644 index 0000000..9635c36 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/80fa177614a400037aa8b30941d025013544ef3ee864a7696d732cdac1cc6c3c.json @@ -0,0 +1 @@ +{"nodes": [], "edges": [], "skipped": "data json (non-object root)"} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/8113bbc0cb9b92135d3a293d761ff889a5f78b9d05d7273c7f8b0736c229c68f.json b/graphify-out/cache/ast/v0.8.44/8113bbc0cb9b92135d3a293d761ff889a5f78b9d05d7273c7f8b0736c229c68f.json new file mode 100644 index 0000000..6369f0f --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/8113bbc0cb9b92135d3a293d761ff889a5f78b9d05d7273c7f8b0736c229c68f.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_doctor_poster_redesign_md", "label": "doctor-poster-redesign.md", "file_type": "document", "source_file": ".claude/prompt/doctor-poster-redesign.md", "source_location": "L1"}, {"id": "prompt_doctor_poster_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u062d\u0631\u0641\u0647_\u0627\u06cc_\u067e\u0648\u0633\u062a\u0631_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc_\u067e\u0632\u0634\u06a9_\u062f\u0627\u0646\u0644\u0648\u062f", "label": "\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc \u062d\u0631\u0641\u0647\u200c\u0627\u06cc \u067e\u0648\u0633\u062a\u0631 \u0627\u0634\u062a\u0631\u0627\u06a9\u200c\u06af\u0630\u0627\u0631\u06cc \u067e\u0632\u0634\u06a9 (\u062f\u0627\u0646\u0644\u0648\u062f)", "file_type": "document", "source_file": ".claude/prompt/doctor-poster-redesign.md", "source_location": "L1"}, {"id": "prompt_doctor_poster_redesign_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/doctor-poster-redesign.md", "source_location": "L3"}, {"id": "prompt_doctor_poster_redesign_\u0646\u0642\u0634", "label": "\u0646\u0642\u0634", "file_type": "document", "source_file": ".claude/prompt/doctor-poster-redesign.md", "source_location": "L7"}, {"id": "prompt_doctor_poster_redesign_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/doctor-poster-redesign.md", "source_location": "L11"}, {"id": "prompt_doctor_poster_redesign_\u0647\u062f\u0641", "label": "\u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/doctor-poster-redesign.md", "source_location": "L17"}, {"id": "prompt_doctor_poster_redesign_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/doctor-poster-redesign.md", "source_location": "L24"}, {"id": "prompt_doctor_poster_redesign_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "file_type": "document", "source_file": ".claude/prompt/doctor-poster-redesign.md", "source_location": "L41"}, {"id": "prompt_doctor_poster_redesign_\u062f\u0627\u062f\u0647_\u0647\u0627\u06cc_\u062f\u0631_\u062f\u0633\u062a\u0631\u0633", "label": "\u062f\u0627\u062f\u0647\u200c\u0647\u0627\u06cc \u062f\u0631 \u062f\u0633\u062a\u0631\u0633", "file_type": "document", "source_file": ".claude/prompt/doctor-poster-redesign.md", "source_location": "L91"}, {"id": "prompt_doctor_poster_redesign_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/doctor-poster-redesign.md", "source_location": "L97"}, {"id": "prompt_doctor_poster_redesign_\u06f1_\u06a9\u0627\u0646\u0648\u0627\u0633_\u062b\u0627\u0628\u062a_\u0648_\u0628\u0627\u06a9\u06cc\u0641\u06cc\u062a", "label": "\u06f1. \u06a9\u0627\u0646\u0648\u0627\u0633 \u062b\u0627\u0628\u062a \u0648 \u0628\u0627\u06a9\u06cc\u0641\u06cc\u062a", "file_type": "document", "source_file": ".claude/prompt/doctor-poster-redesign.md", "source_location": "L99"}, {"id": "prompt_doctor_poster_redesign_\u06f2_\u0633\u06cc\u0633\u062a\u0645_\u0628\u0635\u0631\u06cc_\u0628\u0647_\u0639\u0646\u0648\u0627\u0646_ui_ux", "label": "\u06f2. \u0633\u06cc\u0633\u062a\u0645 \u0628\u0635\u0631\u06cc (\u0628\u0647\u200c\u0639\u0646\u0648\u0627\u0646 UI/UX)", "file_type": "document", "source_file": ".claude/prompt/doctor-poster-redesign.md", "source_location": "L106"}, {"id": "prompt_doctor_poster_redesign_\u06f3_\u0647\u062f\u0631_\u0628\u0631\u0646\u062f_\u0644\u0648\u06af\u0648_\u0627\u0644\u0632\u0627\u0645_\u06a9\u0627\u0631\u0628\u0631", "label": "\u06f3. \u0647\u062f\u0631 \u0628\u0631\u0646\u062f + \u0644\u0648\u06af\u0648 (\u0627\u0644\u0632\u0627\u0645 \u06a9\u0627\u0631\u0628\u0631)", "file_type": "document", "source_file": ".claude/prompt/doctor-poster-redesign.md", "source_location": "L116"}, {"id": "prompt_doctor_poster_redesign_\u06f4_\u0628\u062f\u0646\u0647_\u0628\u062e\u0634_\u0647\u0627\u06cc_\u0627\u0637\u0644\u0627\u0639\u0627\u062a\u06cc_\u0628\u0627_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0633\u0631\u0631\u06cc\u0632", "label": "\u06f4. \u0628\u062f\u0646\u0647 \u2014 \u0628\u062e\u0634\u200c\u0647\u0627\u06cc \u0627\u0637\u0644\u0627\u0639\u0627\u062a\u06cc \u0628\u0627 \u0645\u062f\u06cc\u0631\u06cc\u062a \u0633\u0631\u0631\u06cc\u0632", "file_type": "document", "source_file": ".claude/prompt/doctor-poster-redesign.md", "source_location": "L139"}, {"id": "prompt_doctor_poster_redesign_\u06f5_\u0641\u0648\u062a\u0631_qr_cta_\u0648\u0627\u062a\u0631\u0645\u0627\u0631\u06a9_\u0644\u0648\u06af\u0648", "label": "\u06f5. \u0641\u0648\u062a\u0631 \u2014 QR + CTA + \u0648\u0627\u062a\u0631\u0645\u0627\u0631\u06a9 \u0644\u0648\u06af\u0648", "file_type": "document", "source_file": ".claude/prompt/doctor-poster-redesign.md", "source_location": "L147"}, {"id": "prompt_doctor_poster_redesign_\u06f6_\u062d\u0641\u0638_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u0628\u0627_\u067e\u0627\u06cc\u067e_\u0644\u0627\u06cc\u0646_\u062f\u0627\u0646\u0644\u0648\u062f", "label": "\u06f6. \u062d\u0641\u0638 \u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u0628\u0627 \u067e\u0627\u06cc\u067e\u200c\u0644\u0627\u06cc\u0646 \u062f\u0627\u0646\u0644\u0648\u062f", "file_type": "document", "source_file": ".claude/prompt/doctor-poster-redesign.md", "source_location": "L154"}, {"id": "prompt_doctor_poster_redesign_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/doctor-poster-redesign.md", "source_location": "L160"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_doctor_poster_redesign_md", "target": "prompt_doctor_poster_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u062d\u0631\u0641\u0647_\u0627\u06cc_\u067e\u0648\u0633\u062a\u0631_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc_\u067e\u0632\u0634\u06a9_\u062f\u0627\u0646\u0644\u0648\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-poster-redesign.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_doctor_poster_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u062d\u0631\u0641\u0647_\u0627\u06cc_\u067e\u0648\u0633\u062a\u0631_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc_\u067e\u0632\u0634\u06a9_\u062f\u0627\u0646\u0644\u0648\u062f", "target": "prompt_doctor_poster_redesign_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-poster-redesign.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_doctor_poster_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u062d\u0631\u0641\u0647_\u0627\u06cc_\u067e\u0648\u0633\u062a\u0631_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc_\u067e\u0632\u0634\u06a9_\u062f\u0627\u0646\u0644\u0648\u062f", "target": "prompt_doctor_poster_redesign_\u0646\u0642\u0634", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-poster-redesign.md", "source_location": "L7", "weight": 1.0}, {"source": "prompt_doctor_poster_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u062d\u0631\u0641\u0647_\u0627\u06cc_\u067e\u0648\u0633\u062a\u0631_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc_\u067e\u0632\u0634\u06a9_\u062f\u0627\u0646\u0644\u0648\u062f", "target": "prompt_doctor_poster_redesign_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-poster-redesign.md", "source_location": "L11", "weight": 1.0}, {"source": "prompt_doctor_poster_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u062d\u0631\u0641\u0647_\u0627\u06cc_\u067e\u0648\u0633\u062a\u0631_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc_\u067e\u0632\u0634\u06a9_\u062f\u0627\u0646\u0644\u0648\u062f", "target": "prompt_doctor_poster_redesign_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-poster-redesign.md", "source_location": "L17", "weight": 1.0}, {"source": "prompt_doctor_poster_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u062d\u0631\u0641\u0647_\u0627\u06cc_\u067e\u0648\u0633\u062a\u0631_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc_\u067e\u0632\u0634\u06a9_\u062f\u0627\u0646\u0644\u0648\u062f", "target": "prompt_doctor_poster_redesign_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-poster-redesign.md", "source_location": "L24", "weight": 1.0}, {"source": "prompt_doctor_poster_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u062d\u0631\u0641\u0647_\u0627\u06cc_\u067e\u0648\u0633\u062a\u0631_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc_\u067e\u0632\u0634\u06a9_\u062f\u0627\u0646\u0644\u0648\u062f", "target": "prompt_doctor_poster_redesign_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-poster-redesign.md", "source_location": "L41", "weight": 1.0}, {"source": "prompt_doctor_poster_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u062d\u0631\u0641\u0647_\u0627\u06cc_\u067e\u0648\u0633\u062a\u0631_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc_\u067e\u0632\u0634\u06a9_\u062f\u0627\u0646\u0644\u0648\u062f", "target": "prompt_doctor_poster_redesign_\u062f\u0627\u062f\u0647_\u0647\u0627\u06cc_\u062f\u0631_\u062f\u0633\u062a\u0631\u0633", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-poster-redesign.md", "source_location": "L91", "weight": 1.0}, {"source": "prompt_doctor_poster_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u062d\u0631\u0641\u0647_\u0627\u06cc_\u067e\u0648\u0633\u062a\u0631_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc_\u067e\u0632\u0634\u06a9_\u062f\u0627\u0646\u0644\u0648\u062f", "target": "prompt_doctor_poster_redesign_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-poster-redesign.md", "source_location": "L97", "weight": 1.0}, {"source": "prompt_doctor_poster_redesign_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_doctor_poster_redesign_\u06f1_\u06a9\u0627\u0646\u0648\u0627\u0633_\u062b\u0627\u0628\u062a_\u0648_\u0628\u0627\u06a9\u06cc\u0641\u06cc\u062a", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-poster-redesign.md", "source_location": "L99", "weight": 1.0}, {"source": "prompt_doctor_poster_redesign_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_doctor_poster_redesign_\u06f2_\u0633\u06cc\u0633\u062a\u0645_\u0628\u0635\u0631\u06cc_\u0628\u0647_\u0639\u0646\u0648\u0627\u0646_ui_ux", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-poster-redesign.md", "source_location": "L106", "weight": 1.0}, {"source": "prompt_doctor_poster_redesign_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_doctor_poster_redesign_\u06f3_\u0647\u062f\u0631_\u0628\u0631\u0646\u062f_\u0644\u0648\u06af\u0648_\u0627\u0644\u0632\u0627\u0645_\u06a9\u0627\u0631\u0628\u0631", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-poster-redesign.md", "source_location": "L116", "weight": 1.0}, {"source": "prompt_doctor_poster_redesign_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_doctor_poster_redesign_\u06f4_\u0628\u062f\u0646\u0647_\u0628\u062e\u0634_\u0647\u0627\u06cc_\u0627\u0637\u0644\u0627\u0639\u0627\u062a\u06cc_\u0628\u0627_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0633\u0631\u0631\u06cc\u0632", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-poster-redesign.md", "source_location": "L139", "weight": 1.0}, {"source": "prompt_doctor_poster_redesign_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_doctor_poster_redesign_\u06f5_\u0641\u0648\u062a\u0631_qr_cta_\u0648\u0627\u062a\u0631\u0645\u0627\u0631\u06a9_\u0644\u0648\u06af\u0648", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-poster-redesign.md", "source_location": "L147", "weight": 1.0}, {"source": "prompt_doctor_poster_redesign_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_doctor_poster_redesign_\u06f6_\u062d\u0641\u0638_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u0628\u0627_\u067e\u0627\u06cc\u067e_\u0644\u0627\u06cc\u0646_\u062f\u0627\u0646\u0644\u0648\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-poster-redesign.md", "source_location": "L154", "weight": 1.0}, {"source": "prompt_doctor_poster_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u062d\u0631\u0641\u0647_\u0627\u06cc_\u067e\u0648\u0633\u062a\u0631_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc_\u067e\u0632\u0634\u06a9_\u062f\u0627\u0646\u0644\u0648\u062f", "target": "prompt_doctor_poster_redesign_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-poster-redesign.md", "source_location": "L160", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/858b8f4020417e1cca3ad7e6f0a3153039d04748997b78688faf1ca88b758b0f.json b/graphify-out/cache/ast/v0.8.44/858b8f4020417e1cca3ad7e6f0a3153039d04748997b78688faf1ca88b758b0f.json new file mode 100644 index 0000000..9336fdf --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/858b8f4020417e1cca3ad7e6f0a3153039d04748997b78688faf1ca88b758b0f.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_readme_md", "label": "README.md", "file_type": "document", "source_file": "README.md", "source_location": "L1"}, {"id": "nobat724_front_readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "label": "\ud83c\udfe5 \u0646\u0648\u0628\u062a724 (Nobat724) - \u0633\u06cc\u0633\u062a\u0645 \u0646\u0648\u0628\u062a\u200c\u062f\u0647\u06cc \u0622\u0646\u0644\u0627\u06cc\u0646 \u067e\u0632\u0634\u06a9\u06cc", "file_type": "document", "source_file": "README.md", "source_location": "L1"}, {"id": "nobat724_front_readme_\u0641\u0647\u0631\u0633\u062a_\u0645\u0637\u0627\u0644\u0628", "label": "\ud83d\udccb \u0641\u0647\u0631\u0633\u062a \u0645\u0637\u0627\u0644\u0628", "file_type": "document", "source_file": "README.md", "source_location": "L3"}, {"id": "nobat724_front_readme_\u0645\u0639\u0631\u0641\u06cc_\u067e\u0631\u0648\u0698\u0647", "label": "\ud83c\udfaf \u0645\u0639\u0631\u0641\u06cc \u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": "README.md", "source_location": "L19"}, {"id": "nobat724_front_readme_\u0648\u06cc\u0698\u06af\u06cc_\u0647\u0627\u06cc_\u0627\u0635\u0644\u06cc", "label": "\u0648\u06cc\u0698\u06af\u06cc\u200c\u0647\u0627\u06cc \u0627\u0635\u0644\u06cc:", "file_type": "document", "source_file": "README.md", "source_location": "L23"}, {"id": "nobat724_front_readme_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0648_\u062a\u06a9\u0646\u0648\u0644\u0648\u0698\u06cc", "label": "\ud83c\udfd7\ufe0f \u0645\u0639\u0645\u0627\u0631\u06cc \u0648 \u062a\u06a9\u0646\u0648\u0644\u0648\u0698\u06cc", "file_type": "document", "source_file": "README.md", "source_location": "L36"}, {"id": "nobat724_front_readme_frontend_framework", "label": "Frontend Framework", "file_type": "document", "source_file": "README.md", "source_location": "L38"}, {"id": "nobat724_front_readme_ui_ux", "label": "UI/UX", "file_type": "document", "source_file": "README.md", "source_location": "L44"}, {"id": "nobat724_front_readme_state_management_data_fetching", "label": "State Management & Data Fetching", "file_type": "document", "source_file": "README.md", "source_location": "L52"}, {"id": "nobat724_front_readme_authentication_authorization", "label": "Authentication & Authorization", "file_type": "document", "source_file": "README.md", "source_location": "L58"}, {"id": "nobat724_front_readme_\u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647_\u0647\u0627\u06cc_\u062a\u062e\u0635\u0635\u06cc", "label": "\u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647\u200c\u0647\u0627\u06cc \u062a\u062e\u0635\u0635\u06cc", "file_type": "document", "source_file": "README.md", "source_location": "L64"}, {"id": "nobat724_front_readme_development_tools", "label": "Development Tools", "file_type": "document", "source_file": "README.md", "source_location": "L73"}, {"id": "nobat724_front_readme_\u0633\u0627\u062e\u062a\u0627\u0631_\u067e\u0631\u0648\u0698\u0647", "label": "\ud83d\udcc1 \u0633\u0627\u062e\u062a\u0627\u0631 \u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": "README.md", "source_location": "L81"}, {"id": "nobat724_front_readme_\u0648\u06cc\u0698\u06af\u06cc_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u062f\u06cc", "label": "\u2728 \u0648\u06cc\u0698\u06af\u06cc\u200c\u0647\u0627\u06cc \u06a9\u0644\u06cc\u062f\u06cc", "file_type": "document", "source_file": "README.md", "source_location": "L171"}, {"id": "nobat724_front_readme_1_multi_domain_architecture", "label": "1. Multi-Domain Architecture", "file_type": "document", "source_file": "README.md", "source_location": "L173"}, {"id": "nobat724_front_readme_2_\u0633\u06cc\u0633\u062a\u0645_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", "label": "2. \u0633\u06cc\u0633\u062a\u0645 \u0627\u062d\u0631\u0627\u0632 \u0647\u0648\u06cc\u062a", "file_type": "document", "source_file": "README.md", "source_location": "L194"}, {"id": "nobat724_front_readme_3_\u0633\u06cc\u0633\u062a\u0645_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", "label": "3. \u0633\u06cc\u0633\u062a\u0645 \u0631\u0632\u0631\u0648 \u0646\u0648\u0628\u062a", "file_type": "document", "source_file": "README.md", "source_location": "L222"}, {"id": "nobat724_front_readme_4_\u067e\u0646\u0644_\u0645\u062f\u06cc\u0631\u06cc\u062a\u06cc", "label": "4. \u067e\u0646\u0644 \u0645\u062f\u06cc\u0631\u06cc\u062a\u06cc", "file_type": "document", "source_file": "README.md", "source_location": "L232"}, {"id": "nobat724_front_readme_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", "label": "\ud83d\ude80 \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": "README.md", "source_location": "L259"}, {"id": "nobat724_front_readme_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", "label": "\u067e\u06cc\u0634\u200c\u0646\u06cc\u0627\u0632\u0647\u0627", "file_type": "document", "source_file": "README.md", "source_location": "L261"}, {"id": "nobat724_front_readme_\u0646\u0635\u0628_\u0648_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc", "label": "\u0646\u0635\u0628 \u0648 \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc", "file_type": "document", "source_file": "README.md", "source_location": "L267"}, {"id": "nobat724_front_readme_\u0627\u0633\u06a9\u0631\u06cc\u067e\u062a_\u0647\u0627\u06cc_\u0645\u0648\u062c\u0648\u062f", "label": "\u0627\u0633\u06a9\u0631\u06cc\u067e\u062a\u200c\u0647\u0627\u06cc \u0645\u0648\u062c\u0648\u062f", "file_type": "document", "source_file": "README.md", "source_location": "L297"}, {"id": "nobat724_front_readme_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0628\u0627_docker", "label": "\u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0628\u0627 Docker", "file_type": "document", "source_file": "README.md", "source_location": "L308"}, {"id": "nobat724_front_readme_\u0633\u06cc\u0633\u062a\u0645_multi_domain", "label": "\ud83c\udf10 \u0633\u06cc\u0633\u062a\u0645 Multi-Domain", "file_type": "document", "source_file": "README.md", "source_location": "L323"}, {"id": "nobat724_front_readme_\u0633\u0627\u062e\u062a\u0627\u0631_\u062f\u0627\u0645\u0646\u0647_\u0647\u0627", "label": "\u0633\u0627\u062e\u062a\u0627\u0631 \u062f\u0627\u0645\u0646\u0647\u200c\u0647\u0627", "file_type": "document", "source_file": "README.md", "source_location": "L325"}, {"id": "nobat724_front_readme_\u0641\u0631\u0622\u06cc\u0646\u062f_\u062a\u0634\u062e\u06cc\u0635_\u0634\u0647\u0631", "label": "\u0641\u0631\u0622\u06cc\u0646\u062f \u062a\u0634\u062e\u06cc\u0635 \u0634\u0647\u0631", "file_type": "document", "source_file": "README.md", "source_location": "L336"}, {"id": "nobat724_front_readme_metadata_\u062f\u0627\u06cc\u0646\u0627\u0645\u06cc\u06a9_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0634\u0647\u0631", "label": "Metadata \u062f\u0627\u06cc\u0646\u0627\u0645\u06cc\u06a9 \u0628\u0631 \u0627\u0633\u0627\u0633 \u0634\u0647\u0631", "file_type": "document", "source_file": "README.md", "source_location": "L367"}, {"id": "nobat724_front_readme_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_\u0648_\u0645\u062c\u0648\u0632\u0647\u0627", "label": "\ud83d\udd10 \u0627\u062d\u0631\u0627\u0632 \u0647\u0648\u06cc\u062a \u0648 \u0645\u062c\u0648\u0632\u0647\u0627", "file_type": "document", "source_file": "README.md", "source_location": "L384"}, {"id": "nobat724_front_readme_\u0641\u0631\u0622\u06cc\u0646\u062f_\u0648\u0631\u0648\u062f", "label": "\u0641\u0631\u0622\u06cc\u0646\u062f \u0648\u0631\u0648\u062f", "file_type": "document", "source_file": "README.md", "source_location": "L386"}, {"id": "nobat724_front_readme_cookies_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0634\u062f\u0647", "label": "Cookies \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0634\u062f\u0647", "file_type": "document", "source_file": "README.md", "source_location": "L394"}, {"id": "nobat724_front_readme_\u0645\u062d\u0627\u0641\u0638\u062a_\u0627\u0632_\u0645\u0633\u06cc\u0631\u0647\u0627", "label": "\u0645\u062d\u0627\u0641\u0638\u062a \u0627\u0632 \u0645\u0633\u06cc\u0631\u0647\u0627", "file_type": "document", "source_file": "README.md", "source_location": "L401"}, {"id": "nobat724_front_readme_\u0645\u0633\u06cc\u0631\u0647\u0627_\u0648_\u0635\u0641\u062d\u0627\u062a", "label": "\ud83d\udccd \u0645\u0633\u06cc\u0631\u0647\u0627 \u0648 \u0635\u0641\u062d\u0627\u062a", "file_type": "document", "source_file": "README.md", "source_location": "L437"}, {"id": "nobat724_front_readme_\u0635\u0641\u062d\u0627\u062a_\u0639\u0645\u0648\u0645\u06cc_public", "label": "\u0635\u0641\u062d\u0627\u062a \u0639\u0645\u0648\u0645\u06cc (Public)", "file_type": "document", "source_file": "README.md", "source_location": "L439"}, {"id": "nobat724_front_readme_\u0635\u0641\u062d\u0627\u062a_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", "label": "\u0635\u0641\u062d\u0627\u062a \u0631\u0632\u0631\u0648 \u0646\u0648\u0628\u062a", "file_type": "document", "source_file": "README.md", "source_location": "L454"}, {"id": "nobat724_front_readme_\u0635\u0641\u062d\u0627\u062a_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", "label": "\u0635\u0641\u062d\u0627\u062a \u0627\u062d\u0631\u0627\u0632 \u0647\u0648\u06cc\u062a", "file_type": "document", "source_file": "README.md", "source_location": "L460"}, {"id": "nobat724_front_readme_\u067e\u0646\u0644_\u0645\u062f\u06cc\u0631\u06cc\u062a\u06cc_protected", "label": "\u067e\u0646\u0644 \u0645\u062f\u06cc\u0631\u06cc\u062a\u06cc (Protected)", "file_type": "document", "source_file": "README.md", "source_location": "L467"}, {"id": "nobat724_front_readme_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a_\u0647\u0627\u06cc_\u0627\u0635\u0644\u06cc", "label": "\ud83e\udde9 \u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a\u200c\u0647\u0627\u06cc \u0627\u0635\u0644\u06cc", "file_type": "document", "source_file": "README.md", "source_location": "L478"}, {"id": "nobat724_front_readme_layout_components", "label": "Layout Components", "file_type": "document", "source_file": "README.md", "source_location": "L480"}, {"id": "nobat724_front_readme_feature_components", "label": "Feature Components", "file_type": "document", "source_file": "README.md", "source_location": "L502"}, {"id": "nobat724_front_readme_api_\u0648_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627", "label": "\ud83d\udd0c API \u0648 \u0633\u0631\u0648\u06cc\u0633\u200c\u0647\u0627", "file_type": "document", "source_file": "README.md", "source_location": "L540"}, {"id": "nobat724_front_readme_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_axios_services_api_js", "label": "\u062a\u0646\u0638\u06cc\u0645\u0627\u062a Axios (`services/api.js`)", "file_type": "document", "source_file": "README.md", "source_location": "L542"}, {"id": "nobat724_front_readme_api_endpoints_services_response_js", "label": "API Endpoints (`services/response.js`)", "file_type": "document", "source_file": "README.md", "source_location": "L562"}, {"id": "nobat724_front_readme_helper_functions_helper_index_js", "label": "Helper Functions (`helper/index.js`)", "file_type": "document", "source_file": "README.md", "source_location": "L604"}, {"id": "nobat724_front_readme_\u0627\u0633\u062a\u0627\u06cc\u0644_\u062f\u0647\u06cc", "label": "\ud83c\udfa8 \u0627\u0633\u062a\u0627\u06cc\u0644\u200c\u062f\u0647\u06cc", "file_type": "document", "source_file": "README.md", "source_location": "L632"}, {"id": "nobat724_front_readme_tailwind_css", "label": "Tailwind CSS", "file_type": "document", "source_file": "README.md", "source_location": "L634"}, {"id": "nobat724_front_readme_material_ui_theme", "label": "Material-UI Theme", "file_type": "document", "source_file": "README.md", "source_location": "L655"}, {"id": "nobat724_front_readme_dark_mode", "label": "Dark Mode", "file_type": "document", "source_file": "README.md", "source_location": "L671"}, {"id": "nobat724_front_readme_deployment", "label": "\ud83d\udc33 Deployment", "file_type": "document", "source_file": "README.md", "source_location": "L692"}, {"id": "nobat724_front_readme_\u0645\u062a\u063a\u06cc\u0631\u0647\u0627\u06cc_\u0645\u062d\u06cc\u0637\u06cc_\u0645\u0648\u0631\u062f_\u0646\u06cc\u0627\u0632", "label": "\u0645\u062a\u063a\u06cc\u0631\u0647\u0627\u06cc \u0645\u062d\u06cc\u0637\u06cc \u0645\u0648\u0631\u062f \u0646\u06cc\u0627\u0632", "file_type": "document", "source_file": "README.md", "source_location": "L694"}, {"id": "nobat724_front_readme_build_production", "label": "Build Production", "file_type": "document", "source_file": "README.md", "source_location": "L712"}, {"id": "nobat724_front_readme_docker_deployment", "label": "Docker Deployment", "file_type": "document", "source_file": "README.md", "source_location": "L722"}, {"id": "nobat724_front_readme_docker_compose", "label": "Docker Compose", "file_type": "document", "source_file": "README.md", "source_location": "L735"}, {"id": "nobat724_front_readme_\u0646\u06a9\u0627\u062a_\u062a\u0648\u0633\u0639\u0647", "label": "\ud83d\udcdd \u0646\u06a9\u0627\u062a \u062a\u0648\u0633\u0639\u0647", "file_type": "document", "source_file": "README.md", "source_location": "L756"}, {"id": "nobat724_front_readme_1_\u0627\u0641\u0632\u0648\u062f\u0646_\u0635\u0641\u062d\u0647_\u062c\u062f\u06cc\u062f", "label": "1. \u0627\u0641\u0632\u0648\u062f\u0646 \u0635\u0641\u062d\u0647 \u062c\u062f\u06cc\u062f", "file_type": "document", "source_file": "README.md", "source_location": "L758"}, {"id": "nobat724_front_readme_2_\u0627\u0641\u0632\u0648\u062f\u0646_api_endpoint_\u062c\u062f\u06cc\u062f", "label": "2. \u0627\u0641\u0632\u0648\u062f\u0646 API Endpoint \u062c\u062f\u06cc\u062f", "file_type": "document", "source_file": "README.md", "source_location": "L773"}, {"id": "nobat724_front_readme_3_\u0627\u0641\u0632\u0648\u062f\u0646_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a_\u062c\u062f\u06cc\u062f", "label": "3. \u0627\u0641\u0632\u0648\u062f\u0646 \u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a \u062c\u062f\u06cc\u062f", "file_type": "document", "source_file": "README.md", "source_location": "L784"}, {"id": "nobat724_front_readme_4_\u06a9\u0627\u0631_\u0628\u0627_\u062a\u0627\u0631\u06cc\u062e_\u0634\u0645\u0633\u06cc", "label": "4. \u06a9\u0627\u0631 \u0628\u0627 \u062a\u0627\u0631\u06cc\u062e \u0634\u0645\u0633\u06cc", "file_type": "document", "source_file": "README.md", "source_location": "L797"}, {"id": "nobat724_front_readme_5_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_context", "label": "5. \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 Context", "file_type": "document", "source_file": "README.md", "source_location": "L811"}, {"id": "nobat724_front_readme_troubleshooting", "label": "\ud83d\udd27 Troubleshooting", "file_type": "document", "source_file": "README.md", "source_location": "L826"}, {"id": "nobat724_front_readme_\u0645\u0634\u06a9\u0644\u0627\u062a_\u0631\u0627\u06cc\u062c", "label": "\u0645\u0634\u06a9\u0644\u0627\u062a \u0631\u0627\u06cc\u062c", "file_type": "document", "source_file": "README.md", "source_location": "L828"}, {"id": "nobat724_front_readme_\u0645\u0646\u0627\u0628\u0639_\u0645\u0641\u06cc\u062f", "label": "\ud83d\udcda \u0645\u0646\u0627\u0628\u0639 \u0645\u0641\u06cc\u062f", "file_type": "document", "source_file": "README.md", "source_location": "L856"}, {"id": "nobat724_front_readme_\u062a\u06cc\u0645_\u062a\u0648\u0633\u0639\u0647", "label": "\ud83d\udc65 \u062a\u06cc\u0645 \u062a\u0648\u0633\u0639\u0647", "file_type": "document", "source_file": "README.md", "source_location": "L866"}, {"id": "nobat724_front_readme_\u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc", "label": "\ud83d\udcde \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc", "file_type": "document", "source_file": "README.md", "source_location": "L883"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_readme_md", "target": "nobat724_front_readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L1", "weight": 1.0}, {"source": "nobat724_front_readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "target": "nobat724_front_readme_\u0641\u0647\u0631\u0633\u062a_\u0645\u0637\u0627\u0644\u0628", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L3", "weight": 1.0}, {"source": "nobat724_front_readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "target": "nobat724_front_readme_\u0645\u0639\u0631\u0641\u06cc_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L19", "weight": 1.0}, {"source": "nobat724_front_readme_\u0645\u0639\u0631\u0641\u06cc_\u067e\u0631\u0648\u0698\u0647", "target": "nobat724_front_readme_\u0648\u06cc\u0698\u06af\u06cc_\u0647\u0627\u06cc_\u0627\u0635\u0644\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L23", "weight": 1.0}, {"source": "nobat724_front_readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "target": "nobat724_front_readme_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0648_\u062a\u06a9\u0646\u0648\u0644\u0648\u0698\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L36", "weight": 1.0}, {"source": "nobat724_front_readme_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0648_\u062a\u06a9\u0646\u0648\u0644\u0648\u0698\u06cc", "target": "nobat724_front_readme_frontend_framework", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L38", "weight": 1.0}, {"source": "nobat724_front_readme_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0648_\u062a\u06a9\u0646\u0648\u0644\u0648\u0698\u06cc", "target": "nobat724_front_readme_ui_ux", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L44", "weight": 1.0}, {"source": "nobat724_front_readme_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0648_\u062a\u06a9\u0646\u0648\u0644\u0648\u0698\u06cc", "target": "nobat724_front_readme_state_management_data_fetching", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L52", "weight": 1.0}, {"source": "nobat724_front_readme_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0648_\u062a\u06a9\u0646\u0648\u0644\u0648\u0698\u06cc", "target": "nobat724_front_readme_authentication_authorization", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L58", "weight": 1.0}, {"source": "nobat724_front_readme_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0648_\u062a\u06a9\u0646\u0648\u0644\u0648\u0698\u06cc", "target": "nobat724_front_readme_\u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647_\u0647\u0627\u06cc_\u062a\u062e\u0635\u0635\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L64", "weight": 1.0}, {"source": "nobat724_front_readme_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0648_\u062a\u06a9\u0646\u0648\u0644\u0648\u0698\u06cc", "target": "nobat724_front_readme_development_tools", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L73", "weight": 1.0}, {"source": "nobat724_front_readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "target": "nobat724_front_readme_\u0633\u0627\u062e\u062a\u0627\u0631_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L81", "weight": 1.0}, {"source": "nobat724_front_readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "target": "nobat724_front_readme_\u0648\u06cc\u0698\u06af\u06cc_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u062f\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L171", "weight": 1.0}, {"source": "nobat724_front_readme_\u0648\u06cc\u0698\u06af\u06cc_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u062f\u06cc", "target": "nobat724_front_readme_1_multi_domain_architecture", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L173", "weight": 1.0}, {"source": "nobat724_front_readme_\u0648\u06cc\u0698\u06af\u06cc_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u062f\u06cc", "target": "nobat724_front_readme_2_\u0633\u06cc\u0633\u062a\u0645_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L194", "weight": 1.0}, {"source": "nobat724_front_readme_\u0648\u06cc\u0698\u06af\u06cc_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u062f\u06cc", "target": "nobat724_front_readme_3_\u0633\u06cc\u0633\u062a\u0645_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L222", "weight": 1.0}, {"source": "nobat724_front_readme_\u0648\u06cc\u0698\u06af\u06cc_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u062f\u06cc", "target": "nobat724_front_readme_4_\u067e\u0646\u0644_\u0645\u062f\u06cc\u0631\u06cc\u062a\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L232", "weight": 1.0}, {"source": "nobat724_front_readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "target": "nobat724_front_readme_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L259", "weight": 1.0}, {"source": "nobat724_front_readme_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", "target": "nobat724_front_readme_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L261", "weight": 1.0}, {"source": "nobat724_front_readme_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", "target": "nobat724_front_readme_\u0646\u0635\u0628_\u0648_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L267", "weight": 1.0}, {"source": "nobat724_front_readme_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", "target": "nobat724_front_readme_\u0627\u0633\u06a9\u0631\u06cc\u067e\u062a_\u0647\u0627\u06cc_\u0645\u0648\u062c\u0648\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L297", "weight": 1.0}, {"source": "nobat724_front_readme_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", "target": "nobat724_front_readme_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0628\u0627_docker", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L308", "weight": 1.0}, {"source": "nobat724_front_readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "target": "nobat724_front_readme_\u0633\u06cc\u0633\u062a\u0645_multi_domain", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L323", "weight": 1.0}, {"source": "nobat724_front_readme_\u0633\u06cc\u0633\u062a\u0645_multi_domain", "target": "nobat724_front_readme_\u0633\u0627\u062e\u062a\u0627\u0631_\u062f\u0627\u0645\u0646\u0647_\u0647\u0627", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L325", "weight": 1.0}, {"source": "nobat724_front_readme_\u0633\u06cc\u0633\u062a\u0645_multi_domain", "target": "nobat724_front_readme_\u0641\u0631\u0622\u06cc\u0646\u062f_\u062a\u0634\u062e\u06cc\u0635_\u0634\u0647\u0631", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L336", "weight": 1.0}, {"source": "nobat724_front_readme_\u0633\u06cc\u0633\u062a\u0645_multi_domain", "target": "nobat724_front_readme_metadata_\u062f\u0627\u06cc\u0646\u0627\u0645\u06cc\u06a9_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0634\u0647\u0631", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L367", "weight": 1.0}, {"source": "nobat724_front_readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "target": "nobat724_front_readme_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_\u0648_\u0645\u062c\u0648\u0632\u0647\u0627", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L384", "weight": 1.0}, {"source": "nobat724_front_readme_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_\u0648_\u0645\u062c\u0648\u0632\u0647\u0627", "target": "nobat724_front_readme_\u0641\u0631\u0622\u06cc\u0646\u062f_\u0648\u0631\u0648\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L386", "weight": 1.0}, {"source": "nobat724_front_readme_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_\u0648_\u0645\u062c\u0648\u0632\u0647\u0627", "target": "nobat724_front_readme_cookies_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0634\u062f\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L394", "weight": 1.0}, {"source": "nobat724_front_readme_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_\u0648_\u0645\u062c\u0648\u0632\u0647\u0627", "target": "nobat724_front_readme_\u0645\u062d\u0627\u0641\u0638\u062a_\u0627\u0632_\u0645\u0633\u06cc\u0631\u0647\u0627", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L401", "weight": 1.0}, {"source": "nobat724_front_readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "target": "nobat724_front_readme_\u0645\u0633\u06cc\u0631\u0647\u0627_\u0648_\u0635\u0641\u062d\u0627\u062a", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L437", "weight": 1.0}, {"source": "nobat724_front_readme_\u0645\u0633\u06cc\u0631\u0647\u0627_\u0648_\u0635\u0641\u062d\u0627\u062a", "target": "nobat724_front_readme_\u0635\u0641\u062d\u0627\u062a_\u0639\u0645\u0648\u0645\u06cc_public", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L439", "weight": 1.0}, {"source": "nobat724_front_readme_\u0645\u0633\u06cc\u0631\u0647\u0627_\u0648_\u0635\u0641\u062d\u0627\u062a", "target": "nobat724_front_readme_\u0635\u0641\u062d\u0627\u062a_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L454", "weight": 1.0}, {"source": "nobat724_front_readme_\u0645\u0633\u06cc\u0631\u0647\u0627_\u0648_\u0635\u0641\u062d\u0627\u062a", "target": "nobat724_front_readme_\u0635\u0641\u062d\u0627\u062a_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L460", "weight": 1.0}, {"source": "nobat724_front_readme_\u0645\u0633\u06cc\u0631\u0647\u0627_\u0648_\u0635\u0641\u062d\u0627\u062a", "target": "nobat724_front_readme_\u067e\u0646\u0644_\u0645\u062f\u06cc\u0631\u06cc\u062a\u06cc_protected", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L467", "weight": 1.0}, {"source": "nobat724_front_readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "target": "nobat724_front_readme_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a_\u0647\u0627\u06cc_\u0627\u0635\u0644\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L478", "weight": 1.0}, {"source": "nobat724_front_readme_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a_\u0647\u0627\u06cc_\u0627\u0635\u0644\u06cc", "target": "nobat724_front_readme_layout_components", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L480", "weight": 1.0}, {"source": "nobat724_front_readme_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a_\u0647\u0627\u06cc_\u0627\u0635\u0644\u06cc", "target": "nobat724_front_readme_feature_components", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L502", "weight": 1.0}, {"source": "nobat724_front_readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "target": "nobat724_front_readme_api_\u0648_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L540", "weight": 1.0}, {"source": "nobat724_front_readme_api_\u0648_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627", "target": "nobat724_front_readme_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_axios_services_api_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L542", "weight": 1.0}, {"source": "nobat724_front_readme_api_\u0648_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627", "target": "nobat724_front_readme_api_endpoints_services_response_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L562", "weight": 1.0}, {"source": "nobat724_front_readme_api_\u0648_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627", "target": "nobat724_front_readme_helper_functions_helper_index_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L604", "weight": 1.0}, {"source": "nobat724_front_readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "target": "nobat724_front_readme_\u0627\u0633\u062a\u0627\u06cc\u0644_\u062f\u0647\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L632", "weight": 1.0}, {"source": "nobat724_front_readme_\u0627\u0633\u062a\u0627\u06cc\u0644_\u062f\u0647\u06cc", "target": "nobat724_front_readme_tailwind_css", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L634", "weight": 1.0}, {"source": "nobat724_front_readme_\u0627\u0633\u062a\u0627\u06cc\u0644_\u062f\u0647\u06cc", "target": "nobat724_front_readme_material_ui_theme", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L655", "weight": 1.0}, {"source": "nobat724_front_readme_\u0627\u0633\u062a\u0627\u06cc\u0644_\u062f\u0647\u06cc", "target": "nobat724_front_readme_dark_mode", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L671", "weight": 1.0}, {"source": "nobat724_front_readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "target": "nobat724_front_readme_deployment", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L692", "weight": 1.0}, {"source": "nobat724_front_readme_deployment", "target": "nobat724_front_readme_\u0645\u062a\u063a\u06cc\u0631\u0647\u0627\u06cc_\u0645\u062d\u06cc\u0637\u06cc_\u0645\u0648\u0631\u062f_\u0646\u06cc\u0627\u0632", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L694", "weight": 1.0}, {"source": "nobat724_front_readme_deployment", "target": "nobat724_front_readme_build_production", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L712", "weight": 1.0}, {"source": "nobat724_front_readme_deployment", "target": "nobat724_front_readme_docker_deployment", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L722", "weight": 1.0}, {"source": "nobat724_front_readme_deployment", "target": "nobat724_front_readme_docker_compose", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L735", "weight": 1.0}, {"source": "nobat724_front_readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "target": "nobat724_front_readme_\u0646\u06a9\u0627\u062a_\u062a\u0648\u0633\u0639\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L756", "weight": 1.0}, {"source": "nobat724_front_readme_\u0646\u06a9\u0627\u062a_\u062a\u0648\u0633\u0639\u0647", "target": "nobat724_front_readme_1_\u0627\u0641\u0632\u0648\u062f\u0646_\u0635\u0641\u062d\u0647_\u062c\u062f\u06cc\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L758", "weight": 1.0}, {"source": "nobat724_front_readme_\u0646\u06a9\u0627\u062a_\u062a\u0648\u0633\u0639\u0647", "target": "nobat724_front_readme_2_\u0627\u0641\u0632\u0648\u062f\u0646_api_endpoint_\u062c\u062f\u06cc\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L773", "weight": 1.0}, {"source": "nobat724_front_readme_\u0646\u06a9\u0627\u062a_\u062a\u0648\u0633\u0639\u0647", "target": "nobat724_front_readme_3_\u0627\u0641\u0632\u0648\u062f\u0646_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a_\u062c\u062f\u06cc\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L784", "weight": 1.0}, {"source": "nobat724_front_readme_\u0646\u06a9\u0627\u062a_\u062a\u0648\u0633\u0639\u0647", "target": "nobat724_front_readme_4_\u06a9\u0627\u0631_\u0628\u0627_\u062a\u0627\u0631\u06cc\u062e_\u0634\u0645\u0633\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L797", "weight": 1.0}, {"source": "nobat724_front_readme_\u0646\u06a9\u0627\u062a_\u062a\u0648\u0633\u0639\u0647", "target": "nobat724_front_readme_5_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_context", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L811", "weight": 1.0}, {"source": "nobat724_front_readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "target": "nobat724_front_readme_troubleshooting", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L826", "weight": 1.0}, {"source": "nobat724_front_readme_troubleshooting", "target": "nobat724_front_readme_\u0645\u0634\u06a9\u0644\u0627\u062a_\u0631\u0627\u06cc\u062c", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L828", "weight": 1.0}, {"source": "nobat724_front_readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "target": "nobat724_front_readme_\u0645\u0646\u0627\u0628\u0639_\u0645\u0641\u06cc\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L856", "weight": 1.0}, {"source": "nobat724_front_readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "target": "nobat724_front_readme_\u062a\u06cc\u0645_\u062a\u0648\u0633\u0639\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L866", "weight": 1.0}, {"source": "nobat724_front_readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", "target": "nobat724_front_readme_\u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": "README.md", "source_location": "L883", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/87ca9a51f21c57083962121c571035a00e774a1a34cf519b0325450f882d04fd.json b/graphify-out/cache/ast/v0.8.44/87ca9a51f21c57083962121c571035a00e774a1a34cf519b0325450f882d04fd.json new file mode 100644 index 0000000..9635c36 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/87ca9a51f21c57083962121c571035a00e774a1a34cf519b0325450f882d04fd.json @@ -0,0 +1 @@ +{"nodes": [], "edges": [], "skipped": "data json (non-object root)"} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/88ae04aa6c4de588a6b7fab59d6fc9426d7b1b43c75a1e1e4103fdcf0edfc6df.json b/graphify-out/cache/ast/v0.8.44/88ae04aa6c4de588a6b7fab59d6fc9426d7b1b43c75a1e1e4103fdcf0edfc6df.json new file mode 100644 index 0000000..f09deee --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/88ae04aa6c4de588a6b7fab59d6fc9426d7b1b43c75a1e1e4103fdcf0edfc6df.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_fix_token_storage_xss_headers_md", "label": "fix-token-storage-xss-headers.md", "file_type": "document", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "source_location": "L1"}, {"id": "prompt_fix_token_storage_xss_headers_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u0627\u0645\u0646\u06cc\u062a\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0630\u062e\u06cc\u0631\u0647_\u06cc_\u062a\u0648\u06a9\u0646_xss_\u0647\u062f\u0631\u0647\u0627_client_secret", "label": "\u0633\u062e\u062a\u200c\u0633\u0627\u0632\u06cc \u0627\u0645\u0646\u06cc\u062a\u06cc \u0633\u0627\u06cc\u062a \u0639\u0645\u0648\u0645\u06cc: \u0630\u062e\u06cc\u0631\u0647\u200c\u06cc \u062a\u0648\u06a9\u0646\u060c XSS\u060c \u0647\u062f\u0631\u0647\u0627\u060c client_secret", "file_type": "document", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "source_location": "L1"}, {"id": "prompt_fix_token_storage_xss_headers_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "source_location": "L3"}, {"id": "prompt_fix_token_storage_xss_headers_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "source_location": "L9"}, {"id": "prompt_fix_token_storage_xss_headers_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "source_location": "L18"}, {"id": "prompt_fix_token_storage_xss_headers_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "source_location": "L22"}, {"id": "prompt_fix_token_storage_xss_headers_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "file_type": "document", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "source_location": "L36"}, {"id": "prompt_fix_token_storage_xss_headers_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "source_location": "L74"}, {"id": "prompt_fix_token_storage_xss_headers_\u06f1_oauth_\u0633\u062a_\u06a9\u0648\u06a9\u06cc_\u062f\u0631_\u06cc\u06a9_route_handler_\u0633\u0631\u0648\u0631_\u0633\u0627\u06cc\u062f_c_2_h_3", "label": "\u06f1. OAuth + \u0633\u062a \u06a9\u0648\u06a9\u06cc \u062f\u0631 \u06cc\u06a9 Route Handler \u0633\u0631\u0648\u0631-\u0633\u0627\u06cc\u062f (C-2, H-3)", "file_type": "document", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "source_location": "L76"}, {"id": "prompt_fix_token_storage_xss_headers_\u06f2_\u0645\u062f\u06cc\u0631\u06cc\u062a_access_token_\u062f\u0631_memory_\u0628\u0647_\u062c\u0627\u06cc_\u06a9\u0648\u06a9\u06cc_js_c_2", "label": "\u06f2. \u0645\u062f\u06cc\u0631\u06cc\u062a access token \u062f\u0631 memory \u0628\u0647\u200c\u062c\u0627\u06cc \u06a9\u0648\u06a9\u06cc JS (C-2)", "file_type": "document", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "source_location": "L109"}, {"id": "prompt_fix_token_storage_xss_headers_\u06f3_\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc_sanitizer_\u0628\u0627_dompurify_c_3", "label": "\u06f3. \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc sanitizer \u0628\u0627 DOMPurify (C-3)", "file_type": "document", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "source_location": "L118"}, {"id": "prompt_fix_token_storage_xss_headers_\u06f4_security_headers_\u062f\u0631_next_config_js_h_2", "label": "\u06f4. Security headers \u062f\u0631 next.config.js (H-2)", "file_type": "document", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "source_location": "L136"}, {"id": "prompt_fix_token_storage_xss_headers_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "source_location": "L166"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_fix_token_storage_xss_headers_md", "target": "prompt_fix_token_storage_xss_headers_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u0627\u0645\u0646\u06cc\u062a\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0630\u062e\u06cc\u0631\u0647_\u06cc_\u062a\u0648\u06a9\u0646_xss_\u0647\u062f\u0631\u0647\u0627_client_secret", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_fix_token_storage_xss_headers_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u0627\u0645\u0646\u06cc\u062a\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0630\u062e\u06cc\u0631\u0647_\u06cc_\u062a\u0648\u06a9\u0646_xss_\u0647\u062f\u0631\u0647\u0627_client_secret", "target": "prompt_fix_token_storage_xss_headers_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_fix_token_storage_xss_headers_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u0627\u0645\u0646\u06cc\u062a\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0630\u062e\u06cc\u0631\u0647_\u06cc_\u062a\u0648\u06a9\u0646_xss_\u0647\u062f\u0631\u0647\u0627_client_secret", "target": "prompt_fix_token_storage_xss_headers_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "source_location": "L9", "weight": 1.0}, {"source": "prompt_fix_token_storage_xss_headers_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u0627\u0645\u0646\u06cc\u062a\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0630\u062e\u06cc\u0631\u0647_\u06cc_\u062a\u0648\u06a9\u0646_xss_\u0647\u062f\u0631\u0647\u0627_client_secret", "target": "prompt_fix_token_storage_xss_headers_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "source_location": "L18", "weight": 1.0}, {"source": "prompt_fix_token_storage_xss_headers_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u0627\u0645\u0646\u06cc\u062a\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0630\u062e\u06cc\u0631\u0647_\u06cc_\u062a\u0648\u06a9\u0646_xss_\u0647\u062f\u0631\u0647\u0627_client_secret", "target": "prompt_fix_token_storage_xss_headers_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "source_location": "L22", "weight": 1.0}, {"source": "prompt_fix_token_storage_xss_headers_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u0627\u0645\u0646\u06cc\u062a\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0630\u062e\u06cc\u0631\u0647_\u06cc_\u062a\u0648\u06a9\u0646_xss_\u0647\u062f\u0631\u0647\u0627_client_secret", "target": "prompt_fix_token_storage_xss_headers_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "source_location": "L36", "weight": 1.0}, {"source": "prompt_fix_token_storage_xss_headers_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u0627\u0645\u0646\u06cc\u062a\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0630\u062e\u06cc\u0631\u0647_\u06cc_\u062a\u0648\u06a9\u0646_xss_\u0647\u062f\u0631\u0647\u0627_client_secret", "target": "prompt_fix_token_storage_xss_headers_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "source_location": "L74", "weight": 1.0}, {"source": "prompt_fix_token_storage_xss_headers_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_token_storage_xss_headers_\u06f1_oauth_\u0633\u062a_\u06a9\u0648\u06a9\u06cc_\u062f\u0631_\u06cc\u06a9_route_handler_\u0633\u0631\u0648\u0631_\u0633\u0627\u06cc\u062f_c_2_h_3", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "source_location": "L76", "weight": 1.0}, {"source": "prompt_fix_token_storage_xss_headers_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_token_storage_xss_headers_\u06f2_\u0645\u062f\u06cc\u0631\u06cc\u062a_access_token_\u062f\u0631_memory_\u0628\u0647_\u062c\u0627\u06cc_\u06a9\u0648\u06a9\u06cc_js_c_2", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "source_location": "L109", "weight": 1.0}, {"source": "prompt_fix_token_storage_xss_headers_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_token_storage_xss_headers_\u06f3_\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc_sanitizer_\u0628\u0627_dompurify_c_3", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "source_location": "L118", "weight": 1.0}, {"source": "prompt_fix_token_storage_xss_headers_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_token_storage_xss_headers_\u06f4_security_headers_\u062f\u0631_next_config_js_h_2", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "source_location": "L136", "weight": 1.0}, {"source": "prompt_fix_token_storage_xss_headers_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u0627\u0645\u0646\u06cc\u062a\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0630\u062e\u06cc\u0631\u0647_\u06cc_\u062a\u0648\u06a9\u0646_xss_\u0647\u062f\u0631\u0647\u0627_client_secret", "target": "prompt_fix_token_storage_xss_headers_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", "source_location": "L166", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/94add08ebe87780fbd4fccf08ed11be2cb45d55828a81f6cc9bc39c79902c040.json b/graphify-out/cache/ast/v0.8.44/94add08ebe87780fbd4fccf08ed11be2cb45d55828a81f6cc9bc39c79902c040.json new file mode 100644 index 0000000..29a0c79 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/94add08ebe87780fbd4fccf08ed11be2cb45d55828a81f6cc9bc39c79902c040.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_fix_login_bugs_md", "label": "fix-login-bugs.md", "file_type": "document", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L1"}, {"id": "prompt_fix_login_bugs_\u0641\u06cc\u06a9\u0633_\u062f\u0648_\u0628\u0627\u06af_\u062f\u0631_\u0641\u0644\u0648_login", "label": "\u0641\u06cc\u06a9\u0633 \u062f\u0648 \u0628\u0627\u06af \u062f\u0631 \u0641\u0644\u0648 login", "file_type": "document", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L1"}, {"id": "prompt_fix_login_bugs_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L3"}, {"id": "prompt_fix_login_bugs_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L7"}, {"id": "prompt_fix_login_bugs_\u0628\u0627\u06af_\u06f1_\u0634\u0645\u0627\u0631\u0647_\u0645\u0648\u0628\u0627\u06cc\u0644_\u0628\u0627_09_\u0627\u0636\u0627\u0641\u06cc", "label": "\u0628\u0627\u06af \u06f1 \u2014 \u0634\u0645\u0627\u0631\u0647 \u0645\u0648\u0628\u0627\u06cc\u0644 \u0628\u0627 `09` \u0627\u0636\u0627\u0641\u06cc", "file_type": "document", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L11"}, {"id": "prompt_fix_login_bugs_\u0645\u0634\u06a9\u0644", "label": "\u0645\u0634\u06a9\u0644", "file_type": "document", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L13"}, {"id": "prompt_fix_login_bugs_\u0639\u0644\u062a", "label": "\u0639\u0644\u062a", "file_type": "document", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L17"}, {"id": "prompt_fix_login_bugs_\u0641\u06cc\u06a9\u0633", "label": "\u0641\u06cc\u06a9\u0633", "file_type": "document", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L27"}, {"id": "prompt_fix_login_bugs_\u0628\u0627\u06af_\u06f2_redirect_\u0628\u0647_login_\u0628\u0639\u062f_\u0627\u0632_refresh_\u0635\u0641\u062d\u0647", "label": "\u0628\u0627\u06af \u06f2 \u2014 redirect \u0628\u0647 `/login` \u0628\u0639\u062f \u0627\u0632 refresh \u0635\u0641\u062d\u0647", "file_type": "document", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L37"}, {"id": "prompt_fix_login_bugs_\u0645\u0634\u06a9\u0644_39", "label": "\u0645\u0634\u06a9\u0644", "file_type": "document", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L39"}, {"id": "prompt_fix_login_bugs_\u0639\u0644\u062a_\u0627\u062d\u062a\u0645\u0627\u0644\u06cc", "label": "\u0639\u0644\u062a \u0627\u062d\u062a\u0645\u0627\u0644\u06cc", "file_type": "document", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L43"}, {"id": "prompt_fix_login_bugs_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L65"}, {"id": "prompt_fix_login_bugs_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "file_type": "document", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L77"}, {"id": "prompt_fix_login_bugs_\u0648\u0638\u0627\u06cc\u0641_\u0628\u0631\u0627\u06cc_\u062f\u06cc\u0628\u0627\u06af_\u0648_\u0641\u06cc\u06a9\u0633", "label": "\u0648\u0638\u0627\u06cc\u0641 \u0628\u0631\u0627\u06cc \u062f\u06cc\u0628\u0627\u06af \u0648 \u0641\u06cc\u06a9\u0633", "file_type": "document", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L106"}, {"id": "prompt_fix_login_bugs_\u06f1_\u0641\u06cc\u06a9\u0633_\u0628\u0627\u06af_\u06f1_\u0642\u0637\u0639\u06cc", "label": "\u06f1. \u0641\u06cc\u06a9\u0633 \u0628\u0627\u06af \u06f1 (\u0642\u0637\u0639\u06cc)", "file_type": "document", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L108"}, {"id": "prompt_fix_login_bugs_\u06f2_\u0628\u0631\u0631\u0633\u06cc_userinfo_cookie", "label": "\u06f2. \u0628\u0631\u0631\u0633\u06cc `userInfo` cookie", "file_type": "document", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L119"}, {"id": "prompt_fix_login_bugs_\u06f3_\u0628\u0631\u0631\u0633\u06cc_endpoint_oauth_token_refresh", "label": "\u06f3. \u0628\u0631\u0631\u0633\u06cc endpoint `/oauth/token/refresh`", "file_type": "document", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L129"}, {"id": "prompt_fix_login_bugs_\u06f4_redirect_\u0628\u0639\u062f_\u0627\u0632_login", "label": "\u06f4. redirect \u0628\u0639\u062f \u0627\u0632 login", "file_type": "document", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L139"}, {"id": "prompt_fix_login_bugs_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L149"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_fix_login_bugs_md", "target": "prompt_fix_login_bugs_\u0641\u06cc\u06a9\u0633_\u062f\u0648_\u0628\u0627\u06af_\u062f\u0631_\u0641\u0644\u0648_login", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_fix_login_bugs_\u0641\u06cc\u06a9\u0633_\u062f\u0648_\u0628\u0627\u06af_\u062f\u0631_\u0641\u0644\u0648_login", "target": "prompt_fix_login_bugs_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_fix_login_bugs_\u0641\u06cc\u06a9\u0633_\u062f\u0648_\u0628\u0627\u06af_\u062f\u0631_\u0641\u0644\u0648_login", "target": "prompt_fix_login_bugs_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L7", "weight": 1.0}, {"source": "prompt_fix_login_bugs_\u0641\u06cc\u06a9\u0633_\u062f\u0648_\u0628\u0627\u06af_\u062f\u0631_\u0641\u0644\u0648_login", "target": "prompt_fix_login_bugs_\u0628\u0627\u06af_\u06f1_\u0634\u0645\u0627\u0631\u0647_\u0645\u0648\u0628\u0627\u06cc\u0644_\u0628\u0627_09_\u0627\u0636\u0627\u0641\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L11", "weight": 1.0}, {"source": "prompt_fix_login_bugs_\u0628\u0627\u06af_\u06f1_\u0634\u0645\u0627\u0631\u0647_\u0645\u0648\u0628\u0627\u06cc\u0644_\u0628\u0627_09_\u0627\u0636\u0627\u0641\u06cc", "target": "prompt_fix_login_bugs_\u0645\u0634\u06a9\u0644", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L13", "weight": 1.0}, {"source": "prompt_fix_login_bugs_\u0628\u0627\u06af_\u06f1_\u0634\u0645\u0627\u0631\u0647_\u0645\u0648\u0628\u0627\u06cc\u0644_\u0628\u0627_09_\u0627\u0636\u0627\u0641\u06cc", "target": "prompt_fix_login_bugs_\u0639\u0644\u062a", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L17", "weight": 1.0}, {"source": "prompt_fix_login_bugs_\u0628\u0627\u06af_\u06f1_\u0634\u0645\u0627\u0631\u0647_\u0645\u0648\u0628\u0627\u06cc\u0644_\u0628\u0627_09_\u0627\u0636\u0627\u0641\u06cc", "target": "prompt_fix_login_bugs_\u0641\u06cc\u06a9\u0633", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L27", "weight": 1.0}, {"source": "prompt_fix_login_bugs_\u0641\u06cc\u06a9\u0633_\u062f\u0648_\u0628\u0627\u06af_\u062f\u0631_\u0641\u0644\u0648_login", "target": "prompt_fix_login_bugs_\u0628\u0627\u06af_\u06f2_redirect_\u0628\u0647_login_\u0628\u0639\u062f_\u0627\u0632_refresh_\u0635\u0641\u062d\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L37", "weight": 1.0}, {"source": "prompt_fix_login_bugs_\u0628\u0627\u06af_\u06f2_redirect_\u0628\u0647_login_\u0628\u0639\u062f_\u0627\u0632_refresh_\u0635\u0641\u062d\u0647", "target": "prompt_fix_login_bugs_\u0645\u0634\u06a9\u0644_39", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L39", "weight": 1.0}, {"source": "prompt_fix_login_bugs_\u0628\u0627\u06af_\u06f2_redirect_\u0628\u0647_login_\u0628\u0639\u062f_\u0627\u0632_refresh_\u0635\u0641\u062d\u0647", "target": "prompt_fix_login_bugs_\u0639\u0644\u062a_\u0627\u062d\u062a\u0645\u0627\u0644\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L43", "weight": 1.0}, {"source": "prompt_fix_login_bugs_\u0628\u0627\u06af_\u06f2_redirect_\u0628\u0647_login_\u0628\u0639\u062f_\u0627\u0632_refresh_\u0635\u0641\u062d\u0647", "target": "prompt_fix_login_bugs_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L65", "weight": 1.0}, {"source": "prompt_fix_login_bugs_\u0628\u0627\u06af_\u06f2_redirect_\u0628\u0647_login_\u0628\u0639\u062f_\u0627\u0632_refresh_\u0635\u0641\u062d\u0647", "target": "prompt_fix_login_bugs_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L77", "weight": 1.0}, {"source": "prompt_fix_login_bugs_\u0628\u0627\u06af_\u06f2_redirect_\u0628\u0647_login_\u0628\u0639\u062f_\u0627\u0632_refresh_\u0635\u0641\u062d\u0647", "target": "prompt_fix_login_bugs_\u0648\u0638\u0627\u06cc\u0641_\u0628\u0631\u0627\u06cc_\u062f\u06cc\u0628\u0627\u06af_\u0648_\u0641\u06cc\u06a9\u0633", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L106", "weight": 1.0}, {"source": "prompt_fix_login_bugs_\u0648\u0638\u0627\u06cc\u0641_\u0628\u0631\u0627\u06cc_\u062f\u06cc\u0628\u0627\u06af_\u0648_\u0641\u06cc\u06a9\u0633", "target": "prompt_fix_login_bugs_\u06f1_\u0641\u06cc\u06a9\u0633_\u0628\u0627\u06af_\u06f1_\u0642\u0637\u0639\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L108", "weight": 1.0}, {"source": "prompt_fix_login_bugs_\u0648\u0638\u0627\u06cc\u0641_\u0628\u0631\u0627\u06cc_\u062f\u06cc\u0628\u0627\u06af_\u0648_\u0641\u06cc\u06a9\u0633", "target": "prompt_fix_login_bugs_\u06f2_\u0628\u0631\u0631\u0633\u06cc_userinfo_cookie", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L119", "weight": 1.0}, {"source": "prompt_fix_login_bugs_\u0648\u0638\u0627\u06cc\u0641_\u0628\u0631\u0627\u06cc_\u062f\u06cc\u0628\u0627\u06af_\u0648_\u0641\u06cc\u06a9\u0633", "target": "prompt_fix_login_bugs_\u06f3_\u0628\u0631\u0631\u0633\u06cc_endpoint_oauth_token_refresh", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L129", "weight": 1.0}, {"source": "prompt_fix_login_bugs_\u0648\u0638\u0627\u06cc\u0641_\u0628\u0631\u0627\u06cc_\u062f\u06cc\u0628\u0627\u06af_\u0648_\u0641\u06cc\u06a9\u0633", "target": "prompt_fix_login_bugs_\u06f4_redirect_\u0628\u0639\u062f_\u0627\u0632_login", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L139", "weight": 1.0}, {"source": "prompt_fix_login_bugs_\u0641\u06cc\u06a9\u0633_\u062f\u0648_\u0628\u0627\u06af_\u062f\u0631_\u0641\u0644\u0648_login", "target": "prompt_fix_login_bugs_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-login-bugs.md", "source_location": "L149", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/9fa28b5810446e5d2cf89ccf2f58a9976c4e9ce3975df5a3b32f3c3eb50a0dce.json b/graphify-out/cache/ast/v0.8.44/9fa28b5810446e5d2cf89ccf2f58a9976c4e9ce3975df5a3b32f3c3eb50a0dce.json new file mode 100644 index 0000000..609210c --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/9fa28b5810446e5d2cf89ccf2f58a9976c4e9ce3975df5a3b32f3c3eb50a0dce.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_fix_header_logged_state_md", "label": "fix-header-logged-state.md", "file_type": "document", "source_file": ".claude/prompt/fix-header-logged-state.md", "source_location": "L1"}, {"id": "prompt_fix_header_logged_state_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0631\u0648\u062f_\u062b\u0628\u062a_\u0646\u0627\u0645_\u062f\u0631_\u0647\u062f\u0631_\u0628\u0627_\u0648\u062c\u0648\u062f_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0648\u062f\u0646_\u06a9\u0627\u0631\u0628\u0631", "label": "\u0631\u0641\u0639 \u0646\u0645\u0627\u06cc\u0634 \u00ab\u0648\u0631\u0648\u062f | \u062b\u0628\u062a\u200c\u0646\u0627\u0645\u00bb \u062f\u0631 \u0647\u062f\u0631 \u0628\u0627 \u0648\u062c\u0648\u062f \u0644\u0627\u06af\u06cc\u0646\u200c\u0628\u0648\u062f\u0646 \u06a9\u0627\u0631\u0628\u0631", "file_type": "document", "source_file": ".claude/prompt/fix-header-logged-state.md", "source_location": "L1"}, {"id": "prompt_fix_header_logged_state_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/fix-header-logged-state.md", "source_location": "L3"}, {"id": "prompt_fix_header_logged_state_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/fix-header-logged-state.md", "source_location": "L7"}, {"id": "prompt_fix_header_logged_state_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/fix-header-logged-state.md", "source_location": "L13"}, {"id": "prompt_fix_header_logged_state_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/fix-header-logged-state.md", "source_location": "L17"}, {"id": "prompt_fix_header_logged_state_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "file_type": "document", "source_file": ".claude/prompt/fix-header-logged-state.md", "source_location": "L28"}, {"id": "prompt_fix_header_logged_state_header_content_js_\u062a\u0635\u0645\u06cc\u0645_\u0641\u0642\u0637_\u0628\u0631_\u0627\u0633\u0627\u0633_prop_\u0633\u0631\u0648\u0631", "label": "`header/Content.js` \u2014 \u062a\u0635\u0645\u06cc\u0645 \u0641\u0642\u0637 \u0628\u0631 \u0627\u0633\u0627\u0633 prop \u0633\u0631\u0648\u0631", "file_type": "document", "source_file": ".claude/prompt/fix-header-logged-state.md", "source_location": "L30"}, {"id": "prompt_fix_header_logged_state_stlayout_js_\u0645\u0642\u062f\u0627\u0631_\u0627\u0648\u0644\u06cc\u0647_\u0627\u0632_\u06a9\u0648\u06a9\u06cc_\u0633\u0631\u0648\u0631", "label": "`StLayout.js` \u2014 \u0645\u0642\u062f\u0627\u0631 \u0627\u0648\u0644\u06cc\u0647 \u0627\u0632 \u06a9\u0648\u06a9\u06cc \u0633\u0631\u0648\u0631", "file_type": "document", "source_file": ".claude/prompt/fix-header-logged-state.md", "source_location": "L47"}, {"id": "prompt_fix_header_logged_state_\u06a9\u0648\u06a9\u06cc_\u0647\u0627_\u0633\u0645\u062a_\u06a9\u0644\u0627\u06cc\u0646\u062a_\u0633\u062a_\u0645\u06cc_\u0634\u0648\u0646\u062f_sendreq_js", "label": "\u06a9\u0648\u06a9\u06cc\u200c\u0647\u0627 \u0633\u0645\u062a \u06a9\u0644\u0627\u06cc\u0646\u062a \u0633\u062a \u0645\u06cc\u200c\u0634\u0648\u0646\u062f (`SendReq.js`)", "file_type": "document", "source_file": ".claude/prompt/fix-header-logged-state.md", "source_location": "L58"}, {"id": "prompt_fix_header_logged_state_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/fix-header-logged-state.md", "source_location": "L64"}, {"id": "prompt_fix_header_logged_state_\u06f1_\u062a\u0634\u062e\u06cc\u0635_\u0632\u0646\u062f\u0647_\u06cc_\u0644\u0627\u06af\u06cc\u0646_\u062f\u0631_header_content_js", "label": "\u06f1. \u062a\u0634\u062e\u06cc\u0635 \u0632\u0646\u062f\u0647\u200c\u06cc \u0644\u0627\u06af\u06cc\u0646 \u062f\u0631 `header/Content.js`", "file_type": "document", "source_file": ".claude/prompt/fix-header-logged-state.md", "source_location": "L66"}, {"id": "prompt_fix_header_logged_state_\u06f2_\u0648\u0627\u06a9\u0646\u0634_\u0628\u0647_\u062a\u063a\u06cc\u06cc\u0631_\u0645\u0633\u06cc\u0631_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc_\u0648\u0644\u06cc_\u062a\u0648\u0635\u06cc\u0647_\u0634\u062f\u0647", "label": "\u06f2. \u0648\u0627\u06a9\u0646\u0634 \u0628\u0647 \u062a\u063a\u06cc\u06cc\u0631 \u0645\u0633\u06cc\u0631 (\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc \u0648\u0644\u06cc \u062a\u0648\u0635\u06cc\u0647\u200c\u0634\u062f\u0647)", "file_type": "document", "source_file": ".claude/prompt/fix-header-logged-state.md", "source_location": "L89"}, {"id": "prompt_fix_header_logged_state_\u06f3_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_logout", "label": "\u06f3. \u0633\u0627\u0632\u06af\u0627\u0631\u06cc logout", "file_type": "document", "source_file": ".claude/prompt/fix-header-logged-state.md", "source_location": "L103"}, {"id": "prompt_fix_header_logged_state_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/fix-header-logged-state.md", "source_location": "L107"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_fix_header_logged_state_md", "target": "prompt_fix_header_logged_state_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0631\u0648\u062f_\u062b\u0628\u062a_\u0646\u0627\u0645_\u062f\u0631_\u0647\u062f\u0631_\u0628\u0627_\u0648\u062c\u0648\u062f_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0648\u062f\u0646_\u06a9\u0627\u0631\u0628\u0631", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-header-logged-state.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_fix_header_logged_state_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0631\u0648\u062f_\u062b\u0628\u062a_\u0646\u0627\u0645_\u062f\u0631_\u0647\u062f\u0631_\u0628\u0627_\u0648\u062c\u0648\u062f_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0648\u062f\u0646_\u06a9\u0627\u0631\u0628\u0631", "target": "prompt_fix_header_logged_state_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-header-logged-state.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_fix_header_logged_state_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0631\u0648\u062f_\u062b\u0628\u062a_\u0646\u0627\u0645_\u062f\u0631_\u0647\u062f\u0631_\u0628\u0627_\u0648\u062c\u0648\u062f_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0648\u062f\u0646_\u06a9\u0627\u0631\u0628\u0631", "target": "prompt_fix_header_logged_state_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-header-logged-state.md", "source_location": "L7", "weight": 1.0}, {"source": "prompt_fix_header_logged_state_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0631\u0648\u062f_\u062b\u0628\u062a_\u0646\u0627\u0645_\u062f\u0631_\u0647\u062f\u0631_\u0628\u0627_\u0648\u062c\u0648\u062f_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0648\u062f\u0646_\u06a9\u0627\u0631\u0628\u0631", "target": "prompt_fix_header_logged_state_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-header-logged-state.md", "source_location": "L13", "weight": 1.0}, {"source": "prompt_fix_header_logged_state_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0631\u0648\u062f_\u062b\u0628\u062a_\u0646\u0627\u0645_\u062f\u0631_\u0647\u062f\u0631_\u0628\u0627_\u0648\u062c\u0648\u062f_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0648\u062f\u0646_\u06a9\u0627\u0631\u0628\u0631", "target": "prompt_fix_header_logged_state_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-header-logged-state.md", "source_location": "L17", "weight": 1.0}, {"source": "prompt_fix_header_logged_state_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0631\u0648\u062f_\u062b\u0628\u062a_\u0646\u0627\u0645_\u062f\u0631_\u0647\u062f\u0631_\u0628\u0627_\u0648\u062c\u0648\u062f_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0648\u062f\u0646_\u06a9\u0627\u0631\u0628\u0631", "target": "prompt_fix_header_logged_state_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-header-logged-state.md", "source_location": "L28", "weight": 1.0}, {"source": "prompt_fix_header_logged_state_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_fix_header_logged_state_header_content_js_\u062a\u0635\u0645\u06cc\u0645_\u0641\u0642\u0637_\u0628\u0631_\u0627\u0633\u0627\u0633_prop_\u0633\u0631\u0648\u0631", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-header-logged-state.md", "source_location": "L30", "weight": 1.0}, {"source": "prompt_fix_header_logged_state_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_fix_header_logged_state_stlayout_js_\u0645\u0642\u062f\u0627\u0631_\u0627\u0648\u0644\u06cc\u0647_\u0627\u0632_\u06a9\u0648\u06a9\u06cc_\u0633\u0631\u0648\u0631", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-header-logged-state.md", "source_location": "L47", "weight": 1.0}, {"source": "prompt_fix_header_logged_state_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_fix_header_logged_state_\u06a9\u0648\u06a9\u06cc_\u0647\u0627_\u0633\u0645\u062a_\u06a9\u0644\u0627\u06cc\u0646\u062a_\u0633\u062a_\u0645\u06cc_\u0634\u0648\u0646\u062f_sendreq_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-header-logged-state.md", "source_location": "L58", "weight": 1.0}, {"source": "prompt_fix_header_logged_state_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0631\u0648\u062f_\u062b\u0628\u062a_\u0646\u0627\u0645_\u062f\u0631_\u0647\u062f\u0631_\u0628\u0627_\u0648\u062c\u0648\u062f_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0648\u062f\u0646_\u06a9\u0627\u0631\u0628\u0631", "target": "prompt_fix_header_logged_state_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-header-logged-state.md", "source_location": "L64", "weight": 1.0}, {"source": "prompt_fix_header_logged_state_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_header_logged_state_\u06f1_\u062a\u0634\u062e\u06cc\u0635_\u0632\u0646\u062f\u0647_\u06cc_\u0644\u0627\u06af\u06cc\u0646_\u062f\u0631_header_content_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-header-logged-state.md", "source_location": "L66", "weight": 1.0}, {"source": "prompt_fix_header_logged_state_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_header_logged_state_\u06f2_\u0648\u0627\u06a9\u0646\u0634_\u0628\u0647_\u062a\u063a\u06cc\u06cc\u0631_\u0645\u0633\u06cc\u0631_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc_\u0648\u0644\u06cc_\u062a\u0648\u0635\u06cc\u0647_\u0634\u062f\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-header-logged-state.md", "source_location": "L89", "weight": 1.0}, {"source": "prompt_fix_header_logged_state_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_header_logged_state_\u06f3_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_logout", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-header-logged-state.md", "source_location": "L103", "weight": 1.0}, {"source": "prompt_fix_header_logged_state_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0631\u0648\u062f_\u062b\u0628\u062a_\u0646\u0627\u0645_\u062f\u0631_\u0647\u062f\u0631_\u0628\u0627_\u0648\u062c\u0648\u062f_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0648\u062f\u0646_\u06a9\u0627\u0631\u0628\u0631", "target": "prompt_fix_header_logged_state_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-header-logged-state.md", "source_location": "L107", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/a0029107f5ad368d237cbf3b7ef28c7b7906794b6fb0da4a00180c0d5789d2d6.json b/graphify-out/cache/ast/v0.8.44/a0029107f5ad368d237cbf3b7ef28c7b7906794b6fb0da4a00180c0d5789d2d6.json new file mode 100644 index 0000000..f4f74f7 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/a0029107f5ad368d237cbf3b7ef28c7b7906794b6fb0da4a00180c0d5789d2d6.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_city_seo_optimization_md", "label": "city-seo-optimization.md", "file_type": "document", "source_file": ".claude/prompt/city-seo-optimization.md", "source_location": "L1"}, {"id": "prompt_city_seo_optimization_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u062a\u06a9_\u062a\u06a9_\u0634\u0647\u0631\u0647\u0627_\u062f\u0631_city_json_\u0633\u0637\u062d_\u062d\u0631\u0641\u0647_\u0627\u06cc", "label": "\u0628\u0647\u06cc\u0646\u0647\u200c\u0633\u0627\u0632\u06cc SEO \u062a\u06a9\u200c\u062a\u06a9 \u0634\u0647\u0631\u0647\u0627 \u062f\u0631 city.json (\u0633\u0637\u062d \u062d\u0631\u0641\u0647\u200c\u0627\u06cc)", "file_type": "document", "source_file": ".claude/prompt/city-seo-optimization.md", "source_location": "L1"}, {"id": "prompt_city_seo_optimization_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/city-seo-optimization.md", "source_location": "L3"}, {"id": "prompt_city_seo_optimization_\u0646\u0642\u0634", "label": "\u0646\u0642\u0634", "file_type": "document", "source_file": ".claude/prompt/city-seo-optimization.md", "source_location": "L7"}, {"id": "prompt_city_seo_optimization_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/city-seo-optimization.md", "source_location": "L11"}, {"id": "prompt_city_seo_optimization_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/city-seo-optimization.md", "source_location": "L17"}, {"id": "prompt_city_seo_optimization_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/city-seo-optimization.md", "source_location": "L26"}, {"id": "prompt_city_seo_optimization_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "file_type": "document", "source_file": ".claude/prompt/city-seo-optimization.md", "source_location": "L33"}, {"id": "prompt_city_seo_optimization_\u0641\u0647\u0631\u0633\u062a_\u06f3\u06f4_\u0631\u06a9\u0648\u0631\u062f_\u0647\u0645\u0647_\u0628\u0627\u06cc\u062f_\u067e\u0631\u062f\u0627\u0632\u0634_\u0634\u0648\u0646\u062f", "label": "\u0641\u0647\u0631\u0633\u062a \u06f3\u06f4 \u0631\u06a9\u0648\u0631\u062f (\u0647\u0645\u0647 \u0628\u0627\u06cc\u062f \u067e\u0631\u062f\u0627\u0632\u0634 \u0634\u0648\u0646\u062f)", "file_type": "document", "source_file": ".claude/prompt/city-seo-optimization.md", "source_location": "L61"}, {"id": "prompt_city_seo_optimization_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/city-seo-optimization.md", "source_location": "L100"}, {"id": "prompt_city_seo_optimization_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_\u0641\u06cc\u0644\u062f_title_\u06cc\u06a9\u062a\u0627_\u0628\u0647_\u0647\u0631_\u0631\u06a9\u0648\u0631\u062f_\u0645\u0647\u0645_\u062a\u0631\u06cc\u0646", "label": "\u06f1. \u0627\u0641\u0632\u0648\u062f\u0646 \u0641\u06cc\u0644\u062f `title` \u06cc\u06a9\u062a\u0627 \u0628\u0647 \u0647\u0631 \u0631\u06a9\u0648\u0631\u062f (\u0645\u0647\u0645\u200c\u062a\u0631\u06cc\u0646)", "file_type": "document", "source_file": ".claude/prompt/city-seo-optimization.md", "source_location": "L102"}, {"id": "prompt_city_seo_optimization_\u06f2_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_description_\u0645\u062a\u0627_\u062f\u06cc\u0633\u06a9\u0631\u06cc\u067e\u0634\u0646", "label": "\u06f2. \u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc `description` (\u0645\u062a\u0627 \u062f\u06cc\u0633\u06a9\u0631\u06cc\u067e\u0634\u0646)", "file_type": "document", "source_file": ".claude/prompt/city-seo-optimization.md", "source_location": "L119"}, {"id": "prompt_city_seo_optimization_\u06f3_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_keywords", "label": "\u06f3. \u0628\u0647\u06cc\u0646\u0647\u200c\u0633\u0627\u0632\u06cc `keywords`", "file_type": "document", "source_file": ".claude/prompt/city-seo-optimization.md", "source_location": "L134"}, {"id": "prompt_city_seo_optimization_\u06f4_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_slogan_\u06cc\u06a9\u062a\u0627", "label": "\u06f4. \u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc `slogan` \u06cc\u06a9\u062a\u0627", "file_type": "document", "source_file": ".claude/prompt/city-seo-optimization.md", "source_location": "L140"}, {"id": "prompt_city_seo_optimization_\u06f5_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_footer_description_\u06cc\u06a9\u062a\u0627", "label": "\u06f5. \u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc `footer_description` \u06cc\u06a9\u062a\u0627", "file_type": "document", "source_file": ".claude/prompt/city-seo-optimization.md", "source_location": "L145"}, {"id": "prompt_city_seo_optimization_\u06f6_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc_\u0627\u06af\u0631_\u06a9\u0627\u0631\u0628\u0631_\u062e\u0648\u0627\u0633\u062a_\u0628\u0647\u0628\u0648\u062f_\u0641\u0646\u06cc_\u062f\u0631_layout_js", "label": "\u06f6. (\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc\u060c \u0627\u06af\u0631 \u06a9\u0627\u0631\u0628\u0631 \u062e\u0648\u0627\u0633\u062a) \u0628\u0647\u0628\u0648\u062f \u0641\u0646\u06cc \u062f\u0631 `layout.js`", "file_type": "document", "source_file": ".claude/prompt/city-seo-optimization.md", "source_location": "L150"}, {"id": "prompt_city_seo_optimization_\u06f7_\u0631\u06a9\u0648\u0631\u062f_\u0628\u0631\u0646\u062f_\u0627\u0635\u0644\u06cc_id_600", "label": "\u06f7. \u0631\u06a9\u0648\u0631\u062f \u0628\u0631\u0646\u062f \u0627\u0635\u0644\u06cc (`id: 600`)", "file_type": "document", "source_file": ".claude/prompt/city-seo-optimization.md", "source_location": "L156"}, {"id": "prompt_city_seo_optimization_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/city-seo-optimization.md", "source_location": "L160"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_city_seo_optimization_md", "target": "prompt_city_seo_optimization_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u062a\u06a9_\u062a\u06a9_\u0634\u0647\u0631\u0647\u0627_\u062f\u0631_city_json_\u0633\u0637\u062d_\u062d\u0631\u0641\u0647_\u0627\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/city-seo-optimization.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_city_seo_optimization_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u062a\u06a9_\u062a\u06a9_\u0634\u0647\u0631\u0647\u0627_\u062f\u0631_city_json_\u0633\u0637\u062d_\u062d\u0631\u0641\u0647_\u0627\u06cc", "target": "prompt_city_seo_optimization_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/city-seo-optimization.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_city_seo_optimization_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u062a\u06a9_\u062a\u06a9_\u0634\u0647\u0631\u0647\u0627_\u062f\u0631_city_json_\u0633\u0637\u062d_\u062d\u0631\u0641\u0647_\u0627\u06cc", "target": "prompt_city_seo_optimization_\u0646\u0642\u0634", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/city-seo-optimization.md", "source_location": "L7", "weight": 1.0}, {"source": "prompt_city_seo_optimization_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u062a\u06a9_\u062a\u06a9_\u0634\u0647\u0631\u0647\u0627_\u062f\u0631_city_json_\u0633\u0637\u062d_\u062d\u0631\u0641\u0647_\u0627\u06cc", "target": "prompt_city_seo_optimization_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/city-seo-optimization.md", "source_location": "L11", "weight": 1.0}, {"source": "prompt_city_seo_optimization_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u062a\u06a9_\u062a\u06a9_\u0634\u0647\u0631\u0647\u0627_\u062f\u0631_city_json_\u0633\u0637\u062d_\u062d\u0631\u0641\u0647_\u0627\u06cc", "target": "prompt_city_seo_optimization_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/city-seo-optimization.md", "source_location": "L17", "weight": 1.0}, {"source": "prompt_city_seo_optimization_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u062a\u06a9_\u062a\u06a9_\u0634\u0647\u0631\u0647\u0627_\u062f\u0631_city_json_\u0633\u0637\u062d_\u062d\u0631\u0641\u0647_\u0627\u06cc", "target": "prompt_city_seo_optimization_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/city-seo-optimization.md", "source_location": "L26", "weight": 1.0}, {"source": "prompt_city_seo_optimization_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u062a\u06a9_\u062a\u06a9_\u0634\u0647\u0631\u0647\u0627_\u062f\u0631_city_json_\u0633\u0637\u062d_\u062d\u0631\u0641\u0647_\u0627\u06cc", "target": "prompt_city_seo_optimization_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/city-seo-optimization.md", "source_location": "L33", "weight": 1.0}, {"source": "prompt_city_seo_optimization_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u062a\u06a9_\u062a\u06a9_\u0634\u0647\u0631\u0647\u0627_\u062f\u0631_city_json_\u0633\u0637\u062d_\u062d\u0631\u0641\u0647_\u0627\u06cc", "target": "prompt_city_seo_optimization_\u0641\u0647\u0631\u0633\u062a_\u06f3\u06f4_\u0631\u06a9\u0648\u0631\u062f_\u0647\u0645\u0647_\u0628\u0627\u06cc\u062f_\u067e\u0631\u062f\u0627\u0632\u0634_\u0634\u0648\u0646\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/city-seo-optimization.md", "source_location": "L61", "weight": 1.0}, {"source": "prompt_city_seo_optimization_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u062a\u06a9_\u062a\u06a9_\u0634\u0647\u0631\u0647\u0627_\u062f\u0631_city_json_\u0633\u0637\u062d_\u062d\u0631\u0641\u0647_\u0627\u06cc", "target": "prompt_city_seo_optimization_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/city-seo-optimization.md", "source_location": "L100", "weight": 1.0}, {"source": "prompt_city_seo_optimization_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_city_seo_optimization_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_\u0641\u06cc\u0644\u062f_title_\u06cc\u06a9\u062a\u0627_\u0628\u0647_\u0647\u0631_\u0631\u06a9\u0648\u0631\u062f_\u0645\u0647\u0645_\u062a\u0631\u06cc\u0646", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/city-seo-optimization.md", "source_location": "L102", "weight": 1.0}, {"source": "prompt_city_seo_optimization_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_city_seo_optimization_\u06f2_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_description_\u0645\u062a\u0627_\u062f\u06cc\u0633\u06a9\u0631\u06cc\u067e\u0634\u0646", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/city-seo-optimization.md", "source_location": "L119", "weight": 1.0}, {"source": "prompt_city_seo_optimization_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_city_seo_optimization_\u06f3_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_keywords", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/city-seo-optimization.md", "source_location": "L134", "weight": 1.0}, {"source": "prompt_city_seo_optimization_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_city_seo_optimization_\u06f4_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_slogan_\u06cc\u06a9\u062a\u0627", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/city-seo-optimization.md", "source_location": "L140", "weight": 1.0}, {"source": "prompt_city_seo_optimization_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_city_seo_optimization_\u06f5_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_footer_description_\u06cc\u06a9\u062a\u0627", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/city-seo-optimization.md", "source_location": "L145", "weight": 1.0}, {"source": "prompt_city_seo_optimization_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_city_seo_optimization_\u06f6_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc_\u0627\u06af\u0631_\u06a9\u0627\u0631\u0628\u0631_\u062e\u0648\u0627\u0633\u062a_\u0628\u0647\u0628\u0648\u062f_\u0641\u0646\u06cc_\u062f\u0631_layout_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/city-seo-optimization.md", "source_location": "L150", "weight": 1.0}, {"source": "prompt_city_seo_optimization_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_city_seo_optimization_\u06f7_\u0631\u06a9\u0648\u0631\u062f_\u0628\u0631\u0646\u062f_\u0627\u0635\u0644\u06cc_id_600", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/city-seo-optimization.md", "source_location": "L156", "weight": 1.0}, {"source": "prompt_city_seo_optimization_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u062a\u06a9_\u062a\u06a9_\u0634\u0647\u0631\u0647\u0627_\u062f\u0631_city_json_\u0633\u0637\u062d_\u062d\u0631\u0641\u0647_\u0627\u06cc", "target": "prompt_city_seo_optimization_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/city-seo-optimization.md", "source_location": "L160", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/a1e7d5a4da148b5b13b8800f09d1417ff7a54d20c847b2738624b9d3e72659fc.json b/graphify-out/cache/ast/v0.8.44/a1e7d5a4da148b5b13b8800f09d1417ff7a54d20c847b2738624b9d3e72659fc.json new file mode 100644 index 0000000..fd3bf6a --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/a1e7d5a4da148b5b13b8800f09d1417ff7a54d20c847b2738624b9d3e72659fc.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_doctor_seo_schema_knowledge_panel_md", "label": "doctor-seo-schema-knowledge-panel.md", "file_type": "document", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "source_location": "L1"}, {"id": "prompt_doctor_seo_schema_knowledge_panel_seo_\u067e\u06cc\u0634\u0631\u0641\u062a\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_schema_\u06a9\u0627\u0645\u0644_sitelinks_knowledge_panel_local_seo", "label": "SEO \u067e\u06cc\u0634\u0631\u0641\u062a\u0647 \u0635\u0641\u062d\u0647 \u067e\u0632\u0634\u06a9: Schema \u06a9\u0627\u0645\u0644\u060c Sitelinks\u060c Knowledge Panel\u060c Local SEO", "file_type": "document", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "source_location": "L1"}, {"id": "prompt_doctor_seo_schema_knowledge_panel_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "source_location": "L3"}, {"id": "prompt_doctor_seo_schema_knowledge_panel_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "source_location": "L9"}, {"id": "prompt_doctor_seo_schema_knowledge_panel_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "source_location": "L17"}, {"id": "prompt_doctor_seo_schema_knowledge_panel_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "source_location": "L25"}, {"id": "prompt_doctor_seo_schema_knowledge_panel_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "file_type": "document", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "source_location": "L36"}, {"id": "prompt_doctor_seo_schema_knowledge_panel_app_doctor_slug_page_js_schema_\u0641\u0639\u0644\u06cc_\u0646\u0627\u0642\u0635", "label": "`app/doctor/[slug]/page.js` \u2014 schema \u0641\u0639\u0644\u06cc (\u0646\u0627\u0642\u0635)", "file_type": "document", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "source_location": "L38"}, {"id": "prompt_doctor_seo_schema_knowledge_panel_app_sitemap_js_\u0641\u0639\u0644\u0627_\u06cc\u06a9_\u0641\u0627\u06cc\u0644_\u0648\u0627\u062d\u062f", "label": "`app/sitemap.js` \u2014 \u0641\u0639\u0644\u0627\u064b \u06cc\u06a9 \u0641\u0627\u06cc\u0644 \u0648\u0627\u062d\u062f", "file_type": "document", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "source_location": "L64"}, {"id": "prompt_doctor_seo_schema_knowledge_panel_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "source_location": "L85"}, {"id": "prompt_doctor_seo_schema_knowledge_panel_\u06f1_schema_org_\u06a9\u0627\u0645\u0644_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9", "label": "\u06f1. Schema.org \u06a9\u0627\u0645\u0644 \u0628\u0631\u0627\u06cc \u0635\u0641\u062d\u0647 \u067e\u0632\u0634\u06a9", "file_type": "document", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "source_location": "L87"}, {"id": "prompt_doctor_seo_schema_knowledge_panel_\u06f2_sitemap_\u062a\u0641\u06a9\u06cc\u06a9_\u0634\u062f\u0647", "label": "\u06f2. Sitemap \u062a\u0641\u06a9\u06cc\u06a9\u200c\u0634\u062f\u0647", "file_type": "document", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "source_location": "L170"}, {"id": "prompt_doctor_seo_schema_knowledge_panel_\u06f3_\u0628\u0647_\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc_robots_js", "label": "\u06f3. \u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc `robots.js`", "file_type": "document", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "source_location": "L219"}, {"id": "prompt_doctor_seo_schema_knowledge_panel_\u06f4_\u06a9\u0627\u0631\u062a_\u0634\u0628\u06a9\u0647_\u0647\u0627\u06cc_\u0627\u062c\u062a\u0645\u0627\u0639\u06cc_\u062f\u0631_ui_\u0645\u0634\u0631\u0648\u0637_\u0628\u0647_\u0648\u062c\u0648\u062f_\u0641\u06cc\u0644\u062f_backend", "label": "\u06f4. \u06a9\u0627\u0631\u062a \u0634\u0628\u06a9\u0647\u200c\u0647\u0627\u06cc \u0627\u062c\u062a\u0645\u0627\u0639\u06cc \u062f\u0631 UI (\u0645\u0634\u0631\u0648\u0637 \u0628\u0647 \u0648\u062c\u0648\u062f \u0641\u06cc\u0644\u062f backend)", "file_type": "document", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "source_location": "L232"}, {"id": "prompt_doctor_seo_schema_knowledge_panel_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "source_location": "L251"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_doctor_seo_schema_knowledge_panel_md", "target": "prompt_doctor_seo_schema_knowledge_panel_seo_\u067e\u06cc\u0634\u0631\u0641\u062a\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_schema_\u06a9\u0627\u0645\u0644_sitelinks_knowledge_panel_local_seo", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_doctor_seo_schema_knowledge_panel_seo_\u067e\u06cc\u0634\u0631\u0641\u062a\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_schema_\u06a9\u0627\u0645\u0644_sitelinks_knowledge_panel_local_seo", "target": "prompt_doctor_seo_schema_knowledge_panel_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_doctor_seo_schema_knowledge_panel_seo_\u067e\u06cc\u0634\u0631\u0641\u062a\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_schema_\u06a9\u0627\u0645\u0644_sitelinks_knowledge_panel_local_seo", "target": "prompt_doctor_seo_schema_knowledge_panel_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "source_location": "L9", "weight": 1.0}, {"source": "prompt_doctor_seo_schema_knowledge_panel_seo_\u067e\u06cc\u0634\u0631\u0641\u062a\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_schema_\u06a9\u0627\u0645\u0644_sitelinks_knowledge_panel_local_seo", "target": "prompt_doctor_seo_schema_knowledge_panel_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "source_location": "L17", "weight": 1.0}, {"source": "prompt_doctor_seo_schema_knowledge_panel_seo_\u067e\u06cc\u0634\u0631\u0641\u062a\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_schema_\u06a9\u0627\u0645\u0644_sitelinks_knowledge_panel_local_seo", "target": "prompt_doctor_seo_schema_knowledge_panel_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "source_location": "L25", "weight": 1.0}, {"source": "prompt_doctor_seo_schema_knowledge_panel_seo_\u067e\u06cc\u0634\u0631\u0641\u062a\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_schema_\u06a9\u0627\u0645\u0644_sitelinks_knowledge_panel_local_seo", "target": "prompt_doctor_seo_schema_knowledge_panel_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "source_location": "L36", "weight": 1.0}, {"source": "prompt_doctor_seo_schema_knowledge_panel_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "target": "prompt_doctor_seo_schema_knowledge_panel_app_doctor_slug_page_js_schema_\u0641\u0639\u0644\u06cc_\u0646\u0627\u0642\u0635", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "source_location": "L38", "weight": 1.0}, {"source": "prompt_doctor_seo_schema_knowledge_panel_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "target": "prompt_doctor_seo_schema_knowledge_panel_app_sitemap_js_\u0641\u0639\u0644\u0627_\u06cc\u06a9_\u0641\u0627\u06cc\u0644_\u0648\u0627\u062d\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "source_location": "L64", "weight": 1.0}, {"source": "prompt_doctor_seo_schema_knowledge_panel_seo_\u067e\u06cc\u0634\u0631\u0641\u062a\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_schema_\u06a9\u0627\u0645\u0644_sitelinks_knowledge_panel_local_seo", "target": "prompt_doctor_seo_schema_knowledge_panel_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "source_location": "L85", "weight": 1.0}, {"source": "prompt_doctor_seo_schema_knowledge_panel_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_doctor_seo_schema_knowledge_panel_\u06f1_schema_org_\u06a9\u0627\u0645\u0644_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "source_location": "L87", "weight": 1.0}, {"source": "prompt_doctor_seo_schema_knowledge_panel_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_doctor_seo_schema_knowledge_panel_\u06f2_sitemap_\u062a\u0641\u06a9\u06cc\u06a9_\u0634\u062f\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "source_location": "L170", "weight": 1.0}, {"source": "prompt_doctor_seo_schema_knowledge_panel_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_doctor_seo_schema_knowledge_panel_\u06f3_\u0628\u0647_\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc_robots_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "source_location": "L219", "weight": 1.0}, {"source": "prompt_doctor_seo_schema_knowledge_panel_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_doctor_seo_schema_knowledge_panel_\u06f4_\u06a9\u0627\u0631\u062a_\u0634\u0628\u06a9\u0647_\u0647\u0627\u06cc_\u0627\u062c\u062a\u0645\u0627\u0639\u06cc_\u062f\u0631_ui_\u0645\u0634\u0631\u0648\u0637_\u0628\u0647_\u0648\u062c\u0648\u062f_\u0641\u06cc\u0644\u062f_backend", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "source_location": "L232", "weight": 1.0}, {"source": "prompt_doctor_seo_schema_knowledge_panel_seo_\u067e\u06cc\u0634\u0631\u0641\u062a\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_schema_\u06a9\u0627\u0645\u0644_sitelinks_knowledge_panel_local_seo", "target": "prompt_doctor_seo_schema_knowledge_panel_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", "source_location": "L251", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/a2bff95d8ec72493e859cb174fca8469022ee7669f193d889e6e3d2b59bd97b3.json b/graphify-out/cache/ast/v0.8.44/a2bff95d8ec72493e859cb174fca8469022ee7669f193d889e6e3d2b59bd97b3.json new file mode 100644 index 0000000..8afbf29 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/a2bff95d8ec72493e859cb174fca8469022ee7669f193d889e6e3d2b59bd97b3.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_fix_doctors_filter_performance_md", "label": "fix-doctors-filter-performance.md", "file_type": "document", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "source_location": "L1"}, {"id": "prompt_fix_doctors_filter_performance_\u0641\u06cc\u06a9\u0633_\u06a9\u0646\u062f\u06cc_\u0648_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u0641\u06cc\u0644\u062a\u0631_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9\u0627\u0646", "label": "\u0641\u06cc\u06a9\u0633 \u06a9\u0646\u062f\u06cc \u0648 \u0628\u0627\u06af\u200c\u0647\u0627\u06cc \u0641\u06cc\u0644\u062a\u0631 \u0635\u0641\u062d\u0647 \u067e\u0632\u0634\u06a9\u0627\u0646", "file_type": "document", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "source_location": "L1"}, {"id": "prompt_fix_doctors_filter_performance_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "source_location": "L3"}, {"id": "prompt_fix_doctors_filter_performance_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "source_location": "L7"}, {"id": "prompt_fix_doctors_filter_performance_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "source_location": "L14"}, {"id": "prompt_fix_doctors_filter_performance_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "file_type": "document", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "source_location": "L27"}, {"id": "prompt_fix_doctors_filter_performance_\u0628\u0627\u06af_\u06f1_\u0645\u0648\u062f\u0627\u0644_\u0634\u0647\u0631_\u0627\u0633\u062a\u0627\u0646_\u062f\u06cc\u0631_\u0628\u0633\u062a\u0647_\u0645\u06cc_\u0634\u0648\u062f", "label": "\u0628\u0627\u06af \u06f1 \u2014 \u0645\u0648\u062f\u0627\u0644 \u0634\u0647\u0631/\u0627\u0633\u062a\u0627\u0646 \u062f\u06cc\u0631 \u0628\u0633\u062a\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f", "file_type": "document", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "source_location": "L29"}, {"id": "prompt_fix_doctors_filter_performance_\u0628\u0627\u06af_\u06f2_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u06a9\u0627\u0631_\u0646\u0645\u06cc_\u06a9\u0646\u062f", "label": "\u0628\u0627\u06af \u06f2 \u2014 \u062f\u0633\u062a\u0647\u200c\u0628\u0646\u062f\u06cc \u06a9\u0627\u0631 \u0646\u0645\u06cc\u200c\u06a9\u0646\u062f", "file_type": "document", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "source_location": "L54"}, {"id": "prompt_fix_doctors_filter_performance_\u0628\u0627\u06af_\u06f3_\u06a9\u0646\u062f\u06cc_\u06a9\u0644\u06cc", "label": "\u0628\u0627\u06af \u06f3 \u2014 \u06a9\u0646\u062f\u06cc \u06a9\u0644\u06cc", "file_type": "document", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "source_location": "L96"}, {"id": "prompt_fix_doctors_filter_performance_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "source_location": "L100"}, {"id": "prompt_fix_doctors_filter_performance_\u06f1_\u0641\u06cc\u06a9\u0633_\u0628\u0633\u062a\u0646_\u0633\u0631\u06cc\u0639_\u0645\u0648\u062f\u0627\u0644_\u0634\u0647\u0631_\u0627\u0633\u062a\u0627\u0646", "label": "\u06f1. \u0641\u06cc\u06a9\u0633 \u0628\u0633\u062a\u0646 \u0633\u0631\u06cc\u0639 \u0645\u0648\u062f\u0627\u0644 \u0634\u0647\u0631/\u0627\u0633\u062a\u0627\u0646", "file_type": "document", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "source_location": "L102"}, {"id": "prompt_fix_doctors_filter_performance_\u06f2_\u0641\u06cc\u06a9\u0633_\u0628\u0633\u062a\u0646_\u0633\u0631\u06cc\u0639_\u0645\u0648\u062f\u0627\u0644_\u0641\u06cc\u0644\u062a\u0631", "label": "\u06f2. \u0641\u06cc\u06a9\u0633 \u0628\u0633\u062a\u0646 \u0633\u0631\u06cc\u0639 \u0645\u0648\u062f\u0627\u0644 \u0641\u06cc\u0644\u062a\u0631", "file_type": "document", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "source_location": "L123"}, {"id": "prompt_fix_doctors_filter_performance_\u06f3_\u0641\u06cc\u06a9\u0633_crash_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0646\u06af\u0627\u0645_clear", "label": "\u06f3. \u0641\u06cc\u06a9\u0633 crash \u062f\u0633\u062a\u0647\u200c\u0628\u0646\u062f\u06cc \u0647\u0646\u06af\u0627\u0645 clear", "file_type": "document", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "source_location": "L136"}, {"id": "prompt_fix_doctors_filter_performance_\u06f4_\u0641\u06cc\u06a9\u0633_type_mismatch_\u062f\u0631_filterlist", "label": "\u06f4. \u0641\u06cc\u06a9\u0633 type mismatch \u062f\u0631 filterList", "file_type": "document", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "source_location": "L161"}, {"id": "prompt_fix_doctors_filter_performance_\u06f5_\u0628\u0631\u0631\u0633\u06cc_\u06a9\u0646\u062f\u06cc_\u06a9\u0644\u06cc", "label": "\u06f5. \u0628\u0631\u0631\u0633\u06cc \u06a9\u0646\u062f\u06cc \u06a9\u0644\u06cc", "file_type": "document", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "source_location": "L174"}, {"id": "prompt_fix_doctors_filter_performance_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "source_location": "L190"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_fix_doctors_filter_performance_md", "target": "prompt_fix_doctors_filter_performance_\u0641\u06cc\u06a9\u0633_\u06a9\u0646\u062f\u06cc_\u0648_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u0641\u06cc\u0644\u062a\u0631_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9\u0627\u0646", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_fix_doctors_filter_performance_\u0641\u06cc\u06a9\u0633_\u06a9\u0646\u062f\u06cc_\u0648_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u0641\u06cc\u0644\u062a\u0631_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9\u0627\u0646", "target": "prompt_fix_doctors_filter_performance_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_fix_doctors_filter_performance_\u0641\u06cc\u06a9\u0633_\u06a9\u0646\u062f\u06cc_\u0648_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u0641\u06cc\u0644\u062a\u0631_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9\u0627\u0646", "target": "prompt_fix_doctors_filter_performance_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "source_location": "L7", "weight": 1.0}, {"source": "prompt_fix_doctors_filter_performance_\u0641\u06cc\u06a9\u0633_\u06a9\u0646\u062f\u06cc_\u0648_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u0641\u06cc\u0644\u062a\u0631_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9\u0627\u0646", "target": "prompt_fix_doctors_filter_performance_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "source_location": "L14", "weight": 1.0}, {"source": "prompt_fix_doctors_filter_performance_\u0641\u06cc\u06a9\u0633_\u06a9\u0646\u062f\u06cc_\u0648_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u0641\u06cc\u0644\u062a\u0631_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9\u0627\u0646", "target": "prompt_fix_doctors_filter_performance_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "source_location": "L27", "weight": 1.0}, {"source": "prompt_fix_doctors_filter_performance_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "target": "prompt_fix_doctors_filter_performance_\u0628\u0627\u06af_\u06f1_\u0645\u0648\u062f\u0627\u0644_\u0634\u0647\u0631_\u0627\u0633\u062a\u0627\u0646_\u062f\u06cc\u0631_\u0628\u0633\u062a\u0647_\u0645\u06cc_\u0634\u0648\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "source_location": "L29", "weight": 1.0}, {"source": "prompt_fix_doctors_filter_performance_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "target": "prompt_fix_doctors_filter_performance_\u0628\u0627\u06af_\u06f2_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u06a9\u0627\u0631_\u0646\u0645\u06cc_\u06a9\u0646\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "source_location": "L54", "weight": 1.0}, {"source": "prompt_fix_doctors_filter_performance_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "target": "prompt_fix_doctors_filter_performance_\u0628\u0627\u06af_\u06f3_\u06a9\u0646\u062f\u06cc_\u06a9\u0644\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "source_location": "L96", "weight": 1.0}, {"source": "prompt_fix_doctors_filter_performance_\u0641\u06cc\u06a9\u0633_\u06a9\u0646\u062f\u06cc_\u0648_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u0641\u06cc\u0644\u062a\u0631_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9\u0627\u0646", "target": "prompt_fix_doctors_filter_performance_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "source_location": "L100", "weight": 1.0}, {"source": "prompt_fix_doctors_filter_performance_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_doctors_filter_performance_\u06f1_\u0641\u06cc\u06a9\u0633_\u0628\u0633\u062a\u0646_\u0633\u0631\u06cc\u0639_\u0645\u0648\u062f\u0627\u0644_\u0634\u0647\u0631_\u0627\u0633\u062a\u0627\u0646", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "source_location": "L102", "weight": 1.0}, {"source": "prompt_fix_doctors_filter_performance_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_doctors_filter_performance_\u06f2_\u0641\u06cc\u06a9\u0633_\u0628\u0633\u062a\u0646_\u0633\u0631\u06cc\u0639_\u0645\u0648\u062f\u0627\u0644_\u0641\u06cc\u0644\u062a\u0631", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "source_location": "L123", "weight": 1.0}, {"source": "prompt_fix_doctors_filter_performance_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_doctors_filter_performance_\u06f3_\u0641\u06cc\u06a9\u0633_crash_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0646\u06af\u0627\u0645_clear", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "source_location": "L136", "weight": 1.0}, {"source": "prompt_fix_doctors_filter_performance_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_doctors_filter_performance_\u06f4_\u0641\u06cc\u06a9\u0633_type_mismatch_\u062f\u0631_filterlist", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "source_location": "L161", "weight": 1.0}, {"source": "prompt_fix_doctors_filter_performance_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_doctors_filter_performance_\u06f5_\u0628\u0631\u0631\u0633\u06cc_\u06a9\u0646\u062f\u06cc_\u06a9\u0644\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "source_location": "L174", "weight": 1.0}, {"source": "prompt_fix_doctors_filter_performance_\u0641\u06cc\u06a9\u0633_\u06a9\u0646\u062f\u06cc_\u0648_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u0641\u06cc\u0644\u062a\u0631_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9\u0627\u0646", "target": "prompt_fix_doctors_filter_performance_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctors-filter-performance.md", "source_location": "L190", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/a588d0d0150fcd8aaef3a41ebdad0404b8fa2c61855d157285aeb9dda04ef3ab.json b/graphify-out/cache/ast/v0.8.44/a588d0d0150fcd8aaef3a41ebdad0404b8fa2c61855d157285aeb9dda04ef3ab.json new file mode 100644 index 0000000..d7a688e --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/a588d0d0150fcd8aaef3a41ebdad0404b8fa2c61855d157285aeb9dda04ef3ab.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_birthday_picker_year_month_day_md", "label": "birthday-picker-year-month-day.md", "file_type": "document", "source_file": ".claude/prompt/birthday-picker-year-month-day.md", "source_location": "L1"}, {"id": "prompt_birthday_picker_year_month_day_\u0627\u0646\u062a\u062e\u0627\u0628_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0645\u0631\u062d\u0644\u0647_\u0627\u06cc_\u0633\u0627\u0644_\u0645\u0627\u0647_\u0631\u0648\u0632", "label": "\u0627\u0646\u062a\u062e\u0627\u0628 \u062a\u0627\u0631\u06cc\u062e \u062a\u0648\u0644\u062f \u0628\u0647\u200c\u0635\u0648\u0631\u062a \u0645\u0631\u062d\u0644\u0647\u200c\u0627\u06cc: \u0633\u0627\u0644 \u2190 \u0645\u0627\u0647 \u2190 \u0631\u0648\u0632", "file_type": "document", "source_file": ".claude/prompt/birthday-picker-year-month-day.md", "source_location": "L1"}, {"id": "prompt_birthday_picker_year_month_day_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/birthday-picker-year-month-day.md", "source_location": "L3"}, {"id": "prompt_birthday_picker_year_month_day_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/birthday-picker-year-month-day.md", "source_location": "L9"}, {"id": "prompt_birthday_picker_year_month_day_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/birthday-picker-year-month-day.md", "source_location": "L15"}, {"id": "prompt_birthday_picker_year_month_day_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/birthday-picker-year-month-day.md", "source_location": "L19"}, {"id": "prompt_birthday_picker_year_month_day_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "file_type": "document", "source_file": ".claude/prompt/birthday-picker-year-month-day.md", "source_location": "L29"}, {"id": "prompt_birthday_picker_year_month_day_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/birthday-picker-year-month-day.md", "source_location": "L55"}, {"id": "prompt_birthday_picker_year_month_day_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_\u062d\u0627\u0644\u062a_\u0645\u0631\u062d\u0644\u0647_\u0627\u06cc_\u0628\u0647_jalalidatepicker", "label": "\u06f1. \u0627\u0641\u0632\u0648\u062f\u0646 \u062d\u0627\u0644\u062a \u0645\u0631\u062d\u0644\u0647\u200c\u0627\u06cc \u0628\u0647 `JalaliDatePicker`", "file_type": "document", "source_file": ".claude/prompt/birthday-picker-year-month-day.md", "source_location": "L57"}, {"id": "prompt_birthday_picker_year_month_day_\u06f2_\u0641\u0639\u0627\u0644_\u06a9\u0631\u062f\u0646_\u062f\u0631_datebirthday_js", "label": "\u06f2. \u0641\u0639\u0627\u0644\u200c\u06a9\u0631\u062f\u0646 \u062f\u0631 `DateBirthday.js`", "file_type": "document", "source_file": ".claude/prompt/birthday-picker-year-month-day.md", "source_location": "L87"}, {"id": "prompt_birthday_picker_year_month_day_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/birthday-picker-year-month-day.md", "source_location": "L100"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_birthday_picker_year_month_day_md", "target": "prompt_birthday_picker_year_month_day_\u0627\u0646\u062a\u062e\u0627\u0628_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0645\u0631\u062d\u0644\u0647_\u0627\u06cc_\u0633\u0627\u0644_\u0645\u0627\u0647_\u0631\u0648\u0632", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/birthday-picker-year-month-day.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_birthday_picker_year_month_day_\u0627\u0646\u062a\u062e\u0627\u0628_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0645\u0631\u062d\u0644\u0647_\u0627\u06cc_\u0633\u0627\u0644_\u0645\u0627\u0647_\u0631\u0648\u0632", "target": "prompt_birthday_picker_year_month_day_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/birthday-picker-year-month-day.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_birthday_picker_year_month_day_\u0627\u0646\u062a\u062e\u0627\u0628_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0645\u0631\u062d\u0644\u0647_\u0627\u06cc_\u0633\u0627\u0644_\u0645\u0627\u0647_\u0631\u0648\u0632", "target": "prompt_birthday_picker_year_month_day_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/birthday-picker-year-month-day.md", "source_location": "L9", "weight": 1.0}, {"source": "prompt_birthday_picker_year_month_day_\u0627\u0646\u062a\u062e\u0627\u0628_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0645\u0631\u062d\u0644\u0647_\u0627\u06cc_\u0633\u0627\u0644_\u0645\u0627\u0647_\u0631\u0648\u0632", "target": "prompt_birthday_picker_year_month_day_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/birthday-picker-year-month-day.md", "source_location": "L15", "weight": 1.0}, {"source": "prompt_birthday_picker_year_month_day_\u0627\u0646\u062a\u062e\u0627\u0628_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0645\u0631\u062d\u0644\u0647_\u0627\u06cc_\u0633\u0627\u0644_\u0645\u0627\u0647_\u0631\u0648\u0632", "target": "prompt_birthday_picker_year_month_day_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/birthday-picker-year-month-day.md", "source_location": "L19", "weight": 1.0}, {"source": "prompt_birthday_picker_year_month_day_\u0627\u0646\u062a\u062e\u0627\u0628_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0645\u0631\u062d\u0644\u0647_\u0627\u06cc_\u0633\u0627\u0644_\u0645\u0627\u0647_\u0631\u0648\u0632", "target": "prompt_birthday_picker_year_month_day_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/birthday-picker-year-month-day.md", "source_location": "L29", "weight": 1.0}, {"source": "prompt_birthday_picker_year_month_day_\u0627\u0646\u062a\u062e\u0627\u0628_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0645\u0631\u062d\u0644\u0647_\u0627\u06cc_\u0633\u0627\u0644_\u0645\u0627\u0647_\u0631\u0648\u0632", "target": "prompt_birthday_picker_year_month_day_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/birthday-picker-year-month-day.md", "source_location": "L55", "weight": 1.0}, {"source": "prompt_birthday_picker_year_month_day_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_birthday_picker_year_month_day_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_\u062d\u0627\u0644\u062a_\u0645\u0631\u062d\u0644\u0647_\u0627\u06cc_\u0628\u0647_jalalidatepicker", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/birthday-picker-year-month-day.md", "source_location": "L57", "weight": 1.0}, {"source": "prompt_birthday_picker_year_month_day_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_birthday_picker_year_month_day_\u06f2_\u0641\u0639\u0627\u0644_\u06a9\u0631\u062f\u0646_\u062f\u0631_datebirthday_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/birthday-picker-year-month-day.md", "source_location": "L87", "weight": 1.0}, {"source": "prompt_birthday_picker_year_month_day_\u0627\u0646\u062a\u062e\u0627\u0628_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0645\u0631\u062d\u0644\u0647_\u0627\u06cc_\u0633\u0627\u0644_\u0645\u0627\u0647_\u0631\u0648\u0632", "target": "prompt_birthday_picker_year_month_day_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/birthday-picker-year-month-day.md", "source_location": "L100", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/a5e69f183ea4fdd29b651385b5350ecc1d7c52097b7a4228e7d1be03b98f7c61.json b/graphify-out/cache/ast/v0.8.44/a5e69f183ea4fdd29b651385b5350ecc1d7c52097b7a4228e7d1be03b98f7c61.json new file mode 100644 index 0000000..82dcc26 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/a5e69f183ea4fdd29b651385b5350ecc1d7c52097b7a4228e7d1be03b98f7c61.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_user_profile_no_404_md", "label": "user-profile-no-404.md", "file_type": "document", "source_file": ".claude/prompt/user-profile-no-404.md", "source_location": "L1"}, {"id": "prompt_user_profile_no_404_\u0647\u0645_\u062e\u0648\u0627\u0646_\u06a9\u0631\u062f\u0646_\u0645\u0635\u0631\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0627_endpoint_\u0627\u0635\u0644\u0627\u062d_\u0634\u062f\u0647_\u0628\u062f\u0648\u0646_404_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062c\u062f\u06cc\u062f", "label": "\u0647\u0645\u200c\u062e\u0648\u0627\u0646\u200c\u06a9\u0631\u062f\u0646 \u0645\u0635\u0631\u0641 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u06a9\u0627\u0631\u0628\u0631 \u0628\u0627 endpoint \u0627\u0635\u0644\u0627\u062d\u200c\u0634\u062f\u0647 (\u0628\u062f\u0648\u0646 404 \u0628\u0631\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631 \u062c\u062f\u06cc\u062f)", "file_type": "document", "source_file": ".claude/prompt/user-profile-no-404.md", "source_location": "L1"}, {"id": "prompt_user_profile_no_404_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/user-profile-no-404.md", "source_location": "L3"}, {"id": "prompt_user_profile_no_404_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/user-profile-no-404.md", "source_location": "L11"}, {"id": "prompt_user_profile_no_404_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/user-profile-no-404.md", "source_location": "L16"}, {"id": "prompt_user_profile_no_404_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/user-profile-no-404.md", "source_location": "L22"}, {"id": "prompt_user_profile_no_404_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "file_type": "document", "source_file": ".claude/prompt/user-profile-no-404.md", "source_location": "L31"}, {"id": "prompt_user_profile_no_404_components_appointment_index_js_\u0647\u0646\u062f\u0644_\u0648\u06cc\u0698\u0647_\u06cc_404", "label": "`components/appointment/index.js` \u2014 \u0647\u0646\u062f\u0644 \u0648\u06cc\u0698\u0647\u200c\u06cc 404", "file_type": "document", "source_file": ".claude/prompt/user-profile-no-404.md", "source_location": "L33"}, {"id": "prompt_user_profile_no_404_submitdata_js_\u0627\u0646\u062a\u062e\u0627\u0628_post_\u06cc\u0627_patch_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0648\u062c\u0648\u062f_uuid", "label": "`SubmitData.js` \u2014 \u0627\u0646\u062a\u062e\u0627\u0628 POST \u06cc\u0627 PATCH \u0628\u0631 \u0627\u0633\u0627\u0633 \u0648\u062c\u0648\u062f `uuid`", "file_type": "document", "source_file": ".claude/prompt/user-profile-no-404.md", "source_location": "L50"}, {"id": "prompt_user_profile_no_404_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/user-profile-no-404.md", "source_location": "L62"}, {"id": "prompt_user_profile_no_404_\u06f1_\u062a\u0623\u06cc\u06cc\u062f_\u062c\u0631\u06cc\u0627\u0646_\u0644\u0648\u062f_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_appointment_dashboard", "label": "\u06f1. \u062a\u0623\u06cc\u06cc\u062f \u062c\u0631\u06cc\u0627\u0646 \u0644\u0648\u062f \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 (appointment + dashboard)", "file_type": "document", "source_file": ".claude/prompt/user-profile-no-404.md", "source_location": "L64"}, {"id": "prompt_user_profile_no_404_\u06f2_\u0633\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0647\u0646\u062f\u0644_404_\u0645\u0646\u0633\u0648\u062e", "label": "\u06f2. \u0633\u0627\u062f\u0647\u200c\u0633\u0627\u0632\u06cc \u0647\u0646\u062f\u0644 404 \u0645\u0646\u0633\u0648\u062e", "file_type": "document", "source_file": ".claude/prompt/user-profile-no-404.md", "source_location": "L69"}, {"id": "prompt_user_profile_no_404_\u06f3_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_post_patch_\u062f\u0631_submitdata_js", "label": "\u06f3. \u0633\u0627\u0632\u06af\u0627\u0631\u06cc POST/PATCH \u062f\u0631 `SubmitData.js`", "file_type": "document", "source_file": ".claude/prompt/user-profile-no-404.md", "source_location": "L74"}, {"id": "prompt_user_profile_no_404_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/user-profile-no-404.md", "source_location": "L79"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_user_profile_no_404_md", "target": "prompt_user_profile_no_404_\u0647\u0645_\u062e\u0648\u0627\u0646_\u06a9\u0631\u062f\u0646_\u0645\u0635\u0631\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0627_endpoint_\u0627\u0635\u0644\u0627\u062d_\u0634\u062f\u0647_\u0628\u062f\u0648\u0646_404_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062c\u062f\u06cc\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/user-profile-no-404.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_user_profile_no_404_\u0647\u0645_\u062e\u0648\u0627\u0646_\u06a9\u0631\u062f\u0646_\u0645\u0635\u0631\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0627_endpoint_\u0627\u0635\u0644\u0627\u062d_\u0634\u062f\u0647_\u0628\u062f\u0648\u0646_404_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062c\u062f\u06cc\u062f", "target": "prompt_user_profile_no_404_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/user-profile-no-404.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_user_profile_no_404_\u0647\u0645_\u062e\u0648\u0627\u0646_\u06a9\u0631\u062f\u0646_\u0645\u0635\u0631\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0627_endpoint_\u0627\u0635\u0644\u0627\u062d_\u0634\u062f\u0647_\u0628\u062f\u0648\u0646_404_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062c\u062f\u06cc\u062f", "target": "prompt_user_profile_no_404_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/user-profile-no-404.md", "source_location": "L11", "weight": 1.0}, {"source": "prompt_user_profile_no_404_\u0647\u0645_\u062e\u0648\u0627\u0646_\u06a9\u0631\u062f\u0646_\u0645\u0635\u0631\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0627_endpoint_\u0627\u0635\u0644\u0627\u062d_\u0634\u062f\u0647_\u0628\u062f\u0648\u0646_404_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062c\u062f\u06cc\u062f", "target": "prompt_user_profile_no_404_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/user-profile-no-404.md", "source_location": "L16", "weight": 1.0}, {"source": "prompt_user_profile_no_404_\u0647\u0645_\u062e\u0648\u0627\u0646_\u06a9\u0631\u062f\u0646_\u0645\u0635\u0631\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0627_endpoint_\u0627\u0635\u0644\u0627\u062d_\u0634\u062f\u0647_\u0628\u062f\u0648\u0646_404_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062c\u062f\u06cc\u062f", "target": "prompt_user_profile_no_404_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/user-profile-no-404.md", "source_location": "L22", "weight": 1.0}, {"source": "prompt_user_profile_no_404_\u0647\u0645_\u062e\u0648\u0627\u0646_\u06a9\u0631\u062f\u0646_\u0645\u0635\u0631\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0627_endpoint_\u0627\u0635\u0644\u0627\u062d_\u0634\u062f\u0647_\u0628\u062f\u0648\u0646_404_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062c\u062f\u06cc\u062f", "target": "prompt_user_profile_no_404_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/user-profile-no-404.md", "source_location": "L31", "weight": 1.0}, {"source": "prompt_user_profile_no_404_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_user_profile_no_404_components_appointment_index_js_\u0647\u0646\u062f\u0644_\u0648\u06cc\u0698\u0647_\u06cc_404", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/user-profile-no-404.md", "source_location": "L33", "weight": 1.0}, {"source": "prompt_user_profile_no_404_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_user_profile_no_404_submitdata_js_\u0627\u0646\u062a\u062e\u0627\u0628_post_\u06cc\u0627_patch_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0648\u062c\u0648\u062f_uuid", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/user-profile-no-404.md", "source_location": "L50", "weight": 1.0}, {"source": "prompt_user_profile_no_404_\u0647\u0645_\u062e\u0648\u0627\u0646_\u06a9\u0631\u062f\u0646_\u0645\u0635\u0631\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0627_endpoint_\u0627\u0635\u0644\u0627\u062d_\u0634\u062f\u0647_\u0628\u062f\u0648\u0646_404_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062c\u062f\u06cc\u062f", "target": "prompt_user_profile_no_404_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/user-profile-no-404.md", "source_location": "L62", "weight": 1.0}, {"source": "prompt_user_profile_no_404_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_user_profile_no_404_\u06f1_\u062a\u0623\u06cc\u06cc\u062f_\u062c\u0631\u06cc\u0627\u0646_\u0644\u0648\u062f_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_appointment_dashboard", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/user-profile-no-404.md", "source_location": "L64", "weight": 1.0}, {"source": "prompt_user_profile_no_404_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_user_profile_no_404_\u06f2_\u0633\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0647\u0646\u062f\u0644_404_\u0645\u0646\u0633\u0648\u062e", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/user-profile-no-404.md", "source_location": "L69", "weight": 1.0}, {"source": "prompt_user_profile_no_404_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_user_profile_no_404_\u06f3_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_post_patch_\u062f\u0631_submitdata_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/user-profile-no-404.md", "source_location": "L74", "weight": 1.0}, {"source": "prompt_user_profile_no_404_\u0647\u0645_\u062e\u0648\u0627\u0646_\u06a9\u0631\u062f\u0646_\u0645\u0635\u0631\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0627_endpoint_\u0627\u0635\u0644\u0627\u062d_\u0634\u062f\u0647_\u0628\u062f\u0648\u0646_404_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062c\u062f\u06cc\u062f", "target": "prompt_user_profile_no_404_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/user-profile-no-404.md", "source_location": "L79", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/add909cd22a22c9352f1cd3a6b4bb2ad6672e7784198164f8dbfda25d2f0f93a.json b/graphify-out/cache/ast/v0.8.44/add909cd22a22c9352f1cd3a6b4bb2ad6672e7784198164f8dbfda25d2f0f93a.json new file mode 100644 index 0000000..871e5ac --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/add909cd22a22c9352f1cd3a6b4bb2ad6672e7784198164f8dbfda25d2f0f93a.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_rating_rich_ui_wiring_md", "label": "rating-rich-ui-wiring.md", "file_type": "document", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "source_location": "L1"}, {"id": "prompt_rating_rich_ui_wiring_\u0627\u062a\u0635\u0627\u0644_ui_\u063a\u0646\u06cc_\u0646\u0638\u0631\u0627\u062a_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0628\u0647_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u062c\u062f\u06cc\u062f_\u0628\u06a9_\u0627\u0646\u062f", "label": "\u0627\u062a\u0635\u0627\u0644 UI \u063a\u0646\u06cc\u0650 \u0646\u0638\u0631\u0627\u062a/\u0627\u0645\u062a\u06cc\u0627\u0632 \u0635\u0641\u062d\u0647 \u067e\u0632\u0634\u06a9 \u0628\u0647 \u0642\u0631\u0627\u0631\u062f\u0627\u062f \u062c\u062f\u06cc\u062f \u0628\u06a9\u200c\u0627\u0646\u062f", "file_type": "document", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "source_location": "L1"}, {"id": "prompt_rating_rich_ui_wiring_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "source_location": "L3"}, {"id": "prompt_rating_rich_ui_wiring_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "source_location": "L9"}, {"id": "prompt_rating_rich_ui_wiring_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0628\u06a9_\u0627\u0646\u062f_\u0645\u0631\u062c\u0639_\u0627\u0632_\u067e\u0631\u0627\u0645\u067e\u062a_\u0647\u0645\u062a\u0627", "label": "\u0642\u0631\u0627\u0631\u062f\u0627\u062f \u0628\u06a9\u200c\u0627\u0646\u062f (\u0645\u0631\u062c\u0639 \u2014 \u0627\u0632 \u067e\u0631\u0627\u0645\u067e\u062a \u0647\u0645\u062a\u0627)", "file_type": "document", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "source_location": "L15"}, {"id": "prompt_rating_rich_ui_wiring_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637_ui_\u0645\u0648\u062c\u0648\u062f_\u06a9\u0647_\u0628\u0627\u06cc\u062f_\u0648\u0635\u0644_\u0634\u0648\u062f", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637 (UI \u0645\u0648\u062c\u0648\u062f \u06a9\u0647 \u0628\u0627\u06cc\u062f \u0648\u0635\u0644 \u0634\u0648\u062f)", "file_type": "document", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "source_location": "L25"}, {"id": "prompt_rating_rich_ui_wiring_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "source_location": "L40"}, {"id": "prompt_rating_rich_ui_wiring_\u06f1_fetch_\u062a\u062c\u0645\u06cc\u0639_\u0627\u0645\u062a\u06cc\u0627\u0632_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0648_\u0639\u0628\u0648\u0631_prop", "label": "\u06f1. fetch \u062a\u062c\u0645\u06cc\u0639 \u0627\u0645\u062a\u06cc\u0627\u0632 \u062f\u0631 \u0635\u0641\u062d\u0647 \u0648 \u0639\u0628\u0648\u0631 prop", "file_type": "document", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "source_location": "L42"}, {"id": "prompt_rating_rich_ui_wiring_\u06f2_\u0627\u062a\u0635\u0627\u0644_\u0686\u0627\u0631\u062a_\u0628\u0647_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u062c\u062f\u06cc\u062f_chart_index_js_progressall_js", "label": "\u06f2. \u0627\u062a\u0635\u0627\u0644 \u0686\u0627\u0631\u062a \u0628\u0647 \u0642\u0631\u0627\u0631\u062f\u0627\u062f \u062c\u062f\u06cc\u062f (`chart/index.js` + `ProgressAll.js`)", "file_type": "document", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "source_location": "L50"}, {"id": "prompt_rating_rich_ui_wiring_\u06f3_\u0641\u0631\u0645_\u062b\u0628\u062a_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0686\u0646\u062f\u0628_\u0639\u062f\u06cc_form_js_modalanswer_js_content_index_js", "label": "\u06f3. \u0641\u0631\u0645 \u062b\u0628\u062a \u0627\u0645\u062a\u06cc\u0627\u0632 \u0686\u0646\u062f\u0628\u064f\u0639\u062f\u06cc (`Form.js` + `ModalAnswer.js` + `content/index.js`)", "file_type": "document", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "source_location": "L56"}, {"id": "prompt_rating_rich_ui_wiring_\u06f4_\u0644\u0627\u06cc\u06a9_\u062f\u06cc\u0633\u0644\u0627\u06cc\u06a9_\u0648\u0627\u0642\u0639\u06cc_itemuser_js_services_response_js", "label": "\u06f4. \u0644\u0627\u06cc\u06a9/\u062f\u06cc\u0633\u0644\u0627\u06cc\u06a9 \u0648\u0627\u0642\u0639\u06cc (`ItemUser.js` + `services/response.js`)", "file_type": "document", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "source_location": "L76"}, {"id": "prompt_rating_rich_ui_wiring_\u06f5_\u062b\u0628\u062a_\u067e\u0627\u0633\u062e_sendanswer_js", "label": "\u06f5. \u062b\u0628\u062a \u067e\u0627\u0633\u062e (`SendAnswer.js`)", "file_type": "document", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "source_location": "L81"}, {"id": "prompt_rating_rich_ui_wiring_\u06f6_wrapper\u0647\u0627_services_response_js", "label": "\u06f6. wrapper\u0647\u0627 (`services/response.js`)", "file_type": "document", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "source_location": "L85"}, {"id": "prompt_rating_rich_ui_wiring_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "source_location": "L90"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_rating_rich_ui_wiring_md", "target": "prompt_rating_rich_ui_wiring_\u0627\u062a\u0635\u0627\u0644_ui_\u063a\u0646\u06cc_\u0646\u0638\u0631\u0627\u062a_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0628\u0647_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u062c\u062f\u06cc\u062f_\u0628\u06a9_\u0627\u0646\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_rating_rich_ui_wiring_\u0627\u062a\u0635\u0627\u0644_ui_\u063a\u0646\u06cc_\u0646\u0638\u0631\u0627\u062a_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0628\u0647_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u062c\u062f\u06cc\u062f_\u0628\u06a9_\u0627\u0646\u062f", "target": "prompt_rating_rich_ui_wiring_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_rating_rich_ui_wiring_\u0627\u062a\u0635\u0627\u0644_ui_\u063a\u0646\u06cc_\u0646\u0638\u0631\u0627\u062a_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0628\u0647_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u062c\u062f\u06cc\u062f_\u0628\u06a9_\u0627\u0646\u062f", "target": "prompt_rating_rich_ui_wiring_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "source_location": "L9", "weight": 1.0}, {"source": "prompt_rating_rich_ui_wiring_\u0627\u062a\u0635\u0627\u0644_ui_\u063a\u0646\u06cc_\u0646\u0638\u0631\u0627\u062a_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0628\u0647_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u062c\u062f\u06cc\u062f_\u0628\u06a9_\u0627\u0646\u062f", "target": "prompt_rating_rich_ui_wiring_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0628\u06a9_\u0627\u0646\u062f_\u0645\u0631\u062c\u0639_\u0627\u0632_\u067e\u0631\u0627\u0645\u067e\u062a_\u0647\u0645\u062a\u0627", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "source_location": "L15", "weight": 1.0}, {"source": "prompt_rating_rich_ui_wiring_\u0627\u062a\u0635\u0627\u0644_ui_\u063a\u0646\u06cc_\u0646\u0638\u0631\u0627\u062a_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0628\u0647_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u062c\u062f\u06cc\u062f_\u0628\u06a9_\u0627\u0646\u062f", "target": "prompt_rating_rich_ui_wiring_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637_ui_\u0645\u0648\u062c\u0648\u062f_\u06a9\u0647_\u0628\u0627\u06cc\u062f_\u0648\u0635\u0644_\u0634\u0648\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "source_location": "L25", "weight": 1.0}, {"source": "prompt_rating_rich_ui_wiring_\u0627\u062a\u0635\u0627\u0644_ui_\u063a\u0646\u06cc_\u0646\u0638\u0631\u0627\u062a_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0628\u0647_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u062c\u062f\u06cc\u062f_\u0628\u06a9_\u0627\u0646\u062f", "target": "prompt_rating_rich_ui_wiring_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "source_location": "L40", "weight": 1.0}, {"source": "prompt_rating_rich_ui_wiring_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_rating_rich_ui_wiring_\u06f1_fetch_\u062a\u062c\u0645\u06cc\u0639_\u0627\u0645\u062a\u06cc\u0627\u0632_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0648_\u0639\u0628\u0648\u0631_prop", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "source_location": "L42", "weight": 1.0}, {"source": "prompt_rating_rich_ui_wiring_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_rating_rich_ui_wiring_\u06f2_\u0627\u062a\u0635\u0627\u0644_\u0686\u0627\u0631\u062a_\u0628\u0647_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u062c\u062f\u06cc\u062f_chart_index_js_progressall_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "source_location": "L50", "weight": 1.0}, {"source": "prompt_rating_rich_ui_wiring_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_rating_rich_ui_wiring_\u06f3_\u0641\u0631\u0645_\u062b\u0628\u062a_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0686\u0646\u062f\u0628_\u0639\u062f\u06cc_form_js_modalanswer_js_content_index_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "source_location": "L56", "weight": 1.0}, {"source": "prompt_rating_rich_ui_wiring_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_rating_rich_ui_wiring_\u06f4_\u0644\u0627\u06cc\u06a9_\u062f\u06cc\u0633\u0644\u0627\u06cc\u06a9_\u0648\u0627\u0642\u0639\u06cc_itemuser_js_services_response_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "source_location": "L76", "weight": 1.0}, {"source": "prompt_rating_rich_ui_wiring_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_rating_rich_ui_wiring_\u06f5_\u062b\u0628\u062a_\u067e\u0627\u0633\u062e_sendanswer_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "source_location": "L81", "weight": 1.0}, {"source": "prompt_rating_rich_ui_wiring_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_rating_rich_ui_wiring_\u06f6_wrapper\u0647\u0627_services_response_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "source_location": "L85", "weight": 1.0}, {"source": "prompt_rating_rich_ui_wiring_\u0627\u062a\u0635\u0627\u0644_ui_\u063a\u0646\u06cc_\u0646\u0638\u0631\u0627\u062a_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0628\u0647_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u062c\u062f\u06cc\u062f_\u0628\u06a9_\u0627\u0646\u062f", "target": "prompt_rating_rich_ui_wiring_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/rating-rich-ui-wiring.md", "source_location": "L90", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/be8fa462416ccec3ff0f7e60b9d042def7fc27e7f8c03c577630fbb118e77482.json b/graphify-out/cache/ast/v0.8.44/be8fa462416ccec3ff0f7e60b9d042def7fc27e7f8c03c577630fbb118e77482.json new file mode 100644 index 0000000..478f54f --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/be8fa462416ccec3ff0f7e60b9d042def7fc27e7f8c03c577630fbb118e77482.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_booking_send_representation_md", "label": "booking-send-representation.md", "file_type": "document", "source_file": ".claude/prompt/booking-send-representation.md", "source_location": "L1"}, {"id": "prompt_booking_send_representation_\u0627\u0631\u0633\u0627\u0644_city_id_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u062c\u0627\u0631\u06cc_\u0647\u0646\u06af\u0627\u0645_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", "label": "\u0627\u0631\u0633\u0627\u0644 city_id \u062f\u0627\u0645\u0646\u0647\u200c\u06cc \u062c\u0627\u0631\u06cc \u0647\u0646\u06af\u0627\u0645 \u0631\u0632\u0631\u0648 \u0646\u0648\u0628\u062a", "file_type": "document", "source_file": ".claude/prompt/booking-send-representation.md", "source_location": "L1"}, {"id": "prompt_booking_send_representation_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/booking-send-representation.md", "source_location": "L3"}, {"id": "prompt_booking_send_representation_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/booking-send-representation.md", "source_location": "L7"}, {"id": "prompt_booking_send_representation_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/booking-send-representation.md", "source_location": "L13"}, {"id": "prompt_booking_send_representation_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/booking-send-representation.md", "source_location": "L17"}, {"id": "prompt_booking_send_representation_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "file_type": "document", "source_file": ".claude/prompt/booking-send-representation.md", "source_location": "L27"}, {"id": "prompt_booking_send_representation_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/booking-send-representation.md", "source_location": "L46"}, {"id": "prompt_booking_send_representation_\u06f1_\u062f\u0631_\u062f\u0633\u062a\u0631\u0633_\u0642\u0631\u0627\u0631_\u062f\u0627\u062f\u0646_city_id_\u062f\u0631_\u06a9\u0644\u0627\u06cc\u0646\u062a", "label": "\u06f1. \u062f\u0631 \u062f\u0633\u062a\u0631\u0633 \u0642\u0631\u0627\u0631 \u062f\u0627\u062f\u0646 city.id \u062f\u0631 \u06a9\u0644\u0627\u06cc\u0646\u062a", "file_type": "document", "source_file": ".claude/prompt/booking-send-representation.md", "source_location": "L48"}, {"id": "prompt_booking_send_representation_\u06f2_\u0627\u0641\u0632\u0648\u062f\u0646_city_id_\u0628\u0647_payload_\u0631\u0632\u0631\u0648", "label": "\u06f2. \u0627\u0641\u0632\u0648\u062f\u0646 city_id \u0628\u0647 payload \u0631\u0632\u0631\u0648", "file_type": "document", "source_file": ".claude/prompt/booking-send-representation.md", "source_location": "L52"}, {"id": "prompt_booking_send_representation_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/booking-send-representation.md", "source_location": "L73"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_booking_send_representation_md", "target": "prompt_booking_send_representation_\u0627\u0631\u0633\u0627\u0644_city_id_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u062c\u0627\u0631\u06cc_\u0647\u0646\u06af\u0627\u0645_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/booking-send-representation.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_booking_send_representation_\u0627\u0631\u0633\u0627\u0644_city_id_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u062c\u0627\u0631\u06cc_\u0647\u0646\u06af\u0627\u0645_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", "target": "prompt_booking_send_representation_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/booking-send-representation.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_booking_send_representation_\u0627\u0631\u0633\u0627\u0644_city_id_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u062c\u0627\u0631\u06cc_\u0647\u0646\u06af\u0627\u0645_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", "target": "prompt_booking_send_representation_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/booking-send-representation.md", "source_location": "L7", "weight": 1.0}, {"source": "prompt_booking_send_representation_\u0627\u0631\u0633\u0627\u0644_city_id_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u062c\u0627\u0631\u06cc_\u0647\u0646\u06af\u0627\u0645_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", "target": "prompt_booking_send_representation_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/booking-send-representation.md", "source_location": "L13", "weight": 1.0}, {"source": "prompt_booking_send_representation_\u0627\u0631\u0633\u0627\u0644_city_id_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u062c\u0627\u0631\u06cc_\u0647\u0646\u06af\u0627\u0645_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", "target": "prompt_booking_send_representation_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/booking-send-representation.md", "source_location": "L17", "weight": 1.0}, {"source": "prompt_booking_send_representation_\u0627\u0631\u0633\u0627\u0644_city_id_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u062c\u0627\u0631\u06cc_\u0647\u0646\u06af\u0627\u0645_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", "target": "prompt_booking_send_representation_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/booking-send-representation.md", "source_location": "L27", "weight": 1.0}, {"source": "prompt_booking_send_representation_\u0627\u0631\u0633\u0627\u0644_city_id_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u062c\u0627\u0631\u06cc_\u0647\u0646\u06af\u0627\u0645_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", "target": "prompt_booking_send_representation_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/booking-send-representation.md", "source_location": "L46", "weight": 1.0}, {"source": "prompt_booking_send_representation_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_booking_send_representation_\u06f1_\u062f\u0631_\u062f\u0633\u062a\u0631\u0633_\u0642\u0631\u0627\u0631_\u062f\u0627\u062f\u0646_city_id_\u062f\u0631_\u06a9\u0644\u0627\u06cc\u0646\u062a", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/booking-send-representation.md", "source_location": "L48", "weight": 1.0}, {"source": "prompt_booking_send_representation_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_booking_send_representation_\u06f2_\u0627\u0641\u0632\u0648\u062f\u0646_city_id_\u0628\u0647_payload_\u0631\u0632\u0631\u0648", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/booking-send-representation.md", "source_location": "L52", "weight": 1.0}, {"source": "prompt_booking_send_representation_\u0627\u0631\u0633\u0627\u0644_city_id_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u062c\u0627\u0631\u06cc_\u0647\u0646\u06af\u0627\u0645_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", "target": "prompt_booking_send_representation_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/booking-send-representation.md", "source_location": "L73", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/bfc8ebe5dcd533c93c86935a95afbcd9456f3828d6801dc02a4231a52b6b06b9.json b/graphify-out/cache/ast/v0.8.44/bfc8ebe5dcd533c93c86935a95afbcd9456f3828d6801dc02a4231a52b6b06b9.json new file mode 100644 index 0000000..b26ae1e --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/bfc8ebe5dcd533c93c86935a95afbcd9456f3828d6801dc02a4231a52b6b06b9.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_verify_past_slots_disabled_md", "label": "verify-past-slots-disabled.md", "file_type": "document", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "source_location": "L1"}, {"id": "prompt_verify_past_slots_disabled_\u062a\u0623\u06cc\u06cc\u062f_\u0648_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a", "label": "\u062a\u0623\u06cc\u06cc\u062f \u0648 \u0633\u062e\u062a\u200c\u0633\u0627\u0632\u06cc \u063a\u06cc\u0631\u0641\u0639\u0627\u0644\u200c\u0628\u0648\u062f\u0646 \u0627\u0633\u0644\u0627\u062a\u200c\u0647\u0627\u06cc \u06af\u0630\u0634\u062a\u0647 \u062f\u0631 \u0635\u0641\u062d\u0647\u200c\u06cc \u0646\u0648\u0628\u062a", "file_type": "document", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "source_location": "L1"}, {"id": "prompt_verify_past_slots_disabled_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "source_location": "L3"}, {"id": "prompt_verify_past_slots_disabled_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "source_location": "L11"}, {"id": "prompt_verify_past_slots_disabled_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "source_location": "L15"}, {"id": "prompt_verify_past_slots_disabled_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "source_location": "L20"}, {"id": "prompt_verify_past_slots_disabled_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "file_type": "document", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "source_location": "L28"}, {"id": "prompt_verify_past_slots_disabled_hours_list_js", "label": "`hours/List.js`", "file_type": "document", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "source_location": "L30"}, {"id": "prompt_verify_past_slots_disabled_\u0622\u0628\u062c\u06a9\u062a_\u0627\u0633\u0644\u0627\u062a_\u0627\u0632_adaptslots_api", "label": "\u0622\u0628\u062c\u06a9\u062a \u0627\u0633\u0644\u0627\u062a (\u0627\u0632 `adaptSlots` / API)", "file_type": "document", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "source_location": "L45"}, {"id": "prompt_verify_past_slots_disabled_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "source_location": "L51"}, {"id": "prompt_verify_past_slots_disabled_\u06f1_\u06af\u0627\u0631\u062f_\u0632\u0645\u0627\u0646_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u06af\u0631\u06cc\u062f_\u0633\u0627\u0639\u062a", "label": "\u06f1. \u06af\u0627\u0631\u062f \u0632\u0645\u0627\u0646 \u06af\u0630\u0634\u062a\u0647 \u062f\u0631 \u06af\u0631\u06cc\u062f \u0633\u0627\u0639\u062a", "file_type": "document", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "source_location": "L53"}, {"id": "prompt_verify_past_slots_disabled_\u06f2_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc_\u0639\u062f\u0645_\u0627\u0646\u062a\u062e\u0627\u0628_\u0627\u0633\u0644\u0627\u062a_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_sendappo", "label": "\u06f2. (\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc) \u0639\u062f\u0645 \u0627\u0646\u062a\u062e\u0627\u0628 \u0627\u0633\u0644\u0627\u062a \u06af\u0630\u0634\u062a\u0647 \u062f\u0631 SendAppo", "file_type": "document", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "source_location": "L66"}, {"id": "prompt_verify_past_slots_disabled_\u06f3_\u062a\u0623\u06cc\u06cc\u062f_\u0631\u0641\u062a\u0627\u0631_end_to_end", "label": "\u06f3. \u062a\u0623\u06cc\u06cc\u062f \u0631\u0641\u062a\u0627\u0631 end-to-end", "file_type": "document", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "source_location": "L70"}, {"id": "prompt_verify_past_slots_disabled_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "source_location": "L74"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_verify_past_slots_disabled_md", "target": "prompt_verify_past_slots_disabled_\u062a\u0623\u06cc\u06cc\u062f_\u0648_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_verify_past_slots_disabled_\u062a\u0623\u06cc\u06cc\u062f_\u0648_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a", "target": "prompt_verify_past_slots_disabled_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_verify_past_slots_disabled_\u062a\u0623\u06cc\u06cc\u062f_\u0648_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a", "target": "prompt_verify_past_slots_disabled_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "source_location": "L11", "weight": 1.0}, {"source": "prompt_verify_past_slots_disabled_\u062a\u0623\u06cc\u06cc\u062f_\u0648_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a", "target": "prompt_verify_past_slots_disabled_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "source_location": "L15", "weight": 1.0}, {"source": "prompt_verify_past_slots_disabled_\u062a\u0623\u06cc\u06cc\u062f_\u0648_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a", "target": "prompt_verify_past_slots_disabled_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "source_location": "L20", "weight": 1.0}, {"source": "prompt_verify_past_slots_disabled_\u062a\u0623\u06cc\u06cc\u062f_\u0648_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a", "target": "prompt_verify_past_slots_disabled_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "source_location": "L28", "weight": 1.0}, {"source": "prompt_verify_past_slots_disabled_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_verify_past_slots_disabled_hours_list_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "source_location": "L30", "weight": 1.0}, {"source": "prompt_verify_past_slots_disabled_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_verify_past_slots_disabled_\u0622\u0628\u062c\u06a9\u062a_\u0627\u0633\u0644\u0627\u062a_\u0627\u0632_adaptslots_api", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "source_location": "L45", "weight": 1.0}, {"source": "prompt_verify_past_slots_disabled_\u062a\u0623\u06cc\u06cc\u062f_\u0648_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a", "target": "prompt_verify_past_slots_disabled_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "source_location": "L51", "weight": 1.0}, {"source": "prompt_verify_past_slots_disabled_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_verify_past_slots_disabled_\u06f1_\u06af\u0627\u0631\u062f_\u0632\u0645\u0627\u0646_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u06af\u0631\u06cc\u062f_\u0633\u0627\u0639\u062a", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "source_location": "L53", "weight": 1.0}, {"source": "prompt_verify_past_slots_disabled_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_verify_past_slots_disabled_\u06f2_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc_\u0639\u062f\u0645_\u0627\u0646\u062a\u062e\u0627\u0628_\u0627\u0633\u0644\u0627\u062a_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_sendappo", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "source_location": "L66", "weight": 1.0}, {"source": "prompt_verify_past_slots_disabled_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_verify_past_slots_disabled_\u06f3_\u062a\u0623\u06cc\u06cc\u062f_\u0631\u0641\u062a\u0627\u0631_end_to_end", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "source_location": "L70", "weight": 1.0}, {"source": "prompt_verify_past_slots_disabled_\u062a\u0623\u06cc\u06cc\u062f_\u0648_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a", "target": "prompt_verify_past_slots_disabled_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/verify-past-slots-disabled.md", "source_location": "L74", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/c4c736e8535fae943d10e3bfc9aa45b546be27aef879ddc7b919caa7790ff2c5.json b/graphify-out/cache/ast/v0.8.44/c4c736e8535fae943d10e3bfc9aa45b546be27aef879ddc7b919caa7790ff2c5.json new file mode 100644 index 0000000..ce4065f --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/c4c736e8535fae943d10e3bfc9aa45b546be27aef879ddc7b919caa7790ff2c5.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_otp_sms_site_name_md", "label": "otp-sms-site-name.md", "file_type": "document", "source_file": ".claude/prompt/otp-sms-site-name.md", "source_location": "L1"}, {"id": "prompt_otp_sms_site_name_\u0627\u0631\u0633\u0627\u0644_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0634\u0647\u0631_\u0647\u0645\u0631\u0627\u0647_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u06a9\u062f_\u062a\u0623\u06cc\u06cc\u062f_\u0628\u0631\u0627\u06cc_\u0627\u0633\u0645_\u0633\u0627\u06cc\u062a_\u062f\u0631_\u067e\u06cc\u0627\u0645\u06a9_otp", "label": "\u0627\u0631\u0633\u0627\u0644 \u062f\u0627\u0645\u0646\u0647\u200c\u06cc \u0634\u0647\u0631 \u0647\u0645\u0631\u0627\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u06a9\u062f \u062a\u0623\u06cc\u06cc\u062f (\u0628\u0631\u0627\u06cc \u0627\u0633\u0645 \u0633\u0627\u06cc\u062a \u062f\u0631 \u067e\u06cc\u0627\u0645\u06a9 OTP)", "file_type": "document", "source_file": ".claude/prompt/otp-sms-site-name.md", "source_location": "L1"}, {"id": "prompt_otp_sms_site_name_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/otp-sms-site-name.md", "source_location": "L3"}, {"id": "prompt_otp_sms_site_name_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/otp-sms-site-name.md", "source_location": "L7"}, {"id": "prompt_otp_sms_site_name_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/otp-sms-site-name.md", "source_location": "L11"}, {"id": "prompt_otp_sms_site_name_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/otp-sms-site-name.md", "source_location": "L15"}, {"id": "prompt_otp_sms_site_name_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "file_type": "document", "source_file": ".claude/prompt/otp-sms-site-name.md", "source_location": "L23"}, {"id": "prompt_otp_sms_site_name_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/otp-sms-site-name.md", "source_location": "L49"}, {"id": "prompt_otp_sms_site_name_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_domain_\u0628\u0647_wrapper_sendcode", "label": "\u06f1. \u0627\u0641\u0632\u0648\u062f\u0646 `domain` \u0628\u0647 wrapper `sendCode`", "file_type": "document", "source_file": ".claude/prompt/otp-sms-site-name.md", "source_location": "L51"}, {"id": "prompt_otp_sms_site_name_\u06f2_\u067e\u0627\u0633_\u062f\u0627\u062f\u0646_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0641\u0639\u0644\u06cc_\u0627\u0632_\u0635\u0641\u062d\u0647_\u0647\u0627\u06cc_\u0641\u0631\u0627\u062e\u0648\u0627\u0646", "label": "\u06f2. \u067e\u0627\u0633\u200c\u062f\u0627\u062f\u0646 \u062f\u0627\u0645\u0646\u0647\u200c\u06cc \u0641\u0639\u0644\u06cc \u0627\u0632 \u0635\u0641\u062d\u0647\u200c\u0647\u0627\u06cc \u0641\u0631\u0627\u062e\u0648\u0627\u0646", "file_type": "document", "source_file": ".claude/prompt/otp-sms-site-name.md", "source_location": "L68"}, {"id": "prompt_otp_sms_site_name_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/otp-sms-site-name.md", "source_location": "L90"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_otp_sms_site_name_md", "target": "prompt_otp_sms_site_name_\u0627\u0631\u0633\u0627\u0644_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0634\u0647\u0631_\u0647\u0645\u0631\u0627\u0647_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u06a9\u062f_\u062a\u0623\u06cc\u06cc\u062f_\u0628\u0631\u0627\u06cc_\u0627\u0633\u0645_\u0633\u0627\u06cc\u062a_\u062f\u0631_\u067e\u06cc\u0627\u0645\u06a9_otp", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/otp-sms-site-name.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_otp_sms_site_name_\u0627\u0631\u0633\u0627\u0644_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0634\u0647\u0631_\u0647\u0645\u0631\u0627\u0647_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u06a9\u062f_\u062a\u0623\u06cc\u06cc\u062f_\u0628\u0631\u0627\u06cc_\u0627\u0633\u0645_\u0633\u0627\u06cc\u062a_\u062f\u0631_\u067e\u06cc\u0627\u0645\u06a9_otp", "target": "prompt_otp_sms_site_name_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/otp-sms-site-name.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_otp_sms_site_name_\u0627\u0631\u0633\u0627\u0644_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0634\u0647\u0631_\u0647\u0645\u0631\u0627\u0647_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u06a9\u062f_\u062a\u0623\u06cc\u06cc\u062f_\u0628\u0631\u0627\u06cc_\u0627\u0633\u0645_\u0633\u0627\u06cc\u062a_\u062f\u0631_\u067e\u06cc\u0627\u0645\u06a9_otp", "target": "prompt_otp_sms_site_name_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/otp-sms-site-name.md", "source_location": "L7", "weight": 1.0}, {"source": "prompt_otp_sms_site_name_\u0627\u0631\u0633\u0627\u0644_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0634\u0647\u0631_\u0647\u0645\u0631\u0627\u0647_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u06a9\u062f_\u062a\u0623\u06cc\u06cc\u062f_\u0628\u0631\u0627\u06cc_\u0627\u0633\u0645_\u0633\u0627\u06cc\u062a_\u062f\u0631_\u067e\u06cc\u0627\u0645\u06a9_otp", "target": "prompt_otp_sms_site_name_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/otp-sms-site-name.md", "source_location": "L11", "weight": 1.0}, {"source": "prompt_otp_sms_site_name_\u0627\u0631\u0633\u0627\u0644_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0634\u0647\u0631_\u0647\u0645\u0631\u0627\u0647_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u06a9\u062f_\u062a\u0623\u06cc\u06cc\u062f_\u0628\u0631\u0627\u06cc_\u0627\u0633\u0645_\u0633\u0627\u06cc\u062a_\u062f\u0631_\u067e\u06cc\u0627\u0645\u06a9_otp", "target": "prompt_otp_sms_site_name_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/otp-sms-site-name.md", "source_location": "L15", "weight": 1.0}, {"source": "prompt_otp_sms_site_name_\u0627\u0631\u0633\u0627\u0644_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0634\u0647\u0631_\u0647\u0645\u0631\u0627\u0647_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u06a9\u062f_\u062a\u0623\u06cc\u06cc\u062f_\u0628\u0631\u0627\u06cc_\u0627\u0633\u0645_\u0633\u0627\u06cc\u062a_\u062f\u0631_\u067e\u06cc\u0627\u0645\u06a9_otp", "target": "prompt_otp_sms_site_name_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/otp-sms-site-name.md", "source_location": "L23", "weight": 1.0}, {"source": "prompt_otp_sms_site_name_\u0627\u0631\u0633\u0627\u0644_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0634\u0647\u0631_\u0647\u0645\u0631\u0627\u0647_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u06a9\u062f_\u062a\u0623\u06cc\u06cc\u062f_\u0628\u0631\u0627\u06cc_\u0627\u0633\u0645_\u0633\u0627\u06cc\u062a_\u062f\u0631_\u067e\u06cc\u0627\u0645\u06a9_otp", "target": "prompt_otp_sms_site_name_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/otp-sms-site-name.md", "source_location": "L49", "weight": 1.0}, {"source": "prompt_otp_sms_site_name_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_otp_sms_site_name_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_domain_\u0628\u0647_wrapper_sendcode", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/otp-sms-site-name.md", "source_location": "L51", "weight": 1.0}, {"source": "prompt_otp_sms_site_name_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_otp_sms_site_name_\u06f2_\u067e\u0627\u0633_\u062f\u0627\u062f\u0646_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0641\u0639\u0644\u06cc_\u0627\u0632_\u0635\u0641\u062d\u0647_\u0647\u0627\u06cc_\u0641\u0631\u0627\u062e\u0648\u0627\u0646", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/otp-sms-site-name.md", "source_location": "L68", "weight": 1.0}, {"source": "prompt_otp_sms_site_name_\u0627\u0631\u0633\u0627\u0644_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0634\u0647\u0631_\u0647\u0645\u0631\u0627\u0647_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u06a9\u062f_\u062a\u0623\u06cc\u06cc\u062f_\u0628\u0631\u0627\u06cc_\u0627\u0633\u0645_\u0633\u0627\u06cc\u062a_\u062f\u0631_\u067e\u06cc\u0627\u0645\u06a9_otp", "target": "prompt_otp_sms_site_name_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/otp-sms-site-name.md", "source_location": "L90", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/c6e6c55b51cabc086cfb88e97ae4977b2f8587822a38232102bea1d45b94f0ab.json b/graphify-out/cache/ast/v0.8.44/c6e6c55b51cabc086cfb88e97ae4977b2f8587822a38232102bea1d45b94f0ab.json new file mode 100644 index 0000000..7ea7ec2 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/c6e6c55b51cabc086cfb88e97ae4977b2f8587822a38232102bea1d45b94f0ab.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_fix_payment_gateway_flow_md", "label": "fix-payment-gateway-flow.md", "file_type": "document", "source_file": ".claude/prompt/fix-payment-gateway-flow.md", "source_location": "L1"}, {"id": "prompt_fix_payment_gateway_flow_\u0627\u0635\u0644\u0627\u062d_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0627\u0646\u062a\u062e\u0627\u0628_\u0641\u0642\u0637_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0628\u06a9_\u0627\u0646\u062f_\u0628\u0627\u0632\u06af\u0634\u062a_\u0628\u0647_\u062f\u0627\u0645\u0646\u0647_\u0645\u0628\u062f\u0623", "label": "\u0627\u0635\u0644\u0627\u062d \u062c\u0631\u06cc\u0627\u0646 \u067e\u0631\u062f\u0627\u062e\u062a: \u0627\u0646\u062a\u062e\u0627\u0628 \u0641\u0642\u0637 \u062f\u0631\u06af\u0627\u0647\u200c\u0647\u0627\u06cc \u0641\u0639\u0627\u0644\u0650 \u0628\u06a9\u200c\u0627\u0646\u062f + \u0628\u0627\u0632\u06af\u0634\u062a \u0628\u0647 \u062f\u0627\u0645\u0646\u0647 \u0645\u0628\u062f\u0623", "file_type": "document", "source_file": ".claude/prompt/fix-payment-gateway-flow.md", "source_location": "L1"}, {"id": "prompt_fix_payment_gateway_flow_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/fix-payment-gateway-flow.md", "source_location": "L3"}, {"id": "prompt_fix_payment_gateway_flow_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/fix-payment-gateway-flow.md", "source_location": "L9"}, {"id": "prompt_fix_payment_gateway_flow_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/fix-payment-gateway-flow.md", "source_location": "L21"}, {"id": "prompt_fix_payment_gateway_flow_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/fix-payment-gateway-flow.md", "source_location": "L30"}, {"id": "prompt_fix_payment_gateway_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "file_type": "document", "source_file": ".claude/prompt/fix-payment-gateway-flow.md", "source_location": "L53"}, {"id": "prompt_fix_payment_gateway_flow_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/fix-payment-gateway-flow.md", "source_location": "L93"}, {"id": "prompt_fix_payment_gateway_flow_\u06f1_\u062e\u0648\u0627\u0646\u062f\u0646_gateways_\u0627\u0632_config_\u0648_\u0646\u06af\u0647_\u062f\u0627\u0631\u06cc_\u062f\u0631_state", "label": "\u06f1. \u062e\u0648\u0627\u0646\u062f\u0646 `gateways` \u0627\u0632 config \u0648 \u0646\u06af\u0647\u200c\u062f\u0627\u0631\u06cc \u062f\u0631 state", "file_type": "document", "source_file": ".claude/prompt/fix-payment-gateway-flow.md", "source_location": "L95"}, {"id": "prompt_fix_payment_gateway_flow_\u06f2_\u067e\u0631_\u06a9\u0631\u062f\u0646_select_\u0627\u0632_gateways_\u0641\u0639\u0627\u0644", "label": "\u06f2. \u067e\u0631 \u06a9\u0631\u062f\u0646 Select \u0627\u0632 `gateways` \u0641\u0639\u0627\u0644", "file_type": "document", "source_file": ".claude/prompt/fix-payment-gateway-flow.md", "source_location": "L116"}, {"id": "prompt_fix_payment_gateway_flow_\u06f3_\u0627\u0631\u0633\u0627\u0644_\u062f\u0631\u06af\u0627\u0647_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u062f\u0647_\u0648_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u062f\u06a9\u0645\u0647_\u062f\u0631_\u0646\u0628\u0648\u062f_\u062f\u0631\u06af\u0627\u0647", "label": "\u06f3. \u0627\u0631\u0633\u0627\u0644 \u062f\u0631\u06af\u0627\u0647 \u0627\u0646\u062a\u062e\u0627\u0628\u200c\u0634\u062f\u0647 \u0648 \u063a\u06cc\u0631\u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc \u062f\u06a9\u0645\u0647 \u062f\u0631 \u0646\u0628\u0648\u062f \u062f\u0631\u06af\u0627\u0647", "file_type": "document", "source_file": ".claude/prompt/fix-payment-gateway-flow.md", "source_location": "L135"}, {"id": "prompt_fix_payment_gateway_flow_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/fix-payment-gateway-flow.md", "source_location": "L154"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_fix_payment_gateway_flow_md", "target": "prompt_fix_payment_gateway_flow_\u0627\u0635\u0644\u0627\u062d_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0627\u0646\u062a\u062e\u0627\u0628_\u0641\u0642\u0637_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0628\u06a9_\u0627\u0646\u062f_\u0628\u0627\u0632\u06af\u0634\u062a_\u0628\u0647_\u062f\u0627\u0645\u0646\u0647_\u0645\u0628\u062f\u0623", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-payment-gateway-flow.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_fix_payment_gateway_flow_\u0627\u0635\u0644\u0627\u062d_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0627\u0646\u062a\u062e\u0627\u0628_\u0641\u0642\u0637_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0628\u06a9_\u0627\u0646\u062f_\u0628\u0627\u0632\u06af\u0634\u062a_\u0628\u0647_\u062f\u0627\u0645\u0646\u0647_\u0645\u0628\u062f\u0623", "target": "prompt_fix_payment_gateway_flow_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-payment-gateway-flow.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_fix_payment_gateway_flow_\u0627\u0635\u0644\u0627\u062d_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0627\u0646\u062a\u062e\u0627\u0628_\u0641\u0642\u0637_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0628\u06a9_\u0627\u0646\u062f_\u0628\u0627\u0632\u06af\u0634\u062a_\u0628\u0647_\u062f\u0627\u0645\u0646\u0647_\u0645\u0628\u062f\u0623", "target": "prompt_fix_payment_gateway_flow_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-payment-gateway-flow.md", "source_location": "L9", "weight": 1.0}, {"source": "prompt_fix_payment_gateway_flow_\u0627\u0635\u0644\u0627\u062d_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0627\u0646\u062a\u062e\u0627\u0628_\u0641\u0642\u0637_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0628\u06a9_\u0627\u0646\u062f_\u0628\u0627\u0632\u06af\u0634\u062a_\u0628\u0647_\u062f\u0627\u0645\u0646\u0647_\u0645\u0628\u062f\u0623", "target": "prompt_fix_payment_gateway_flow_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-payment-gateway-flow.md", "source_location": "L21", "weight": 1.0}, {"source": "prompt_fix_payment_gateway_flow_\u0627\u0635\u0644\u0627\u062d_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0627\u0646\u062a\u062e\u0627\u0628_\u0641\u0642\u0637_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0628\u06a9_\u0627\u0646\u062f_\u0628\u0627\u0632\u06af\u0634\u062a_\u0628\u0647_\u062f\u0627\u0645\u0646\u0647_\u0645\u0628\u062f\u0623", "target": "prompt_fix_payment_gateway_flow_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-payment-gateway-flow.md", "source_location": "L30", "weight": 1.0}, {"source": "prompt_fix_payment_gateway_flow_\u0627\u0635\u0644\u0627\u062d_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0627\u0646\u062a\u062e\u0627\u0628_\u0641\u0642\u0637_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0628\u06a9_\u0627\u0646\u062f_\u0628\u0627\u0632\u06af\u0634\u062a_\u0628\u0647_\u062f\u0627\u0645\u0646\u0647_\u0645\u0628\u062f\u0623", "target": "prompt_fix_payment_gateway_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-payment-gateway-flow.md", "source_location": "L53", "weight": 1.0}, {"source": "prompt_fix_payment_gateway_flow_\u0627\u0635\u0644\u0627\u062d_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0627\u0646\u062a\u062e\u0627\u0628_\u0641\u0642\u0637_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0628\u06a9_\u0627\u0646\u062f_\u0628\u0627\u0632\u06af\u0634\u062a_\u0628\u0647_\u062f\u0627\u0645\u0646\u0647_\u0645\u0628\u062f\u0623", "target": "prompt_fix_payment_gateway_flow_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-payment-gateway-flow.md", "source_location": "L93", "weight": 1.0}, {"source": "prompt_fix_payment_gateway_flow_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_payment_gateway_flow_\u06f1_\u062e\u0648\u0627\u0646\u062f\u0646_gateways_\u0627\u0632_config_\u0648_\u0646\u06af\u0647_\u062f\u0627\u0631\u06cc_\u062f\u0631_state", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-payment-gateway-flow.md", "source_location": "L95", "weight": 1.0}, {"source": "prompt_fix_payment_gateway_flow_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_payment_gateway_flow_\u06f2_\u067e\u0631_\u06a9\u0631\u062f\u0646_select_\u0627\u0632_gateways_\u0641\u0639\u0627\u0644", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-payment-gateway-flow.md", "source_location": "L116", "weight": 1.0}, {"source": "prompt_fix_payment_gateway_flow_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_payment_gateway_flow_\u06f3_\u0627\u0631\u0633\u0627\u0644_\u062f\u0631\u06af\u0627\u0647_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u062f\u0647_\u0648_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u062f\u06a9\u0645\u0647_\u062f\u0631_\u0646\u0628\u0648\u062f_\u062f\u0631\u06af\u0627\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-payment-gateway-flow.md", "source_location": "L135", "weight": 1.0}, {"source": "prompt_fix_payment_gateway_flow_\u0627\u0635\u0644\u0627\u062d_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0627\u0646\u062a\u062e\u0627\u0628_\u0641\u0642\u0637_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0628\u06a9_\u0627\u0646\u062f_\u0628\u0627\u0632\u06af\u0634\u062a_\u0628\u0647_\u062f\u0627\u0645\u0646\u0647_\u0645\u0628\u062f\u0623", "target": "prompt_fix_payment_gateway_flow_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-payment-gateway-flow.md", "source_location": "L154", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/c9171ffaaad4600e4012c4dc7e8d747b8946ba451dfa315605e8ff4928694535.json b/graphify-out/cache/ast/v0.8.44/c9171ffaaad4600e4012c4dc7e8d747b8946ba451dfa315605e8ff4928694535.json new file mode 100644 index 0000000..bc2763e --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/c9171ffaaad4600e4012c4dc7e8d747b8946ba451dfa315605e8ff4928694535.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_fix_dashboard_uuid_and_lists_md", "label": "fix-dashboard-uuid-and-lists.md", "file_type": "document", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "source_location": "L1"}, {"id": "prompt_fix_dashboard_uuid_and_lists_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u06a9\u0648\u06a9\u06cc_uuid_\u0627\u0634\u062a\u0628\u0627\u0647_url_\u063a\u0644\u0637_\u0646\u0648\u0628\u062a_\u0647\u0627_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627_\u0648_crash_\u0647\u062f\u0631", "label": "\u0631\u0641\u0639 \u0628\u0627\u06af\u200c\u0647\u0627\u06cc \u062f\u0627\u0634\u0628\u0648\u0631\u062f \u06a9\u0627\u0631\u0628\u0631: \u06a9\u0648\u06a9\u06cc uuid \u0627\u0634\u062a\u0628\u0627\u0647\u060c URL \u063a\u0644\u0637 \u0646\u0648\u0628\u062a\u200c\u0647\u0627/\u067e\u0631\u062f\u0627\u062e\u062a\u200c\u0647\u0627\u060c \u0648 crash \u0647\u062f\u0631", "file_type": "document", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "source_location": "L1"}, {"id": "prompt_fix_dashboard_uuid_and_lists_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "source_location": "L3"}, {"id": "prompt_fix_dashboard_uuid_and_lists_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "source_location": "L10"}, {"id": "prompt_fix_dashboard_uuid_and_lists_\u0631\u06cc\u0634\u0647_\u06cc_\u0627\u0635\u0644\u06cc_\u06a9\u0648\u06a9\u06cc_uuid", "label": "\u0631\u06cc\u0634\u0647\u200c\u06cc \u0627\u0635\u0644\u06cc \u06a9\u0648\u06a9\u06cc `uuid`", "file_type": "document", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "source_location": "L19"}, {"id": "prompt_fix_dashboard_uuid_and_lists_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "source_location": "L28"}, {"id": "prompt_fix_dashboard_uuid_and_lists_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "file_type": "document", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "source_location": "L39"}, {"id": "prompt_fix_dashboard_uuid_and_lists_services_response_js_url\u0647\u0627\u06cc_\u0646\u0627\u0645\u0648\u062c\u0648\u062f", "label": "`services/response.js` \u2014 URL\u0647\u0627\u06cc \u0646\u0627\u0645\u0648\u062c\u0648\u062f", "file_type": "document", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "source_location": "L41"}, {"id": "prompt_fix_dashboard_uuid_and_lists_app_dashboard_page_js", "label": "`app/dashboard/page.js`", "file_type": "document", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "source_location": "L48"}, {"id": "prompt_fix_dashboard_uuid_and_lists_head_js", "label": "`Head.js`", "file_type": "document", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "source_location": "L55"}, {"id": "prompt_fix_dashboard_uuid_and_lists_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "source_location": "L63"}, {"id": "prompt_fix_dashboard_uuid_and_lists_\u06f1_\u06a9\u0648\u06a9\u06cc_uuid_uuid_\u06a9\u0627\u0631\u0628\u0631_sendreq_js", "label": "\u06f1. \u06a9\u0648\u06a9\u06cc `uuid` = uuid \u06a9\u0627\u0631\u0628\u0631 (`SendReq.js`)", "file_type": "document", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "source_location": "L65"}, {"id": "prompt_fix_dashboard_uuid_and_lists_\u06f2_\u06af\u0627\u0631\u062f_null_\u062f\u0631_head_js", "label": "\u06f2. \u06af\u0627\u0631\u062f null \u062f\u0631 `Head.js`", "file_type": "document", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "source_location": "L85"}, {"id": "prompt_fix_dashboard_uuid_and_lists_\u06f3_\u0627\u0635\u0644\u0627\u062d_url\u0647\u0627_\u062f\u0631_services_response_js", "label": "\u06f3. \u0627\u0635\u0644\u0627\u062d URL\u0647\u0627 \u062f\u0631 `services/response.js`", "file_type": "document", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "source_location": "L95"}, {"id": "prompt_fix_dashboard_uuid_and_lists_\u06f4_\u0628\u0647_\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc_caller\u0647\u0627_turns_transactions", "label": "\u06f4. \u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc caller\u0647\u0627 (turns + transactions)", "file_type": "document", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "source_location": "L104"}, {"id": "prompt_fix_dashboard_uuid_and_lists_\u06f5_\u062f\u0631_\u0635\u0648\u0631\u062a_\u0644\u0632\u0648\u0645_app_dashboard_page_js", "label": "\u06f5. (\u062f\u0631 \u0635\u0648\u0631\u062a \u0644\u0632\u0648\u0645) `app/dashboard/page.js`", "file_type": "document", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "source_location": "L124"}, {"id": "prompt_fix_dashboard_uuid_and_lists_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "source_location": "L128"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_fix_dashboard_uuid_and_lists_md", "target": "prompt_fix_dashboard_uuid_and_lists_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u06a9\u0648\u06a9\u06cc_uuid_\u0627\u0634\u062a\u0628\u0627\u0647_url_\u063a\u0644\u0637_\u0646\u0648\u0628\u062a_\u0647\u0627_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627_\u0648_crash_\u0647\u062f\u0631", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_fix_dashboard_uuid_and_lists_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u06a9\u0648\u06a9\u06cc_uuid_\u0627\u0634\u062a\u0628\u0627\u0647_url_\u063a\u0644\u0637_\u0646\u0648\u0628\u062a_\u0647\u0627_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627_\u0648_crash_\u0647\u062f\u0631", "target": "prompt_fix_dashboard_uuid_and_lists_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_fix_dashboard_uuid_and_lists_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u06a9\u0648\u06a9\u06cc_uuid_\u0627\u0634\u062a\u0628\u0627\u0647_url_\u063a\u0644\u0637_\u0646\u0648\u0628\u062a_\u0647\u0627_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627_\u0648_crash_\u0647\u062f\u0631", "target": "prompt_fix_dashboard_uuid_and_lists_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "source_location": "L10", "weight": 1.0}, {"source": "prompt_fix_dashboard_uuid_and_lists_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u06a9\u0648\u06a9\u06cc_uuid_\u0627\u0634\u062a\u0628\u0627\u0647_url_\u063a\u0644\u0637_\u0646\u0648\u0628\u062a_\u0647\u0627_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627_\u0648_crash_\u0647\u062f\u0631", "target": "prompt_fix_dashboard_uuid_and_lists_\u0631\u06cc\u0634\u0647_\u06cc_\u0627\u0635\u0644\u06cc_\u06a9\u0648\u06a9\u06cc_uuid", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "source_location": "L19", "weight": 1.0}, {"source": "prompt_fix_dashboard_uuid_and_lists_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u06a9\u0648\u06a9\u06cc_uuid_\u0627\u0634\u062a\u0628\u0627\u0647_url_\u063a\u0644\u0637_\u0646\u0648\u0628\u062a_\u0647\u0627_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627_\u0648_crash_\u0647\u062f\u0631", "target": "prompt_fix_dashboard_uuid_and_lists_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "source_location": "L28", "weight": 1.0}, {"source": "prompt_fix_dashboard_uuid_and_lists_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u06a9\u0648\u06a9\u06cc_uuid_\u0627\u0634\u062a\u0628\u0627\u0647_url_\u063a\u0644\u0637_\u0646\u0648\u0628\u062a_\u0647\u0627_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627_\u0648_crash_\u0647\u062f\u0631", "target": "prompt_fix_dashboard_uuid_and_lists_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "source_location": "L39", "weight": 1.0}, {"source": "prompt_fix_dashboard_uuid_and_lists_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_fix_dashboard_uuid_and_lists_services_response_js_url\u0647\u0627\u06cc_\u0646\u0627\u0645\u0648\u062c\u0648\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "source_location": "L41", "weight": 1.0}, {"source": "prompt_fix_dashboard_uuid_and_lists_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_fix_dashboard_uuid_and_lists_app_dashboard_page_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "source_location": "L48", "weight": 1.0}, {"source": "prompt_fix_dashboard_uuid_and_lists_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_fix_dashboard_uuid_and_lists_head_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "source_location": "L55", "weight": 1.0}, {"source": "prompt_fix_dashboard_uuid_and_lists_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u06a9\u0648\u06a9\u06cc_uuid_\u0627\u0634\u062a\u0628\u0627\u0647_url_\u063a\u0644\u0637_\u0646\u0648\u0628\u062a_\u0647\u0627_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627_\u0648_crash_\u0647\u062f\u0631", "target": "prompt_fix_dashboard_uuid_and_lists_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "source_location": "L63", "weight": 1.0}, {"source": "prompt_fix_dashboard_uuid_and_lists_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_dashboard_uuid_and_lists_\u06f1_\u06a9\u0648\u06a9\u06cc_uuid_uuid_\u06a9\u0627\u0631\u0628\u0631_sendreq_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "source_location": "L65", "weight": 1.0}, {"source": "prompt_fix_dashboard_uuid_and_lists_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_dashboard_uuid_and_lists_\u06f2_\u06af\u0627\u0631\u062f_null_\u062f\u0631_head_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "source_location": "L85", "weight": 1.0}, {"source": "prompt_fix_dashboard_uuid_and_lists_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_dashboard_uuid_and_lists_\u06f3_\u0627\u0635\u0644\u0627\u062d_url\u0647\u0627_\u062f\u0631_services_response_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "source_location": "L95", "weight": 1.0}, {"source": "prompt_fix_dashboard_uuid_and_lists_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_dashboard_uuid_and_lists_\u06f4_\u0628\u0647_\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc_caller\u0647\u0627_turns_transactions", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "source_location": "L104", "weight": 1.0}, {"source": "prompt_fix_dashboard_uuid_and_lists_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_dashboard_uuid_and_lists_\u06f5_\u062f\u0631_\u0635\u0648\u0631\u062a_\u0644\u0632\u0648\u0645_app_dashboard_page_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "source_location": "L124", "weight": 1.0}, {"source": "prompt_fix_dashboard_uuid_and_lists_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u06a9\u0648\u06a9\u06cc_uuid_\u0627\u0634\u062a\u0628\u0627\u0647_url_\u063a\u0644\u0637_\u0646\u0648\u0628\u062a_\u0647\u0627_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627_\u0648_crash_\u0647\u062f\u0631", "target": "prompt_fix_dashboard_uuid_and_lists_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", "source_location": "L128", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/cf4be2acf9ffc36974a6f6999cf2cc5259b73be544a3e0bcaf0f589f34943c4d.json b/graphify-out/cache/ast/v0.8.44/cf4be2acf9ffc36974a6f6999cf2cc5259b73be544a3e0bcaf0f589f34943c4d.json new file mode 100644 index 0000000..56f89e5 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/cf4be2acf9ffc36974a6f6999cf2cc5259b73be544a3e0bcaf0f589f34943c4d.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_fix_my_appointments_status_filter_md", "label": "fix-my-appointments-status-filter.md", "file_type": "document", "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", "source_location": "L1"}, {"id": "prompt_fix_my_appointments_status_filter_\u0631\u0641\u0639_\u0641\u06cc\u0644\u062a\u0631_\u0648\u0636\u0639\u06cc\u062a_\u062f\u0631_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0645\u0646_\u0646\u0648\u0628\u062a_\u062b\u0628\u062a_\u0634\u062f\u0647_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0627\u062f\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", "label": "\u0631\u0641\u0639 \u0641\u06cc\u0644\u062a\u0631 \u0648\u0636\u0639\u06cc\u062a \u062f\u0631 \u00ab\u0646\u0648\u0628\u062a\u200c\u0647\u0627\u06cc \u0645\u0646\u00bb (\u0646\u0648\u0628\u062a \u062b\u0628\u062a\u200c\u0634\u062f\u0647 \u0646\u0645\u0627\u06cc\u0634 \u062f\u0627\u062f\u0647 \u0646\u0645\u06cc\u200c\u0634\u0648\u062f)", "file_type": "document", "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", "source_location": "L1"}, {"id": "prompt_fix_my_appointments_status_filter_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", "source_location": "L3"}, {"id": "prompt_fix_my_appointments_status_filter_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", "source_location": "L9"}, {"id": "prompt_fix_my_appointments_status_filter_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", "source_location": "L17"}, {"id": "prompt_fix_my_appointments_status_filter_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", "source_location": "L27"}, {"id": "prompt_fix_my_appointments_status_filter_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "file_type": "document", "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", "source_location": "L35"}, {"id": "prompt_fix_my_appointments_status_filter_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", "source_location": "L64"}, {"id": "prompt_fix_my_appointments_status_filter_\u06f1_\u0627\u0635\u0644\u0627\u062d_\u0646\u06af\u0627\u0634\u062a_\u062a\u0628_\u0647\u0627_\u062f\u0631_head_js", "label": "\u06f1. \u0627\u0635\u0644\u0627\u062d \u0646\u06af\u0627\u0634\u062a \u062a\u0628\u200c\u0647\u0627 \u062f\u0631 `Head.js`", "file_type": "document", "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", "source_location": "L66"}, {"id": "prompt_fix_my_appointments_status_filter_\u06f2_\u062a\u0623\u06cc\u06cc\u062f_\u062c\u0631\u06cc\u0627\u0646", "label": "\u06f2. \u062a\u0623\u06cc\u06cc\u062f \u062c\u0631\u06cc\u0627\u0646", "file_type": "document", "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", "source_location": "L83"}, {"id": "prompt_fix_my_appointments_status_filter_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", "source_location": "L87"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_fix_my_appointments_status_filter_md", "target": "prompt_fix_my_appointments_status_filter_\u0631\u0641\u0639_\u0641\u06cc\u0644\u062a\u0631_\u0648\u0636\u0639\u06cc\u062a_\u062f\u0631_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0645\u0646_\u0646\u0648\u0628\u062a_\u062b\u0628\u062a_\u0634\u062f\u0647_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0627\u062f\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_fix_my_appointments_status_filter_\u0631\u0641\u0639_\u0641\u06cc\u0644\u062a\u0631_\u0648\u0636\u0639\u06cc\u062a_\u062f\u0631_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0645\u0646_\u0646\u0648\u0628\u062a_\u062b\u0628\u062a_\u0634\u062f\u0647_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0627\u062f\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", "target": "prompt_fix_my_appointments_status_filter_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_fix_my_appointments_status_filter_\u0631\u0641\u0639_\u0641\u06cc\u0644\u062a\u0631_\u0648\u0636\u0639\u06cc\u062a_\u062f\u0631_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0645\u0646_\u0646\u0648\u0628\u062a_\u062b\u0628\u062a_\u0634\u062f\u0647_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0627\u062f\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", "target": "prompt_fix_my_appointments_status_filter_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", "source_location": "L9", "weight": 1.0}, {"source": "prompt_fix_my_appointments_status_filter_\u0631\u0641\u0639_\u0641\u06cc\u0644\u062a\u0631_\u0648\u0636\u0639\u06cc\u062a_\u062f\u0631_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0645\u0646_\u0646\u0648\u0628\u062a_\u062b\u0628\u062a_\u0634\u062f\u0647_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0627\u062f\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", "target": "prompt_fix_my_appointments_status_filter_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", "source_location": "L17", "weight": 1.0}, {"source": "prompt_fix_my_appointments_status_filter_\u0631\u0641\u0639_\u0641\u06cc\u0644\u062a\u0631_\u0648\u0636\u0639\u06cc\u062a_\u062f\u0631_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0645\u0646_\u0646\u0648\u0628\u062a_\u062b\u0628\u062a_\u0634\u062f\u0647_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0627\u062f\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", "target": "prompt_fix_my_appointments_status_filter_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", "source_location": "L27", "weight": 1.0}, {"source": "prompt_fix_my_appointments_status_filter_\u0631\u0641\u0639_\u0641\u06cc\u0644\u062a\u0631_\u0648\u0636\u0639\u06cc\u062a_\u062f\u0631_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0645\u0646_\u0646\u0648\u0628\u062a_\u062b\u0628\u062a_\u0634\u062f\u0647_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0627\u062f\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", "target": "prompt_fix_my_appointments_status_filter_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", "source_location": "L35", "weight": 1.0}, {"source": "prompt_fix_my_appointments_status_filter_\u0631\u0641\u0639_\u0641\u06cc\u0644\u062a\u0631_\u0648\u0636\u0639\u06cc\u062a_\u062f\u0631_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0645\u0646_\u0646\u0648\u0628\u062a_\u062b\u0628\u062a_\u0634\u062f\u0647_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0627\u062f\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", "target": "prompt_fix_my_appointments_status_filter_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", "source_location": "L64", "weight": 1.0}, {"source": "prompt_fix_my_appointments_status_filter_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_my_appointments_status_filter_\u06f1_\u0627\u0635\u0644\u0627\u062d_\u0646\u06af\u0627\u0634\u062a_\u062a\u0628_\u0647\u0627_\u062f\u0631_head_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", "source_location": "L66", "weight": 1.0}, {"source": "prompt_fix_my_appointments_status_filter_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_my_appointments_status_filter_\u06f2_\u062a\u0623\u06cc\u06cc\u062f_\u062c\u0631\u06cc\u0627\u0646", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", "source_location": "L83", "weight": 1.0}, {"source": "prompt_fix_my_appointments_status_filter_\u0631\u0641\u0639_\u0641\u06cc\u0644\u062a\u0631_\u0648\u0636\u0639\u06cc\u062a_\u062f\u0631_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0645\u0646_\u0646\u0648\u0628\u062a_\u062b\u0628\u062a_\u0634\u062f\u0647_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0627\u062f\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", "target": "prompt_fix_my_appointments_status_filter_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", "source_location": "L87", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/d070d13a6d70943eb3b5332a9909bcdc1eff6826610b93156c767087628cb143.json b/graphify-out/cache/ast/v0.8.44/d070d13a6d70943eb3b5332a9909bcdc1eff6826610b93156c767087628cb143.json new file mode 100644 index 0000000..2ad58a8 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/d070d13a6d70943eb3b5332a9909bcdc1eff6826610b93156c767087628cb143.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_technical_seo_audit_multidomain_md", "label": "technical-seo-audit-multidomain.md", "file_type": "document", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L1"}, {"id": "prompt_technical_seo_audit_multidomain_\u0645\u0645\u06cc\u0632\u06cc_\u0648_\u0631\u0641\u0639_\u06a9\u0627\u0645\u0644_technical_seo_\u0628\u0627_\u0645\u062d\u0648\u0631\u06cc\u062a_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc", "label": "\u0645\u0645\u06cc\u0632\u06cc \u0648 \u0631\u0641\u0639 \u06a9\u0627\u0645\u0644 Technical SEO \u0628\u0627 \u0645\u062d\u0648\u0631\u06cc\u062a \u0645\u0639\u0645\u0627\u0631\u06cc \u0686\u0646\u062f-\u062f\u0627\u0645\u0646\u0647\u200c\u0627\u06cc", "file_type": "document", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L1"}, {"id": "prompt_technical_seo_audit_multidomain_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L3"}, {"id": "prompt_technical_seo_audit_multidomain_\u0646\u0642\u0634", "label": "\u0646\u0642\u0634", "file_type": "document", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L7"}, {"id": "prompt_technical_seo_audit_multidomain_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L11"}, {"id": "prompt_technical_seo_audit_multidomain_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L17"}, {"id": "prompt_technical_seo_audit_multidomain_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L23"}, {"id": "prompt_technical_seo_audit_multidomain_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627\u06cc_\u0645\u0645\u06cc\u0632\u06cc_\u0627\u0648\u0644\u06cc\u0647_\u0627\u0632_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06cc\u0627\u0641\u062a\u0647\u200c\u0647\u0627\u06cc \u0645\u0645\u06cc\u0632\u06cc \u0627\u0648\u0644\u06cc\u0647 \u2014 \u0627\u0632 \u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "file_type": "document", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L42"}, {"id": "prompt_technical_seo_audit_multidomain_\u06f1_canonical_\u0647\u0645\u0647_\u062f\u0627\u0645\u0646\u0647_\u0647\u0627\u06cc_\u0634\u0647\u0631\u06cc_\u0631\u0627_\u0646\u0627\u0628\u0648\u062f_\u0645\u06cc_\u06a9\u0646\u062f_critical", "label": "\u06f1. Canonical \u0647\u0645\u0647 \u062f\u0627\u0645\u0646\u0647\u200c\u0647\u0627\u06cc \u0634\u0647\u0631\u06cc \u0631\u0627 \u0646\u0627\u0628\u0648\u062f \u0645\u06cc\u200c\u06a9\u0646\u062f (Critical)", "file_type": "document", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L44"}, {"id": "prompt_technical_seo_audit_multidomain_\u06f2_sitemap_high", "label": "\u06f2. Sitemap (High)", "file_type": "document", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L66"}, {"id": "prompt_technical_seo_audit_multidomain_\u06f3_robots_high", "label": "\u06f3. Robots (High)", "file_type": "document", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L83"}, {"id": "prompt_technical_seo_audit_multidomain_\u06f4_metadata_\u0633\u0637\u062d_\u0631\u06cc\u0634\u0647_high", "label": "\u06f4. Metadata \u0633\u0637\u062d \u0631\u06cc\u0634\u0647 (High)", "file_type": "document", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L97"}, {"id": "prompt_technical_seo_audit_multidomain_\u06f5_\u0635\u0641\u062d\u0627\u062a_dynamic_soft_404_\u0648_metadata_\u0646\u0627\u0642\u0635_high", "label": "\u06f5. \u0635\u0641\u062d\u0627\u062a dynamic \u2014 soft 404 \u0648 metadata \u0646\u0627\u0642\u0635 (High)", "file_type": "document", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L111"}, {"id": "prompt_technical_seo_audit_multidomain_\u06f6_\u0635\u0641\u062d\u0627\u062a_\u0644\u06cc\u0633\u062a\u06cc_\u0648_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u06cc_medium", "label": "\u06f6. \u0635\u0641\u062d\u0627\u062a \u0644\u06cc\u0633\u062a\u06cc \u0648 \u067e\u0627\u0631\u0627\u0645\u062a\u0631\u06cc (Medium)", "file_type": "document", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L123"}, {"id": "prompt_technical_seo_audit_multidomain_\u06f7_security_headers_\u0648\u0636\u0639\u06cc\u062a_\u062e\u0648\u0628", "label": "\u06f7. Security headers \u2014 \u0648\u0636\u0639\u06cc\u062a \u062e\u0648\u0628", "file_type": "document", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L127"}, {"id": "prompt_technical_seo_audit_multidomain_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L131"}, {"id": "prompt_technical_seo_audit_multidomain_\u06f0_\u062a\u0635\u0645\u06cc\u0645_\u0627\u0633\u062a\u0631\u0627\u062a\u0698\u06cc_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632_\u0647\u0645\u0647_\u0686\u06cc\u0632", "label": "\u06f0. \u062a\u0635\u0645\u06cc\u0645 \u0627\u0633\u062a\u0631\u0627\u062a\u0698\u06cc \u0686\u0646\u062f-\u062f\u0627\u0645\u0646\u0647\u200c\u0627\u06cc (\u067e\u06cc\u0634\u200c\u0646\u06cc\u0627\u0632 \u0647\u0645\u0647\u200c\u0686\u06cc\u0632)", "file_type": "document", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L133"}, {"id": "prompt_technical_seo_audit_multidomain_\u06f1_metadatabase_\u0648_canonical_per_page", "label": "\u06f1. `metadataBase` \u0648 canonical per-page", "file_type": "document", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L142"}, {"id": "prompt_technical_seo_audit_multidomain_\u06f2_\u0627\u0635\u0644\u0627\u062d_sitemap", "label": "\u06f2. \u0627\u0635\u0644\u0627\u062d sitemap", "file_type": "document", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L159"}, {"id": "prompt_technical_seo_audit_multidomain_\u06f3_\u0627\u0635\u0644\u0627\u062d_robots", "label": "\u06f3. \u0627\u0635\u0644\u0627\u062d robots", "file_type": "document", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L167"}, {"id": "prompt_technical_seo_audit_multidomain_\u06f4_json_ld_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc", "label": "\u06f4. JSON-LD \u0686\u0646\u062f-\u062f\u0627\u0645\u0646\u0647\u200c\u0627\u06cc", "file_type": "document", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L173"}, {"id": "prompt_technical_seo_audit_multidomain_\u06f5_soft_404_\u0648_status_codes", "label": "\u06f5. Soft 404 \u0648 status codes", "file_type": "document", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L180"}, {"id": "prompt_technical_seo_audit_multidomain_\u06f6_\u0645\u0645\u06cc\u0632\u06cc_rendering_\u0648_performance", "label": "\u06f6. \u0645\u0645\u06cc\u0632\u06cc rendering \u0648 performance", "file_type": "document", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L185"}, {"id": "prompt_technical_seo_audit_multidomain_\u06f7_pagination_\u0648_\u0635\u0641\u062d\u0627\u062a_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u06cc", "label": "\u06f7. Pagination \u0648 \u0635\u0641\u062d\u0627\u062a \u067e\u0627\u0631\u0627\u0645\u062a\u0631\u06cc", "file_type": "document", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L192"}, {"id": "prompt_technical_seo_audit_multidomain_\u06f8_\u06af\u0632\u0627\u0631\u0634_\u0646\u0647\u0627\u06cc\u06cc_\u0645\u0645\u06cc\u0632\u06cc", "label": "\u06f8. \u06af\u0632\u0627\u0631\u0634 \u0646\u0647\u0627\u06cc\u06cc \u0645\u0645\u06cc\u0632\u06cc", "file_type": "document", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L197"}, {"id": "prompt_technical_seo_audit_multidomain_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L201"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_technical_seo_audit_multidomain_md", "target": "prompt_technical_seo_audit_multidomain_\u0645\u0645\u06cc\u0632\u06cc_\u0648_\u0631\u0641\u0639_\u06a9\u0627\u0645\u0644_technical_seo_\u0628\u0627_\u0645\u062d\u0648\u0631\u06cc\u062a_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_technical_seo_audit_multidomain_\u0645\u0645\u06cc\u0632\u06cc_\u0648_\u0631\u0641\u0639_\u06a9\u0627\u0645\u0644_technical_seo_\u0628\u0627_\u0645\u062d\u0648\u0631\u06cc\u062a_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc", "target": "prompt_technical_seo_audit_multidomain_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_technical_seo_audit_multidomain_\u0645\u0645\u06cc\u0632\u06cc_\u0648_\u0631\u0641\u0639_\u06a9\u0627\u0645\u0644_technical_seo_\u0628\u0627_\u0645\u062d\u0648\u0631\u06cc\u062a_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc", "target": "prompt_technical_seo_audit_multidomain_\u0646\u0642\u0634", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L7", "weight": 1.0}, {"source": "prompt_technical_seo_audit_multidomain_\u0645\u0645\u06cc\u0632\u06cc_\u0648_\u0631\u0641\u0639_\u06a9\u0627\u0645\u0644_technical_seo_\u0628\u0627_\u0645\u062d\u0648\u0631\u06cc\u062a_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc", "target": "prompt_technical_seo_audit_multidomain_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L11", "weight": 1.0}, {"source": "prompt_technical_seo_audit_multidomain_\u0645\u0645\u06cc\u0632\u06cc_\u0648_\u0631\u0641\u0639_\u06a9\u0627\u0645\u0644_technical_seo_\u0628\u0627_\u0645\u062d\u0648\u0631\u06cc\u062a_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc", "target": "prompt_technical_seo_audit_multidomain_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L17", "weight": 1.0}, {"source": "prompt_technical_seo_audit_multidomain_\u0645\u0645\u06cc\u0632\u06cc_\u0648_\u0631\u0641\u0639_\u06a9\u0627\u0645\u0644_technical_seo_\u0628\u0627_\u0645\u062d\u0648\u0631\u06cc\u062a_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc", "target": "prompt_technical_seo_audit_multidomain_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L23", "weight": 1.0}, {"source": "prompt_technical_seo_audit_multidomain_\u0645\u0645\u06cc\u0632\u06cc_\u0648_\u0631\u0641\u0639_\u06a9\u0627\u0645\u0644_technical_seo_\u0628\u0627_\u0645\u062d\u0648\u0631\u06cc\u062a_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc", "target": "prompt_technical_seo_audit_multidomain_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627\u06cc_\u0645\u0645\u06cc\u0632\u06cc_\u0627\u0648\u0644\u06cc\u0647_\u0627\u0632_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L42", "weight": 1.0}, {"source": "prompt_technical_seo_audit_multidomain_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627\u06cc_\u0645\u0645\u06cc\u0632\u06cc_\u0627\u0648\u0644\u06cc\u0647_\u0627\u0632_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_technical_seo_audit_multidomain_\u06f1_canonical_\u0647\u0645\u0647_\u062f\u0627\u0645\u0646\u0647_\u0647\u0627\u06cc_\u0634\u0647\u0631\u06cc_\u0631\u0627_\u0646\u0627\u0628\u0648\u062f_\u0645\u06cc_\u06a9\u0646\u062f_critical", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L44", "weight": 1.0}, {"source": "prompt_technical_seo_audit_multidomain_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627\u06cc_\u0645\u0645\u06cc\u0632\u06cc_\u0627\u0648\u0644\u06cc\u0647_\u0627\u0632_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_technical_seo_audit_multidomain_\u06f2_sitemap_high", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L66", "weight": 1.0}, {"source": "prompt_technical_seo_audit_multidomain_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627\u06cc_\u0645\u0645\u06cc\u0632\u06cc_\u0627\u0648\u0644\u06cc\u0647_\u0627\u0632_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_technical_seo_audit_multidomain_\u06f3_robots_high", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L83", "weight": 1.0}, {"source": "prompt_technical_seo_audit_multidomain_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627\u06cc_\u0645\u0645\u06cc\u0632\u06cc_\u0627\u0648\u0644\u06cc\u0647_\u0627\u0632_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_technical_seo_audit_multidomain_\u06f4_metadata_\u0633\u0637\u062d_\u0631\u06cc\u0634\u0647_high", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L97", "weight": 1.0}, {"source": "prompt_technical_seo_audit_multidomain_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627\u06cc_\u0645\u0645\u06cc\u0632\u06cc_\u0627\u0648\u0644\u06cc\u0647_\u0627\u0632_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_technical_seo_audit_multidomain_\u06f5_\u0635\u0641\u062d\u0627\u062a_dynamic_soft_404_\u0648_metadata_\u0646\u0627\u0642\u0635_high", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L111", "weight": 1.0}, {"source": "prompt_technical_seo_audit_multidomain_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627\u06cc_\u0645\u0645\u06cc\u0632\u06cc_\u0627\u0648\u0644\u06cc\u0647_\u0627\u0632_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_technical_seo_audit_multidomain_\u06f6_\u0635\u0641\u062d\u0627\u062a_\u0644\u06cc\u0633\u062a\u06cc_\u0648_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u06cc_medium", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L123", "weight": 1.0}, {"source": "prompt_technical_seo_audit_multidomain_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627\u06cc_\u0645\u0645\u06cc\u0632\u06cc_\u0627\u0648\u0644\u06cc\u0647_\u0627\u0632_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_technical_seo_audit_multidomain_\u06f7_security_headers_\u0648\u0636\u0639\u06cc\u062a_\u062e\u0648\u0628", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L127", "weight": 1.0}, {"source": "prompt_technical_seo_audit_multidomain_\u0645\u0645\u06cc\u0632\u06cc_\u0648_\u0631\u0641\u0639_\u06a9\u0627\u0645\u0644_technical_seo_\u0628\u0627_\u0645\u062d\u0648\u0631\u06cc\u062a_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc", "target": "prompt_technical_seo_audit_multidomain_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L131", "weight": 1.0}, {"source": "prompt_technical_seo_audit_multidomain_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_technical_seo_audit_multidomain_\u06f0_\u062a\u0635\u0645\u06cc\u0645_\u0627\u0633\u062a\u0631\u0627\u062a\u0698\u06cc_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632_\u0647\u0645\u0647_\u0686\u06cc\u0632", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L133", "weight": 1.0}, {"source": "prompt_technical_seo_audit_multidomain_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_technical_seo_audit_multidomain_\u06f1_metadatabase_\u0648_canonical_per_page", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L142", "weight": 1.0}, {"source": "prompt_technical_seo_audit_multidomain_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_technical_seo_audit_multidomain_\u06f2_\u0627\u0635\u0644\u0627\u062d_sitemap", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L159", "weight": 1.0}, {"source": "prompt_technical_seo_audit_multidomain_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_technical_seo_audit_multidomain_\u06f3_\u0627\u0635\u0644\u0627\u062d_robots", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L167", "weight": 1.0}, {"source": "prompt_technical_seo_audit_multidomain_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_technical_seo_audit_multidomain_\u06f4_json_ld_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L173", "weight": 1.0}, {"source": "prompt_technical_seo_audit_multidomain_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_technical_seo_audit_multidomain_\u06f5_soft_404_\u0648_status_codes", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L180", "weight": 1.0}, {"source": "prompt_technical_seo_audit_multidomain_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_technical_seo_audit_multidomain_\u06f6_\u0645\u0645\u06cc\u0632\u06cc_rendering_\u0648_performance", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L185", "weight": 1.0}, {"source": "prompt_technical_seo_audit_multidomain_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_technical_seo_audit_multidomain_\u06f7_pagination_\u0648_\u0635\u0641\u062d\u0627\u062a_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L192", "weight": 1.0}, {"source": "prompt_technical_seo_audit_multidomain_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_technical_seo_audit_multidomain_\u06f8_\u06af\u0632\u0627\u0631\u0634_\u0646\u0647\u0627\u06cc\u06cc_\u0645\u0645\u06cc\u0632\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L197", "weight": 1.0}, {"source": "prompt_technical_seo_audit_multidomain_\u0645\u0645\u06cc\u0632\u06cc_\u0648_\u0631\u0641\u0639_\u06a9\u0627\u0645\u0644_technical_seo_\u0628\u0627_\u0645\u062d\u0648\u0631\u06cc\u062a_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc", "target": "prompt_technical_seo_audit_multidomain_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", "source_location": "L201", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/d260ca8d266e49ee94910a03c027d8c2b83461c0a40ca046ba1b6fac591f614f.json b/graphify-out/cache/ast/v0.8.44/d260ca8d266e49ee94910a03c027d8c2b83461c0a40ca046ba1b6fac591f614f.json new file mode 100644 index 0000000..73315c1 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/d260ca8d266e49ee94910a03c027d8c2b83461c0a40ca046ba1b6fac591f614f.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_currency_toman_display_front_md", "label": "currency-toman-display-front.md", "file_type": "document", "source_file": ".claude/prompt/currency-toman-display-front.md", "source_location": "L1"}, {"id": "prompt_currency_toman_display_front_\u0648\u0627\u062d\u062f_\u067e\u0648\u0644_\u062a\u0648\u0645\u0627\u0646_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0646\u0645\u0627\u06cc\u0634_\u06f1\u06f0_\u0648\u0631\u0648\u062f\u06cc_\u06f1\u06f0_api_\u0631\u06cc\u0627\u0644_\u0645\u06cc_\u0645\u0627\u0646\u062f", "label": "\u0648\u0627\u062d\u062f \u067e\u0648\u0644 = \u062a\u0648\u0645\u0627\u0646 \u062f\u0631 \u0633\u0627\u06cc\u062a \u0639\u0645\u0648\u0645\u06cc (\u0646\u0645\u0627\u06cc\u0634 \u00f7\u06f1\u06f0 / \u0648\u0631\u0648\u062f\u06cc \u00d7\u06f1\u06f0) \u2014 API \u0631\u06cc\u0627\u0644 \u0645\u06cc\u200c\u0645\u0627\u0646\u062f", "file_type": "document", "source_file": ".claude/prompt/currency-toman-display-front.md", "source_location": "L1"}, {"id": "prompt_currency_toman_display_front_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/currency-toman-display-front.md", "source_location": "L3"}, {"id": "prompt_currency_toman_display_front_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/currency-toman-display-front.md", "source_location": "L7"}, {"id": "prompt_currency_toman_display_front_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/currency-toman-display-front.md", "source_location": "L13"}, {"id": "prompt_currency_toman_display_front_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/currency-toman-display-front.md", "source_location": "L17"}, {"id": "prompt_currency_toman_display_front_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "file_type": "document", "source_file": ".claude/prompt/currency-toman-display-front.md", "source_location": "L31"}, {"id": "prompt_currency_toman_display_front_components_appointment_paying_index_js", "label": "`components/appointment/paying/index.js`", "file_type": "document", "source_file": ".claude/prompt/currency-toman-display-front.md", "source_location": "L33"}, {"id": "prompt_currency_toman_display_front_app_dashboard_page_js_\u062a\u0628\u062f\u06cc\u0644_\u062f\u0633\u062a\u06cc_\u0646\u0627\u0647\u0645\u0627\u0647\u0646\u06af", "label": "`app/dashboard/page.js` (\u062a\u0628\u062f\u06cc\u0644 \u062f\u0633\u062a\u06cc \u0646\u0627\u0647\u0645\u0627\u0647\u0646\u06af)", "file_type": "document", "source_file": ".claude/prompt/currency-toman-display-front.md", "source_location": "L45"}, {"id": "prompt_currency_toman_display_front_app_payment_uuid_page_js", "label": "`app/payment/[uuid]/page.js`", "file_type": "document", "source_file": ".claude/prompt/currency-toman-display-front.md", "source_location": "L50"}, {"id": "prompt_currency_toman_display_front_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/currency-toman-display-front.md", "source_location": "L55"}, {"id": "prompt_currency_toman_display_front_\u06f1_helper_\u0645\u0631\u06a9\u0632\u06cc_lib_money_js", "label": "\u06f1. helper \u0645\u0631\u06a9\u0632\u06cc `lib/money.js`", "file_type": "document", "source_file": ".claude/prompt/currency-toman-display-front.md", "source_location": "L57"}, {"id": "prompt_currency_toman_display_front_\u06f2_paying_index_js", "label": "\u06f2. `paying/index.js`", "file_type": "document", "source_file": ".claude/prompt/currency-toman-display-front.md", "source_location": "L67"}, {"id": "prompt_currency_toman_display_front_\u06f3_\u062a\u0631\u0627\u06a9\u0646\u0634_\u0647\u0627_\u0648_\u0645\u0648\u062c\u0648\u062f\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", "label": "\u06f3. \u062a\u0631\u0627\u06a9\u0646\u0634\u200c\u0647\u0627 \u0648 \u0645\u0648\u062c\u0648\u062f\u06cc \u062f\u0627\u0634\u0628\u0648\u0631\u062f", "file_type": "document", "source_file": ".claude/prompt/currency-toman-display-front.md", "source_location": "L73"}, {"id": "prompt_currency_toman_display_front_\u06f4_\u0635\u0641\u062d\u0647_\u0646\u062a\u06cc\u062c\u0647_\u067e\u0631\u062f\u0627\u062e\u062a", "label": "\u06f4. \u0635\u0641\u062d\u0647\u0654 \u0646\u062a\u06cc\u062c\u0647\u0654 \u067e\u0631\u062f\u0627\u062e\u062a", "file_type": "document", "source_file": ".claude/prompt/currency-toman-display-front.md", "source_location": "L79"}, {"id": "prompt_currency_toman_display_front_\u06f5_\u062c\u0633\u062a\u062c\u0648\u06cc_\u0628\u0627\u0642\u06cc_\u0645\u0627\u0646\u062f\u0647_\u0631\u06cc\u0627\u0644", "label": "\u06f5. \u062c\u0633\u062a\u062c\u0648\u06cc \u0628\u0627\u0642\u06cc\u200c\u0645\u0627\u0646\u062f\u0647\u0654 \u00ab\u0631\u06cc\u0627\u0644\u00bb", "file_type": "document", "source_file": ".claude/prompt/currency-toman-display-front.md", "source_location": "L83"}, {"id": "prompt_currency_toman_display_front_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/currency-toman-display-front.md", "source_location": "L87"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_currency_toman_display_front_md", "target": "prompt_currency_toman_display_front_\u0648\u0627\u062d\u062f_\u067e\u0648\u0644_\u062a\u0648\u0645\u0627\u0646_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0646\u0645\u0627\u06cc\u0634_\u06f1\u06f0_\u0648\u0631\u0648\u062f\u06cc_\u06f1\u06f0_api_\u0631\u06cc\u0627\u0644_\u0645\u06cc_\u0645\u0627\u0646\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/currency-toman-display-front.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_currency_toman_display_front_\u0648\u0627\u062d\u062f_\u067e\u0648\u0644_\u062a\u0648\u0645\u0627\u0646_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0646\u0645\u0627\u06cc\u0634_\u06f1\u06f0_\u0648\u0631\u0648\u062f\u06cc_\u06f1\u06f0_api_\u0631\u06cc\u0627\u0644_\u0645\u06cc_\u0645\u0627\u0646\u062f", "target": "prompt_currency_toman_display_front_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/currency-toman-display-front.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_currency_toman_display_front_\u0648\u0627\u062d\u062f_\u067e\u0648\u0644_\u062a\u0648\u0645\u0627\u0646_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0646\u0645\u0627\u06cc\u0634_\u06f1\u06f0_\u0648\u0631\u0648\u062f\u06cc_\u06f1\u06f0_api_\u0631\u06cc\u0627\u0644_\u0645\u06cc_\u0645\u0627\u0646\u062f", "target": "prompt_currency_toman_display_front_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/currency-toman-display-front.md", "source_location": "L7", "weight": 1.0}, {"source": "prompt_currency_toman_display_front_\u0648\u0627\u062d\u062f_\u067e\u0648\u0644_\u062a\u0648\u0645\u0627\u0646_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0646\u0645\u0627\u06cc\u0634_\u06f1\u06f0_\u0648\u0631\u0648\u062f\u06cc_\u06f1\u06f0_api_\u0631\u06cc\u0627\u0644_\u0645\u06cc_\u0645\u0627\u0646\u062f", "target": "prompt_currency_toman_display_front_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/currency-toman-display-front.md", "source_location": "L13", "weight": 1.0}, {"source": "prompt_currency_toman_display_front_\u0648\u0627\u062d\u062f_\u067e\u0648\u0644_\u062a\u0648\u0645\u0627\u0646_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0646\u0645\u0627\u06cc\u0634_\u06f1\u06f0_\u0648\u0631\u0648\u062f\u06cc_\u06f1\u06f0_api_\u0631\u06cc\u0627\u0644_\u0645\u06cc_\u0645\u0627\u0646\u062f", "target": "prompt_currency_toman_display_front_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/currency-toman-display-front.md", "source_location": "L17", "weight": 1.0}, {"source": "prompt_currency_toman_display_front_\u0648\u0627\u062d\u062f_\u067e\u0648\u0644_\u062a\u0648\u0645\u0627\u0646_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0646\u0645\u0627\u06cc\u0634_\u06f1\u06f0_\u0648\u0631\u0648\u062f\u06cc_\u06f1\u06f0_api_\u0631\u06cc\u0627\u0644_\u0645\u06cc_\u0645\u0627\u0646\u062f", "target": "prompt_currency_toman_display_front_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/currency-toman-display-front.md", "source_location": "L31", "weight": 1.0}, {"source": "prompt_currency_toman_display_front_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "target": "prompt_currency_toman_display_front_components_appointment_paying_index_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/currency-toman-display-front.md", "source_location": "L33", "weight": 1.0}, {"source": "prompt_currency_toman_display_front_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "target": "prompt_currency_toman_display_front_app_dashboard_page_js_\u062a\u0628\u062f\u06cc\u0644_\u062f\u0633\u062a\u06cc_\u0646\u0627\u0647\u0645\u0627\u0647\u0646\u06af", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/currency-toman-display-front.md", "source_location": "L45", "weight": 1.0}, {"source": "prompt_currency_toman_display_front_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "target": "prompt_currency_toman_display_front_app_payment_uuid_page_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/currency-toman-display-front.md", "source_location": "L50", "weight": 1.0}, {"source": "prompt_currency_toman_display_front_\u0648\u0627\u062d\u062f_\u067e\u0648\u0644_\u062a\u0648\u0645\u0627\u0646_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0646\u0645\u0627\u06cc\u0634_\u06f1\u06f0_\u0648\u0631\u0648\u062f\u06cc_\u06f1\u06f0_api_\u0631\u06cc\u0627\u0644_\u0645\u06cc_\u0645\u0627\u0646\u062f", "target": "prompt_currency_toman_display_front_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/currency-toman-display-front.md", "source_location": "L55", "weight": 1.0}, {"source": "prompt_currency_toman_display_front_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_currency_toman_display_front_\u06f1_helper_\u0645\u0631\u06a9\u0632\u06cc_lib_money_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/currency-toman-display-front.md", "source_location": "L57", "weight": 1.0}, {"source": "prompt_currency_toman_display_front_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_currency_toman_display_front_\u06f2_paying_index_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/currency-toman-display-front.md", "source_location": "L67", "weight": 1.0}, {"source": "prompt_currency_toman_display_front_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_currency_toman_display_front_\u06f3_\u062a\u0631\u0627\u06a9\u0646\u0634_\u0647\u0627_\u0648_\u0645\u0648\u062c\u0648\u062f\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/currency-toman-display-front.md", "source_location": "L73", "weight": 1.0}, {"source": "prompt_currency_toman_display_front_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_currency_toman_display_front_\u06f4_\u0635\u0641\u062d\u0647_\u0646\u062a\u06cc\u062c\u0647_\u067e\u0631\u062f\u0627\u062e\u062a", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/currency-toman-display-front.md", "source_location": "L79", "weight": 1.0}, {"source": "prompt_currency_toman_display_front_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_currency_toman_display_front_\u06f5_\u062c\u0633\u062a\u062c\u0648\u06cc_\u0628\u0627\u0642\u06cc_\u0645\u0627\u0646\u062f\u0647_\u0631\u06cc\u0627\u0644", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/currency-toman-display-front.md", "source_location": "L83", "weight": 1.0}, {"source": "prompt_currency_toman_display_front_\u0648\u0627\u062d\u062f_\u067e\u0648\u0644_\u062a\u0648\u0645\u0627\u0646_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0646\u0645\u0627\u06cc\u0634_\u06f1\u06f0_\u0648\u0631\u0648\u062f\u06cc_\u06f1\u06f0_api_\u0631\u06cc\u0627\u0644_\u0645\u06cc_\u0645\u0627\u0646\u062f", "target": "prompt_currency_toman_display_front_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/currency-toman-display-front.md", "source_location": "L87", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/d78e22adc6d096b775cdcdc129b12347c337cff71afcb2b708c2cbca82486252.json b/graphify-out/cache/ast/v0.8.44/d78e22adc6d096b775cdcdc129b12347c337cff71afcb2b708c2cbca82486252.json new file mode 100644 index 0000000..b81b1e3 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/d78e22adc6d096b775cdcdc129b12347c337cff71afcb2b708c2cbca82486252.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_booking_lock_patient_flow_md", "label": "booking-lock-patient-flow.md", "file_type": "document", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "source_location": "L1"}, {"id": "prompt_booking_lock_patient_flow_\u0641\u0644\u0648\u06cc_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0642\u0641\u0644_\u0648\u0627\u0642\u0639\u06cc_\u06f1\u06f5\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0641\u0631\u0645_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u0634\u062e\u0635_\u062f\u06cc\u06af\u0631_\u0648_ux_\u0648\u0636\u0639\u06cc\u062a_\u0645\u062d\u0648\u0631", "label": "\u0641\u0644\u0648\u06cc \u0646\u0648\u0628\u062a\u200c\u06af\u06cc\u0631\u06cc: \u0642\u0641\u0644 \u0648\u0627\u0642\u0639\u06cc \u06f1\u06f5\u062f\u0642\u06cc\u0642\u0647\u200c\u0627\u06cc\u060c \u0641\u0631\u0645 \u00ab\u0646\u0648\u0628\u062a \u0628\u0631\u0627\u06cc \u0634\u062e\u0635 \u062f\u06cc\u06af\u0631\u00bb\u060c \u0648 UX \u0648\u0636\u0639\u06cc\u062a\u200c\u0645\u062d\u0648\u0631", "file_type": "document", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "source_location": "L1"}, {"id": "prompt_booking_lock_patient_flow_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "source_location": "L3"}, {"id": "prompt_booking_lock_patient_flow_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "source_location": "L11"}, {"id": "prompt_booking_lock_patient_flow_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "source_location": "L19"}, {"id": "prompt_booking_lock_patient_flow_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "source_location": "L25"}, {"id": "prompt_booking_lock_patient_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "file_type": "document", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "source_location": "L36"}, {"id": "prompt_booking_lock_patient_flow_detail_index_js_\u062f\u06a9\u0645\u0647_\u06cc_mock_\u0628\u0631\u0627\u06cc_\u0641\u0631\u062f_\u062f\u06cc\u06af\u0631", "label": "`detail/index.js` \u2014 \u062f\u06a9\u0645\u0647\u200c\u06cc mock \u00ab\u0628\u0631\u0627\u06cc \u0641\u0631\u062f \u062f\u06cc\u06af\u0631\u00bb", "file_type": "document", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "source_location": "L38"}, {"id": "prompt_booking_lock_patient_flow_submitdata_js_\u0628\u062f\u0646\u0647_\u06cc_\u0646\u0648\u0628\u062a_\u0628\u062f\u0648\u0646_\u0628\u06cc\u0645\u0627\u0631", "label": "`SubmitData.js` \u2014 \u0628\u062f\u0646\u0647\u200c\u06cc \u0646\u0648\u0628\u062a \u0628\u062f\u0648\u0646 \u0628\u06cc\u0645\u0627\u0631", "file_type": "document", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "source_location": "L56"}, {"id": "prompt_booking_lock_patient_flow_paying_index_js_\u062a\u0627\u06cc\u0645\u0631_\u0645\u062d\u0644\u06cc_\u06f6\u06f0\u06f0_\u062b\u0627\u0646\u06cc\u0647_\u0642\u0644\u0627\u0628\u06cc", "label": "`paying/index.js` \u2014 \u062a\u0627\u06cc\u0645\u0631 \u0645\u062d\u0644\u06cc \u06f6\u06f0\u06f0 \u062b\u0627\u0646\u06cc\u0647 (\u0642\u0644\u0627\u0628\u06cc)", "file_type": "document", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "source_location": "L70"}, {"id": "prompt_booking_lock_patient_flow_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_backend_\u0628\u0639\u062f_\u0627\u0632_\u0627\u062c\u0631\u0627\u06cc_\u067e\u0631\u0627\u0645\u067e\u062a_\u0647\u0645\u062a\u0627", "label": "\u0642\u0631\u0627\u0631\u062f\u0627\u062f backend (\u0628\u0639\u062f \u0627\u0632 \u0627\u062c\u0631\u0627\u06cc \u067e\u0631\u0627\u0645\u067e\u062a \u0647\u0645\u062a\u0627)", "file_type": "document", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "source_location": "L81"}, {"id": "prompt_booking_lock_patient_flow_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "source_location": "L97"}, {"id": "prompt_booking_lock_patient_flow_\u06f1_\u0641\u0631\u0645_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u0634\u062e\u0635_\u062f\u06cc\u06af\u0631_detail_index_js_form_js", "label": "\u06f1. \u0641\u0631\u0645 \u00ab\u0646\u0648\u0628\u062a \u0628\u0631\u0627\u06cc \u0634\u062e\u0635 \u062f\u06cc\u06af\u0631\u00bb (`detail/index.js` + `Form.js`)", "file_type": "document", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "source_location": "L99"}, {"id": "prompt_booking_lock_patient_flow_\u06f2_\u0627\u0631\u0633\u0627\u0644_patient_\u0648_for_self_\u062f\u0631_submitdata_js", "label": "\u06f2. \u0627\u0631\u0633\u0627\u0644 `patient_*` \u0648 `for_self` \u062f\u0631 `SubmitData.js`", "file_type": "document", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "source_location": "L106"}, {"id": "prompt_booking_lock_patient_flow_\u06f3_\u062a\u0627\u06cc\u0645\u0631_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0631_\u0645\u0628\u0646\u0627\u06cc_expires_at_paying_index_js", "label": "\u06f3. \u062a\u0627\u06cc\u0645\u0631 \u067e\u0631\u062f\u0627\u062e\u062a \u0628\u0631 \u0645\u0628\u0646\u0627\u06cc `expires_at` (`paying/index.js`)", "file_type": "document", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "source_location": "L132"}, {"id": "prompt_booking_lock_patient_flow_\u06f4_ux_\u0646\u0647\u0627\u06cc\u06cc", "label": "\u06f4. UX \u0646\u0647\u0627\u06cc\u06cc", "file_type": "document", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "source_location": "L148"}, {"id": "prompt_booking_lock_patient_flow_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "source_location": "L153"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_booking_lock_patient_flow_md", "target": "prompt_booking_lock_patient_flow_\u0641\u0644\u0648\u06cc_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0642\u0641\u0644_\u0648\u0627\u0642\u0639\u06cc_\u06f1\u06f5\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0641\u0631\u0645_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u0634\u062e\u0635_\u062f\u06cc\u06af\u0631_\u0648_ux_\u0648\u0636\u0639\u06cc\u062a_\u0645\u062d\u0648\u0631", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_booking_lock_patient_flow_\u0641\u0644\u0648\u06cc_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0642\u0641\u0644_\u0648\u0627\u0642\u0639\u06cc_\u06f1\u06f5\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0641\u0631\u0645_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u0634\u062e\u0635_\u062f\u06cc\u06af\u0631_\u0648_ux_\u0648\u0636\u0639\u06cc\u062a_\u0645\u062d\u0648\u0631", "target": "prompt_booking_lock_patient_flow_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_booking_lock_patient_flow_\u0641\u0644\u0648\u06cc_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0642\u0641\u0644_\u0648\u0627\u0642\u0639\u06cc_\u06f1\u06f5\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0641\u0631\u0645_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u0634\u062e\u0635_\u062f\u06cc\u06af\u0631_\u0648_ux_\u0648\u0636\u0639\u06cc\u062a_\u0645\u062d\u0648\u0631", "target": "prompt_booking_lock_patient_flow_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "source_location": "L11", "weight": 1.0}, {"source": "prompt_booking_lock_patient_flow_\u0641\u0644\u0648\u06cc_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0642\u0641\u0644_\u0648\u0627\u0642\u0639\u06cc_\u06f1\u06f5\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0641\u0631\u0645_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u0634\u062e\u0635_\u062f\u06cc\u06af\u0631_\u0648_ux_\u0648\u0636\u0639\u06cc\u062a_\u0645\u062d\u0648\u0631", "target": "prompt_booking_lock_patient_flow_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "source_location": "L19", "weight": 1.0}, {"source": "prompt_booking_lock_patient_flow_\u0641\u0644\u0648\u06cc_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0642\u0641\u0644_\u0648\u0627\u0642\u0639\u06cc_\u06f1\u06f5\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0641\u0631\u0645_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u0634\u062e\u0635_\u062f\u06cc\u06af\u0631_\u0648_ux_\u0648\u0636\u0639\u06cc\u062a_\u0645\u062d\u0648\u0631", "target": "prompt_booking_lock_patient_flow_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "source_location": "L25", "weight": 1.0}, {"source": "prompt_booking_lock_patient_flow_\u0641\u0644\u0648\u06cc_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0642\u0641\u0644_\u0648\u0627\u0642\u0639\u06cc_\u06f1\u06f5\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0641\u0631\u0645_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u0634\u062e\u0635_\u062f\u06cc\u06af\u0631_\u0648_ux_\u0648\u0636\u0639\u06cc\u062a_\u0645\u062d\u0648\u0631", "target": "prompt_booking_lock_patient_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "source_location": "L36", "weight": 1.0}, {"source": "prompt_booking_lock_patient_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_booking_lock_patient_flow_detail_index_js_\u062f\u06a9\u0645\u0647_\u06cc_mock_\u0628\u0631\u0627\u06cc_\u0641\u0631\u062f_\u062f\u06cc\u06af\u0631", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "source_location": "L38", "weight": 1.0}, {"source": "prompt_booking_lock_patient_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_booking_lock_patient_flow_submitdata_js_\u0628\u062f\u0646\u0647_\u06cc_\u0646\u0648\u0628\u062a_\u0628\u062f\u0648\u0646_\u0628\u06cc\u0645\u0627\u0631", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "source_location": "L56", "weight": 1.0}, {"source": "prompt_booking_lock_patient_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_booking_lock_patient_flow_paying_index_js_\u062a\u0627\u06cc\u0645\u0631_\u0645\u062d\u0644\u06cc_\u06f6\u06f0\u06f0_\u062b\u0627\u0646\u06cc\u0647_\u0642\u0644\u0627\u0628\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "source_location": "L70", "weight": 1.0}, {"source": "prompt_booking_lock_patient_flow_\u0641\u0644\u0648\u06cc_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0642\u0641\u0644_\u0648\u0627\u0642\u0639\u06cc_\u06f1\u06f5\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0641\u0631\u0645_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u0634\u062e\u0635_\u062f\u06cc\u06af\u0631_\u0648_ux_\u0648\u0636\u0639\u06cc\u062a_\u0645\u062d\u0648\u0631", "target": "prompt_booking_lock_patient_flow_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_backend_\u0628\u0639\u062f_\u0627\u0632_\u0627\u062c\u0631\u0627\u06cc_\u067e\u0631\u0627\u0645\u067e\u062a_\u0647\u0645\u062a\u0627", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "source_location": "L81", "weight": 1.0}, {"source": "prompt_booking_lock_patient_flow_\u0641\u0644\u0648\u06cc_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0642\u0641\u0644_\u0648\u0627\u0642\u0639\u06cc_\u06f1\u06f5\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0641\u0631\u0645_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u0634\u062e\u0635_\u062f\u06cc\u06af\u0631_\u0648_ux_\u0648\u0636\u0639\u06cc\u062a_\u0645\u062d\u0648\u0631", "target": "prompt_booking_lock_patient_flow_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "source_location": "L97", "weight": 1.0}, {"source": "prompt_booking_lock_patient_flow_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_booking_lock_patient_flow_\u06f1_\u0641\u0631\u0645_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u0634\u062e\u0635_\u062f\u06cc\u06af\u0631_detail_index_js_form_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "source_location": "L99", "weight": 1.0}, {"source": "prompt_booking_lock_patient_flow_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_booking_lock_patient_flow_\u06f2_\u0627\u0631\u0633\u0627\u0644_patient_\u0648_for_self_\u062f\u0631_submitdata_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "source_location": "L106", "weight": 1.0}, {"source": "prompt_booking_lock_patient_flow_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_booking_lock_patient_flow_\u06f3_\u062a\u0627\u06cc\u0645\u0631_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0631_\u0645\u0628\u0646\u0627\u06cc_expires_at_paying_index_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "source_location": "L132", "weight": 1.0}, {"source": "prompt_booking_lock_patient_flow_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_booking_lock_patient_flow_\u06f4_ux_\u0646\u0647\u0627\u06cc\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "source_location": "L148", "weight": 1.0}, {"source": "prompt_booking_lock_patient_flow_\u0641\u0644\u0648\u06cc_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0642\u0641\u0644_\u0648\u0627\u0642\u0639\u06cc_\u06f1\u06f5\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0641\u0631\u0645_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u0634\u062e\u0635_\u062f\u06cc\u06af\u0631_\u0648_ux_\u0648\u0636\u0639\u06cc\u062a_\u0645\u062d\u0648\u0631", "target": "prompt_booking_lock_patient_flow_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/booking-lock-patient-flow.md", "source_location": "L153", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/e0f930abf1bac512900eb97733708e398c52df8a5a088d3cd11212546f210eb9.json b/graphify-out/cache/ast/v0.8.44/e0f930abf1bac512900eb97733708e398c52df8a5a088d3cd11212546f210eb9.json new file mode 100644 index 0000000..5aee7a6 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/e0f930abf1bac512900eb97733708e398c52df8a5a088d3cd11212546f210eb9.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_upgrade_next_16_md", "label": "upgrade-next-16.md", "file_type": "document", "source_file": ".claude/prompt/upgrade-next-16.md", "source_location": "L1"}, {"id": "prompt_upgrade_next_16_\u0627\u0631\u062a\u0642\u0627\u06cc_next_js_\u0627\u0632_15_\u0628\u0647_16_\u0622\u062e\u0631\u06cc\u0646_\u0646\u0633\u062e\u0647_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0627\u0645\u06a9\u0627\u0646\u0627\u062a_\u062c\u062f\u06cc\u062f", "label": "\u0627\u0631\u062a\u0642\u0627\u06cc Next.js \u0627\u0632 15 \u0628\u0647 16 (\u0622\u062e\u0631\u06cc\u0646 \u0646\u0633\u062e\u0647) + \u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc \u0627\u0645\u06a9\u0627\u0646\u0627\u062a \u062c\u062f\u06cc\u062f", "file_type": "document", "source_file": ".claude/prompt/upgrade-next-16.md", "source_location": "L1"}, {"id": "prompt_upgrade_next_16_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/upgrade-next-16.md", "source_location": "L3"}, {"id": "prompt_upgrade_next_16_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/upgrade-next-16.md", "source_location": "L7"}, {"id": "prompt_upgrade_next_16_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/upgrade-next-16.md", "source_location": "L13"}, {"id": "prompt_upgrade_next_16_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/upgrade-next-16.md", "source_location": "L20"}, {"id": "prompt_upgrade_next_16_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "file_type": "document", "source_file": ".claude/prompt/upgrade-next-16.md", "source_location": "L33"}, {"id": "prompt_upgrade_next_16_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/upgrade-next-16.md", "source_location": "L81"}, {"id": "prompt_upgrade_next_16_\u06f1_\u0633\u0627\u062e\u062a_\u0628\u0631\u0646\u0686", "label": "\u06f1. \u0633\u0627\u062e\u062a \u0628\u0631\u0646\u0686", "file_type": "document", "source_file": ".claude/prompt/upgrade-next-16.md", "source_location": "L83"}, {"id": "prompt_upgrade_next_16_\u06f2_\u0627\u0631\u062a\u0642\u0627\u06cc_\u067e\u06a9\u06cc\u062c_\u0647\u0627", "label": "\u06f2. \u0627\u0631\u062a\u0642\u0627\u06cc \u067e\u06a9\u06cc\u062c\u200c\u0647\u0627", "file_type": "document", "source_file": ".claude/prompt/upgrade-next-16.md", "source_location": "L92"}, {"id": "prompt_upgrade_next_16_\u06f3_\u062a\u0628\u062f\u06cc\u0644_middleware_js_\u0628\u0647_proxy_js", "label": "\u06f3. \u062a\u0628\u062f\u06cc\u0644 `middleware.js` \u0628\u0647 `proxy.js`", "file_type": "document", "source_file": ".claude/prompt/upgrade-next-16.md", "source_location": "L108"}, {"id": "prompt_upgrade_next_16_\u06f4_\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc_next_lint", "label": "\u06f4. \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc `next lint`", "file_type": "document", "source_file": ".claude/prompt/upgrade-next-16.md", "source_location": "L131"}, {"id": "prompt_upgrade_next_16_\u06f5_turbopack_\u067e\u06cc\u0634_\u0641\u0631\u0636_\u062c\u062f\u06cc\u062f_dev_\u0648_build", "label": "\u06f5. Turbopack (\u067e\u06cc\u0634\u200c\u0641\u0631\u0636 \u062c\u062f\u06cc\u062f dev \u0648 build)", "file_type": "document", "source_file": ".claude/prompt/upgrade-next-16.md", "source_location": "L159"}, {"id": "prompt_upgrade_next_16_\u06f6_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_react_compiler", "label": "\u06f6. \u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc React Compiler", "file_type": "document", "source_file": ".claude/prompt/upgrade-next-16.md", "source_location": "L169"}, {"id": "prompt_upgrade_next_16_\u06f7_cache_components_\u0627\u0631\u0632\u06cc\u0627\u0628\u06cc_\u0645\u062d\u062a\u0627\u0637\u0627\u0646\u0647_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0645\u0634\u0631\u0648\u0637", "label": "\u06f7. Cache Components \u2014 \u0627\u0631\u0632\u06cc\u0627\u0628\u06cc \u0645\u062d\u062a\u0627\u0637\u0627\u0646\u0647 (\u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc \u0645\u0634\u0631\u0648\u0637)", "file_type": "document", "source_file": ".claude/prompt/upgrade-next-16.md", "source_location": "L187"}, {"id": "prompt_upgrade_next_16_\u06f8_\u062a\u0645\u06cc\u0632\u06a9\u0627\u0631\u06cc_\u0647\u0627\u06cc_\u06a9\u0627\u0646\u0641\u06cc\u06af_\u0646\u0633\u062e\u0647_16", "label": "\u06f8. \u062a\u0645\u06cc\u0632\u06a9\u0627\u0631\u06cc\u200c\u0647\u0627\u06cc \u06a9\u0627\u0646\u0641\u06cc\u06af \u0646\u0633\u062e\u0647 16", "file_type": "document", "source_file": ".claude/prompt/upgrade-next-16.md", "source_location": "L200"}, {"id": "prompt_upgrade_next_16_\u06f9_\u062a\u0633\u062a_\u0646\u0647\u0627\u06cc\u06cc_\u0648_commit", "label": "\u06f9. \u062a\u0633\u062a \u0646\u0647\u0627\u06cc\u06cc \u0648 commit", "file_type": "document", "source_file": ".claude/prompt/upgrade-next-16.md", "source_location": "L208"}, {"id": "prompt_upgrade_next_16_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/upgrade-next-16.md", "source_location": "L226"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_upgrade_next_16_md", "target": "prompt_upgrade_next_16_\u0627\u0631\u062a\u0642\u0627\u06cc_next_js_\u0627\u0632_15_\u0628\u0647_16_\u0622\u062e\u0631\u06cc\u0646_\u0646\u0633\u062e\u0647_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0627\u0645\u06a9\u0627\u0646\u0627\u062a_\u062c\u062f\u06cc\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/upgrade-next-16.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_upgrade_next_16_\u0627\u0631\u062a\u0642\u0627\u06cc_next_js_\u0627\u0632_15_\u0628\u0647_16_\u0622\u062e\u0631\u06cc\u0646_\u0646\u0633\u062e\u0647_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0627\u0645\u06a9\u0627\u0646\u0627\u062a_\u062c\u062f\u06cc\u062f", "target": "prompt_upgrade_next_16_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/upgrade-next-16.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_upgrade_next_16_\u0627\u0631\u062a\u0642\u0627\u06cc_next_js_\u0627\u0632_15_\u0628\u0647_16_\u0622\u062e\u0631\u06cc\u0646_\u0646\u0633\u062e\u0647_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0627\u0645\u06a9\u0627\u0646\u0627\u062a_\u062c\u062f\u06cc\u062f", "target": "prompt_upgrade_next_16_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/upgrade-next-16.md", "source_location": "L7", "weight": 1.0}, {"source": "prompt_upgrade_next_16_\u0627\u0631\u062a\u0642\u0627\u06cc_next_js_\u0627\u0632_15_\u0628\u0647_16_\u0622\u062e\u0631\u06cc\u0646_\u0646\u0633\u062e\u0647_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0627\u0645\u06a9\u0627\u0646\u0627\u062a_\u062c\u062f\u06cc\u062f", "target": "prompt_upgrade_next_16_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/upgrade-next-16.md", "source_location": "L13", "weight": 1.0}, {"source": "prompt_upgrade_next_16_\u0627\u0631\u062a\u0642\u0627\u06cc_next_js_\u0627\u0632_15_\u0628\u0647_16_\u0622\u062e\u0631\u06cc\u0646_\u0646\u0633\u062e\u0647_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0627\u0645\u06a9\u0627\u0646\u0627\u062a_\u062c\u062f\u06cc\u062f", "target": "prompt_upgrade_next_16_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/upgrade-next-16.md", "source_location": "L20", "weight": 1.0}, {"source": "prompt_upgrade_next_16_\u0627\u0631\u062a\u0642\u0627\u06cc_next_js_\u0627\u0632_15_\u0628\u0647_16_\u0622\u062e\u0631\u06cc\u0646_\u0646\u0633\u062e\u0647_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0627\u0645\u06a9\u0627\u0646\u0627\u062a_\u062c\u062f\u06cc\u062f", "target": "prompt_upgrade_next_16_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/upgrade-next-16.md", "source_location": "L33", "weight": 1.0}, {"source": "prompt_upgrade_next_16_\u0627\u0631\u062a\u0642\u0627\u06cc_next_js_\u0627\u0632_15_\u0628\u0647_16_\u0622\u062e\u0631\u06cc\u0646_\u0646\u0633\u062e\u0647_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0627\u0645\u06a9\u0627\u0646\u0627\u062a_\u062c\u062f\u06cc\u062f", "target": "prompt_upgrade_next_16_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/upgrade-next-16.md", "source_location": "L81", "weight": 1.0}, {"source": "prompt_upgrade_next_16_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_upgrade_next_16_\u06f1_\u0633\u0627\u062e\u062a_\u0628\u0631\u0646\u0686", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/upgrade-next-16.md", "source_location": "L83", "weight": 1.0}, {"source": "prompt_upgrade_next_16_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_upgrade_next_16_\u06f2_\u0627\u0631\u062a\u0642\u0627\u06cc_\u067e\u06a9\u06cc\u062c_\u0647\u0627", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/upgrade-next-16.md", "source_location": "L92", "weight": 1.0}, {"source": "prompt_upgrade_next_16_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_upgrade_next_16_\u06f3_\u062a\u0628\u062f\u06cc\u0644_middleware_js_\u0628\u0647_proxy_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/upgrade-next-16.md", "source_location": "L108", "weight": 1.0}, {"source": "prompt_upgrade_next_16_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_upgrade_next_16_\u06f4_\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc_next_lint", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/upgrade-next-16.md", "source_location": "L131", "weight": 1.0}, {"source": "prompt_upgrade_next_16_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_upgrade_next_16_\u06f5_turbopack_\u067e\u06cc\u0634_\u0641\u0631\u0636_\u062c\u062f\u06cc\u062f_dev_\u0648_build", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/upgrade-next-16.md", "source_location": "L159", "weight": 1.0}, {"source": "prompt_upgrade_next_16_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_upgrade_next_16_\u06f6_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_react_compiler", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/upgrade-next-16.md", "source_location": "L169", "weight": 1.0}, {"source": "prompt_upgrade_next_16_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_upgrade_next_16_\u06f7_cache_components_\u0627\u0631\u0632\u06cc\u0627\u0628\u06cc_\u0645\u062d\u062a\u0627\u0637\u0627\u0646\u0647_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0645\u0634\u0631\u0648\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/upgrade-next-16.md", "source_location": "L187", "weight": 1.0}, {"source": "prompt_upgrade_next_16_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_upgrade_next_16_\u06f8_\u062a\u0645\u06cc\u0632\u06a9\u0627\u0631\u06cc_\u0647\u0627\u06cc_\u06a9\u0627\u0646\u0641\u06cc\u06af_\u0646\u0633\u062e\u0647_16", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/upgrade-next-16.md", "source_location": "L200", "weight": 1.0}, {"source": "prompt_upgrade_next_16_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_upgrade_next_16_\u06f9_\u062a\u0633\u062a_\u0646\u0647\u0627\u06cc\u06cc_\u0648_commit", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/upgrade-next-16.md", "source_location": "L208", "weight": 1.0}, {"source": "prompt_upgrade_next_16_\u0627\u0631\u062a\u0642\u0627\u06cc_next_js_\u0627\u0632_15_\u0628\u0647_16_\u0622\u062e\u0631\u06cc\u0646_\u0646\u0633\u062e\u0647_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0627\u0645\u06a9\u0627\u0646\u0627\u062a_\u062c\u062f\u06cc\u062f", "target": "prompt_upgrade_next_16_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/upgrade-next-16.md", "source_location": "L226", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/e19cc538d048d969601b941242dd729de7f7dea14a403bbe2ff5e134647aa10d.json b/graphify-out/cache/ast/v0.8.44/e19cc538d048d969601b941242dd729de7f7dea14a403bbe2ff5e134647aa10d.json new file mode 100644 index 0000000..a6d8dbd --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/e19cc538d048d969601b941242dd729de7f7dea14a403bbe2ff5e134647aa10d.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_adapt_backend_audit_api_md", "label": "adapt-backend-audit-api.md", "file_type": "document", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "source_location": "L1"}, {"id": "prompt_adapt_backend_audit_api_\u062a\u0637\u0628\u06cc\u0642_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0628\u0627_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_api_\u0628\u0631\u0646\u0686_backend_audit", "label": "\u062a\u0637\u0628\u06cc\u0642 \u0633\u0627\u06cc\u062a \u0639\u0645\u0648\u0645\u06cc \u0628\u0627 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a API \u0628\u0631\u0646\u0686 `backend-audit`", "file_type": "document", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "source_location": "L1"}, {"id": "prompt_adapt_backend_audit_api_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "source_location": "L7"}, {"id": "prompt_adapt_backend_audit_api_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "source_location": "L11"}, {"id": "prompt_adapt_backend_audit_api_\u062c\u062f\u0648\u0644_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_api_\u0645\u0631\u062a\u0628\u0637_\u0628\u0627_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", "label": "\u062c\u062f\u0648\u0644 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a API \u0645\u0631\u062a\u0628\u0637 \u0628\u0627 \u0633\u0627\u06cc\u062a \u0639\u0645\u0648\u0645\u06cc", "file_type": "document", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "source_location": "L15"}, {"id": "prompt_adapt_backend_audit_api_\u0645\u0634\u06a9\u0644_\u0627\u0635\u0644\u06cc_rotation_\u062a\u0648\u06a9\u0646_refresh_post_oauth_token_refresh", "label": "\ud83d\udd34 \u0645\u0634\u06a9\u0644 \u0627\u0635\u0644\u06cc: rotation \u062a\u0648\u06a9\u0646 refresh (`POST /oauth/token/refresh`)", "file_type": "document", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "source_location": "L24"}, {"id": "prompt_adapt_backend_audit_api_\u0631\u0641\u062a\u0627\u0631_\u062c\u062f\u06cc\u062f_backend", "label": "\u0631\u0641\u062a\u0627\u0631 \u062c\u062f\u06cc\u062f backend", "file_type": "document", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "source_location": "L26"}, {"id": "prompt_adapt_backend_audit_api_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_nobat724_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_lib_servertoken_js", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc nobat724 (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc \u2014 `lib/serverToken.js`)", "file_type": "document", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "source_location": "L37"}, {"id": "prompt_adapt_backend_audit_api_\u0686\u0631\u0627_\u0645\u06cc_\u0634\u06a9\u0646\u062f", "label": "\u0686\u0631\u0627 \u0645\u06cc\u200c\u0634\u06a9\u0646\u062f", "file_type": "document", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "source_location": "L55"}, {"id": "prompt_adapt_backend_audit_api_\u0648\u0638\u06cc\u0641\u0647_\u06f1_\u062d\u0644_rotation_\u06cc\u06a9\u06cc_\u0627\u0632_\u062f\u0648_\u0645\u0633\u06cc\u0631_\u0645\u0633\u06cc\u0631_a_\u062a\u0648\u0635\u06cc\u0647_\u0645\u06cc_\u0634\u0648\u062f", "label": "\u0648\u0638\u06cc\u0641\u0647 \u06f1 \u2014 \u062d\u0644 rotation (\u06cc\u06a9\u06cc \u0627\u0632 \u062f\u0648 \u0645\u0633\u06cc\u0631\u061b \u0645\u0633\u06cc\u0631 A \u062a\u0648\u0635\u06cc\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f)", "file_type": "document", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "source_location": "L61"}, {"id": "prompt_adapt_backend_audit_api_\u0648\u0638\u06cc\u0641\u0647_\u06f2_\u0635\u0641\u062d\u0647_\u0628\u0646\u062f\u06cc_\u0646\u0638\u0631\u0627\u062a_get_api_v1_comments_uuid", "label": "\ud83d\udfe1 \u0648\u0638\u06cc\u0641\u0647 \u06f2 \u2014 \u0635\u0641\u062d\u0647\u200c\u0628\u0646\u062f\u06cc \u0646\u0638\u0631\u0627\u062a (`GET /api/v1/comments/{uuid}`)", "file_type": "document", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "source_location": "L94"}, {"id": "prompt_adapt_backend_audit_api_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_app_doctor_slug_page_js", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (`app/doctor/[slug]/page.js`)", "file_type": "document", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "source_location": "L96"}, {"id": "prompt_adapt_backend_audit_api_\u062a\u063a\u06cc\u06cc\u0631", "label": "\u062a\u063a\u06cc\u06cc\u0631", "file_type": "document", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "source_location": "L103"}, {"id": "prompt_adapt_backend_audit_api_\u0648\u0638\u06cc\u0641\u0647", "label": "\u0648\u0638\u06cc\u0641\u0647", "file_type": "document", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "source_location": "L106"}, {"id": "prompt_adapt_backend_audit_api_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "source_location": "L111"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_adapt_backend_audit_api_md", "target": "prompt_adapt_backend_audit_api_\u062a\u0637\u0628\u06cc\u0642_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0628\u0627_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_api_\u0628\u0631\u0646\u0686_backend_audit", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_adapt_backend_audit_api_\u062a\u0637\u0628\u06cc\u0642_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0628\u0627_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_api_\u0628\u0631\u0646\u0686_backend_audit", "target": "prompt_adapt_backend_audit_api_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "source_location": "L7", "weight": 1.0}, {"source": "prompt_adapt_backend_audit_api_\u062a\u0637\u0628\u06cc\u0642_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0628\u0627_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_api_\u0628\u0631\u0646\u0686_backend_audit", "target": "prompt_adapt_backend_audit_api_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "source_location": "L11", "weight": 1.0}, {"source": "prompt_adapt_backend_audit_api_\u062a\u0637\u0628\u06cc\u0642_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0628\u0627_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_api_\u0628\u0631\u0646\u0686_backend_audit", "target": "prompt_adapt_backend_audit_api_\u062c\u062f\u0648\u0644_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_api_\u0645\u0631\u062a\u0628\u0637_\u0628\u0627_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "source_location": "L15", "weight": 1.0}, {"source": "prompt_adapt_backend_audit_api_\u062a\u0637\u0628\u06cc\u0642_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0628\u0627_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_api_\u0628\u0631\u0646\u0686_backend_audit", "target": "prompt_adapt_backend_audit_api_\u0645\u0634\u06a9\u0644_\u0627\u0635\u0644\u06cc_rotation_\u062a\u0648\u06a9\u0646_refresh_post_oauth_token_refresh", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "source_location": "L24", "weight": 1.0}, {"source": "prompt_adapt_backend_audit_api_\u0645\u0634\u06a9\u0644_\u0627\u0635\u0644\u06cc_rotation_\u062a\u0648\u06a9\u0646_refresh_post_oauth_token_refresh", "target": "prompt_adapt_backend_audit_api_\u0631\u0641\u062a\u0627\u0631_\u062c\u062f\u06cc\u062f_backend", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "source_location": "L26", "weight": 1.0}, {"source": "prompt_adapt_backend_audit_api_\u0645\u0634\u06a9\u0644_\u0627\u0635\u0644\u06cc_rotation_\u062a\u0648\u06a9\u0646_refresh_post_oauth_token_refresh", "target": "prompt_adapt_backend_audit_api_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_nobat724_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_lib_servertoken_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "source_location": "L37", "weight": 1.0}, {"source": "prompt_adapt_backend_audit_api_\u0645\u0634\u06a9\u0644_\u0627\u0635\u0644\u06cc_rotation_\u062a\u0648\u06a9\u0646_refresh_post_oauth_token_refresh", "target": "prompt_adapt_backend_audit_api_\u0686\u0631\u0627_\u0645\u06cc_\u0634\u06a9\u0646\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "source_location": "L55", "weight": 1.0}, {"source": "prompt_adapt_backend_audit_api_\u0645\u0634\u06a9\u0644_\u0627\u0635\u0644\u06cc_rotation_\u062a\u0648\u06a9\u0646_refresh_post_oauth_token_refresh", "target": "prompt_adapt_backend_audit_api_\u0648\u0638\u06cc\u0641\u0647_\u06f1_\u062d\u0644_rotation_\u06cc\u06a9\u06cc_\u0627\u0632_\u062f\u0648_\u0645\u0633\u06cc\u0631_\u0645\u0633\u06cc\u0631_a_\u062a\u0648\u0635\u06cc\u0647_\u0645\u06cc_\u0634\u0648\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "source_location": "L61", "weight": 1.0}, {"source": "prompt_adapt_backend_audit_api_\u062a\u0637\u0628\u06cc\u0642_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0628\u0627_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_api_\u0628\u0631\u0646\u0686_backend_audit", "target": "prompt_adapt_backend_audit_api_\u0648\u0638\u06cc\u0641\u0647_\u06f2_\u0635\u0641\u062d\u0647_\u0628\u0646\u062f\u06cc_\u0646\u0638\u0631\u0627\u062a_get_api_v1_comments_uuid", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "source_location": "L94", "weight": 1.0}, {"source": "prompt_adapt_backend_audit_api_\u0648\u0638\u06cc\u0641\u0647_\u06f2_\u0635\u0641\u062d\u0647_\u0628\u0646\u062f\u06cc_\u0646\u0638\u0631\u0627\u062a_get_api_v1_comments_uuid", "target": "prompt_adapt_backend_audit_api_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_app_doctor_slug_page_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "source_location": "L96", "weight": 1.0}, {"source": "prompt_adapt_backend_audit_api_\u0648\u0638\u06cc\u0641\u0647_\u06f2_\u0635\u0641\u062d\u0647_\u0628\u0646\u062f\u06cc_\u0646\u0638\u0631\u0627\u062a_get_api_v1_comments_uuid", "target": "prompt_adapt_backend_audit_api_\u062a\u063a\u06cc\u06cc\u0631", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "source_location": "L103", "weight": 1.0}, {"source": "prompt_adapt_backend_audit_api_\u0648\u0638\u06cc\u0641\u0647_\u06f2_\u0635\u0641\u062d\u0647_\u0628\u0646\u062f\u06cc_\u0646\u0638\u0631\u0627\u062a_get_api_v1_comments_uuid", "target": "prompt_adapt_backend_audit_api_\u0648\u0638\u06cc\u0641\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "source_location": "L106", "weight": 1.0}, {"source": "prompt_adapt_backend_audit_api_\u062a\u0637\u0628\u06cc\u0642_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0628\u0627_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_api_\u0628\u0631\u0646\u0686_backend_audit", "target": "prompt_adapt_backend_audit_api_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/adapt-backend-audit-api.md", "source_location": "L111", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/e32e2b6305216aa1906de8213f235c5648f3c523f99300c9e27f024109208482.json b/graphify-out/cache/ast/v0.8.44/e32e2b6305216aa1906de8213f235c5648f3c523f99300c9e27f024109208482.json new file mode 100644 index 0000000..0f9cc78 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/e32e2b6305216aa1906de8213f235c5648f3c523f99300c9e27f024109208482.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_md", "label": "CLAUDE.md", "file_type": "document", "source_file": "CLAUDE.md", "source_location": "L1"}, {"id": "nobat724_front_claude_claude_md", "label": "CLAUDE.md", "file_type": "document", "source_file": "CLAUDE.md", "source_location": "L1"}, {"id": "nobat724_front_claude_commands", "label": "Commands", "file_type": "document", "source_file": "CLAUDE.md", "source_location": "L5"}, {"id": "nobat724_front_claude_environment_variables", "label": "Environment Variables", "file_type": "document", "source_file": "CLAUDE.md", "source_location": "L16"}, {"id": "nobat724_front_claude_architecture_overview", "label": "Architecture Overview", "file_type": "document", "source_file": "CLAUDE.md", "source_location": "L27"}, {"id": "nobat724_front_claude_multi_domain_system_core_concept", "label": "Multi-Domain System (Core Concept)", "file_type": "document", "source_file": "CLAUDE.md", "source_location": "L31"}, {"id": "nobat724_front_claude_page_metadata_pattern", "label": "Page Metadata Pattern", "file_type": "document", "source_file": "CLAUDE.md", "source_location": "L41"}, {"id": "nobat724_front_claude_data_fetching", "label": "Data Fetching", "file_type": "document", "source_file": "CLAUDE.md", "source_location": "L62"}, {"id": "nobat724_front_claude_authentication_authorization", "label": "Authentication & Authorization", "file_type": "document", "source_file": "CLAUDE.md", "source_location": "L72"}, {"id": "nobat724_front_claude_styling", "label": "Styling", "file_type": "document", "source_file": "CLAUDE.md", "source_location": "L82"}, {"id": "nobat724_front_claude_routing_structure", "label": "Routing Structure", "file_type": "document", "source_file": "CLAUDE.md", "source_location": "L90"}, {"id": "nobat724_front_claude_key_data_files", "label": "Key Data Files", "file_type": "document", "source_file": "CLAUDE.md", "source_location": "L108"}, {"id": "nobat724_front_claude_doctor_clinic_slugs", "label": "Doctor & Clinic Slugs", "file_type": "document", "source_file": "CLAUDE.md", "source_location": "L114"}, {"id": "nobat724_front_claude_json_ld_structured_data", "label": "JSON-LD Structured Data", "file_type": "document", "source_file": "CLAUDE.md", "source_location": "L118"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_md", "target": "nobat724_front_claude_claude_md", "relation": "contains", "confidence": "EXTRACTED", "source_file": "CLAUDE.md", "source_location": "L1", "weight": 1.0}, {"source": "nobat724_front_claude_claude_md", "target": "nobat724_front_claude_commands", "relation": "contains", "confidence": "EXTRACTED", "source_file": "CLAUDE.md", "source_location": "L5", "weight": 1.0}, {"source": "nobat724_front_claude_claude_md", "target": "nobat724_front_claude_environment_variables", "relation": "contains", "confidence": "EXTRACTED", "source_file": "CLAUDE.md", "source_location": "L16", "weight": 1.0}, {"source": "nobat724_front_claude_claude_md", "target": "nobat724_front_claude_architecture_overview", "relation": "contains", "confidence": "EXTRACTED", "source_file": "CLAUDE.md", "source_location": "L27", "weight": 1.0}, {"source": "nobat724_front_claude_architecture_overview", "target": "nobat724_front_claude_multi_domain_system_core_concept", "relation": "contains", "confidence": "EXTRACTED", "source_file": "CLAUDE.md", "source_location": "L31", "weight": 1.0}, {"source": "nobat724_front_claude_architecture_overview", "target": "nobat724_front_claude_page_metadata_pattern", "relation": "contains", "confidence": "EXTRACTED", "source_file": "CLAUDE.md", "source_location": "L41", "weight": 1.0}, {"source": "nobat724_front_claude_architecture_overview", "target": "nobat724_front_claude_data_fetching", "relation": "contains", "confidence": "EXTRACTED", "source_file": "CLAUDE.md", "source_location": "L62", "weight": 1.0}, {"source": "nobat724_front_claude_architecture_overview", "target": "nobat724_front_claude_authentication_authorization", "relation": "contains", "confidence": "EXTRACTED", "source_file": "CLAUDE.md", "source_location": "L72", "weight": 1.0}, {"source": "nobat724_front_claude_architecture_overview", "target": "nobat724_front_claude_styling", "relation": "contains", "confidence": "EXTRACTED", "source_file": "CLAUDE.md", "source_location": "L82", "weight": 1.0}, {"source": "nobat724_front_claude_architecture_overview", "target": "nobat724_front_claude_routing_structure", "relation": "contains", "confidence": "EXTRACTED", "source_file": "CLAUDE.md", "source_location": "L90", "weight": 1.0}, {"source": "nobat724_front_claude_architecture_overview", "target": "nobat724_front_claude_key_data_files", "relation": "contains", "confidence": "EXTRACTED", "source_file": "CLAUDE.md", "source_location": "L108", "weight": 1.0}, {"source": "nobat724_front_claude_architecture_overview", "target": "nobat724_front_claude_doctor_clinic_slugs", "relation": "contains", "confidence": "EXTRACTED", "source_file": "CLAUDE.md", "source_location": "L114", "weight": 1.0}, {"source": "nobat724_front_claude_architecture_overview", "target": "nobat724_front_claude_json_ld_structured_data", "relation": "contains", "confidence": "EXTRACTED", "source_file": "CLAUDE.md", "source_location": "L118", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/e628c04749776a9b8042e5528f915660859a7cdfb6dc12d903cb1b2a73cb24ba.json b/graphify-out/cache/ast/v0.8.44/e628c04749776a9b8042e5528f915660859a7cdfb6dc12d903cb1b2a73cb24ba.json new file mode 100644 index 0000000..6a25d83 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/e628c04749776a9b8042e5528f915660859a7cdfb6dc12d903cb1b2a73cb24ba.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_appointment_calendar_disabled_dates_md", "label": "appointment-calendar-disabled-dates.md", "file_type": "document", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "source_location": "L1"}, {"id": "prompt_appointment_calendar_disabled_dates_\u0646\u0645\u0627\u06cc\u0634_\u0631\u0648\u0632\u0647\u0627\u06cc_\u062a\u0639\u0637\u06cc\u0644_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0627\u0646\u062a\u062e\u0627\u0628_\u0631\u0648\u06cc_\u062a\u0642\u0648\u06cc\u0645_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a_\u0627\u062d\u062a\u0631\u0627\u0645_\u0628\u0647_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648", "label": "\u0646\u0645\u0627\u06cc\u0634 \u0631\u0648\u0632\u0647\u0627\u06cc \u062a\u0639\u0637\u06cc\u0644/\u063a\u06cc\u0631\u0642\u0627\u0628\u0644\u200c\u0627\u0646\u062a\u062e\u0627\u0628 \u0631\u0648\u06cc \u062a\u0642\u0648\u06cc\u0645 \u0635\u0641\u062d\u0647\u200c\u06cc \u0646\u0648\u0628\u062a + \u0627\u062d\u062a\u0631\u0627\u0645 \u0628\u0647 \u0628\u0627\u0632\u0647\u200c\u06cc \u0631\u0632\u0631\u0648", "file_type": "document", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "source_location": "L1"}, {"id": "prompt_appointment_calendar_disabled_dates_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "source_location": "L3"}, {"id": "prompt_appointment_calendar_disabled_dates_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "source_location": "L11"}, {"id": "prompt_appointment_calendar_disabled_dates_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "source_location": "L15"}, {"id": "prompt_appointment_calendar_disabled_dates_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "source_location": "L19"}, {"id": "prompt_appointment_calendar_disabled_dates_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "file_type": "document", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "source_location": "L30"}, {"id": "prompt_appointment_calendar_disabled_dates_app_appointment_doctorid_page_js_disableddates_\u062e\u0627\u0644\u06cc", "label": "`app/appointment/[doctorId]/page.js` \u2014 disabledDates \u062e\u0627\u0644\u06cc", "file_type": "document", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "source_location": "L32"}, {"id": "prompt_appointment_calendar_disabled_dates_app_component_date_datepicker_index_js_\u0645\u0635\u0631\u0641_disableddates", "label": "`app/component/date/datePicker/index.js` \u2014 \u0645\u0635\u0631\u0641 disabledDates", "file_type": "document", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "source_location": "L46"}, {"id": "prompt_appointment_calendar_disabled_dates_services_response_js_\u062a\u0648\u0627\u0628\u0639_slot_\u0645\u0648\u062c\u0648\u062f", "label": "`services/response.js` \u2014 \u062a\u0648\u0627\u0628\u0639 slot \u0645\u0648\u062c\u0648\u062f", "file_type": "document", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "source_location": "L64"}, {"id": "prompt_appointment_calendar_disabled_dates_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_endpoint_\u062c\u062f\u06cc\u062f_backend_\u0645\u0631\u062c\u0639", "label": "\u0642\u0631\u0627\u0631\u062f\u0627\u062f endpoint \u062c\u062f\u06cc\u062f backend (\u0645\u0631\u062c\u0639)", "file_type": "document", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "source_location": "L71"}, {"id": "prompt_appointment_calendar_disabled_dates_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "source_location": "L92"}, {"id": "prompt_appointment_calendar_disabled_dates_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_getmonthavailability_\u0628\u0647_services_response_js", "label": "\u06f1. \u0627\u0641\u0632\u0648\u062f\u0646 `getMonthAvailability` \u0628\u0647 `services/response.js`", "file_type": "document", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "source_location": "L96"}, {"id": "prompt_appointment_calendar_disabled_dates_\u06f2_\u0644\u0648\u062f_\u062f\u0627\u062f\u0647_\u06cc_\u062f\u0631_\u062f\u0633\u062a\u0631\u0633_\u0628\u0648\u062f\u0646_\u062f\u0631_datepicker_\u0648_disable_\u06a9\u0631\u062f\u0646_\u0631\u0648\u0632\u0647\u0627", "label": "\u06f2. \u0644\u0648\u062f \u062f\u0627\u062f\u0647\u200c\u06cc \u062f\u0631\u200c\u062f\u0633\u062a\u0631\u0633\u200c\u0628\u0648\u062f\u0646 \u062f\u0631 `DatePicker` \u0648 disable\u200c\u06a9\u0631\u062f\u0646 \u0631\u0648\u0632\u0647\u0627", "file_type": "document", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "source_location": "L107"}, {"id": "prompt_appointment_calendar_disabled_dates_\u06f3_\u0647\u0646\u062f\u0644_\u0646\u0627\u0648\u0628\u0631\u06cc_\u0645\u0627\u0647", "label": "\u06f3. \u0647\u0646\u062f\u0644 \u0646\u0627\u0648\u0628\u0631\u06cc \u0645\u0627\u0647", "file_type": "document", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "source_location": "L116"}, {"id": "prompt_appointment_calendar_disabled_dates_\u06f4_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc_\u0648\u0644\u06cc_\u062a\u0648\u0635\u06cc\u0647_\u0634\u062f\u0647_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0636\u0639\u06cc\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u062e\u0627\u0645\u0648\u0634", "label": "\u06f4. (\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc \u0648\u0644\u06cc \u062a\u0648\u0635\u06cc\u0647\u200c\u0634\u062f\u0647) \u0646\u0645\u0627\u06cc\u0634 \u0648\u0636\u0639\u06cc\u062a \u0646\u0648\u0628\u062a\u200c\u062f\u0647\u06cc \u062e\u0627\u0645\u0648\u0634", "file_type": "document", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "source_location": "L120"}, {"id": "prompt_appointment_calendar_disabled_dates_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "source_location": "L124"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_appointment_calendar_disabled_dates_md", "target": "prompt_appointment_calendar_disabled_dates_\u0646\u0645\u0627\u06cc\u0634_\u0631\u0648\u0632\u0647\u0627\u06cc_\u062a\u0639\u0637\u06cc\u0644_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0627\u0646\u062a\u062e\u0627\u0628_\u0631\u0648\u06cc_\u062a\u0642\u0648\u06cc\u0645_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a_\u0627\u062d\u062a\u0631\u0627\u0645_\u0628\u0647_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_appointment_calendar_disabled_dates_\u0646\u0645\u0627\u06cc\u0634_\u0631\u0648\u0632\u0647\u0627\u06cc_\u062a\u0639\u0637\u06cc\u0644_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0627\u0646\u062a\u062e\u0627\u0628_\u0631\u0648\u06cc_\u062a\u0642\u0648\u06cc\u0645_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a_\u0627\u062d\u062a\u0631\u0627\u0645_\u0628\u0647_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648", "target": "prompt_appointment_calendar_disabled_dates_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_appointment_calendar_disabled_dates_\u0646\u0645\u0627\u06cc\u0634_\u0631\u0648\u0632\u0647\u0627\u06cc_\u062a\u0639\u0637\u06cc\u0644_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0627\u0646\u062a\u062e\u0627\u0628_\u0631\u0648\u06cc_\u062a\u0642\u0648\u06cc\u0645_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a_\u0627\u062d\u062a\u0631\u0627\u0645_\u0628\u0647_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648", "target": "prompt_appointment_calendar_disabled_dates_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "source_location": "L11", "weight": 1.0}, {"source": "prompt_appointment_calendar_disabled_dates_\u0646\u0645\u0627\u06cc\u0634_\u0631\u0648\u0632\u0647\u0627\u06cc_\u062a\u0639\u0637\u06cc\u0644_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0627\u0646\u062a\u062e\u0627\u0628_\u0631\u0648\u06cc_\u062a\u0642\u0648\u06cc\u0645_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a_\u0627\u062d\u062a\u0631\u0627\u0645_\u0628\u0647_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648", "target": "prompt_appointment_calendar_disabled_dates_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "source_location": "L15", "weight": 1.0}, {"source": "prompt_appointment_calendar_disabled_dates_\u0646\u0645\u0627\u06cc\u0634_\u0631\u0648\u0632\u0647\u0627\u06cc_\u062a\u0639\u0637\u06cc\u0644_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0627\u0646\u062a\u062e\u0627\u0628_\u0631\u0648\u06cc_\u062a\u0642\u0648\u06cc\u0645_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a_\u0627\u062d\u062a\u0631\u0627\u0645_\u0628\u0647_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648", "target": "prompt_appointment_calendar_disabled_dates_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "source_location": "L19", "weight": 1.0}, {"source": "prompt_appointment_calendar_disabled_dates_\u0646\u0645\u0627\u06cc\u0634_\u0631\u0648\u0632\u0647\u0627\u06cc_\u062a\u0639\u0637\u06cc\u0644_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0627\u0646\u062a\u062e\u0627\u0628_\u0631\u0648\u06cc_\u062a\u0642\u0648\u06cc\u0645_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a_\u0627\u062d\u062a\u0631\u0627\u0645_\u0628\u0647_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648", "target": "prompt_appointment_calendar_disabled_dates_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "source_location": "L30", "weight": 1.0}, {"source": "prompt_appointment_calendar_disabled_dates_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_appointment_calendar_disabled_dates_app_appointment_doctorid_page_js_disableddates_\u062e\u0627\u0644\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "source_location": "L32", "weight": 1.0}, {"source": "prompt_appointment_calendar_disabled_dates_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_appointment_calendar_disabled_dates_app_component_date_datepicker_index_js_\u0645\u0635\u0631\u0641_disableddates", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "source_location": "L46", "weight": 1.0}, {"source": "prompt_appointment_calendar_disabled_dates_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_appointment_calendar_disabled_dates_services_response_js_\u062a\u0648\u0627\u0628\u0639_slot_\u0645\u0648\u062c\u0648\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "source_location": "L64", "weight": 1.0}, {"source": "prompt_appointment_calendar_disabled_dates_\u0646\u0645\u0627\u06cc\u0634_\u0631\u0648\u0632\u0647\u0627\u06cc_\u062a\u0639\u0637\u06cc\u0644_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0627\u0646\u062a\u062e\u0627\u0628_\u0631\u0648\u06cc_\u062a\u0642\u0648\u06cc\u0645_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a_\u0627\u062d\u062a\u0631\u0627\u0645_\u0628\u0647_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648", "target": "prompt_appointment_calendar_disabled_dates_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_endpoint_\u062c\u062f\u06cc\u062f_backend_\u0645\u0631\u062c\u0639", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "source_location": "L71", "weight": 1.0}, {"source": "prompt_appointment_calendar_disabled_dates_\u0646\u0645\u0627\u06cc\u0634_\u0631\u0648\u0632\u0647\u0627\u06cc_\u062a\u0639\u0637\u06cc\u0644_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0627\u0646\u062a\u062e\u0627\u0628_\u0631\u0648\u06cc_\u062a\u0642\u0648\u06cc\u0645_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a_\u0627\u062d\u062a\u0631\u0627\u0645_\u0628\u0647_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648", "target": "prompt_appointment_calendar_disabled_dates_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "source_location": "L92", "weight": 1.0}, {"source": "prompt_appointment_calendar_disabled_dates_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_appointment_calendar_disabled_dates_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_getmonthavailability_\u0628\u0647_services_response_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "source_location": "L96", "weight": 1.0}, {"source": "prompt_appointment_calendar_disabled_dates_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_appointment_calendar_disabled_dates_\u06f2_\u0644\u0648\u062f_\u062f\u0627\u062f\u0647_\u06cc_\u062f\u0631_\u062f\u0633\u062a\u0631\u0633_\u0628\u0648\u062f\u0646_\u062f\u0631_datepicker_\u0648_disable_\u06a9\u0631\u062f\u0646_\u0631\u0648\u0632\u0647\u0627", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "source_location": "L107", "weight": 1.0}, {"source": "prompt_appointment_calendar_disabled_dates_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_appointment_calendar_disabled_dates_\u06f3_\u0647\u0646\u062f\u0644_\u0646\u0627\u0648\u0628\u0631\u06cc_\u0645\u0627\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "source_location": "L116", "weight": 1.0}, {"source": "prompt_appointment_calendar_disabled_dates_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_appointment_calendar_disabled_dates_\u06f4_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc_\u0648\u0644\u06cc_\u062a\u0648\u0635\u06cc\u0647_\u0634\u062f\u0647_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0636\u0639\u06cc\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u062e\u0627\u0645\u0648\u0634", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "source_location": "L120", "weight": 1.0}, {"source": "prompt_appointment_calendar_disabled_dates_\u0646\u0645\u0627\u06cc\u0634_\u0631\u0648\u0632\u0647\u0627\u06cc_\u062a\u0639\u0637\u06cc\u0644_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0627\u0646\u062a\u062e\u0627\u0628_\u0631\u0648\u06cc_\u062a\u0642\u0648\u06cc\u0645_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a_\u0627\u062d\u062a\u0631\u0627\u0645_\u0628\u0647_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648", "target": "prompt_appointment_calendar_disabled_dates_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", "source_location": "L124", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/e6cd614d25692aeefc353b2db4362ea2a269d2fe652151f227b6b855d33f5be3.json b/graphify-out/cache/ast/v0.8.44/e6cd614d25692aeefc353b2db4362ea2a269d2fe652151f227b6b855d33f5be3.json new file mode 100644 index 0000000..6397788 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/e6cd614d25692aeefc353b2db4362ea2a269d2fe652151f227b6b855d33f5be3.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_dashboard_tabs_real_data_md", "label": "dashboard-tabs-real-data.md", "file_type": "document", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "source_location": "L1"}, {"id": "prompt_dashboard_tabs_real_data_\u0627\u062a\u0635\u0627\u0644_\u062f\u0642\u06cc\u0642_\u0647\u0645\u0647_\u06cc_\u062a\u0628_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_backend", "label": "\u0627\u062a\u0635\u0627\u0644 \u062f\u0642\u06cc\u0642 \u0647\u0645\u0647\u200c\u06cc \u062a\u0628\u200c\u0647\u0627\u06cc \u062f\u0627\u0634\u0628\u0648\u0631\u062f \u06a9\u0627\u0631\u0628\u0631 \u0628\u0647 \u062f\u0627\u062f\u0647\u200c\u06cc \u0648\u0627\u0642\u0639\u06cc backend", "file_type": "document", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "source_location": "L1"}, {"id": "prompt_dashboard_tabs_real_data_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "source_location": "L3"}, {"id": "prompt_dashboard_tabs_real_data_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "source_location": "L7"}, {"id": "prompt_dashboard_tabs_real_data_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "source_location": "L23"}, {"id": "prompt_dashboard_tabs_real_data_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "source_location": "L29"}, {"id": "prompt_dashboard_tabs_real_data_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "file_type": "document", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "source_location": "L44"}, {"id": "prompt_dashboard_tabs_real_data_\u0645\u067e\u06cc\u0646\u06af_\u063a\u0644\u0637_\u0628\u06cc\u0645\u0647_\u062f\u0631_information_index_js", "label": "\u0645\u067e\u06cc\u0646\u06af \u063a\u0644\u0637 \u0628\u06cc\u0645\u0647 \u062f\u0631 `information/index.js`", "file_type": "document", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "source_location": "L46"}, {"id": "prompt_dashboard_tabs_real_data_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_backend_\u0627\u0632_user_profile_md_\u0648_entity_toarray", "label": "\u0642\u0631\u0627\u0631\u062f\u0627\u062f backend (\u0627\u0632 `user-profile.md` \u0648 entity `toArray`)", "file_type": "document", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "source_location": "L60"}, {"id": "prompt_dashboard_tabs_real_data_\u0630\u062e\u06cc\u0631\u0647_\u062f\u0631_detailuser_index_js", "label": "\u0630\u062e\u06cc\u0631\u0647 \u062f\u0631 `detailUser/index.js`", "file_type": "document", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "source_location": "L76"}, {"id": "prompt_dashboard_tabs_real_data_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "source_location": "L86"}, {"id": "prompt_dashboard_tabs_real_data_\u06f1_\u0645\u067e\u06cc\u0646\u06af_\u062f\u0631\u0633\u062a_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0647\u0646\u06af\u0627\u0645_\u0644\u0648\u062f_information_index_js", "label": "\u06f1. \u0645\u067e\u06cc\u0646\u06af \u062f\u0631\u0633\u062a \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u0647\u0646\u06af\u0627\u0645 \u0644\u0648\u062f (`information/index.js`)", "file_type": "document", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "source_location": "L88"}, {"id": "prompt_dashboard_tabs_real_data_\u06f2_\u062a\u0623\u06cc\u06cc\u062f_\u0630\u062e\u06cc\u0631\u0647_\u0633\u0648\u0627\u0628\u0642_\u067e\u0632\u0634\u06a9\u06cc_other", "label": "\u06f2. \u062a\u0623\u06cc\u06cc\u062f \u0630\u062e\u06cc\u0631\u0647 (\u0633\u0648\u0627\u0628\u0642 \u067e\u0632\u0634\u06a9\u06cc \u2192 `other`)", "file_type": "document", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "source_location": "L115"}, {"id": "prompt_dashboard_tabs_real_data_\u06f3_\u062a\u0623\u06cc\u06cc\u062f_\u062a\u0628_\u0647\u0627\u06cc_\u0646\u0648\u0628\u062a_\u0647\u0627_\u0648_\u062a\u0631\u0627\u06a9\u0646\u0634_\u0647\u0627", "label": "\u06f3. \u062a\u0623\u06cc\u06cc\u062f \u062a\u0628\u200c\u0647\u0627\u06cc \u0646\u0648\u0628\u062a\u200c\u0647\u0627 \u0648 \u062a\u0631\u0627\u06a9\u0646\u0634\u200c\u0647\u0627", "file_type": "document", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "source_location": "L121"}, {"id": "prompt_dashboard_tabs_real_data_\u06f4_\u062a\u0628_\u0647\u0627\u06cc_\u0646\u0638\u0631\u0627\u062a_\u0648_\u067e\u06cc\u0627\u0645_\u0647\u0627_\u0628\u062f\u0648\u0646_backend", "label": "\u06f4. \u062a\u0628\u200c\u0647\u0627\u06cc \u0646\u0638\u0631\u0627\u062a \u0648 \u067e\u06cc\u0627\u0645\u200c\u0647\u0627 (\u0628\u062f\u0648\u0646 backend)", "file_type": "document", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "source_location": "L127"}, {"id": "prompt_dashboard_tabs_real_data_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "source_location": "L132"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_dashboard_tabs_real_data_md", "target": "prompt_dashboard_tabs_real_data_\u0627\u062a\u0635\u0627\u0644_\u062f\u0642\u06cc\u0642_\u0647\u0645\u0647_\u06cc_\u062a\u0628_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_backend", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_dashboard_tabs_real_data_\u0627\u062a\u0635\u0627\u0644_\u062f\u0642\u06cc\u0642_\u0647\u0645\u0647_\u06cc_\u062a\u0628_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_backend", "target": "prompt_dashboard_tabs_real_data_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_dashboard_tabs_real_data_\u0627\u062a\u0635\u0627\u0644_\u062f\u0642\u06cc\u0642_\u0647\u0645\u0647_\u06cc_\u062a\u0628_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_backend", "target": "prompt_dashboard_tabs_real_data_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "source_location": "L7", "weight": 1.0}, {"source": "prompt_dashboard_tabs_real_data_\u0627\u062a\u0635\u0627\u0644_\u062f\u0642\u06cc\u0642_\u0647\u0645\u0647_\u06cc_\u062a\u0628_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_backend", "target": "prompt_dashboard_tabs_real_data_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "source_location": "L23", "weight": 1.0}, {"source": "prompt_dashboard_tabs_real_data_\u0627\u062a\u0635\u0627\u0644_\u062f\u0642\u06cc\u0642_\u0647\u0645\u0647_\u06cc_\u062a\u0628_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_backend", "target": "prompt_dashboard_tabs_real_data_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "source_location": "L29", "weight": 1.0}, {"source": "prompt_dashboard_tabs_real_data_\u0627\u062a\u0635\u0627\u0644_\u062f\u0642\u06cc\u0642_\u0647\u0645\u0647_\u06cc_\u062a\u0628_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_backend", "target": "prompt_dashboard_tabs_real_data_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "source_location": "L44", "weight": 1.0}, {"source": "prompt_dashboard_tabs_real_data_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_dashboard_tabs_real_data_\u0645\u067e\u06cc\u0646\u06af_\u063a\u0644\u0637_\u0628\u06cc\u0645\u0647_\u062f\u0631_information_index_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "source_location": "L46", "weight": 1.0}, {"source": "prompt_dashboard_tabs_real_data_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_dashboard_tabs_real_data_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_backend_\u0627\u0632_user_profile_md_\u0648_entity_toarray", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "source_location": "L60", "weight": 1.0}, {"source": "prompt_dashboard_tabs_real_data_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_dashboard_tabs_real_data_\u0630\u062e\u06cc\u0631\u0647_\u062f\u0631_detailuser_index_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "source_location": "L76", "weight": 1.0}, {"source": "prompt_dashboard_tabs_real_data_\u0627\u062a\u0635\u0627\u0644_\u062f\u0642\u06cc\u0642_\u0647\u0645\u0647_\u06cc_\u062a\u0628_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_backend", "target": "prompt_dashboard_tabs_real_data_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "source_location": "L86", "weight": 1.0}, {"source": "prompt_dashboard_tabs_real_data_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_dashboard_tabs_real_data_\u06f1_\u0645\u067e\u06cc\u0646\u06af_\u062f\u0631\u0633\u062a_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0647\u0646\u06af\u0627\u0645_\u0644\u0648\u062f_information_index_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "source_location": "L88", "weight": 1.0}, {"source": "prompt_dashboard_tabs_real_data_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_dashboard_tabs_real_data_\u06f2_\u062a\u0623\u06cc\u06cc\u062f_\u0630\u062e\u06cc\u0631\u0647_\u0633\u0648\u0627\u0628\u0642_\u067e\u0632\u0634\u06a9\u06cc_other", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "source_location": "L115", "weight": 1.0}, {"source": "prompt_dashboard_tabs_real_data_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_dashboard_tabs_real_data_\u06f3_\u062a\u0623\u06cc\u06cc\u062f_\u062a\u0628_\u0647\u0627\u06cc_\u0646\u0648\u0628\u062a_\u0647\u0627_\u0648_\u062a\u0631\u0627\u06a9\u0646\u0634_\u0647\u0627", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "source_location": "L121", "weight": 1.0}, {"source": "prompt_dashboard_tabs_real_data_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_dashboard_tabs_real_data_\u06f4_\u062a\u0628_\u0647\u0627\u06cc_\u0646\u0638\u0631\u0627\u062a_\u0648_\u067e\u06cc\u0627\u0645_\u0647\u0627_\u0628\u062f\u0648\u0646_backend", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "source_location": "L127", "weight": 1.0}, {"source": "prompt_dashboard_tabs_real_data_\u0627\u062a\u0635\u0627\u0644_\u062f\u0642\u06cc\u0642_\u0647\u0645\u0647_\u06cc_\u062a\u0628_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_backend", "target": "prompt_dashboard_tabs_real_data_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/dashboard-tabs-real-data.md", "source_location": "L132", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/eb138f4534fc1433698377ae9673b1e22b8627dd564124c895efaf3bd58b64fe.json b/graphify-out/cache/ast/v0.8.44/eb138f4534fc1433698377ae9673b1e22b8627dd564124c895efaf3bd58b64fe.json new file mode 100644 index 0000000..9b4c462 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/eb138f4534fc1433698377ae9673b1e22b8627dd564124c895efaf3bd58b64fe.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_clinic_seo_schema_knowledge_panel_md", "label": "clinic-seo-schema-knowledge-panel.md", "file_type": "document", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "source_location": "L1"}, {"id": "prompt_clinic_seo_schema_knowledge_panel_schema_org_\u06a9\u0627\u0645\u0644_\u0648_knowledge_panel_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", "label": "Schema.org \u06a9\u0627\u0645\u0644 \u0648 Knowledge Panel \u0628\u0631\u0627\u06cc \u0635\u0641\u062d\u0647 \u06a9\u0644\u06cc\u0646\u06cc\u06a9", "file_type": "document", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "source_location": "L1"}, {"id": "prompt_clinic_seo_schema_knowledge_panel_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "source_location": "L3"}, {"id": "prompt_clinic_seo_schema_knowledge_panel_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "source_location": "L7"}, {"id": "prompt_clinic_seo_schema_knowledge_panel_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "source_location": "L13"}, {"id": "prompt_clinic_seo_schema_knowledge_panel_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "source_location": "L38"}, {"id": "prompt_clinic_seo_schema_knowledge_panel_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_api_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc API \u06a9\u0644\u06cc\u0646\u06cc\u06a9", "file_type": "document", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "source_location": "L46"}, {"id": "prompt_clinic_seo_schema_knowledge_panel_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "source_location": "L85"}, {"id": "prompt_clinic_seo_schema_knowledge_panel_\u06f1_\u0628\u0647\u0628\u0648\u062f_generatemetadata", "label": "\u06f1. \u0628\u0647\u0628\u0648\u062f `generateMetadata`", "file_type": "document", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "source_location": "L87"}, {"id": "prompt_clinic_seo_schema_knowledge_panel_\u06f2_\u062a\u0627\u0628\u0639_\u06a9\u0645\u06a9\u06cc_computeclinicrating", "label": "\u06f2. \u062a\u0627\u0628\u0639 \u06a9\u0645\u06a9\u06cc `computeClinicRating`", "file_type": "document", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "source_location": "L114"}, {"id": "prompt_clinic_seo_schema_knowledge_panel_\u06f3_\u0633\u0627\u062e\u062a_json_ld_\u06a9\u0627\u0645\u0644", "label": "\u06f3. \u0633\u0627\u062e\u062a JSON-LD \u06a9\u0627\u0645\u0644", "file_type": "document", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "source_location": "L133"}, {"id": "prompt_clinic_seo_schema_knowledge_panel_\u06f4_\u0628\u0647_\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc_breadcrumb", "label": "\u06f4. \u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc Breadcrumb", "file_type": "document", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "source_location": "L217"}, {"id": "prompt_clinic_seo_schema_knowledge_panel_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "source_location": "L250"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_clinic_seo_schema_knowledge_panel_md", "target": "prompt_clinic_seo_schema_knowledge_panel_schema_org_\u06a9\u0627\u0645\u0644_\u0648_knowledge_panel_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_clinic_seo_schema_knowledge_panel_schema_org_\u06a9\u0627\u0645\u0644_\u0648_knowledge_panel_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", "target": "prompt_clinic_seo_schema_knowledge_panel_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_clinic_seo_schema_knowledge_panel_schema_org_\u06a9\u0627\u0645\u0644_\u0648_knowledge_panel_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", "target": "prompt_clinic_seo_schema_knowledge_panel_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "source_location": "L7", "weight": 1.0}, {"source": "prompt_clinic_seo_schema_knowledge_panel_schema_org_\u06a9\u0627\u0645\u0644_\u0648_knowledge_panel_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", "target": "prompt_clinic_seo_schema_knowledge_panel_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "source_location": "L13", "weight": 1.0}, {"source": "prompt_clinic_seo_schema_knowledge_panel_schema_org_\u06a9\u0627\u0645\u0644_\u0648_knowledge_panel_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", "target": "prompt_clinic_seo_schema_knowledge_panel_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "source_location": "L38", "weight": 1.0}, {"source": "prompt_clinic_seo_schema_knowledge_panel_schema_org_\u06a9\u0627\u0645\u0644_\u0648_knowledge_panel_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", "target": "prompt_clinic_seo_schema_knowledge_panel_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_api_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "source_location": "L46", "weight": 1.0}, {"source": "prompt_clinic_seo_schema_knowledge_panel_schema_org_\u06a9\u0627\u0645\u0644_\u0648_knowledge_panel_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", "target": "prompt_clinic_seo_schema_knowledge_panel_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "source_location": "L85", "weight": 1.0}, {"source": "prompt_clinic_seo_schema_knowledge_panel_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_clinic_seo_schema_knowledge_panel_\u06f1_\u0628\u0647\u0628\u0648\u062f_generatemetadata", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "source_location": "L87", "weight": 1.0}, {"source": "prompt_clinic_seo_schema_knowledge_panel_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_clinic_seo_schema_knowledge_panel_\u06f2_\u062a\u0627\u0628\u0639_\u06a9\u0645\u06a9\u06cc_computeclinicrating", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "source_location": "L114", "weight": 1.0}, {"source": "prompt_clinic_seo_schema_knowledge_panel_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_clinic_seo_schema_knowledge_panel_\u06f3_\u0633\u0627\u062e\u062a_json_ld_\u06a9\u0627\u0645\u0644", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "source_location": "L133", "weight": 1.0}, {"source": "prompt_clinic_seo_schema_knowledge_panel_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_clinic_seo_schema_knowledge_panel_\u06f4_\u0628\u0647_\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc_breadcrumb", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "source_location": "L217", "weight": 1.0}, {"source": "prompt_clinic_seo_schema_knowledge_panel_schema_org_\u06a9\u0627\u0645\u0644_\u0648_knowledge_panel_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", "target": "prompt_clinic_seo_schema_knowledge_panel_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", "source_location": "L250", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/f023a2e60de677580f5eb6ca22c299f10ee2c557be036cb5adcfa8917ef7d6fa.json b/graphify-out/cache/ast/v0.8.44/f023a2e60de677580f5eb6ca22c299f10ee2c557be036cb5adcfa8917ef7d6fa.json new file mode 100644 index 0000000..a2401bd --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/f023a2e60de677580f5eb6ca22c299f10ee2c557be036cb5adcfa8917ef7d6fa.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_fix_appointment_booking_flow_md", "label": "fix-appointment-booking-flow.md", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L1"}, {"id": "prompt_fix_appointment_booking_flow_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_\u0635\u0641\u062d\u0647_\u06cc_\u06af\u0631\u0641\u062a\u0646_\u0646\u0648\u0628\u062a_appointment_doctorid_\u0628\u0631\u0627\u06cc_\u0647\u0645_\u062e\u0648\u0627\u0646\u06cc_\u0628\u0627_api_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc \u0635\u0641\u062d\u0647\u200c\u06cc \u06af\u0631\u0641\u062a\u0646 \u0646\u0648\u0628\u062a (`/appointment/[doctorId]`) \u0628\u0631\u0627\u06cc \u0647\u0645\u200c\u062e\u0648\u0627\u0646\u06cc \u0628\u0627 API \u0648\u0627\u0642\u0639\u06cc", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L1"}, {"id": "prompt_fix_appointment_booking_flow_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L3"}, {"id": "prompt_fix_appointment_booking_flow_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L7"}, {"id": "prompt_fix_appointment_booking_flow_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L17"}, {"id": "prompt_fix_appointment_booking_flow_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0648\u0627\u0642\u0639\u06cc_backend_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u0628\u0627_curl_\u0631\u0648\u06cc_https_clinic_pro_ddev_site", "label": "\u0642\u0631\u0627\u0631\u062f\u0627\u062f \u0648\u0627\u0642\u0639\u06cc Backend (\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647 \u0628\u0627 curl \u0631\u0648\u06cc `https://clinic-pro.ddev.site`)", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L23"}, {"id": "prompt_fix_appointment_booking_flow_\u06f1_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627_get_api_v1_appointment_slots_doctor_uuid_uuid_date_y_m_d_public", "label": "\u06f1. \u0627\u0633\u0644\u0627\u062a\u200c\u0647\u0627 \u2014 `GET /api/v1/appointment-slots?doctor_uuid={uuid}&date={Y-m-d}` (PUBLIC)", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L25"}, {"id": "prompt_fix_appointment_booking_flow_\u06f2_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a_post_api_v1_appointment_auth", "label": "\u06f2. \u0631\u0632\u0631\u0648 \u0646\u0648\u0628\u062a \u2014 `POST /api/v1/appointment` (AUTH)", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L52"}, {"id": "prompt_fix_appointment_booking_flow_\u06f3_\u067e\u0631\u062f\u0627\u062e\u062a_post_api_v1_payment_appointment_auth_\u0628\u0627\u06cc\u062f_\u0645\u0627\u0644\u06a9_\u0646\u0648\u0628\u062a_\u0628\u0627\u0634\u062f", "label": "\u06f3. \u067e\u0631\u062f\u0627\u062e\u062a \u2014 `POST /api/v1/payment/appointment` (AUTH\u060c \u0628\u0627\u06cc\u062f \u0645\u0627\u0644\u06a9 \u0646\u0648\u0628\u062a \u0628\u0627\u0634\u062f)", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L63"}, {"id": "prompt_fix_appointment_booking_flow_\u06f4_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_get_api_v1_user_profile_uuid_auth", "label": "\u06f4. \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u06a9\u0627\u0631\u0628\u0631 \u2014 `GET /api/v1/user-profile/{uuid}` (AUTH)", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L74"}, {"id": "prompt_fix_appointment_booking_flow_\u06f5_interceptor_\u0645\u0647\u0645_services_api_js", "label": "\u06f5. interceptor \u0645\u0647\u0645 (`services/api.js`)", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L78"}, {"id": "prompt_fix_appointment_booking_flow_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L88"}, {"id": "prompt_fix_appointment_booking_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_\u0645\u0634\u06a9\u0644_\u062f\u0627\u0631", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc \u0645\u0634\u06a9\u0644\u200c\u062f\u0627\u0631)", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L103"}, {"id": "prompt_fix_appointment_booking_flow_app_appointment_doctorid_page_js", "label": "`app/appointment/[doctorId]/page.js`", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L105"}, {"id": "prompt_fix_appointment_booking_flow_services_response_js", "label": "`services/response.js`", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L119"}, {"id": "prompt_fix_appointment_booking_flow_app_component_date_datetime_index_js", "label": "`app/component/date/dateTime/index.js`", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L131"}, {"id": "prompt_fix_appointment_booking_flow_app_component_date_datetime_hours_list_js", "label": "`app/component/date/dateTime/hours/List.js`", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L144"}, {"id": "prompt_fix_appointment_booking_flow_components_appointment_detail_submitdata_js", "label": "`components/appointment/detail/SubmitData.js`", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L153"}, {"id": "prompt_fix_appointment_booking_flow_components_appointment_paying_index_js", "label": "`components/appointment/paying/index.js`", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L171"}, {"id": "prompt_fix_appointment_booking_flow_components_appointment_index_js_\u062e\u0648\u0627\u0646\u062f\u0646_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "label": "`components/appointment/index.js` (\u062e\u0648\u0627\u0646\u062f\u0646 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644)", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L186"}, {"id": "prompt_fix_appointment_booking_flow_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L195"}, {"id": "prompt_fix_appointment_booking_flow_\u06f1_\u0627\u0635\u0644\u0627\u062d_\u0644\u0627\u06cc\u0647_\u06cc_request_\u062f\u0631_services_response_js", "label": "\u06f1. \u0627\u0635\u0644\u0627\u062d \u0644\u0627\u06cc\u0647\u200c\u06cc `request.*` \u062f\u0631 `services/response.js`", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L199"}, {"id": "prompt_fix_appointment_booking_flow_\u06f2_\u0627\u0635\u0644\u0627\u062d_app_appointment_doctorid_page_js", "label": "\u06f2. \u0627\u0635\u0644\u0627\u062d `app/appointment/[doctorId]/page.js`", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L219"}, {"id": "prompt_fix_appointment_booking_flow_\u06f3_\u0645\u067e_\u06a9\u0631\u062f\u0646_\u0633\u0627\u062e\u062a\u0627\u0631_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0633\u0644\u0627\u062a_\u0628\u0647_ui_datetime_index_js_hours_list_js", "label": "\u06f3. \u0645\u067e\u200c\u06a9\u0631\u062f\u0646 \u0633\u0627\u062e\u062a\u0627\u0631 \u0648\u0627\u0642\u0639\u06cc \u0627\u0633\u0644\u0627\u062a \u0628\u0647 UI \u2014 `dateTime/index.js` + `hours/List.js`", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L225"}, {"id": "prompt_fix_appointment_booking_flow_\u06f4_\u0627\u0635\u0644\u0627\u062d_\u0633\u0627\u062e\u062a_\u0646\u0648\u0628\u062a_components_appointment_detail_submitdata_js", "label": "\u06f4. \u0627\u0635\u0644\u0627\u062d \u0633\u0627\u062e\u062a \u0646\u0648\u0628\u062a \u2014 `components/appointment/detail/SubmitData.js`", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L233"}, {"id": "prompt_fix_appointment_booking_flow_\u06f5_\u0627\u0635\u0644\u0627\u062d_\u067e\u0631\u062f\u0627\u062e\u062a_components_appointment_paying_index_js", "label": "\u06f5. \u0627\u0635\u0644\u0627\u062d \u067e\u0631\u062f\u0627\u062e\u062a \u2014 `components/appointment/paying/index.js`", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L252"}, {"id": "prompt_fix_appointment_booking_flow_\u06f6_\u0627\u0635\u0644\u0627\u062d_\u062e\u0648\u0627\u0646\u062f\u0646_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_components_appointment_index_js", "label": "\u06f6. \u0627\u0635\u0644\u0627\u062d \u062e\u0648\u0627\u0646\u062f\u0646 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u2014 `components/appointment/index.js`", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L274"}, {"id": "prompt_fix_appointment_booking_flow_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L278"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_nobat724_front_claude_prompt_fix_appointment_booking_flow_md", "target": "prompt_fix_appointment_booking_flow_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_\u0635\u0641\u062d\u0647_\u06cc_\u06af\u0631\u0641\u062a\u0646_\u0646\u0648\u0628\u062a_appointment_doctorid_\u0628\u0631\u0627\u06cc_\u0647\u0645_\u062e\u0648\u0627\u0646\u06cc_\u0628\u0627_api_\u0648\u0627\u0642\u0639\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_fix_appointment_booking_flow_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_\u0635\u0641\u062d\u0647_\u06cc_\u06af\u0631\u0641\u062a\u0646_\u0646\u0648\u0628\u062a_appointment_doctorid_\u0628\u0631\u0627\u06cc_\u0647\u0645_\u062e\u0648\u0627\u0646\u06cc_\u0628\u0627_api_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_fix_appointment_booking_flow_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_fix_appointment_booking_flow_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_\u0635\u0641\u062d\u0647_\u06cc_\u06af\u0631\u0641\u062a\u0646_\u0646\u0648\u0628\u062a_appointment_doctorid_\u0628\u0631\u0627\u06cc_\u0647\u0645_\u062e\u0648\u0627\u0646\u06cc_\u0628\u0627_api_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_fix_appointment_booking_flow_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L7", "weight": 1.0}, {"source": "prompt_fix_appointment_booking_flow_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_\u0635\u0641\u062d\u0647_\u06cc_\u06af\u0631\u0641\u062a\u0646_\u0646\u0648\u0628\u062a_appointment_doctorid_\u0628\u0631\u0627\u06cc_\u0647\u0645_\u062e\u0648\u0627\u0646\u06cc_\u0628\u0627_api_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_fix_appointment_booking_flow_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L17", "weight": 1.0}, {"source": "prompt_fix_appointment_booking_flow_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_\u0635\u0641\u062d\u0647_\u06cc_\u06af\u0631\u0641\u062a\u0646_\u0646\u0648\u0628\u062a_appointment_doctorid_\u0628\u0631\u0627\u06cc_\u0647\u0645_\u062e\u0648\u0627\u0646\u06cc_\u0628\u0627_api_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_fix_appointment_booking_flow_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0648\u0627\u0642\u0639\u06cc_backend_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u0628\u0627_curl_\u0631\u0648\u06cc_https_clinic_pro_ddev_site", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L23", "weight": 1.0}, {"source": "prompt_fix_appointment_booking_flow_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0648\u0627\u0642\u0639\u06cc_backend_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u0628\u0627_curl_\u0631\u0648\u06cc_https_clinic_pro_ddev_site", "target": "prompt_fix_appointment_booking_flow_\u06f1_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627_get_api_v1_appointment_slots_doctor_uuid_uuid_date_y_m_d_public", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L25", "weight": 1.0}, {"source": "prompt_fix_appointment_booking_flow_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0648\u0627\u0642\u0639\u06cc_backend_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u0628\u0627_curl_\u0631\u0648\u06cc_https_clinic_pro_ddev_site", "target": "prompt_fix_appointment_booking_flow_\u06f2_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a_post_api_v1_appointment_auth", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L52", "weight": 1.0}, {"source": "prompt_fix_appointment_booking_flow_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0648\u0627\u0642\u0639\u06cc_backend_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u0628\u0627_curl_\u0631\u0648\u06cc_https_clinic_pro_ddev_site", "target": "prompt_fix_appointment_booking_flow_\u06f3_\u067e\u0631\u062f\u0627\u062e\u062a_post_api_v1_payment_appointment_auth_\u0628\u0627\u06cc\u062f_\u0645\u0627\u0644\u06a9_\u0646\u0648\u0628\u062a_\u0628\u0627\u0634\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L63", "weight": 1.0}, {"source": "prompt_fix_appointment_booking_flow_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0648\u0627\u0642\u0639\u06cc_backend_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u0628\u0627_curl_\u0631\u0648\u06cc_https_clinic_pro_ddev_site", "target": "prompt_fix_appointment_booking_flow_\u06f4_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_get_api_v1_user_profile_uuid_auth", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L74", "weight": 1.0}, {"source": "prompt_fix_appointment_booking_flow_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0648\u0627\u0642\u0639\u06cc_backend_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u0628\u0627_curl_\u0631\u0648\u06cc_https_clinic_pro_ddev_site", "target": "prompt_fix_appointment_booking_flow_\u06f5_interceptor_\u0645\u0647\u0645_services_api_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L78", "weight": 1.0}, {"source": "prompt_fix_appointment_booking_flow_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_\u0635\u0641\u062d\u0647_\u06cc_\u06af\u0631\u0641\u062a\u0646_\u0646\u0648\u0628\u062a_appointment_doctorid_\u0628\u0631\u0627\u06cc_\u0647\u0645_\u062e\u0648\u0627\u0646\u06cc_\u0628\u0627_api_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_fix_appointment_booking_flow_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L88", "weight": 1.0}, {"source": "prompt_fix_appointment_booking_flow_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_\u0635\u0641\u062d\u0647_\u06cc_\u06af\u0631\u0641\u062a\u0646_\u0646\u0648\u0628\u062a_appointment_doctorid_\u0628\u0631\u0627\u06cc_\u0647\u0645_\u062e\u0648\u0627\u0646\u06cc_\u0628\u0627_api_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_fix_appointment_booking_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_\u0645\u0634\u06a9\u0644_\u062f\u0627\u0631", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L103", "weight": 1.0}, {"source": "prompt_fix_appointment_booking_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_\u0645\u0634\u06a9\u0644_\u062f\u0627\u0631", "target": "prompt_fix_appointment_booking_flow_app_appointment_doctorid_page_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L105", "weight": 1.0}, {"source": "prompt_fix_appointment_booking_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_\u0645\u0634\u06a9\u0644_\u062f\u0627\u0631", "target": "prompt_fix_appointment_booking_flow_services_response_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L119", "weight": 1.0}, {"source": "prompt_fix_appointment_booking_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_\u0645\u0634\u06a9\u0644_\u062f\u0627\u0631", "target": "prompt_fix_appointment_booking_flow_app_component_date_datetime_index_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L131", "weight": 1.0}, {"source": "prompt_fix_appointment_booking_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_\u0645\u0634\u06a9\u0644_\u062f\u0627\u0631", "target": "prompt_fix_appointment_booking_flow_app_component_date_datetime_hours_list_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L144", "weight": 1.0}, {"source": "prompt_fix_appointment_booking_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_\u0645\u0634\u06a9\u0644_\u062f\u0627\u0631", "target": "prompt_fix_appointment_booking_flow_components_appointment_detail_submitdata_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L153", "weight": 1.0}, {"source": "prompt_fix_appointment_booking_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_\u0645\u0634\u06a9\u0644_\u062f\u0627\u0631", "target": "prompt_fix_appointment_booking_flow_components_appointment_paying_index_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L171", "weight": 1.0}, {"source": "prompt_fix_appointment_booking_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_\u0645\u0634\u06a9\u0644_\u062f\u0627\u0631", "target": "prompt_fix_appointment_booking_flow_components_appointment_index_js_\u062e\u0648\u0627\u0646\u062f\u0646_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L186", "weight": 1.0}, {"source": "prompt_fix_appointment_booking_flow_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_\u0635\u0641\u062d\u0647_\u06cc_\u06af\u0631\u0641\u062a\u0646_\u0646\u0648\u0628\u062a_appointment_doctorid_\u0628\u0631\u0627\u06cc_\u0647\u0645_\u062e\u0648\u0627\u0646\u06cc_\u0628\u0627_api_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_fix_appointment_booking_flow_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L195", "weight": 1.0}, {"source": "prompt_fix_appointment_booking_flow_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_appointment_booking_flow_\u06f1_\u0627\u0635\u0644\u0627\u062d_\u0644\u0627\u06cc\u0647_\u06cc_request_\u062f\u0631_services_response_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L199", "weight": 1.0}, {"source": "prompt_fix_appointment_booking_flow_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_appointment_booking_flow_\u06f2_\u0627\u0635\u0644\u0627\u062d_app_appointment_doctorid_page_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L219", "weight": 1.0}, {"source": "prompt_fix_appointment_booking_flow_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_appointment_booking_flow_\u06f3_\u0645\u067e_\u06a9\u0631\u062f\u0646_\u0633\u0627\u062e\u062a\u0627\u0631_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0633\u0644\u0627\u062a_\u0628\u0647_ui_datetime_index_js_hours_list_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L225", "weight": 1.0}, {"source": "prompt_fix_appointment_booking_flow_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_appointment_booking_flow_\u06f4_\u0627\u0635\u0644\u0627\u062d_\u0633\u0627\u062e\u062a_\u0646\u0648\u0628\u062a_components_appointment_detail_submitdata_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L233", "weight": 1.0}, {"source": "prompt_fix_appointment_booking_flow_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_appointment_booking_flow_\u06f5_\u0627\u0635\u0644\u0627\u062d_\u067e\u0631\u062f\u0627\u062e\u062a_components_appointment_paying_index_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L252", "weight": 1.0}, {"source": "prompt_fix_appointment_booking_flow_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_appointment_booking_flow_\u06f6_\u0627\u0635\u0644\u0627\u062d_\u062e\u0648\u0627\u0646\u062f\u0646_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_components_appointment_index_js", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L274", "weight": 1.0}, {"source": "prompt_fix_appointment_booking_flow_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_\u0635\u0641\u062d\u0647_\u06cc_\u06af\u0631\u0641\u062a\u0646_\u0646\u0648\u0628\u062a_appointment_doctorid_\u0628\u0631\u0627\u06cc_\u0647\u0645_\u062e\u0648\u0627\u0646\u06cc_\u0628\u0627_api_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_fix_appointment_booking_flow_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-appointment-booking-flow.md", "source_location": "L278", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/stat-index.json b/graphify-out/cache/stat-index.json new file mode 100644 index 0000000..2692304 --- /dev/null +++ b/graphify-out/cache/stat-index.json @@ -0,0 +1 @@ +{"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/data/city.json":{"size":48430,"mtime_ns":1783069839994285903,"hash":"22951fe28fe51ecddfb70bcea671dc4be57fa388df6c4f17473d605b52951902"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/data/doctor_services.json":{"size":46716,"mtime_ns":1782843473061355065,"hash":"69c0d8624eabb28ee1926dd11d83d02a01adf8913f80dede1ad843c21ebc0258"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/data/education.json":{"size":360,"mtime_ns":1783066605170617760,"hash":"440ac7ee3fcce903f6aca0296103712fc17a1e9e86611527e9999c591573a2a2"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/data/progress_detail.json":{"size":519,"mtime_ns":1783066616077124496,"hash":"80fa177614a400037aa8b30941d025013544ef3ee864a7696d732cdac1cc6c3c"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/data/specialties.json":{"size":18764,"mtime_ns":1783065555796941169,"hash":"62b3ddfef408bb4f96f9ddd86862aa84919e27188e9fee49244dd8255e516914"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/data/state.json":{"size":4364,"mtime_ns":1782043006598236765,"hash":"87ca9a51f21c57083962121c571035a00e774a1a34cf519b0325450f882d04fd"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/jsconfig.json":{"size":72,"mtime_ns":1760953552262982824,"hash":"3c07efb26e59f46bcab477c7b4d1d68958c43ec0cceda5cb735726790af4fe76"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/liara.json":{"size":391,"mtime_ns":1782752961370207712,"hash":"10033b140aad3ee501bd9a5653eb0a1d43fe53aee55877becfca5a5d1b8a14b5"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/package.json":{"size":2250,"mtime_ns":1783319319096314147,"hash":"33b42f2ce8cac4d3129ca3504a45b69acb7d2d8a95b8a4965cd207f8faa66044"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/adapt-backend-audit-api.md":{"size":9483,"mtime_ns":1782671262951968193,"hash":"e19cc538d048d969601b941242dd729de7f7dea14a403bbe2ff5e134647aa10d"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/appointment-calendar-disabled-dates.md":{"size":9763,"mtime_ns":1781597583936646960,"hash":"e628c04749776a9b8042e5528f915660859a7cdfb6dc12d903cb1b2a73cb24ba"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/appointment-detail-fields-fix.md":{"size":4099,"mtime_ns":1781598090800373168,"hash":"2ab9c060be8be2d461b1ffd2995851906d66e25c229735a3219f85e1f8195839"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/appointment-required-account-fields.md":{"size":7280,"mtime_ns":1781597583936937752,"hash":"556a7ecaeb0c4bde3e6b682a03fea79fdaf7827c9d62ebb5c9b1cd58c427dc13"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/birthday-picker-year-month-day.md":{"size":7704,"mtime_ns":1781597583937172919,"hash":"a588d0d0150fcd8aaef3a41ebdad0404b8fa2c61855d157285aeb9dda04ef3ab"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/booking-lock-patient-flow.md":{"size":9588,"mtime_ns":1781597583937571794,"hash":"d78e22adc6d096b775cdcdc129b12347c337cff71afcb2b708c2cbca82486252"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/booking-send-representation.md":{"size":5088,"mtime_ns":1782304138361157784,"hash":"be8fa462416ccec3ff0f7e60b9d042def7fc27e7f8c03c577630fbb118e77482"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/city-seo-optimization.md":{"size":12088,"mtime_ns":1783069426847432170,"hash":"a0029107f5ad368d237cbf3b7ef28c7b7906794b6fb0da4a00180c0d5789d2d6"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/clinic-seo-schema-knowledge-panel.md":{"size":9490,"mtime_ns":1782035037082293145,"hash":"eb138f4534fc1433698377ae9673b1e22b8627dd564124c895efaf3bd58b64fe"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/connect-panel-dashboard-to-api.md":{"size":13193,"mtime_ns":1781597583937858961,"hash":"17a0579ff0b02c7d73fbdaaabdf26ae1dc668a0e6ab1fe3ff70a8222630b548f"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/currency-toman-display-front.md":{"size":6340,"mtime_ns":1783060321819663682,"hash":"d260ca8d266e49ee94910a03c027d8c2b83461c0a40ca046ba1b6fac591f614f"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/dashboard-tabs-real-data.md":{"size":10762,"mtime_ns":1781597583938112795,"hash":"e6cd614d25692aeefc353b2db4362ea2a269d2fe652151f227b6b855d33f5be3"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/doctor-poster-redesign.md":{"size":13362,"mtime_ns":1783190129986251542,"hash":"8113bbc0cb9b92135d3a293d761ff889a5f78b9d05d7273c7f8b0736c229c68f"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/doctor-seo-schema-knowledge-panel.md":{"size":16103,"mtime_ns":1782031319440018719,"hash":"a1e7d5a4da148b5b13b8800f09d1417ff7a54d20c847b2738624b9d3e72659fc"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/fix-appointment-booking-flow.md":{"size":19846,"mtime_ns":1781597583938358921,"hash":"f023a2e60de677580f5eb6ca22c299f10ee2c557be036cb5adcfa8917ef7d6fa"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/fix-appointment-payment-flow.md":{"size":12476,"mtime_ns":1781597583938747463,"hash":"18b75a0aa94343da7fe5d77403f73b9e704527a92f8da7db04c627303413ef82"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/fix-dashboard-uuid-and-lists.md":{"size":8449,"mtime_ns":1781597583938977130,"hash":"c9171ffaaad4600e4012c4dc7e8d747b8946ba451dfa315605e8ff4928694535"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/fix-doctor-free-turn-disabled.md":{"size":7505,"mtime_ns":1782107579291283238,"hash":"01769376a658f7bf4c1c2ad9349b00581d485f9b199f48871b79333430847f0e"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/fix-doctor-poster-download-image.md":{"size":8557,"mtime_ns":1783188160359344560,"hash":"11395172e2e3d905b4873294ed9df03919796e3c27396fcfc3816fccf38d456c"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/fix-doctors-filter-performance.md":{"size":7565,"mtime_ns":1782043739683215914,"hash":"a2bff95d8ec72493e859cb174fca8469022ee7669f193d889e6e3d2b59bd97b3"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/fix-header-logged-state.md":{"size":7287,"mtime_ns":1781597583939167297,"hash":"9fa28b5810446e5d2cf89ccf2f58a9976c4e9ce3975df5a3b32f3c3eb50a0dce"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/fix-login-bugs.md":{"size":5993,"mtime_ns":1782035969986699960,"hash":"94add08ebe87780fbd4fccf08ed11be2cb45d55828a81f6cc9bc39c79902c040"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/fix-login-session-userinfo.md":{"size":8739,"mtime_ns":1781597583939455089,"hash":"22044e56711732a73f5130b6d38607cd52df0e22fc19c6bd5778544486df932e"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/fix-my-appointments-status-filter.md":{"size":6079,"mtime_ns":1781597583939678131,"hash":"cf4be2acf9ffc36974a6f6999cf2cc5259b73be544a3e0bcaf0f589f34943c4d"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/fix-payment-gateway-flow.md":{"size":11147,"mtime_ns":1782981612166014856,"hash":"c6e6c55b51cabc086cfb88e97ae4977b2f8587822a38232102bea1d45b94f0ab"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/fix-token-storage-xss-headers.md":{"size":11238,"mtime_ns":1781946381493130088,"hash":"88ae04aa6c4de588a6b7fab59d6fc9426d7b1b43c75a1e1e4103fdcf0edfc6df"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/liara-deploy.md":{"size":9137,"mtime_ns":1782750983100811315,"hash":"40d115b3bc3a43851f8e317427e23bd857de37f77bb5b2080077c69e774d1a53"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/nobat724-root-domain-not-city.md":{"size":8911,"mtime_ns":1783016271523973931,"hash":"7abb24fe0c3e3ea6125318b160cba6c41c57be779a3a96dccc77be825cb2d713"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/nobat724-test-suite.md":{"size":19981,"mtime_ns":1782675306936470499,"hash":"76e8926e91c5544fd793ecba45b8b4db9bff5f11593d3ed64a5a8f308ee745e9"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/otp-sms-site-name.md":{"size":4341,"mtime_ns":1783070832183884597,"hash":"c4c736e8535fae943d10e3bfc9aa45b546be27aef879ddc7b919caa7790ff2c5"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/payment-flow-frontend.md":{"size":6753,"mtime_ns":1782992956701932660,"hash":"6913de88e303725560499adef7c1ce2583e257eef0b083758cb67eab05d46151"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/payment-single-flow-frontend.md":{"size":6327,"mtime_ns":1782994816069623536,"hash":"4bf6587d44aa63a0b48c7a22fe7d01cf30be8d2a5385fc3205e3ba4155437411"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/profile-birthday-send-direction-fix.md":{"size":3365,"mtime_ns":1781597583939863923,"hash":"66a55129ea309cca03cc872462fd47053c309c64720784e79f21b4efb5ae4ec0"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/rating-rich-ui-wiring.md":{"size":9378,"mtime_ns":1781597583940215798,"hash":"add909cd22a22c9352f1cd3a6b4bb2ad6672e7784198164f8dbfda25d2f0f93a"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/seo-performance-rendering-audit.md":{"size":15903,"mtime_ns":1782028177971687083,"hash":"10bcf71f9a660ad56f97bb92cb033794f8e65858f761c286191277095231e09a"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/specialties-doctor-count-wire.md":{"size":5538,"mtime_ns":1781599369387196341,"hash":"5d9ed62a164217933720bd64bef89e07413a7e82fe92171cf9508b24e0e5d838"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/technical-seo-audit-multidomain.md":{"size":19291,"mtime_ns":1783252646626491244,"hash":"d070d13a6d70943eb3b5332a9909bcdc1eff6826610b93156c767087628cb143"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/upgrade-next-16.md":{"size":13380,"mtime_ns":1783318413519116126,"hash":"e0f930abf1bac512900eb97733708e398c52df8a5a088d3cd11212546f210eb9"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/user-profile-no-404.md":{"size":6562,"mtime_ns":1781597583940472507,"hash":"a5e69f183ea4fdd29b651385b5350ecc1d7c52097b7a4228e7d1be03b98f7c61"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/.claude/prompt/verify-past-slots-disabled.md":{"size":5350,"mtime_ns":1781597583940678257,"hash":"bfc8ebe5dcd533c93c86935a95afbcd9456f3828d6801dc02a4231a52b6b06b9"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/CLAUDE.md":{"size":5651,"mtime_ns":1780683123948452806,"hash":"e32e2b6305216aa1906de8213f235c5648f3c523f99300c9e27f024109208482"},"/Users/hamed/pj/my_pj/clinic_pro/nobat724_front/README.md":{"size":24068,"mtime_ns":1764813617283047058,"hash":"858b8f4020417e1cca3ad7e6f0a3153039d04748997b78688faf1ca88b758b0f"}} \ No newline at end of file diff --git a/graphify-out/graph.html b/graphify-out/graph.html new file mode 100644 index 0000000..2cee5d4 --- /dev/null +++ b/graphify-out/graph.html @@ -0,0 +1,307 @@ + + + + +graphify - nobat724_front/graphify-out/graph.html + + + + +
+ + + + + \ No newline at end of file diff --git a/graphify-out/graph.json b/graphify-out/graph.json new file mode 100644 index 0000000..16520f7 --- /dev/null +++ b/graphify-out/graph.json @@ -0,0 +1,40660 @@ +{ + "directed": false, + "multigraph": false, + "graph": {}, + "nodes": [ + { + "label": "CustomToastify.js", + "file_type": "code", + "source_file": "app/CustomToastify.js", + "source_location": "L1", + "_origin": "ast", + "id": "app_customtoastify", + "community": 65, + "norm_label": "customtoastify.js" + }, + { + "label": "CustomToastify()", + "file_type": "code", + "source_file": "app/CustomToastify.js", + "source_location": "L4", + "_origin": "ast", + "id": "app_customtoastify_customtoastify", + "community": 65, + "norm_label": "customtoastify()" + }, + { + "label": "Providers.js", + "file_type": "code", + "source_file": "app/Providers.js", + "source_location": "L1", + "_origin": "ast", + "id": "app_providers", + "community": 65, + "norm_label": "providers.js" + }, + { + "label": "Providers()", + "file_type": "code", + "source_file": "app/Providers.js", + "source_location": "L8", + "_origin": "ast", + "id": "app_providers_providers", + "community": 65, + "norm_label": "providers()" + }, + { + "label": "page.js", + "file_type": "code", + "source_file": "app/about-us/page.js", + "source_location": "L1", + "_origin": "ast", + "id": "about_us_page", + "community": 29, + "norm_label": "page.js" + }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "app/about-us/page.js", + "source_location": "L5", + "_origin": "ast", + "id": "about_us_page_generatemetadata", + "community": 29, + "norm_label": "generatemetadata()" + }, + { + "label": "AboutUs()", + "file_type": "code", + "source_file": "app/about-us/page.js", + "source_location": "L19", + "_origin": "ast", + "id": "about_us_page_aboutus", + "community": 29, + "norm_label": "aboutus()" + }, + { + "label": "route.js", + "file_type": "code", + "source_file": "app/api/auth/logout/route.js", + "source_location": "L1", + "_origin": "ast", + "id": "logout_route", + "community": 68, + "norm_label": "route.js" + }, + { + "label": "POST()", + "file_type": "code", + "source_file": "app/api/auth/logout/route.js", + "source_location": "L5", + "_origin": "ast", + "id": "logout_route_post", + "community": 68, + "norm_label": "post()" + }, + { + "label": "route.js", + "file_type": "code", + "source_file": "app/api/auth/refresh/route.js", + "source_location": "L1", + "_origin": "ast", + "id": "refresh_route", + "community": 68, + "norm_label": "route.js" + }, + { + "label": "POST()", + "file_type": "code", + "source_file": "app/api/auth/refresh/route.js", + "source_location": "L5", + "_origin": "ast", + "id": "refresh_route_post", + "community": 68, + "norm_label": "post()" + }, + { + "label": "route.js", + "file_type": "code", + "source_file": "app/api/auth/token/route.js", + "source_location": "L1", + "_origin": "ast", + "id": "token_route", + "community": 68, + "norm_label": "route.js" + }, + { + "label": "POST()", + "file_type": "code", + "source_file": "app/api/auth/token/route.js", + "source_location": "L5", + "_origin": "ast", + "id": "token_route_post", + "community": 68, + "norm_label": "post()" + }, + { + "label": "page.js", + "file_type": "code", + "source_file": "app/appointment/[doctorId]/page.js", + "source_location": "L1", + "_origin": "ast", + "id": "doctorid_page", + "community": 29, + "norm_label": "page.js" + }, + { + "label": "metadata", + "file_type": "code", + "source_file": "app/appointment/[doctorId]/page.js", + "source_location": "L5", + "_origin": "ast", + "id": "doctorid_page_metadata", + "community": 29, + "norm_label": "metadata" + }, + { + "label": "Appointment()", + "file_type": "code", + "source_file": "app/appointment/[doctorId]/page.js", + "source_location": "L9", + "_origin": "ast", + "id": "doctorid_page_appointment", + "community": 29, + "norm_label": "appointment()" + }, + { + "label": "loading.js", + "file_type": "code", + "source_file": "app/blog/[slug]/loading.js", + "source_location": "L1", + "_origin": "ast", + "id": "app_blog_slug_loading_js_slug_loading", + "community": 125, + "norm_label": "loading.js" + }, + { + "label": "Loading()", + "file_type": "code", + "source_file": "app/blog/[slug]/loading.js", + "source_location": "L3", + "_origin": "ast", + "id": "app_blog_slug_loading_js_slug_loading_loading", + "community": 125, + "norm_label": "loading()" + }, + { + "label": "page.js", + "file_type": "code", + "source_file": "app/blog/[slug]/page.js", + "source_location": "L1", + "_origin": "ast", + "id": "app_blog_slug_page_js_slug_page", + "community": 45, + "norm_label": "page.js" + }, + { + "label": "getBlog", + "file_type": "code", + "source_file": "app/blog/[slug]/page.js", + "source_location": "L14", + "_origin": "ast", + "id": "slug_page_getblog", + "community": 45, + "norm_label": "getblog" + }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "app/blog/[slug]/page.js", + "source_location": "L24", + "_origin": "ast", + "id": "app_blog_slug_page_js_slug_page_generatemetadata", + "community": 45, + "norm_label": "generatemetadata()" + }, + { + "label": "Blog()", + "file_type": "code", + "source_file": "app/blog/[slug]/page.js", + "source_location": "L67", + "_origin": "ast", + "id": "slug_page_blog", + "community": 45, + "norm_label": "blog()" + }, + { + "label": "loading.js", + "file_type": "code", + "source_file": "app/blogs/loading.js", + "source_location": "L1", + "_origin": "ast", + "id": "blogs_loading", + "community": 132, + "norm_label": "loading.js" + }, + { + "label": "Loading()", + "file_type": "code", + "source_file": "app/blogs/loading.js", + "source_location": "L3", + "_origin": "ast", + "id": "blogs_loading_loading", + "community": 132, + "norm_label": "loading()" + }, + { + "label": "page.js", + "file_type": "code", + "source_file": "app/blogs/page.js", + "source_location": "L1", + "_origin": "ast", + "id": "blogs_page", + "community": 29, + "norm_label": "page.js" + }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "app/blogs/page.js", + "source_location": "L5", + "_origin": "ast", + "id": "blogs_page_generatemetadata", + "community": 29, + "norm_label": "generatemetadata()" + }, + { + "label": "Blogs()", + "file_type": "code", + "source_file": "app/blogs/page.js", + "source_location": "L21", + "_origin": "ast", + "id": "blogs_page_blogs", + "community": 29, + "norm_label": "blogs()" + }, + { + "label": "loading.js", + "file_type": "code", + "source_file": "app/clinic/[slug]/loading.js", + "source_location": "L1", + "_origin": "ast", + "id": "app_clinic_slug_loading_js_slug_loading", + "community": 126, + "norm_label": "loading.js" + }, + { + "label": "Loading()", + "file_type": "code", + "source_file": "app/clinic/[slug]/loading.js", + "source_location": "L3", + "_origin": "ast", + "id": "app_clinic_slug_loading_js_slug_loading_loading", + "community": 126, + "norm_label": "loading()" + }, + { + "label": "page.js", + "file_type": "code", + "source_file": "app/clinic/[slug]/page.js", + "source_location": "L1", + "_origin": "ast", + "id": "app_clinic_slug_page_js_slug_page", + "community": 45, + "norm_label": "page.js" + }, + { + "label": "getClinic", + "file_type": "code", + "source_file": "app/clinic/[slug]/page.js", + "source_location": "L13", + "_origin": "ast", + "id": "slug_page_getclinic", + "community": 45, + "norm_label": "getclinic" + }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "app/clinic/[slug]/page.js", + "source_location": "L23", + "_origin": "ast", + "id": "app_clinic_slug_page_js_slug_page_generatemetadata", + "community": 45, + "norm_label": "generatemetadata()" + }, + { + "label": "computeClinicRating()", + "file_type": "code", + "source_file": "app/clinic/[slug]/page.js", + "source_location": "L61", + "_origin": "ast", + "id": "slug_page_computeclinicrating", + "community": 45, + "norm_label": "computeclinicrating()" + }, + { + "label": "Clinic()", + "file_type": "code", + "source_file": "app/clinic/[slug]/page.js", + "source_location": "L74", + "_origin": "ast", + "id": "slug_page_clinic", + "community": 45, + "norm_label": "clinic()" + }, + { + "label": "loading.js", + "file_type": "code", + "source_file": "app/clinics/loading.js", + "source_location": "L1", + "_origin": "ast", + "id": "clinics_loading", + "community": 133, + "norm_label": "loading.js" + }, + { + "label": "Loading()", + "file_type": "code", + "source_file": "app/clinics/loading.js", + "source_location": "L5", + "_origin": "ast", + "id": "clinics_loading_loading", + "community": 133, + "norm_label": "loading()" + }, + { + "label": "page.js", + "file_type": "code", + "source_file": "app/clinics/page.js", + "source_location": "L1", + "_origin": "ast", + "id": "clinics_page", + "community": 70, + "norm_label": "page.js" + }, + { + "label": "FILTER_KEYS", + "file_type": "code", + "source_file": "app/clinics/page.js", + "source_location": "L8", + "_origin": "ast", + "id": "clinics_page_filter_keys", + "community": 70, + "norm_label": "filter_keys" + }, + { + "label": "listingRobots()", + "file_type": "code", + "source_file": "app/clinics/page.js", + "source_location": "L11", + "_origin": "ast", + "id": "clinics_page_listingrobots", + "community": 70, + "norm_label": "listingrobots()" + }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "app/clinics/page.js", + "source_location": "L19", + "_origin": "ast", + "id": "clinics_page_generatemetadata", + "community": 70, + "norm_label": "generatemetadata()" + }, + { + "label": "Clinics()", + "file_type": "code", + "source_file": "app/clinics/page.js", + "source_location": "L40", + "_origin": "ast", + "id": "clinics_page_clinics", + "community": 70, + "norm_label": "clinics()" + }, + { + "label": "AnimationTextHead.js", + "file_type": "code", + "source_file": "app/component/AnimationTextHead.js", + "source_location": "L1", + "_origin": "ast", + "id": "component_animationtexthead", + "community": 134, + "norm_label": "animationtexthead.js" + }, + { + "label": "AnimationTextHead()", + "file_type": "code", + "source_file": "app/component/AnimationTextHead.js", + "source_location": "L1", + "_origin": "ast", + "id": "component_animationtexthead_animationtexthead", + "community": 134, + "norm_label": "animationtexthead()" + }, + { + "label": "ButtonDate.js", + "file_type": "code", + "source_file": "app/component/ButtonDate.js", + "source_location": "L1", + "_origin": "ast", + "id": "component_buttondate", + "community": 77, + "norm_label": "buttondate.js" + }, + { + "label": "ButtonDate()", + "file_type": "code", + "source_file": "app/component/ButtonDate.js", + "source_location": "L4", + "_origin": "ast", + "id": "component_buttondate_buttondate", + "community": 77, + "norm_label": "buttondate()" + }, + { + "label": "ContentText.js", + "file_type": "code", + "source_file": "app/component/ContentText.js", + "source_location": "L1", + "_origin": "ast", + "id": "component_contenttext", + "community": 136, + "norm_label": "contenttext.js" + }, + { + "label": "ContentText()", + "file_type": "code", + "source_file": "app/component/ContentText.js", + "source_location": "L1", + "_origin": "ast", + "id": "component_contenttext_contenttext", + "community": 136, + "norm_label": "contenttext()" + }, + { + "label": "CustomTable.js", + "file_type": "code", + "source_file": "app/component/CustomTable.js", + "source_location": "L1", + "_origin": "ast", + "id": "component_customtable", + "community": 137, + "norm_label": "customtable.js" + }, + { + "label": "CustomTable()", + "file_type": "code", + "source_file": "app/component/CustomTable.js", + "source_location": "L10", + "_origin": "ast", + "id": "component_customtable_customtable", + "community": 137, + "norm_label": "customtable()" + }, + { + "label": "DatePickerContent.js", + "file_type": "code", + "source_file": "app/component/DatePickerContent.js", + "source_location": "L1", + "_origin": "ast", + "id": "component_datepickercontent", + "community": 77, + "norm_label": "datepickercontent.js" + }, + { + "label": "DatePickerContent()", + "file_type": "code", + "source_file": "app/component/DatePickerContent.js", + "source_location": "L3", + "_origin": "ast", + "id": "component_datepickercontent_datepickercontent", + "community": 77, + "norm_label": "datepickercontent()" + }, + { + "label": "DetailProfile.js", + "file_type": "code", + "source_file": "app/component/DetailProfile.js", + "source_location": "L1", + "_origin": "ast", + "id": "component_detailprofile", + "community": 0, + "norm_label": "detailprofile.js" + }, + { + "label": "DetailProfile()", + "file_type": "code", + "source_file": "app/component/DetailProfile.js", + "source_location": "L9", + "_origin": "ast", + "id": "component_detailprofile_detailprofile", + "community": 0, + "norm_label": "detailprofile()" + }, + { + "label": "DoctorAvatar.js", + "file_type": "code", + "source_file": "app/component/DoctorAvatar.js", + "source_location": "L1", + "_origin": "ast", + "id": "component_doctoravatar", + "community": 56, + "norm_label": "doctoravatar.js" + }, + { + "label": "getInitials()", + "file_type": "code", + "source_file": "app/component/DoctorAvatar.js", + "source_location": "L4", + "_origin": "ast", + "id": "component_doctoravatar_getinitials", + "community": 56, + "norm_label": "getinitials()" + }, + { + "label": "DoctorAvatar()", + "file_type": "code", + "source_file": "app/component/DoctorAvatar.js", + "source_location": "L13", + "_origin": "ast", + "id": "component_doctoravatar_doctoravatar", + "community": 56, + "norm_label": "doctoravatar()" + }, + { + "label": "ItemDoctor.js", + "file_type": "code", + "source_file": "app/component/ItemDoctor.js", + "source_location": "L1", + "_origin": "ast", + "id": "component_itemdoctor", + "community": 56, + "norm_label": "itemdoctor.js" + }, + { + "label": "ItemDoctor()", + "file_type": "code", + "source_file": "app/component/ItemDoctor.js", + "source_location": "L15", + "_origin": "ast", + "id": "component_itemdoctor_itemdoctor", + "community": 56, + "norm_label": "itemdoctor()" + }, + { + "label": "LoadingComponent.js", + "file_type": "code", + "source_file": "app/component/LoadingComponent.js", + "source_location": "L1", + "_origin": "ast", + "id": "component_loadingcomponent", + "community": 138, + "norm_label": "loadingcomponent.js" + }, + { + "label": "LoadingComponent()", + "file_type": "code", + "source_file": "app/component/LoadingComponent.js", + "source_location": "L4", + "_origin": "ast", + "id": "component_loadingcomponent_loadingcomponent", + "community": 138, + "norm_label": "loadingcomponent()" + }, + { + "label": "Logo.js", + "file_type": "code", + "source_file": "app/component/Logo.js", + "source_location": "L1", + "_origin": "ast", + "id": "component_logo", + "community": 139, + "norm_label": "logo.js" + }, + { + "label": "Logo()", + "file_type": "code", + "source_file": "app/component/Logo.js", + "source_location": "L5", + "_origin": "ast", + "id": "component_logo_logo", + "community": 139, + "norm_label": "logo()" + }, + { + "label": "ModalLogout.js", + "file_type": "code", + "source_file": "app/component/ModalLogout.js", + "source_location": "L1", + "_origin": "ast", + "id": "component_modallogout", + "community": 0, + "norm_label": "modallogout.js" + }, + { + "label": "ModalLogout()", + "file_type": "code", + "source_file": "app/component/ModalLogout.js", + "source_location": "L8", + "_origin": "ast", + "id": "component_modallogout_modallogout", + "community": 0, + "norm_label": "modallogout()" + }, + { + "label": "Pageguide.js", + "file_type": "code", + "source_file": "app/component/Pageguide.js", + "source_location": "L1", + "_origin": "ast", + "id": "component_pageguide", + "community": 140, + "norm_label": "pageguide.js" + }, + { + "label": "Pageguide()", + "file_type": "code", + "source_file": "app/component/Pageguide.js", + "source_location": "L1", + "_origin": "ast", + "id": "component_pageguide_pageguide", + "community": 140, + "norm_label": "pageguide()" + }, + { + "label": "Pagination.js", + "file_type": "code", + "source_file": "app/component/Pagination.js", + "source_location": "L1", + "_origin": "ast", + "id": "component_pagination", + "community": 141, + "norm_label": "pagination.js" + }, + { + "label": "Pagination()", + "file_type": "code", + "source_file": "app/component/Pagination.js", + "source_location": "L3", + "_origin": "ast", + "id": "component_pagination_pagination", + "community": 141, + "norm_label": "pagination()" + }, + { + "label": "PaginationContent.js", + "file_type": "code", + "source_file": "app/component/PaginationContent.js", + "source_location": "L1", + "_origin": "ast", + "id": "component_paginationcontent", + "community": 142, + "norm_label": "paginationcontent.js" + }, + { + "label": "PaginationContent()", + "file_type": "code", + "source_file": "app/component/PaginationContent.js", + "source_location": "L6", + "_origin": "ast", + "id": "component_paginationcontent_paginationcontent", + "community": 142, + "norm_label": "paginationcontent()" + }, + { + "label": "PopoverDate.js", + "file_type": "code", + "source_file": "app/component/PopoverDate.js", + "source_location": "L1", + "_origin": "ast", + "id": "component_popoverdate", + "community": 77, + "norm_label": "popoverdate.js" + }, + { + "label": "PopoverDate()", + "file_type": "code", + "source_file": "app/component/PopoverDate.js", + "source_location": "L5", + "_origin": "ast", + "id": "component_popoverdate_popoverdate", + "community": 77, + "norm_label": "popoverdate()" + }, + { + "label": "ProfressDetail.js", + "file_type": "code", + "source_file": "app/component/ProfressDetail.js", + "source_location": "L1", + "_origin": "ast", + "id": "component_profressdetail", + "community": 15, + "norm_label": "profressdetail.js" + }, + { + "label": "fallbackLabels", + "file_type": "code", + "source_file": "app/component/ProfressDetail.js", + "source_location": "L4", + "_origin": "ast", + "id": "component_profressdetail_fallbacklabels", + "community": 15, + "norm_label": "fallbacklabels" + }, + { + "label": "ProgressDetail()", + "file_type": "code", + "source_file": "app/component/ProfressDetail.js", + "source_location": "L12", + "_origin": "ast", + "id": "component_profressdetail_progressdetail", + "community": 15, + "norm_label": "progressdetail()" + }, + { + "label": "ProgressChange.js", + "file_type": "code", + "source_file": "app/component/ProgressChange.js", + "source_location": "L1", + "_origin": "ast", + "id": "component_progresschange", + "community": 143, + "norm_label": "progresschange.js" + }, + { + "label": "ProgressChange()", + "file_type": "code", + "source_file": "app/component/ProgressChange.js", + "source_location": "L4", + "_origin": "ast", + "id": "component_progresschange_progresschange", + "community": 143, + "norm_label": "progresschange()" + }, + { + "label": "ScrollToTop.js", + "file_type": "code", + "source_file": "app/component/ScrollToTop.js", + "source_location": "L1", + "_origin": "ast", + "id": "component_scrolltotop", + "community": 144, + "norm_label": "scrolltotop.js" + }, + { + "label": "ScrollToTop()", + "file_type": "code", + "source_file": "app/component/ScrollToTop.js", + "source_location": "L3", + "_origin": "ast", + "id": "component_scrolltotop_scrolltotop", + "community": 144, + "norm_label": "scrolltotop()" + }, + { + "label": "SwitchTable.js", + "file_type": "code", + "source_file": "app/component/SwitchTable.js", + "source_location": "L1", + "_origin": "ast", + "id": "component_switchtable", + "community": 108, + "norm_label": "switchtable.js" + }, + { + "label": "MaterialUISwitch", + "file_type": "code", + "source_file": "app/component/SwitchTable.js", + "source_location": "L4", + "_origin": "ast", + "id": "component_switchtable_materialuiswitch", + "community": 108, + "norm_label": "materialuiswitch" + }, + { + "label": "SwitchTable()", + "file_type": "code", + "source_file": "app/component/SwitchTable.js", + "source_location": "L51", + "_origin": "ast", + "id": "component_switchtable_switchtable", + "community": 108, + "norm_label": "switchtable()" + }, + { + "label": "Tabs.js", + "file_type": "code", + "source_file": "app/component/Tabs.js", + "source_location": "L1", + "_origin": "ast", + "id": "component_tabs", + "community": 34, + "norm_label": "tabs.js" + }, + { + "label": "a11yProps()", + "file_type": "code", + "source_file": "app/component/Tabs.js", + "source_location": "L3", + "_origin": "ast", + "id": "component_tabs_a11yprops", + "community": 34, + "norm_label": "a11yprops()" + }, + { + "label": "Tabs()", + "file_type": "code", + "source_file": "app/component/Tabs.js", + "source_location": "L10", + "_origin": "ast", + "id": "component_tabs_tabs", + "community": 34, + "norm_label": "tabs()" + }, + { + "label": "ThemeRegistry.js", + "file_type": "code", + "source_file": "app/component/ThemeRegistry.js", + "source_location": "L1", + "_origin": "ast", + "id": "component_themeregistry", + "community": 65, + "norm_label": "themeregistry.js" + }, + { + "label": "ThemeRegistry()", + "file_type": "code", + "source_file": "app/component/ThemeRegistry.js", + "source_location": "L13", + "_origin": "ast", + "id": "component_themeregistry_themeregistry", + "community": 65, + "norm_label": "themeregistry()" + }, + { + "label": "TimePickerField.js", + "file_type": "code", + "source_file": "app/component/TimePickerField.js", + "source_location": "L1", + "_origin": "ast", + "id": "component_timepickerfield", + "community": 145, + "norm_label": "timepickerfield.js" + }, + { + "label": "TimePickerField()", + "file_type": "code", + "source_file": "app/component/TimePickerField.js", + "source_location": "L7", + "_origin": "ast", + "id": "component_timepickerfield_timepickerfield", + "community": 145, + "norm_label": "timepickerfield()" + }, + { + "label": "TimePickerInput.js", + "file_type": "code", + "source_file": "app/component/TimePickerInput.js", + "source_location": "L1", + "_origin": "ast", + "id": "component_timepickerinput", + "community": 146, + "norm_label": "timepickerinput.js" + }, + { + "label": "TimePickerInput()", + "file_type": "code", + "source_file": "app/component/TimePickerInput.js", + "source_location": "L6", + "_origin": "ast", + "id": "component_timepickerinput_timepickerinput", + "community": 146, + "norm_label": "timepickerinput()" + }, + { + "label": "Field.js", + "file_type": "code", + "source_file": "app/component/comment/Field.js", + "source_location": "L1", + "_origin": "ast", + "id": "comment_field", + "community": 55, + "norm_label": "field.js" + }, + { + "label": "Field()", + "file_type": "code", + "source_file": "app/component/comment/Field.js", + "source_location": "L3", + "_origin": "ast", + "id": "comment_field_field", + "community": 55, + "norm_label": "field()" + }, + { + "label": "ItemUser.js", + "file_type": "code", + "source_file": "app/component/comment/ItemUser.js", + "source_location": "L1", + "_origin": "ast", + "id": "comment_itemuser", + "community": 55, + "norm_label": "itemuser.js" + }, + { + "label": "ItemUser()", + "file_type": "code", + "source_file": "app/component/comment/ItemUser.js", + "source_location": "L18", + "_origin": "ast", + "id": "comment_itemuser_itemuser", + "community": 55, + "norm_label": "itemuser()" + }, + { + "label": "Replies.js", + "file_type": "code", + "source_file": "app/component/comment/Replies.js", + "source_location": "L1", + "_origin": "ast", + "id": "comment_replies", + "community": 55, + "norm_label": "replies.js" + }, + { + "label": "Replies()", + "file_type": "code", + "source_file": "app/component/comment/Replies.js", + "source_location": "L4", + "_origin": "ast", + "id": "comment_replies_replies", + "community": 55, + "norm_label": "replies()" + }, + { + "label": "SendAnswer.js", + "file_type": "code", + "source_file": "app/component/comment/SendAnswer.js", + "source_location": "L1", + "_origin": "ast", + "id": "comment_sendanswer", + "community": 55, + "norm_label": "sendanswer.js" + }, + { + "label": "SendAnswer()", + "file_type": "code", + "source_file": "app/component/comment/SendAnswer.js", + "source_location": "L7", + "_origin": "ast", + "id": "comment_sendanswer_sendanswer", + "community": 55, + "norm_label": "sendanswer()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "app/component/comment/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "comment_index", + "community": 55, + "norm_label": "index.js" + }, + { + "label": "Comment()", + "file_type": "code", + "source_file": "app/component/comment/index.js", + "source_location": "L4", + "_origin": "ast", + "id": "comment_index_comment", + "community": 55, + "norm_label": "comment()" + }, + { + "label": "ButtonDate.js", + "file_type": "code", + "source_file": "app/component/date/datePicker/ButtonDate.js", + "source_location": "L1", + "_origin": "ast", + "id": "datepicker_buttondate", + "community": 190, + "norm_label": "buttondate.js" + }, + { + "label": "ButtonDate()", + "file_type": "code", + "source_file": "app/component/date/datePicker/ButtonDate.js", + "source_location": "L4", + "_origin": "ast", + "id": "datepicker_buttondate_buttondate", + "community": 190, + "norm_label": "buttondate()" + }, + { + "label": "Field.js", + "file_type": "code", + "source_file": "app/component/date/datePicker/Field.js", + "source_location": "L1", + "_origin": "ast", + "id": "datepicker_field", + "community": 191, + "norm_label": "field.js" + }, + { + "label": "Field()", + "file_type": "code", + "source_file": "app/component/date/datePicker/Field.js", + "source_location": "L3", + "_origin": "ast", + "id": "datepicker_field_field", + "community": 191, + "norm_label": "field()" + }, + { + "label": "LoadingDate.js", + "file_type": "code", + "source_file": "app/component/date/datePicker/LoadingDate.js", + "source_location": "L1", + "_origin": "ast", + "id": "datepicker_loadingdate", + "community": 66, + "norm_label": "loadingdate.js" + }, + { + "label": "LoadingDate()", + "file_type": "code", + "source_file": "app/component/date/datePicker/LoadingDate.js", + "source_location": "L4", + "_origin": "ast", + "id": "datepicker_loadingdate_loadingdate", + "community": 66, + "norm_label": "loadingdate()" + }, + { + "label": "FirstDatePicker.js", + "file_type": "code", + "source_file": "app/component/date/datePicker/date/FirstDatePicker.js", + "source_location": "L1", + "_origin": "ast", + "id": "date_firstdatepicker", + "community": 66, + "norm_label": "firstdatepicker.js" + }, + { + "label": "FirstDatePicker()", + "file_type": "code", + "source_file": "app/component/date/datePicker/date/FirstDatePicker.js", + "source_location": "L7", + "_origin": "ast", + "id": "date_firstdatepicker_firstdatepicker", + "community": 66, + "norm_label": "firstdatepicker()" + }, + { + "label": "SecondDatePicker.js", + "file_type": "code", + "source_file": "app/component/date/datePicker/date/SecondDatePicker.js", + "source_location": "L1", + "_origin": "ast", + "id": "date_seconddatepicker", + "community": 66, + "norm_label": "seconddatepicker.js" + }, + { + "label": "SecondDatePicker()", + "file_type": "code", + "source_file": "app/component/date/datePicker/date/SecondDatePicker.js", + "source_location": "L7", + "_origin": "ast", + "id": "date_seconddatepicker_seconddatepicker", + "community": 66, + "norm_label": "seconddatepicker()" + }, + { + "label": "dataIcon.js", + "file_type": "code", + "source_file": "app/component/date/datePicker/date/dataIcon.js", + "source_location": "L1", + "_origin": "ast", + "id": "date_dataicon", + "community": 66, + "norm_label": "dataicon.js" + }, + { + "label": "fixedIconData", + "file_type": "code", + "source_file": "app/component/date/datePicker/date/dataIcon.js", + "source_location": "L1", + "_origin": "ast", + "id": "date_dataicon_fixedicondata", + "community": 66, + "norm_label": "fixedicondata" + }, + { + "label": "nextIconData", + "file_type": "code", + "source_file": "app/component/date/datePicker/date/dataIcon.js", + "source_location": "L8", + "_origin": "ast", + "id": "date_dataicon_nexticondata", + "community": 66, + "norm_label": "nexticondata" + }, + { + "label": "prevIconData", + "file_type": "code", + "source_file": "app/component/date/datePicker/date/dataIcon.js", + "source_location": "L13", + "_origin": "ast", + "id": "date_dataicon_previcondata", + "community": 66, + "norm_label": "previcondata" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "app/component/date/datePicker/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "datepicker_index", + "community": 114, + "norm_label": "index.js" + }, + { + "label": "gregorianMonthsOf()", + "file_type": "code", + "source_file": "app/component/date/datePicker/index.js", + "source_location": "L11", + "_origin": "ast", + "id": "datepicker_index_gregorianmonthsof", + "community": 114, + "norm_label": "gregorianmonthsof()" + }, + { + "label": "DatePicker()", + "file_type": "code", + "source_file": "app/component/date/datePicker/index.js", + "source_location": "L24", + "_origin": "ast", + "id": "datepicker_index_datepicker", + "community": 114, + "norm_label": "datepicker()" + }, + { + "label": "SendAppo.js", + "file_type": "code", + "source_file": "app/component/date/dateTime/SendAppo.js", + "source_location": "L1", + "_origin": "ast", + "id": "datetime_sendappo", + "community": 34, + "norm_label": "sendappo.js" + }, + { + "label": "SendAppo()", + "file_type": "code", + "source_file": "app/component/date/dateTime/SendAppo.js", + "source_location": "L5", + "_origin": "ast", + "id": "datetime_sendappo_sendappo", + "community": 34, + "norm_label": "sendappo()" + }, + { + "label": "List.js", + "file_type": "code", + "source_file": "app/component/date/dateTime/hours/List.js", + "source_location": "L1", + "_origin": "ast", + "id": "hours_list", + "community": 34, + "norm_label": "list.js" + }, + { + "label": "List()", + "file_type": "code", + "source_file": "app/component/date/dateTime/hours/List.js", + "source_location": "L4", + "_origin": "ast", + "id": "hours_list_list", + "community": 34, + "norm_label": "list()" + }, + { + "label": "Loading.js", + "file_type": "code", + "source_file": "app/component/date/dateTime/hours/Loading.js", + "source_location": "L1", + "_origin": "ast", + "id": "hours_loading", + "community": 34, + "norm_label": "loading.js" + }, + { + "label": "Loading()", + "file_type": "code", + "source_file": "app/component/date/dateTime/hours/Loading.js", + "source_location": "L3", + "_origin": "ast", + "id": "hours_loading_loading", + "community": 34, + "norm_label": "loading()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "app/component/date/dateTime/hours/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "hours_index", + "community": 34, + "norm_label": "index.js" + }, + { + "label": "Hours()", + "file_type": "code", + "source_file": "app/component/date/dateTime/hours/index.js", + "source_location": "L4", + "_origin": "ast", + "id": "hours_index_hours", + "community": 34, + "norm_label": "hours()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "app/component/date/dateTime/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "datetime_index", + "community": 34, + "norm_label": "index.js" + }, + { + "label": "listTab", + "file_type": "code", + "source_file": "app/component/date/dateTime/index.js", + "source_location": "L11", + "_origin": "ast", + "id": "datetime_index_listtab", + "community": 34, + "norm_label": "listtab" + }, + { + "label": "nameHours", + "file_type": "code", + "source_file": "app/component/date/dateTime/index.js", + "source_location": "L12", + "_origin": "ast", + "id": "datetime_index_namehours", + "community": 34, + "norm_label": "namehours" + }, + { + "label": "DateTime()", + "file_type": "code", + "source_file": "app/component/date/dateTime/index.js", + "source_location": "L14", + "_origin": "ast", + "id": "datetime_index_datetime", + "community": 34, + "norm_label": "datetime()" + }, + { + "label": "AutoCompleteSelect.js", + "file_type": "code", + "source_file": "app/component/element/AutoCompleteSelect.js", + "source_location": "L1", + "_origin": "ast", + "id": "element_autocompleteselect", + "community": 193, + "norm_label": "autocompleteselect.js" + }, + { + "label": "AutoCompleteSelect()", + "file_type": "code", + "source_file": "app/component/element/AutoCompleteSelect.js", + "source_location": "L5", + "_origin": "ast", + "id": "element_autocompleteselect_autocompleteselect", + "community": 193, + "norm_label": "autocompleteselect()" + }, + { + "label": "AutoSelector.js", + "file_type": "code", + "source_file": "app/component/element/AutoSelector.js", + "source_location": "L1", + "_origin": "ast", + "id": "element_autoselector", + "community": 194, + "norm_label": "autoselector.js" + }, + { + "label": "AutoSelector()", + "file_type": "code", + "source_file": "app/component/element/AutoSelector.js", + "source_location": "L5", + "_origin": "ast", + "id": "element_autoselector_autoselector", + "community": 194, + "norm_label": "autoselector()" + }, + { + "label": "Field.js", + "file_type": "code", + "source_file": "app/component/element/Field.js", + "source_location": "L1", + "_origin": "ast", + "id": "element_field", + "community": 115, + "norm_label": "field.js" + }, + { + "label": "convertPersianToEnglish()", + "file_type": "code", + "source_file": "app/component/element/Field.js", + "source_location": "L5", + "_origin": "ast", + "id": "element_field_convertpersiantoenglish", + "community": 115, + "norm_label": "convertpersiantoenglish()" + }, + { + "label": "Field()", + "file_type": "code", + "source_file": "app/component/element/Field.js", + "source_location": "L19", + "_origin": "ast", + "id": "element_field_field", + "community": 115, + "norm_label": "field()" + }, + { + "label": "EditField.js", + "file_type": "code", + "source_file": "app/component/fields/EditField.js", + "source_location": "L1", + "_origin": "ast", + "id": "fields_editfield", + "community": 3, + "norm_label": "editfield.js" + }, + { + "label": "convertPersianToEnglish()", + "file_type": "code", + "source_file": "app/component/fields/EditField.js", + "source_location": "L6", + "_origin": "ast", + "id": "fields_editfield_convertpersiantoenglish", + "community": 3, + "norm_label": "convertpersiantoenglish()" + }, + { + "label": "EditField()", + "file_type": "code", + "source_file": "app/component/fields/EditField.js", + "source_location": "L20", + "_origin": "ast", + "id": "fields_editfield_editfield", + "community": 3, + "norm_label": "editfield()" + }, + { + "label": "Field.js", + "file_type": "code", + "source_file": "app/component/fields/Field.js", + "source_location": "L1", + "_origin": "ast", + "id": "fields_field", + "community": 197, + "norm_label": "field.js" + }, + { + "label": "Field()", + "file_type": "code", + "source_file": "app/component/fields/Field.js", + "source_location": "L3", + "_origin": "ast", + "id": "fields_field_field", + "community": 197, + "norm_label": "field()" + }, + { + "label": "FieldIcon.js", + "file_type": "code", + "source_file": "app/component/fields/FieldIcon.js", + "source_location": "L1", + "_origin": "ast", + "id": "fields_fieldicon", + "community": 198, + "norm_label": "fieldicon.js" + }, + { + "label": "FieldIcon()", + "file_type": "code", + "source_file": "app/component/fields/FieldIcon.js", + "source_location": "L5", + "_origin": "ast", + "id": "fields_fieldicon_fieldicon", + "community": 198, + "norm_label": "fieldicon()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "app/component/head/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "app_component_head_index_js_head_index", + "community": 127, + "norm_label": "index.js" + }, + { + "label": "HeadPageList()", + "file_type": "code", + "source_file": "app/component/head/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "head_index_headpagelist", + "community": 127, + "norm_label": "headpagelist()" + }, + { + "label": "Circular.js", + "file_type": "code", + "source_file": "app/component/loading/Circular.js", + "source_location": "L1", + "_origin": "ast", + "id": "loading_circular", + "community": 56, + "norm_label": "circular.js" + }, + { + "label": "CircularLoading()", + "file_type": "code", + "source_file": "app/component/loading/Circular.js", + "source_location": "L3", + "_origin": "ast", + "id": "loading_circular_circularloading", + "community": 56, + "norm_label": "circularloading()" + }, + { + "label": "Custom.js", + "file_type": "code", + "source_file": "app/component/loading/Custom.js", + "source_location": "L1", + "_origin": "ast", + "id": "loading_custom", + "community": 56, + "norm_label": "custom.js" + }, + { + "label": "CustomLoading()", + "file_type": "code", + "source_file": "app/component/loading/Custom.js", + "source_location": "L3", + "_origin": "ast", + "id": "loading_custom_customloading", + "community": 56, + "norm_label": "customloading()" + }, + { + "label": "Multiline.js", + "file_type": "code", + "source_file": "app/component/loading/Multiline.js", + "source_location": "L1", + "_origin": "ast", + "id": "loading_multiline", + "community": 341, + "norm_label": "multiline.js" + }, + { + "label": "MultilineLoading()", + "file_type": "code", + "source_file": "app/component/loading/Multiline.js", + "source_location": "L3", + "_origin": "ast", + "id": "loading_multiline_multilineloading", + "community": 341, + "norm_label": "multilineloading()" + }, + { + "label": "Text.js", + "file_type": "code", + "source_file": "app/component/loading/Text.js", + "source_location": "L1", + "_origin": "ast", + "id": "loading_text", + "community": 56, + "norm_label": "text.js" + }, + { + "label": "TextLoading()", + "file_type": "code", + "source_file": "app/component/loading/Text.js", + "source_location": "L3", + "_origin": "ast", + "id": "loading_text_textloading", + "community": 56, + "norm_label": "textloading()" + }, + { + "label": "AddressSelector.js", + "file_type": "code", + "source_file": "app/component/modalSearchCity/AddressSelector.js", + "source_location": "L1", + "_origin": "ast", + "id": "modalsearchcity_addressselector", + "community": 73, + "norm_label": "addressselector.js" + }, + { + "label": "AddressSelector()", + "file_type": "code", + "source_file": "app/component/modalSearchCity/AddressSelector.js", + "source_location": "L5", + "_origin": "ast", + "id": "modalsearchcity_addressselector_addressselector", + "community": 73, + "norm_label": "addressselector()" + }, + { + "label": "ButtonFilter.js", + "file_type": "code", + "source_file": "app/component/modalSearchCity/ButtonFilter.js", + "source_location": "L1", + "_origin": "ast", + "id": "modalsearchcity_buttonfilter", + "community": 346, + "norm_label": "buttonfilter.js" + }, + { + "label": "ButtonFilter()", + "file_type": "code", + "source_file": "app/component/modalSearchCity/ButtonFilter.js", + "source_location": "L6", + "_origin": "ast", + "id": "modalsearchcity_buttonfilter_buttonfilter", + "community": 346, + "norm_label": "buttonfilter()" + }, + { + "label": "Content.js", + "file_type": "code", + "source_file": "app/component/modalSearchCity/Content.js", + "source_location": "L1", + "_origin": "ast", + "id": "modalsearchcity_content", + "community": 73, + "norm_label": "content.js" + }, + { + "label": "Content()", + "file_type": "code", + "source_file": "app/component/modalSearchCity/Content.js", + "source_location": "L9", + "_origin": "ast", + "id": "modalsearchcity_content_content", + "community": 73, + "norm_label": "content()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "app/component/modalSearchCity/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "modalsearchcity_index", + "community": 73, + "norm_label": "index.js" + }, + { + "label": "ModalSearchCity()", + "file_type": "code", + "source_file": "app/component/modalSearchCity/index.js", + "source_location": "L12", + "_origin": "ast", + "id": "modalsearchcity_index_modalsearchcity", + "community": 73, + "norm_label": "modalsearchcity()" + }, + { + "label": "Content.js", + "file_type": "code", + "source_file": "app/component/openLocation/Content.js", + "source_location": "L1", + "_origin": "ast", + "id": "openlocation_content", + "community": 103, + "norm_label": "content.js" + }, + { + "label": "Content()", + "file_type": "code", + "source_file": "app/component/openLocation/Content.js", + "source_location": "L4", + "_origin": "ast", + "id": "openlocation_content_content", + "community": 103, + "norm_label": "content()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "app/component/openLocation/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "openlocation_index", + "community": 103, + "norm_label": "index.js" + }, + { + "label": "ModalOpenLocation()", + "file_type": "code", + "source_file": "app/component/openLocation/index.js", + "source_location": "L7", + "_origin": "ast", + "id": "openlocation_index_modalopenlocation", + "community": 103, + "norm_label": "modalopenlocation()" + }, + { + "label": "DefaultSelect.js", + "file_type": "code", + "source_file": "app/component/selectors/DefaultSelect.js", + "source_location": "L1", + "_origin": "ast", + "id": "selectors_defaultselect", + "community": 352, + "norm_label": "defaultselect.js" + }, + { + "label": "DefaultSelect()", + "file_type": "code", + "source_file": "app/component/selectors/DefaultSelect.js", + "source_location": "L5", + "_origin": "ast", + "id": "selectors_defaultselect_defaultselect", + "community": 352, + "norm_label": "defaultselect()" + }, + { + "label": "GroupedSelect.js", + "file_type": "code", + "source_file": "app/component/selectors/GroupedSelect.js", + "source_location": "L1", + "_origin": "ast", + "id": "selectors_groupedselect", + "community": 124, + "norm_label": "groupedselect.js" + }, + { + "label": "groupSpecialtiesByParent()", + "file_type": "code", + "source_file": "app/component/selectors/GroupedSelect.js", + "source_location": "L7", + "_origin": "ast", + "id": "selectors_groupedselect_groupspecialtiesbyparent", + "community": 124, + "norm_label": "groupspecialtiesbyparent()" + }, + { + "label": "GroupedSelect()", + "file_type": "code", + "source_file": "app/component/selectors/GroupedSelect.js", + "source_location": "L25", + "_origin": "ast", + "id": "selectors_groupedselect_groupedselect", + "community": 124, + "norm_label": "groupedselect()" + }, + { + "label": "MultipleSelect.js", + "file_type": "code", + "source_file": "app/component/selectors/MultipleSelect.js", + "source_location": "L1", + "_origin": "ast", + "id": "selectors_multipleselect", + "community": 353, + "norm_label": "multipleselect.js" + }, + { + "label": "MultipleSelect()", + "file_type": "code", + "source_file": "app/component/selectors/MultipleSelect.js", + "source_location": "L7", + "_origin": "ast", + "id": "selectors_multipleselect_multipleselect", + "community": 353, + "norm_label": "multipleselect()" + }, + { + "label": "Crop.js", + "file_type": "code", + "source_file": "app/component/uploadFile/Crop.js", + "source_location": "L1", + "_origin": "ast", + "id": "uploadfile_crop", + "community": 64, + "norm_label": "crop.js" + }, + { + "label": "Crop()", + "file_type": "code", + "source_file": "app/component/uploadFile/Crop.js", + "source_location": "L6", + "_origin": "ast", + "id": "uploadfile_crop_crop", + "community": 64, + "norm_label": "crop()" + }, + { + "label": "ModalUpload.js", + "file_type": "code", + "source_file": "app/component/uploadFile/ModalUpload.js", + "source_location": "L1", + "_origin": "ast", + "id": "uploadfile_modalupload", + "community": 64, + "norm_label": "modalupload.js" + }, + { + "label": "ModalUpload()", + "file_type": "code", + "source_file": "app/component/uploadFile/ModalUpload.js", + "source_location": "L6", + "_origin": "ast", + "id": "uploadfile_modalupload_modalupload", + "community": 64, + "norm_label": "modalupload()" + }, + { + "label": "cropImg.js", + "file_type": "code", + "source_file": "app/component/uploadFile/cropImg.js", + "source_location": "L1", + "_origin": "ast", + "id": "uploadfile_cropimg", + "community": 64, + "norm_label": "cropimg.js" + }, + { + "label": "createImage()", + "file_type": "code", + "source_file": "app/component/uploadFile/cropImg.js", + "source_location": "L1", + "_origin": "ast", + "id": "uploadfile_cropimg_createimage", + "community": 64, + "norm_label": "createimage()" + }, + { + "label": "getCroppedImg()", + "file_type": "code", + "source_file": "app/component/uploadFile/cropImg.js", + "source_location": "L10", + "_origin": "ast", + "id": "uploadfile_cropimg_getcroppedimg", + "community": 64, + "norm_label": "getcroppedimg()" + }, + { + "label": "dataURLtoFile()", + "file_type": "code", + "source_file": "app/component/uploadFile/cropImg.js", + "source_location": "L40", + "_origin": "ast", + "id": "uploadfile_cropimg_dataurltofile", + "community": 64, + "norm_label": "dataurltofile()" + }, + { + "label": "cropImage()", + "file_type": "code", + "source_file": "app/component/uploadFile/cropImg.js", + "source_location": "L54", + "_origin": "ast", + "id": "uploadfile_cropimg_cropimage", + "community": 64, + "norm_label": "cropimage()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "app/component/uploadFile/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "uploadfile_index", + "community": 64, + "norm_label": "index.js" + }, + { + "label": "UploadFile()", + "file_type": "code", + "source_file": "app/component/uploadFile/index.js", + "source_location": "L11", + "_origin": "ast", + "id": "uploadfile_index_uploadfile", + "community": 64, + "norm_label": "uploadfile()" + }, + { + "label": "page.js", + "file_type": "code", + "source_file": "app/contact-us/page.js", + "source_location": "L1", + "_origin": "ast", + "id": "contact_us_page", + "community": 188, + "norm_label": "page.js" + }, + { + "label": "ContactUs()", + "file_type": "code", + "source_file": "app/contact-us/page.js", + "source_location": "L4", + "_origin": "ast", + "id": "contact_us_page_contactus", + "community": 188, + "norm_label": "contactus()" + }, + { + "label": "not-found.js", + "file_type": "code", + "source_file": "app/dashboard/not-found.js", + "source_location": "L1", + "_origin": "ast", + "id": "dashboard_not_found", + "community": 189, + "norm_label": "not-found.js" + }, + { + "label": "NotFound()", + "file_type": "code", + "source_file": "app/dashboard/not-found.js", + "source_location": "L4", + "_origin": "ast", + "id": "dashboard_not_found_notfound", + "community": 189, + "norm_label": "notfound()" + }, + { + "label": "page.js", + "file_type": "code", + "source_file": "app/dashboard/page.js", + "source_location": "L1", + "_origin": "ast", + "id": "dashboard_page", + "community": 6, + "norm_label": "page.js" + }, + { + "label": "metadata", + "file_type": "code", + "source_file": "app/dashboard/page.js", + "source_location": "L14", + "_origin": "ast", + "id": "dashboard_page_metadata", + "community": 6, + "norm_label": "metadata" + }, + { + "label": "Dashboard()", + "file_type": "code", + "source_file": "app/dashboard/page.js", + "source_location": "L18", + "_origin": "ast", + "id": "dashboard_page_dashboard", + "community": 6, + "norm_label": "dashboard()" + }, + { + "label": "error.js", + "file_type": "code", + "source_file": "app/doctor/[slug]/error.js", + "source_location": "L1", + "_origin": "ast", + "id": "slug_error", + "community": 355, + "norm_label": "error.js" + }, + { + "label": "Error()", + "file_type": "code", + "source_file": "app/doctor/[slug]/error.js", + "source_location": "L3", + "_origin": "ast", + "id": "slug_error_error", + "community": 355, + "norm_label": "error()" + }, + { + "label": "loading.js", + "file_type": "code", + "source_file": "app/doctor/[slug]/loading.js", + "source_location": "L1", + "_origin": "ast", + "id": "app_doctor_slug_loading_js_slug_loading", + "community": 128, + "norm_label": "loading.js" + }, + { + "label": "Loading()", + "file_type": "code", + "source_file": "app/doctor/[slug]/loading.js", + "source_location": "L5", + "_origin": "ast", + "id": "app_doctor_slug_loading_js_slug_loading_loading", + "community": 128, + "norm_label": "loading()" + }, + { + "label": "page.js", + "file_type": "code", + "source_file": "app/doctor/[slug]/page.js", + "source_location": "L1", + "_origin": "ast", + "id": "app_doctor_slug_page_js_slug_page", + "community": 89, + "norm_label": "page.js" + }, + { + "label": "getDoctor", + "file_type": "code", + "source_file": "app/doctor/[slug]/page.js", + "source_location": "L13", + "_origin": "ast", + "id": "slug_page_getdoctor", + "community": 89, + "norm_label": "getdoctor" + }, + { + "label": "getDoctorAddresses", + "file_type": "code", + "source_file": "app/doctor/[slug]/page.js", + "source_location": "L23", + "_origin": "ast", + "id": "slug_page_getdoctoraddresses", + "community": 89, + "norm_label": "getdoctoraddresses" + }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "app/doctor/[slug]/page.js", + "source_location": "L36", + "_origin": "ast", + "id": "app_doctor_slug_page_js_slug_page_generatemetadata", + "community": 89, + "norm_label": "generatemetadata()" + }, + { + "label": "Doctor()", + "file_type": "code", + "source_file": "app/doctor/[slug]/page.js", + "source_location": "L79", + "_origin": "ast", + "id": "slug_page_doctor", + "community": 89, + "norm_label": "doctor()" + }, + { + "label": "loading.js", + "file_type": "code", + "source_file": "app/doctors/loading.js", + "source_location": "L1", + "_origin": "ast", + "id": "doctors_loading", + "community": 192, + "norm_label": "loading.js" + }, + { + "label": "Loading()", + "file_type": "code", + "source_file": "app/doctors/loading.js", + "source_location": "L5", + "_origin": "ast", + "id": "doctors_loading_loading", + "community": 192, + "norm_label": "loading()" + }, + { + "label": "page.js", + "file_type": "code", + "source_file": "app/doctors/page.js", + "source_location": "L1", + "_origin": "ast", + "id": "doctors_page", + "community": 86, + "norm_label": "page.js" + }, + { + "label": "FILTER_KEYS", + "file_type": "code", + "source_file": "app/doctors/page.js", + "source_location": "L8", + "_origin": "ast", + "id": "doctors_page_filter_keys", + "community": 86, + "norm_label": "filter_keys" + }, + { + "label": "listingRobots()", + "file_type": "code", + "source_file": "app/doctors/page.js", + "source_location": "L11", + "_origin": "ast", + "id": "doctors_page_listingrobots", + "community": 86, + "norm_label": "listingrobots()" + }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "app/doctors/page.js", + "source_location": "L19", + "_origin": "ast", + "id": "doctors_page_generatemetadata", + "community": 86, + "norm_label": "generatemetadata()" + }, + { + "label": "Doctors()", + "file_type": "code", + "source_file": "app/doctors/page.js", + "source_location": "L40", + "_origin": "ast", + "id": "doctors_page_doctors", + "community": 86, + "norm_label": "doctors()" + }, + { + "label": "error.js", + "file_type": "code", + "source_file": "app/error.js", + "source_location": "L1", + "_origin": "ast", + "id": "app_error", + "community": 129, + "norm_label": "error.js" + }, + { + "label": "Error()", + "file_type": "code", + "source_file": "app/error.js", + "source_location": "L3", + "_origin": "ast", + "id": "app_error_error", + "community": 129, + "norm_label": "error()" + }, + { + "label": "layout.js", + "file_type": "code", + "source_file": "app/layout.js", + "source_location": "L1", + "_origin": "ast", + "id": "app_layout", + "community": 65, + "norm_label": "layout.js" + }, + { + "label": "viewport", + "file_type": "code", + "source_file": "app/layout.js", + "source_location": "L13", + "_origin": "ast", + "id": "app_layout_viewport", + "community": 65, + "norm_label": "viewport" + }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "app/layout.js", + "source_location": "L18", + "_origin": "ast", + "id": "app_layout_generatemetadata", + "community": 72, + "norm_label": "generatemetadata()" + }, + { + "label": "RootLayout()", + "file_type": "code", + "source_file": "app/layout.js", + "source_location": "L82", + "_origin": "ast", + "id": "app_layout_rootlayout", + "community": 45, + "norm_label": "rootlayout()" + }, + { + "label": "page.js", + "file_type": "code", + "source_file": "app/login-verify/page.js", + "source_location": "L1", + "_origin": "ast", + "id": "login_verify_page", + "community": 118, + "norm_label": "page.js" + }, + { + "label": "metadata", + "file_type": "code", + "source_file": "app/login-verify/page.js", + "source_location": "L3", + "_origin": "ast", + "id": "login_verify_page_metadata", + "community": 118, + "norm_label": "metadata" + }, + { + "label": "LoginVerify()", + "file_type": "code", + "source_file": "app/login-verify/page.js", + "source_location": "L7", + "_origin": "ast", + "id": "login_verify_page_loginverify", + "community": 118, + "norm_label": "loginverify()" + }, + { + "label": "page.js", + "file_type": "code", + "source_file": "app/login/page.js", + "source_location": "L1", + "_origin": "ast", + "id": "login_page", + "community": 6, + "norm_label": "page.js" + }, + { + "label": "metadata", + "file_type": "code", + "source_file": "app/login/page.js", + "source_location": "L6", + "_origin": "ast", + "id": "login_page_metadata", + "community": 6, + "norm_label": "metadata" + }, + { + "label": "LogIn()", + "file_type": "code", + "source_file": "app/login/page.js", + "source_location": "L10", + "_origin": "ast", + "id": "login_page_login", + "community": 6, + "norm_label": "login()" + }, + { + "label": "not-found.js", + "file_type": "code", + "source_file": "app/not-found.js", + "source_location": "L1", + "_origin": "ast", + "id": "app_not_found", + "community": 130, + "norm_label": "not-found.js" + }, + { + "label": "NotFound()", + "file_type": "code", + "source_file": "app/not-found.js", + "source_location": "L4", + "_origin": "ast", + "id": "app_not_found_notfound", + "community": 130, + "norm_label": "notfound()" + }, + { + "label": "page.js", + "file_type": "code", + "source_file": "app/page.js", + "source_location": "L1", + "_origin": "ast", + "id": "app_page", + "community": 131, + "norm_label": "page.js" + }, + { + "label": "Home()", + "file_type": "code", + "source_file": "app/page.js", + "source_location": "L4", + "_origin": "ast", + "id": "app_page_home", + "community": 131, + "norm_label": "home()" + }, + { + "label": "page.js", + "file_type": "code", + "source_file": "app/payment/[uuid]/page.js", + "source_location": "L1", + "_origin": "ast", + "id": "uuid_page", + "community": 358, + "norm_label": "page.js" + }, + { + "label": "PaymentDetailsPage()", + "file_type": "code", + "source_file": "app/payment/[uuid]/page.js", + "source_location": "L10", + "_origin": "ast", + "id": "uuid_page_paymentdetailspage", + "community": 358, + "norm_label": "paymentdetailspage()" + }, + { + "label": "layout.js", + "file_type": "code", + "source_file": "app/payment/layout.js", + "source_location": "L1", + "_origin": "ast", + "id": "payment_layout", + "community": 120, + "norm_label": "layout.js" + }, + { + "label": "metadata", + "file_type": "code", + "source_file": "app/payment/layout.js", + "source_location": "L1", + "_origin": "ast", + "id": "payment_layout_metadata", + "community": 120, + "norm_label": "metadata" + }, + { + "label": "PaymentLayout()", + "file_type": "code", + "source_file": "app/payment/layout.js", + "source_location": "L5", + "_origin": "ast", + "id": "payment_layout_paymentlayout", + "community": 120, + "norm_label": "paymentlayout()" + }, + { + "label": "page.js", + "file_type": "code", + "source_file": "app/payment/result/page.js", + "source_location": "L1", + "_origin": "ast", + "id": "result_page", + "community": 123, + "norm_label": "page.js" + }, + { + "label": "PaymentResultRedirect()", + "file_type": "code", + "source_file": "app/payment/result/page.js", + "source_location": "L7", + "_origin": "ast", + "id": "result_page_paymentresultredirect", + "community": 123, + "norm_label": "paymentresultredirect()" + }, + { + "label": "PaymentResultPage()", + "file_type": "code", + "source_file": "app/payment/result/page.js", + "source_location": "L32", + "_origin": "ast", + "id": "result_page_paymentresultpage", + "community": 123, + "norm_label": "paymentresultpage()" + }, + { + "label": "robots.js", + "file_type": "code", + "source_file": "app/robots.js", + "source_location": "L1", + "_origin": "ast", + "id": "app_robots", + "community": 21, + "norm_label": "robots.js" + }, + { + "label": "getCurrentDomain()", + "file_type": "code", + "source_file": "app/robots.js", + "source_location": "L4", + "_origin": "ast", + "id": "app_robots_getcurrentdomain", + "community": 21, + "norm_label": "getcurrentdomain()" + }, + { + "label": "robots()", + "file_type": "code", + "source_file": "app/robots.js", + "source_location": "L13", + "_origin": "ast", + "id": "app_robots_robots", + "community": 21, + "norm_label": "robots()" + }, + { + "label": "sitemap.js", + "file_type": "code", + "source_file": "app/sitemap.js", + "source_location": "L1", + "_origin": "ast", + "id": "app_sitemap", + "community": 21, + "norm_label": "sitemap.js" + }, + { + "label": "toSafeDate()", + "file_type": "code", + "source_file": "app/sitemap.js", + "source_location": "L12", + "_origin": "ast", + "id": "app_sitemap_tosafedate", + "community": 21, + "norm_label": "tosafedate()" + }, + { + "label": "withLastModified()", + "file_type": "code", + "source_file": "app/sitemap.js", + "source_location": "L18", + "_origin": "ast", + "id": "app_sitemap_withlastmodified", + "community": 21, + "norm_label": "withlastmodified()" + }, + { + "label": "getCurrentDomain()", + "file_type": "code", + "source_file": "app/sitemap.js", + "source_location": "L23", + "_origin": "ast", + "id": "app_sitemap_getcurrentdomain", + "community": 21, + "norm_label": "getcurrentdomain()" + }, + { + "label": "getCityScope()", + "file_type": "code", + "source_file": "app/sitemap.js", + "source_location": "L33", + "_origin": "ast", + "id": "app_sitemap_getcityscope", + "community": 21, + "norm_label": "getcityscope()" + }, + { + "label": "getStaticPages()", + "file_type": "code", + "source_file": "app/sitemap.js", + "source_location": "L44", + "_origin": "ast", + "id": "app_sitemap_getstaticpages", + "community": 21, + "norm_label": "getstaticpages()" + }, + { + "label": "fetchAllPages()", + "file_type": "code", + "source_file": "app/sitemap.js", + "source_location": "L56", + "_origin": "ast", + "id": "app_sitemap_fetchallpages", + "community": 21, + "norm_label": "fetchallpages()" + }, + { + "label": "cityFilterParams()", + "file_type": "code", + "source_file": "app/sitemap.js", + "source_location": "L84", + "_origin": "ast", + "id": "app_sitemap_cityfilterparams", + "community": 21, + "norm_label": "cityfilterparams()" + }, + { + "label": "getDoctorUrls()", + "file_type": "code", + "source_file": "app/sitemap.js", + "source_location": "L92", + "_origin": "ast", + "id": "app_sitemap_getdoctorurls", + "community": 21, + "norm_label": "getdoctorurls()" + }, + { + "label": "getClinicUrls()", + "file_type": "code", + "source_file": "app/sitemap.js", + "source_location": "L108", + "_origin": "ast", + "id": "app_sitemap_getclinicurls", + "community": 21, + "norm_label": "getclinicurls()" + }, + { + "label": "getBlogUrls()", + "file_type": "code", + "source_file": "app/sitemap.js", + "source_location": "L124", + "_origin": "ast", + "id": "app_sitemap_getblogurls", + "community": 21, + "norm_label": "getblogurls()" + }, + { + "label": "sitemap()", + "file_type": "code", + "source_file": "app/sitemap.js", + "source_location": "L140", + "_origin": "ast", + "id": "app_sitemap_sitemap", + "community": 21, + "norm_label": "sitemap()" + }, + { + "label": "page.js", + "file_type": "code", + "source_file": "app/specialties/page.js", + "source_location": "L1", + "_origin": "ast", + "id": "specialties_page", + "community": 29, + "norm_label": "page.js" + }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "app/specialties/page.js", + "source_location": "L5", + "_origin": "ast", + "id": "specialties_page_generatemetadata", + "community": 29, + "norm_label": "generatemetadata()" + }, + { + "label": "Specialties()", + "file_type": "code", + "source_file": "app/specialties/page.js", + "source_location": "L22", + "_origin": "ast", + "id": "specialties_page_specialties", + "community": 29, + "norm_label": "specialties()" + }, + { + "label": "theme.js", + "file_type": "code", + "source_file": "app/theme/theme.js", + "source_location": "L1", + "_origin": "ast", + "id": "theme_theme", + "community": 65, + "norm_label": "theme.js" + }, + { + "label": "theme", + "file_type": "code", + "source_file": "app/theme/theme.js", + "source_location": "L4", + "_origin": "ast", + "id": "theme_theme_theme", + "community": 65, + "norm_label": "theme" + }, + { + "label": "Head.js", + "file_type": "code", + "source_file": "components/aboutUs/Head.js", + "source_location": "L1", + "_origin": "ast", + "id": "aboutus_head", + "community": 16, + "norm_label": "head.js" + }, + { + "label": "Head()", + "file_type": "code", + "source_file": "components/aboutUs/Head.js", + "source_location": "L4", + "_origin": "ast", + "id": "aboutus_head_head", + "community": 16, + "norm_label": "head()" + }, + { + "label": "Services.js", + "file_type": "code", + "source_file": "components/aboutUs/Services.js", + "source_location": "L1", + "_origin": "ast", + "id": "aboutus_services", + "community": 16, + "norm_label": "services.js" + }, + { + "label": "ourServices", + "file_type": "code", + "source_file": "components/aboutUs/Services.js", + "source_location": "L5", + "_origin": "ast", + "id": "aboutus_services_ourservices", + "community": 16, + "norm_label": "ourservices" + }, + { + "label": "Services()", + "file_type": "code", + "source_file": "components/aboutUs/Services.js", + "source_location": "L14", + "_origin": "ast", + "id": "aboutus_services_services", + "community": 16, + "norm_label": "services()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/aboutUs/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "aboutus_index", + "community": 16, + "norm_label": "index.js" + }, + { + "label": "AboutUsPage()", + "file_type": "code", + "source_file": "components/aboutUs/index.js", + "source_location": "L5", + "_origin": "ast", + "id": "aboutus_index_aboutuspage", + "community": 16, + "norm_label": "aboutuspage()" + }, + { + "label": "Container.js", + "file_type": "code", + "source_file": "components/appointment/Container.js", + "source_location": "L1", + "_origin": "ast", + "id": "appointment_container", + "community": 11, + "norm_label": "container.js" + }, + { + "label": "Container()", + "file_type": "code", + "source_file": "components/appointment/Container.js", + "source_location": "L14", + "_origin": "ast", + "id": "appointment_container_container", + "community": 11, + "norm_label": "container()" + }, + { + "label": "Content.js", + "file_type": "code", + "source_file": "components/appointment/Content.js", + "source_location": "L1", + "_origin": "ast", + "id": "appointment_content", + "community": 11, + "norm_label": "content.js" + }, + { + "label": "Content()", + "file_type": "code", + "source_file": "components/appointment/Content.js", + "source_location": "L4", + "_origin": "ast", + "id": "appointment_content_content", + "community": 11, + "norm_label": "content()" + }, + { + "label": "SelectDatePicker.js", + "file_type": "code", + "source_file": "components/appointment/date/Time/SelectDatePicker.js", + "source_location": "L1", + "_origin": "ast", + "id": "time_selectdatepicker", + "community": 11, + "norm_label": "selectdatepicker.js" + }, + { + "label": "SelectDatePicker()", + "file_type": "code", + "source_file": "components/appointment/date/Time/SelectDatePicker.js", + "source_location": "L3", + "_origin": "ast", + "id": "time_selectdatepicker_selectdatepicker", + "community": 11, + "norm_label": "selectdatepicker()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/appointment/date/Time/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "time_index", + "community": 11, + "norm_label": "index.js" + }, + { + "label": "Time()", + "file_type": "code", + "source_file": "components/appointment/date/Time/index.js", + "source_location": "L3", + "_origin": "ast", + "id": "time_index_time", + "community": 11, + "norm_label": "time()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/appointment/date/hour/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "hour_index", + "community": 11, + "norm_label": "index.js" + }, + { + "label": "Hour()", + "file_type": "code", + "source_file": "components/appointment/date/hour/index.js", + "source_location": "L3", + "_origin": "ast", + "id": "hour_index_hour", + "community": 11, + "norm_label": "hour()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/appointment/date/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "date_index", + "community": 11, + "norm_label": "index.js" + }, + { + "label": "Date()", + "file_type": "code", + "source_file": "components/appointment/date/index.js", + "source_location": "L5", + "_origin": "ast", + "id": "date_index_date", + "community": 11, + "norm_label": "date()" + }, + { + "label": "Content.js", + "file_type": "code", + "source_file": "components/appointment/detail/Content.js", + "source_location": "L1", + "_origin": "ast", + "id": "detail_content", + "community": 3, + "norm_label": "content.js" + }, + { + "label": "Content()", + "file_type": "code", + "source_file": "components/appointment/detail/Content.js", + "source_location": "L1", + "_origin": "ast", + "id": "detail_content_content", + "community": 3, + "norm_label": "content()" + }, + { + "label": "Form.js", + "file_type": "code", + "source_file": "components/appointment/detail/Form.js", + "source_location": "L1", + "_origin": "ast", + "id": "detail_form", + "community": 3, + "norm_label": "form.js" + }, + { + "label": "Form()", + "file_type": "code", + "source_file": "components/appointment/detail/Form.js", + "source_location": "L5", + "_origin": "ast", + "id": "detail_form_form", + "community": 3, + "norm_label": "form()" + }, + { + "label": "SubmitData.js", + "file_type": "code", + "source_file": "components/appointment/detail/SubmitData.js", + "source_location": "L1", + "_origin": "ast", + "id": "detail_submitdata", + "community": 3, + "norm_label": "submitdata.js" + }, + { + "label": "SubmitData()", + "file_type": "code", + "source_file": "components/appointment/detail/SubmitData.js", + "source_location": "L10", + "_origin": "ast", + "id": "detail_submitdata_submitdata", + "community": 3, + "norm_label": "submitdata()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/appointment/detail/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_appointment_detail_index_js_detail_index", + "community": 3, + "norm_label": "index.js" + }, + { + "label": "Detail()", + "file_type": "code", + "source_file": "components/appointment/detail/index.js", + "source_location": "L9", + "_origin": "ast", + "id": "components_appointment_detail_index_js_detail_index_detail", + "community": 3, + "norm_label": "detail()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/appointment/failedPay/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "failedpay_index", + "community": 196, + "norm_label": "index.js" + }, + { + "label": "FailedPay()", + "file_type": "code", + "source_file": "components/appointment/failedPay/index.js", + "source_location": "L7", + "_origin": "ast", + "id": "failedpay_index_failedpay", + "community": 196, + "norm_label": "failedpay()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/appointment/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "appointment_index", + "community": 11, + "norm_label": "index.js" + }, + { + "label": "defaultData", + "file_type": "code", + "source_file": "components/appointment/index.js", + "source_location": "L9", + "_origin": "ast", + "id": "appointment_index_defaultdata", + "community": 11, + "norm_label": "defaultdata" + }, + { + "label": "buildProfileData()", + "file_type": "code", + "source_file": "components/appointment/index.js", + "source_location": "L20", + "_origin": "ast", + "id": "appointment_index_buildprofiledata", + "community": 11, + "norm_label": "buildprofiledata()" + }, + { + "label": "AppointmentPage()", + "file_type": "code", + "source_file": "components/appointment/index.js", + "source_location": "L45", + "_origin": "ast", + "id": "appointment_index_appointmentpage", + "community": 11, + "norm_label": "appointmentpage()" + }, + { + "label": "Detail.js", + "file_type": "code", + "source_file": "components/appointment/information/Detail.js", + "source_location": "L1", + "_origin": "ast", + "id": "information_detail", + "community": 78, + "norm_label": "detail.js" + }, + { + "label": "Detail()", + "file_type": "code", + "source_file": "components/appointment/information/Detail.js", + "source_location": "L11", + "_origin": "ast", + "id": "information_detail_detail", + "community": 78, + "norm_label": "detail()" + }, + { + "label": "Head.js", + "file_type": "code", + "source_file": "components/appointment/information/Head.js", + "source_location": "L1", + "_origin": "ast", + "id": "information_head", + "community": 78, + "norm_label": "head.js" + }, + { + "label": "Head()", + "file_type": "code", + "source_file": "components/appointment/information/Head.js", + "source_location": "L3", + "_origin": "ast", + "id": "information_head_head", + "community": 78, + "norm_label": "head()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/appointment/information/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_appointment_information_index_js_information_index", + "community": 78, + "norm_label": "index.js" + }, + { + "label": "Information()", + "file_type": "code", + "source_file": "components/appointment/information/index.js", + "source_location": "L6", + "_origin": "ast", + "id": "components_appointment_information_index_js_information_index_information", + "community": 78, + "norm_label": "information()" + }, + { + "label": "Address.js", + "file_type": "code", + "source_file": "components/appointment/location/Address.js", + "source_location": "L1", + "_origin": "ast", + "id": "location_address", + "community": 11, + "norm_label": "address.js" + }, + { + "label": "Address()", + "file_type": "code", + "source_file": "components/appointment/location/Address.js", + "source_location": "L1", + "_origin": "ast", + "id": "location_address_address", + "community": 11, + "norm_label": "address()" + }, + { + "label": "Head.js", + "file_type": "code", + "source_file": "components/appointment/location/Head.js", + "source_location": "L1", + "_origin": "ast", + "id": "location_head", + "community": 11, + "norm_label": "head.js" + }, + { + "label": "Head()", + "file_type": "code", + "source_file": "components/appointment/location/Head.js", + "source_location": "L3", + "_origin": "ast", + "id": "location_head_head", + "community": 11, + "norm_label": "head()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/appointment/location/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "location_index", + "community": 11, + "norm_label": "index.js" + }, + { + "label": "Location()", + "file_type": "code", + "source_file": "components/appointment/location/index.js", + "source_location": "L4", + "_origin": "ast", + "id": "location_index_location", + "community": 11, + "norm_label": "location()" + }, + { + "label": "ButtonFixed.js", + "file_type": "code", + "source_file": "components/appointment/paying/ButtonFixed.js", + "source_location": "L1", + "_origin": "ast", + "id": "paying_buttonfixed", + "community": 3, + "norm_label": "buttonfixed.js" + }, + { + "label": "ButtonFixed()", + "file_type": "code", + "source_file": "components/appointment/paying/ButtonFixed.js", + "source_location": "L3", + "_origin": "ast", + "id": "paying_buttonfixed_buttonfixed", + "community": 3, + "norm_label": "buttonfixed()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/appointment/paying/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "paying_index", + "community": 3, + "norm_label": "index.js" + }, + { + "label": "Paying()", + "file_type": "code", + "source_file": "components/appointment/paying/index.js", + "source_location": "L11", + "_origin": "ast", + "id": "paying_index_paying", + "community": 3, + "norm_label": "paying()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/appointment/successPay/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "successpay_index", + "community": 356, + "norm_label": "index.js" + }, + { + "label": "SuccessPay()", + "file_type": "code", + "source_file": "components/appointment/successPay/index.js", + "source_location": "L6", + "_origin": "ast", + "id": "successpay_index_successpay", + "community": 356, + "norm_label": "successpay()" + }, + { + "label": "Caption.js", + "file_type": "code", + "source_file": "components/blog/detail/Caption.js", + "source_location": "L1", + "_origin": "ast", + "id": "detail_caption", + "community": 4, + "norm_label": "caption.js" + }, + { + "label": "Caption()", + "file_type": "code", + "source_file": "components/blog/detail/Caption.js", + "source_location": "L6", + "_origin": "ast", + "id": "detail_caption_caption", + "community": 4, + "norm_label": "caption()" + }, + { + "label": "SocialMedia.js", + "file_type": "code", + "source_file": "components/blog/detail/SocialMedia.js", + "source_location": "L1", + "_origin": "ast", + "id": "detail_socialmedia", + "community": 4, + "norm_label": "socialmedia.js" + }, + { + "label": "socials", + "file_type": "code", + "source_file": "components/blog/detail/SocialMedia.js", + "source_location": "L6", + "_origin": "ast", + "id": "detail_socialmedia_socials", + "community": 4, + "norm_label": "socials" + }, + { + "label": "SocialMedia()", + "file_type": "code", + "source_file": "components/blog/detail/SocialMedia.js", + "source_location": "L8", + "_origin": "ast", + "id": "detail_socialmedia_socialmedia", + "community": 4, + "norm_label": "socialmedia()" + }, + { + "label": "AddComment.js", + "file_type": "code", + "source_file": "components/blog/detail/commentUser/AddComment.js", + "source_location": "L1", + "_origin": "ast", + "id": "commentuser_addcomment", + "community": 4, + "norm_label": "addcomment.js" + }, + { + "label": "AddComment()", + "file_type": "code", + "source_file": "components/blog/detail/commentUser/AddComment.js", + "source_location": "L4", + "_origin": "ast", + "id": "commentuser_addcomment_addcomment", + "community": 4, + "norm_label": "addcomment()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/blog/detail/commentUser/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "commentuser_index", + "community": 4, + "norm_label": "index.js" + }, + { + "label": "CommentUser()", + "file_type": "code", + "source_file": "components/blog/detail/commentUser/index.js", + "source_location": "L7", + "_origin": "ast", + "id": "commentuser_index_commentuser", + "community": 4, + "norm_label": "commentuser()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/blog/detail/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_blog_detail_index_js_detail_index", + "community": 4, + "norm_label": "index.js" + }, + { + "label": "Detail()", + "file_type": "code", + "source_file": "components/blog/detail/index.js", + "source_location": "L5", + "_origin": "ast", + "id": "components_blog_detail_index_js_detail_index_detail", + "community": 4, + "norm_label": "detail()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/blog/head/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_blog_head_index_js_head_index", + "community": 1, + "norm_label": "index.js" + }, + { + "label": "Head()", + "file_type": "code", + "source_file": "components/blog/head/index.js", + "source_location": "L4", + "_origin": "ast", + "id": "components_blog_head_index_js_head_index_head", + "community": 1, + "norm_label": "head()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/blog/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "blog_index", + "community": 1, + "norm_label": "index.js" + }, + { + "label": "BlogPage()", + "file_type": "code", + "source_file": "components/blog/index.js", + "source_location": "L5", + "_origin": "ast", + "id": "blog_index_blogpage", + "community": 1, + "norm_label": "blogpage()" + }, + { + "label": "Item.js", + "file_type": "code", + "source_file": "components/blog/relatedContent/Item.js", + "source_location": "L1", + "_origin": "ast", + "id": "relatedcontent_item", + "community": 1, + "norm_label": "item.js" + }, + { + "label": "Item()", + "file_type": "code", + "source_file": "components/blog/relatedContent/Item.js", + "source_location": "L7", + "_origin": "ast", + "id": "relatedcontent_item_item", + "community": 1, + "norm_label": "item()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/blog/relatedContent/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "relatedcontent_index", + "community": 1, + "norm_label": "index.js" + }, + { + "label": "RelatedContent()", + "file_type": "code", + "source_file": "components/blog/relatedContent/index.js", + "source_location": "L6", + "_origin": "ast", + "id": "relatedcontent_index_relatedcontent", + "community": 1, + "norm_label": "relatedcontent()" + }, + { + "label": "Head.js", + "file_type": "code", + "source_file": "components/blogs/Head.js", + "source_location": "L1", + "_origin": "ast", + "id": "blogs_head", + "community": 1, + "norm_label": "head.js" + }, + { + "label": "Head()", + "file_type": "code", + "source_file": "components/blogs/Head.js", + "source_location": "L5", + "_origin": "ast", + "id": "blogs_head_head", + "community": 1, + "norm_label": "head()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/blogs/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "blogs_index", + "community": 1, + "norm_label": "index.js" + }, + { + "label": "BlogsPage()", + "file_type": "code", + "source_file": "components/blogs/index.js", + "source_location": "L10", + "_origin": "ast", + "id": "blogs_index_blogspage", + "community": 1, + "norm_label": "blogspage()" + }, + { + "label": "Article.js", + "file_type": "code", + "source_file": "components/blogs/latestArticles/Article.js", + "source_location": "L1", + "_origin": "ast", + "id": "latestarticles_article", + "community": 1, + "norm_label": "article.js" + }, + { + "label": "Article()", + "file_type": "code", + "source_file": "components/blogs/latestArticles/Article.js", + "source_location": "L7", + "_origin": "ast", + "id": "latestarticles_article_article", + "community": 1, + "norm_label": "article()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/blogs/latestArticles/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "latestarticles_index", + "community": 1, + "norm_label": "index.js" + }, + { + "label": "LatestArticles()", + "file_type": "code", + "source_file": "components/blogs/latestArticles/index.js", + "source_location": "L4", + "_origin": "ast", + "id": "latestarticles_index_latestarticles", + "community": 1, + "norm_label": "latestarticles()" + }, + { + "label": "ItemTitle.js", + "file_type": "code", + "source_file": "components/blogs/title/ItemTitle.js", + "source_location": "L1", + "_origin": "ast", + "id": "title_itemtitle", + "community": 1, + "norm_label": "itemtitle.js" + }, + { + "label": "ItemTitle()", + "file_type": "code", + "source_file": "components/blogs/title/ItemTitle.js", + "source_location": "L3", + "_origin": "ast", + "id": "title_itemtitle_itemtitle", + "community": 1, + "norm_label": "itemtitle()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/blogs/title/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "title_index", + "community": 1, + "norm_label": "index.js" + }, + { + "label": "Title()", + "file_type": "code", + "source_file": "components/blogs/title/index.js", + "source_location": "L6", + "_origin": "ast", + "id": "title_index_title", + "community": 1, + "norm_label": "title()" + }, + { + "label": "ContentDetail.js", + "file_type": "code", + "source_file": "components/clinic/components/about/ContentDetail.js", + "source_location": "L1", + "_origin": "ast", + "id": "about_contentdetail", + "community": 4, + "norm_label": "contentdetail.js" + }, + { + "label": "ContentDetail()", + "file_type": "code", + "source_file": "components/clinic/components/about/ContentDetail.js", + "source_location": "L4", + "_origin": "ast", + "id": "about_contentdetail_contentdetail", + "community": 4, + "norm_label": "contentdetail()" + }, + { + "label": "ListBime.js", + "file_type": "code", + "source_file": "components/clinic/components/about/ListBime.js", + "source_location": "L1", + "_origin": "ast", + "id": "about_listbime", + "community": 4, + "norm_label": "listbime.js" + }, + { + "label": "ListBime()", + "file_type": "code", + "source_file": "components/clinic/components/about/ListBime.js", + "source_location": "L8", + "_origin": "ast", + "id": "about_listbime_listbime", + "community": 4, + "norm_label": "listbime()" + }, + { + "label": "Services.js", + "file_type": "code", + "source_file": "components/clinic/components/about/Services.js", + "source_location": "L1", + "_origin": "ast", + "id": "about_services", + "community": 4, + "norm_label": "services.js" + }, + { + "label": "Services()", + "file_type": "code", + "source_file": "components/clinic/components/about/Services.js", + "source_location": "L4", + "_origin": "ast", + "id": "about_services_services", + "community": 4, + "norm_label": "services()" + }, + { + "label": "Specialties.js", + "file_type": "code", + "source_file": "components/clinic/components/about/Specialties.js", + "source_location": "L1", + "_origin": "ast", + "id": "about_specialties", + "community": 4, + "norm_label": "specialties.js" + }, + { + "label": "Specialties()", + "file_type": "code", + "source_file": "components/clinic/components/about/Specialties.js", + "source_location": "L4", + "_origin": "ast", + "id": "about_specialties_specialties", + "community": 4, + "norm_label": "specialties()" + }, + { + "label": "TextDetail.js", + "file_type": "code", + "source_file": "components/clinic/components/about/TextDetail.js", + "source_location": "L1", + "_origin": "ast", + "id": "about_textdetail", + "community": 4, + "norm_label": "textdetail.js" + }, + { + "label": "TextDetail()", + "file_type": "code", + "source_file": "components/clinic/components/about/TextDetail.js", + "source_location": "L6", + "_origin": "ast", + "id": "about_textdetail_textdetail", + "community": 4, + "norm_label": "textdetail()" + }, + { + "label": "Images.js", + "file_type": "code", + "source_file": "components/clinic/components/about/images/Images.js", + "source_location": "L1", + "_origin": "ast", + "id": "images_images", + "community": 4, + "norm_label": "images.js" + }, + { + "label": "Images()", + "file_type": "code", + "source_file": "components/clinic/components/about/images/Images.js", + "source_location": "L7", + "_origin": "ast", + "id": "images_images_images", + "community": 4, + "norm_label": "images()" + }, + { + "label": "Img.js", + "file_type": "code", + "source_file": "components/clinic/components/about/images/Img.js", + "source_location": "L1", + "_origin": "ast", + "id": "images_img", + "community": 338, + "norm_label": "img.js" + }, + { + "label": "Img()", + "file_type": "code", + "source_file": "components/clinic/components/about/images/Img.js", + "source_location": "L5", + "_origin": "ast", + "id": "images_img_img", + "community": 338, + "norm_label": "img()" + }, + { + "label": "List.js", + "file_type": "code", + "source_file": "components/clinic/components/about/images/List.js", + "source_location": "L1", + "_origin": "ast", + "id": "images_list", + "community": 4, + "norm_label": "list.js" + }, + { + "label": "List()", + "file_type": "code", + "source_file": "components/clinic/components/about/images/List.js", + "source_location": "L5", + "_origin": "ast", + "id": "images_list_list", + "community": 4, + "norm_label": "list()" + }, + { + "label": "Slider.js", + "file_type": "code", + "source_file": "components/clinic/components/about/images/Slider.js", + "source_location": "L1", + "_origin": "ast", + "id": "images_slider", + "community": 4, + "norm_label": "slider.js" + }, + { + "label": "Slider()", + "file_type": "code", + "source_file": "components/clinic/components/about/images/Slider.js", + "source_location": "L5", + "_origin": "ast", + "id": "images_slider_slider", + "community": 4, + "norm_label": "slider()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/clinic/components/about/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "about_index", + "community": 4, + "norm_label": "index.js" + }, + { + "label": "About()", + "file_type": "code", + "source_file": "components/clinic/components/about/index.js", + "source_location": "L8", + "_origin": "ast", + "id": "about_index_about", + "community": 4, + "norm_label": "about()" + }, + { + "label": "ContentDetail.js", + "file_type": "code", + "source_file": "components/clinic/components/contact/ContentDetail.js", + "source_location": "L1", + "_origin": "ast", + "id": "contact_contentdetail", + "community": 4, + "norm_label": "contentdetail.js" + }, + { + "label": "ContentDetail()", + "file_type": "code", + "source_file": "components/clinic/components/contact/ContentDetail.js", + "source_location": "L3", + "_origin": "ast", + "id": "contact_contentdetail_contentdetail", + "community": 4, + "norm_label": "contentdetail()" + }, + { + "label": "Detail.js", + "file_type": "code", + "source_file": "components/clinic/components/contact/Detail.js", + "source_location": "L1", + "_origin": "ast", + "id": "contact_detail", + "community": 4, + "norm_label": "detail.js" + }, + { + "label": "Detail()", + "file_type": "code", + "source_file": "components/clinic/components/contact/Detail.js", + "source_location": "L3", + "_origin": "ast", + "id": "contact_detail_detail", + "community": 4, + "norm_label": "detail()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/clinic/components/contact/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "contact_index", + "community": 4, + "norm_label": "index.js" + }, + { + "label": "Contact()", + "file_type": "code", + "source_file": "components/clinic/components/contact/index.js", + "source_location": "L10", + "_origin": "ast", + "id": "contact_index_contact", + "community": 4, + "norm_label": "contact()" + }, + { + "label": "Content.js", + "file_type": "code", + "source_file": "components/clinic/components/contact/modal/Content.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_clinic_components_contact_modal_content_js_modal_content", + "community": 109, + "norm_label": "content.js" + }, + { + "label": "maps", + "file_type": "code", + "source_file": "components/clinic/components/contact/modal/Content.js", + "source_location": "L4", + "_origin": "ast", + "id": "modal_content_maps", + "community": 109, + "norm_label": "maps" + }, + { + "label": "Content()", + "file_type": "code", + "source_file": "components/clinic/components/contact/modal/Content.js", + "source_location": "L12", + "_origin": "ast", + "id": "components_clinic_components_contact_modal_content_js_modal_content_content", + "community": 109, + "norm_label": "content()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/clinic/components/contact/modal/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_clinic_components_contact_modal_index_js_modal_index", + "community": 148, + "norm_label": "index.js" + }, + { + "label": "ModalOpenLocation()", + "file_type": "code", + "source_file": "components/clinic/components/contact/modal/index.js", + "source_location": "L7", + "_origin": "ast", + "id": "modal_index_modalopenlocation", + "community": 148, + "norm_label": "modalopenlocation()" + }, + { + "label": "List.js", + "file_type": "code", + "source_file": "components/clinic/components/doctors/List.js", + "source_location": "L1", + "_origin": "ast", + "id": "doctors_list", + "community": 4, + "norm_label": "list.js" + }, + { + "label": "List()", + "file_type": "code", + "source_file": "components/clinic/components/doctors/List.js", + "source_location": "L8", + "_origin": "ast", + "id": "doctors_list_list", + "community": 4, + "norm_label": "list()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_index_js_head_index", + "community": 149, + "norm_label": "index.js" + }, + { + "label": "Head()", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/index.js", + "source_location": "L11", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_index_js_head_index_head", + "community": 149, + "norm_label": "head()" + }, + { + "label": "ButtonApply.js", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/modal/ButtonApply.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_modal_buttonapply_js_modal_buttonapply", + "community": 150, + "norm_label": "buttonapply.js" + }, + { + "label": "ButtonApply()", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/modal/ButtonApply.js", + "source_location": "L4", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_modal_buttonapply_js_modal_buttonapply_buttonapply", + "community": 150, + "norm_label": "buttonapply()" + }, + { + "label": "Content.js", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/modal/Content.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_modal_content_js_modal_content", + "community": 151, + "norm_label": "content.js" + }, + { + "label": "Content()", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/modal/Content.js", + "source_location": "L4", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_modal_content_js_modal_content_content", + "community": 151, + "norm_label": "content()" + }, + { + "label": "DeleteAllButton.js", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/modal/DeleteAllButton.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_modal_deleteallbutton_js_modal_deleteallbutton", + "community": 152, + "norm_label": "deleteallbutton.js" + }, + { + "label": "DeleteAllButton()", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/modal/DeleteAllButton.js", + "source_location": "L7", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_modal_deleteallbutton_js_modal_deleteallbutton_deleteallbutton", + "community": 152, + "norm_label": "deleteallbutton()" + }, + { + "label": "FilterModal.js", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/modal/FilterModal.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_modal_filtermodal_js_modal_filtermodal", + "community": 153, + "norm_label": "filtermodal.js" + }, + { + "label": "FilterModal()", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/modal/FilterModal.js", + "source_location": "L11", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_modal_filtermodal_js_modal_filtermodal_filtermodal", + "community": 153, + "norm_label": "filtermodal()" + }, + { + "label": "CateSelector.js", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/modal/form/CateSelector.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_modal_form_cateselector_js_form_cateselector", + "community": 154, + "norm_label": "cateselector.js" + }, + { + "label": "CateSelector()", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/modal/form/CateSelector.js", + "source_location": "L5", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_modal_form_cateselector_js_form_cateselector_cateselector", + "community": 154, + "norm_label": "cateselector()" + }, + { + "label": "RadioContent.js", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/modal/form/RadioContent.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_modal_form_radiocontent_js_form_radiocontent", + "community": 155, + "norm_label": "radiocontent.js" + }, + { + "label": "RadioContent()", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/modal/form/RadioContent.js", + "source_location": "L3", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_modal_form_radiocontent_js_form_radiocontent_radiocontent", + "community": 155, + "norm_label": "radiocontent()" + }, + { + "label": "Radios.js", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/modal/form/Radios.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_modal_form_radios_js_form_radios", + "community": 156, + "norm_label": "radios.js" + }, + { + "label": "Radios()", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/modal/form/Radios.js", + "source_location": "L3", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_modal_form_radios_js_form_radios_radios", + "community": 156, + "norm_label": "radios()" + }, + { + "label": "SwitchContent.js", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/modal/form/SwitchContent.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_modal_form_switchcontent_js_form_switchcontent", + "community": 157, + "norm_label": "switchcontent.js" + }, + { + "label": "SwitchContent()", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/modal/form/SwitchContent.js", + "source_location": "L3", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_modal_form_switchcontent_js_form_switchcontent_switchcontent", + "community": 157, + "norm_label": "switchcontent()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/modal/form/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_modal_form_index_js_form_index", + "community": 71, + "norm_label": "index.js" + }, + { + "label": "gender", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/modal/form/index.js", + "source_location": "L6", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_modal_form_index_js_form_index_gender", + "community": 71, + "norm_label": "gender" + }, + { + "label": "degree", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/modal/form/index.js", + "source_location": "L7", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_modal_form_index_js_form_index_degree", + "community": 71, + "norm_label": "degree" + }, + { + "label": "Form()", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/modal/form/index.js", + "source_location": "L9", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_modal_form_index_js_form_index_form", + "community": 71, + "norm_label": "form()" + }, + { + "label": "AutoComplete.js", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/search/AutoComplete.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_search_autocomplete_js_search_autocomplete", + "community": 158, + "norm_label": "autocomplete.js" + }, + { + "label": "AutoComplete()", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/search/AutoComplete.js", + "source_location": "L4", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_search_autocomplete_js_search_autocomplete_autocomplete", + "community": 158, + "norm_label": "autocomplete()" + }, + { + "label": "SearchField.js", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/search/SearchField.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_search_searchfield_js_search_searchfield", + "community": 160, + "norm_label": "searchfield.js" + }, + { + "label": "SearchField()", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/search/SearchField.js", + "source_location": "L8", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_search_searchfield_js_search_searchfield_searchfield", + "community": 160, + "norm_label": "searchfield()" + }, + { + "label": "SendReq.js", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/search/SendReq.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_search_sendreq_js_search_sendreq", + "community": 161, + "norm_label": "sendreq.js" + }, + { + "label": "SendReq()", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/search/SendReq.js", + "source_location": "L6", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_search_sendreq_js_search_sendreq_sendreq", + "community": 161, + "norm_label": "sendreq()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/search/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_search_index_js_search_index", + "community": 159, + "norm_label": "index.js" + }, + { + "label": "SearchBar()", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/search/index.js", + "source_location": "L8", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_search_index_js_search_index_searchbar", + "community": 159, + "norm_label": "searchbar()" + }, + { + "label": "FilterBtn.js", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/sortlist/FilterBtn.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_sortlist_filterbtn_js_sortlist_filterbtn", + "community": 162, + "norm_label": "filterbtn.js" + }, + { + "label": "FilterBtn()", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/sortlist/FilterBtn.js", + "source_location": "L5", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_sortlist_filterbtn_js_sortlist_filterbtn_filterbtn", + "community": 162, + "norm_label": "filterbtn()" + }, + { + "label": "SelectSort.js", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/sortlist/SelectSort.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_sortlist_selectsort_js_sortlist_selectsort", + "community": 110, + "norm_label": "selectsort.js" + }, + { + "label": "listSort", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/sortlist/SelectSort.js", + "source_location": "L6", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_sortlist_selectsort_js_sortlist_selectsort_listsort", + "community": 110, + "norm_label": "listsort" + }, + { + "label": "SelectSort()", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/sortlist/SelectSort.js", + "source_location": "L12", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_sortlist_selectsort_js_sortlist_selectsort_selectsort", + "community": 110, + "norm_label": "selectsort()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/sortlist/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_sortlist_index_js_sortlist_index", + "community": 163, + "norm_label": "index.js" + }, + { + "label": "SortList()", + "file_type": "code", + "source_file": "components/clinic/components/doctors/head/sortlist/index.js", + "source_location": "L7", + "_origin": "ast", + "id": "components_clinic_components_doctors_head_sortlist_index_js_sortlist_index_sortlist", + "community": 163, + "norm_label": "sortlist()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/clinic/components/doctors/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_clinic_components_doctors_index_js_doctors_index", + "community": 4, + "norm_label": "index.js" + }, + { + "label": "Doctors()", + "file_type": "code", + "source_file": "components/clinic/components/doctors/index.js", + "source_location": "L7", + "_origin": "ast", + "id": "doctors_index_doctors", + "community": 4, + "norm_label": "doctors()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/clinic/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "clinic_index", + "community": 4, + "norm_label": "index.js" + }, + { + "label": "listTab", + "file_type": "code", + "source_file": "components/clinic/index.js", + "source_location": "L10", + "_origin": "ast", + "id": "clinic_index_listtab", + "community": 4, + "norm_label": "listtab" + }, + { + "label": "ClinicPage()", + "file_type": "code", + "source_file": "components/clinic/index.js", + "source_location": "L12", + "_origin": "ast", + "id": "clinic_index_clinicpage", + "community": 4, + "norm_label": "clinicpage()" + }, + { + "label": "AutoSearch.js", + "file_type": "code", + "source_file": "components/clinics/head/AutoSearch.js", + "source_location": "L1", + "_origin": "ast", + "id": "head_autosearch", + "community": 3, + "norm_label": "autosearch.js" + }, + { + "label": "AutoSearch()", + "file_type": "code", + "source_file": "components/clinics/head/AutoSearch.js", + "source_location": "L4", + "_origin": "ast", + "id": "head_autosearch_autosearch", + "community": 3, + "norm_label": "autosearch()" + }, + { + "label": "FilterButton.js", + "file_type": "code", + "source_file": "components/clinics/head/FilterButton.js", + "source_location": "L1", + "_origin": "ast", + "id": "head_filterbutton", + "community": 3, + "norm_label": "filterbutton.js" + }, + { + "label": "FilterButton()", + "file_type": "code", + "source_file": "components/clinics/head/FilterButton.js", + "source_location": "L6", + "_origin": "ast", + "id": "head_filterbutton_filterbutton", + "community": 3, + "norm_label": "filterbutton()" + }, + { + "label": "SearchBar.js", + "file_type": "code", + "source_file": "components/clinics/head/SearchBar.js", + "source_location": "L1", + "_origin": "ast", + "id": "head_searchbar", + "community": 3, + "norm_label": "searchbar.js" + }, + { + "label": "SearchBar()", + "file_type": "code", + "source_file": "components/clinics/head/SearchBar.js", + "source_location": "L13", + "_origin": "ast", + "id": "head_searchbar_searchbar", + "community": 3, + "norm_label": "searchbar()" + }, + { + "label": "AutoComplete.js", + "file_type": "code", + "source_file": "components/clinics/head/filter/AutoComplete.js", + "source_location": "L1", + "_origin": "ast", + "id": "filter_autocomplete", + "community": 3, + "norm_label": "autocomplete.js" + }, + { + "label": "AutoComplete()", + "file_type": "code", + "source_file": "components/clinics/head/filter/AutoComplete.js", + "source_location": "L5", + "_origin": "ast", + "id": "filter_autocomplete_autocomplete", + "community": 3, + "norm_label": "autocomplete()" + }, + { + "label": "ButtonFilter.js", + "file_type": "code", + "source_file": "components/clinics/head/filter/ButtonFilter.js", + "source_location": "L1", + "_origin": "ast", + "id": "filter_buttonfilter", + "community": 3, + "norm_label": "buttonfilter.js" + }, + { + "label": "ButtonFilter()", + "file_type": "code", + "source_file": "components/clinics/head/filter/ButtonFilter.js", + "source_location": "L6", + "_origin": "ast", + "id": "filter_buttonfilter_buttonfilter", + "community": 3, + "norm_label": "buttonfilter()" + }, + { + "label": "Content.js", + "file_type": "code", + "source_file": "components/clinics/head/filter/Content.js", + "source_location": "L1", + "_origin": "ast", + "id": "filter_content", + "community": 3, + "norm_label": "content.js" + }, + { + "label": "Content()", + "file_type": "code", + "source_file": "components/clinics/head/filter/Content.js", + "source_location": "L9", + "_origin": "ast", + "id": "filter_content_content", + "community": 3, + "norm_label": "content()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/clinics/head/filter/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "filter_index", + "community": 3, + "norm_label": "index.js" + }, + { + "label": "ModalSearchCity()", + "file_type": "code", + "source_file": "components/clinics/head/filter/index.js", + "source_location": "L13", + "_origin": "ast", + "id": "filter_index_modalsearchcity", + "community": 3, + "norm_label": "modalsearchcity()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/clinics/head/modal/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_clinics_head_modal_index_js_modal_index", + "community": 164, + "norm_label": "index.js" + }, + { + "label": "ModalSearchCity()", + "file_type": "code", + "source_file": "components/clinics/head/modal/index.js", + "source_location": "L14", + "_origin": "ast", + "id": "components_clinics_head_modal_index_js_modal_index_modalsearchcity", + "community": 164, + "norm_label": "modalsearchcity()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/clinics/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "clinics_index", + "community": 3, + "norm_label": "index.js" + }, + { + "label": "ClinicsPage()", + "file_type": "code", + "source_file": "components/clinics/index.js", + "source_location": "L16", + "_origin": "ast", + "id": "clinics_index_clinicspage", + "community": 3, + "norm_label": "clinicspage()" + }, + { + "label": "ItemClinic.js", + "file_type": "code", + "source_file": "components/clinics/list/ItemClinic.js", + "source_location": "L1", + "_origin": "ast", + "id": "list_itemclinic", + "community": 99, + "norm_label": "itemclinic.js" + }, + { + "label": "ItemClinic()", + "file_type": "code", + "source_file": "components/clinics/list/ItemClinic.js", + "source_location": "L11", + "_origin": "ast", + "id": "list_itemclinic_itemclinic", + "community": 99, + "norm_label": "itemclinic()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/clinics/list/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_clinics_list_index_js_list_index", + "community": 99, + "norm_label": "index.js" + }, + { + "label": "List()", + "file_type": "code", + "source_file": "components/clinics/list/index.js", + "source_location": "L9", + "_origin": "ast", + "id": "components_clinics_list_index_js_list_index_list", + "community": 99, + "norm_label": "list()" + }, + { + "label": "InlineJalaliMonth.js", + "file_type": "code", + "source_file": "components/common/InlineJalaliMonth.js", + "source_location": "L1", + "_origin": "ast", + "id": "common_inlinejalalimonth", + "community": 90, + "norm_label": "inlinejalalimonth.js" + }, + { + "label": "WEEKDAYS", + "file_type": "code", + "source_file": "components/common/InlineJalaliMonth.js", + "source_location": "L7", + "_origin": "ast", + "id": "common_inlinejalalimonth_weekdays", + "community": 90, + "norm_label": "weekdays" + }, + { + "label": "MONTHS", + "file_type": "code", + "source_file": "components/common/InlineJalaliMonth.js", + "source_location": "L8", + "_origin": "ast", + "id": "common_inlinejalalimonth_months", + "community": 90, + "norm_label": "months" + }, + { + "label": "buildDays()", + "file_type": "code", + "source_file": "components/common/InlineJalaliMonth.js", + "source_location": "L23", + "_origin": "ast", + "id": "common_inlinejalalimonth_builddays", + "community": 90, + "norm_label": "builddays()" + }, + { + "label": "InlineJalaliMonth()", + "file_type": "code", + "source_file": "components/common/InlineJalaliMonth.js", + "source_location": "L36", + "_origin": "ast", + "id": "common_inlinejalalimonth_inlinejalalimonth", + "community": 90, + "norm_label": "inlinejalalimonth()" + }, + { + "label": "JalaliDatePicker.js", + "file_type": "code", + "source_file": "components/common/JalaliDatePicker.js", + "source_location": "L1", + "_origin": "ast", + "id": "common_jalalidatepicker", + "community": 91, + "norm_label": "jalalidatepicker.js" + }, + { + "label": "WEEKDAYS", + "file_type": "code", + "source_file": "components/common/JalaliDatePicker.js", + "source_location": "L11", + "_origin": "ast", + "id": "common_jalalidatepicker_weekdays", + "community": 91, + "norm_label": "weekdays" + }, + { + "label": "MONTHS", + "file_type": "code", + "source_file": "components/common/JalaliDatePicker.js", + "source_location": "L12", + "_origin": "ast", + "id": "common_jalalidatepicker_months", + "community": 91, + "norm_label": "months" + }, + { + "label": "parseValue()", + "file_type": "code", + "source_file": "components/common/JalaliDatePicker.js", + "source_location": "L31", + "_origin": "ast", + "id": "common_jalalidatepicker_parsevalue", + "community": 91, + "norm_label": "parsevalue()" + }, + { + "label": "JalaliDatePicker()", + "file_type": "code", + "source_file": "components/common/JalaliDatePicker.js", + "source_location": "L41", + "_origin": "ast", + "id": "common_jalalidatepicker_jalalidatepicker", + "community": 91, + "norm_label": "jalalidatepicker()" + }, + { + "label": "Connect.js", + "file_type": "code", + "source_file": "components/contactUs/Connect.js", + "source_location": "L1", + "_origin": "ast", + "id": "contactus_connect", + "community": 14, + "norm_label": "connect.js" + }, + { + "label": "Connect()", + "file_type": "code", + "source_file": "components/contactUs/Connect.js", + "source_location": "L6", + "_origin": "ast", + "id": "contactus_connect_connect", + "community": 14, + "norm_label": "connect()" + }, + { + "label": "ContentContact.js", + "file_type": "code", + "source_file": "components/contactUs/ContentContact.js", + "source_location": "L1", + "_origin": "ast", + "id": "contactus_contentcontact", + "community": 14, + "norm_label": "contentcontact.js" + }, + { + "label": "ContentContact()", + "file_type": "code", + "source_file": "components/contactUs/ContentContact.js", + "source_location": "L1", + "_origin": "ast", + "id": "contactus_contentcontact_contentcontact", + "community": 14, + "norm_label": "contentcontact()" + }, + { + "label": "FieldLabel.js", + "file_type": "code", + "source_file": "components/contactUs/FieldLabel.js", + "source_location": "L1", + "_origin": "ast", + "id": "contactus_fieldlabel", + "community": 14, + "norm_label": "fieldlabel.js" + }, + { + "label": "FieldLabel()", + "file_type": "code", + "source_file": "components/contactUs/FieldLabel.js", + "source_location": "L1", + "_origin": "ast", + "id": "contactus_fieldlabel_fieldlabel", + "community": 14, + "norm_label": "fieldlabel()" + }, + { + "label": "Call.js", + "file_type": "code", + "source_file": "components/contactUs/call/Call.js", + "source_location": "L1", + "_origin": "ast", + "id": "call_call", + "community": 14, + "norm_label": "call.js" + }, + { + "label": "Call()", + "file_type": "code", + "source_file": "components/contactUs/call/Call.js", + "source_location": "L3", + "_origin": "ast", + "id": "call_call_call", + "community": 14, + "norm_label": "call()" + }, + { + "label": "Links.js", + "file_type": "code", + "source_file": "components/contactUs/call/Links.js", + "source_location": "L1", + "_origin": "ast", + "id": "call_links", + "community": 14, + "norm_label": "links.js" + }, + { + "label": "Links()", + "file_type": "code", + "source_file": "components/contactUs/call/Links.js", + "source_location": "L8", + "_origin": "ast", + "id": "call_links_links", + "community": 14, + "norm_label": "links()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/contactUs/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "contactus_index", + "community": 14, + "norm_label": "index.js" + }, + { + "label": "ContactUsPage()", + "file_type": "code", + "source_file": "components/contactUs/index.js", + "source_location": "L5", + "_origin": "ast", + "id": "contactus_index_contactuspage", + "community": 14, + "norm_label": "contactuspage()" + }, + { + "label": "Content.js", + "file_type": "code", + "source_file": "components/dashboard/Content.js", + "source_location": "L1", + "_origin": "ast", + "id": "dashboard_content", + "community": 46, + "norm_label": "content.js" + }, + { + "label": "Content()", + "file_type": "code", + "source_file": "components/dashboard/Content.js", + "source_location": "L8", + "_origin": "ast", + "id": "dashboard_content_content", + "community": 46, + "norm_label": "content()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/dashboard/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "dashboard_index", + "community": 0, + "norm_label": "index.js" + }, + { + "label": "DashboardPage()", + "file_type": "code", + "source_file": "components/dashboard/index.js", + "source_location": "L3", + "_origin": "ast", + "id": "dashboard_index_dashboardpage", + "community": 0, + "norm_label": "dashboardpage()" + }, + { + "label": "Head.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/Head.js", + "source_location": "L1", + "_origin": "ast", + "id": "useraccount_head", + "community": 46, + "norm_label": "head.js" + }, + { + "label": "Head()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/Head.js", + "source_location": "L9", + "_origin": "ast", + "id": "useraccount_head_head", + "community": 46, + "norm_label": "head()" + }, + { + "label": "NotfoundDashboard.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/NotfoundDashboard.js", + "source_location": "L1", + "_origin": "ast", + "id": "useraccount_notfounddashboard", + "community": 46, + "norm_label": "notfounddashboard.js" + }, + { + "label": "NotfoundDashboard()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/NotfoundDashboard.js", + "source_location": "L5", + "_origin": "ast", + "id": "useraccount_notfounddashboard_notfounddashboard", + "community": 46, + "norm_label": "notfounddashboard()" + }, + { + "label": "AddBtn.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/components/AddBtn.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_addbtn", + "community": 147, + "norm_label": "addbtn.js" + }, + { + "label": "AddBtn()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/components/AddBtn.js", + "source_location": "L5", + "_origin": "ast", + "id": "components_addbtn_addbtn", + "community": 147, + "norm_label": "addbtn()" + }, + { + "label": "Head.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/components/Head.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_head", + "community": 185, + "norm_label": "head.js" + }, + { + "label": "Head()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/components/Head.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_head_head", + "community": 185, + "norm_label": "head()" + }, + { + "label": "UpdateBtn.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/components/UpdateBtn.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_updatebtn", + "community": 187, + "norm_label": "updatebtn.js" + }, + { + "label": "UpdateBtn()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/components/UpdateBtn.js", + "source_location": "L4", + "_origin": "ast", + "id": "components_updatebtn_updatebtn", + "community": 187, + "norm_label": "updatebtn()" + }, + { + "label": "ModalDeleteItem.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/components/modal/ModalDeleteItem.js", + "source_location": "L1", + "_origin": "ast", + "id": "modal_modaldeleteitem", + "community": 344, + "norm_label": "modaldeleteitem.js" + }, + { + "label": "ModalDeleteItem()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/components/modal/ModalDeleteItem.js", + "source_location": "L7", + "_origin": "ast", + "id": "modal_modaldeleteitem_modaldeleteitem", + "community": 344, + "norm_label": "modaldeleteitem()" + }, + { + "label": "ModalEditItem.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/components/modal/ModalEditItem.js", + "source_location": "L1", + "_origin": "ast", + "id": "modal_modaledititem", + "community": 345, + "norm_label": "modaledititem.js" + }, + { + "label": "ModalEditItem()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/components/modal/ModalEditItem.js", + "source_location": "L7", + "_origin": "ast", + "id": "modal_modaledititem_modaledititem", + "community": 345, + "norm_label": "modaledititem()" + }, + { + "label": "HeadTab.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/content/HeadTab.js", + "source_location": "L1", + "_origin": "ast", + "id": "content_headtab", + "community": 1, + "norm_label": "headtab.js" + }, + { + "label": "HeadTab()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/content/HeadTab.js", + "source_location": "L4", + "_origin": "ast", + "id": "content_headtab_headtab", + "community": 1, + "norm_label": "headtab()" + }, + { + "label": "ItemAllergie.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/allergies/ItemAllergie.js", + "source_location": "L1", + "_origin": "ast", + "id": "allergies_itemallergie", + "community": 76, + "norm_label": "itemallergie.js" + }, + { + "label": "ItemAllergie()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/allergies/ItemAllergie.js", + "source_location": "L8", + "_origin": "ast", + "id": "allergies_itemallergie_itemallergie", + "community": 76, + "norm_label": "itemallergie()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/allergies/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "allergies_index", + "community": 76, + "norm_label": "index.js" + }, + { + "label": "Allergies()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/allergies/index.js", + "source_location": "L7", + "_origin": "ast", + "id": "allergies_index_allergies", + "community": 76, + "norm_label": "allergies()" + }, + { + "label": "Content.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/allergies/modal/Content.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_dashboard_useraccount_detailuser_allergies_modal_content_js_modal_content", + "community": 111, + "norm_label": "content.js" + }, + { + "label": "listIntensity", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/allergies/modal/Content.js", + "source_location": "L5", + "_origin": "ast", + "id": "components_dashboard_useraccount_detailuser_allergies_modal_content_js_modal_content_listintensity", + "community": 111, + "norm_label": "listintensity" + }, + { + "label": "Content()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/allergies/modal/Content.js", + "source_location": "L11", + "_origin": "ast", + "id": "components_dashboard_useraccount_detailuser_allergies_modal_content_js_modal_content_content", + "community": 111, + "norm_label": "content()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/allergies/modal/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_dashboard_useraccount_detailuser_allergies_modal_index_js_modal_index", + "community": 76, + "norm_label": "index.js" + }, + { + "label": "ModalAddAlergie()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/allergies/modal/index.js", + "source_location": "L9", + "_origin": "ast", + "id": "modal_index_modaladdalergie", + "community": 76, + "norm_label": "modaladdalergie()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/disease/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "disease_index", + "community": 85, + "norm_label": "index.js" + }, + { + "label": "Disease()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/disease/index.js", + "source_location": "L7", + "_origin": "ast", + "id": "disease_index_disease", + "community": 85, + "norm_label": "disease()" + }, + { + "label": "ItemHistory.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/familyHistory/ItemHistory.js", + "source_location": "L1", + "_origin": "ast", + "id": "familyhistory_itemhistory", + "community": 79, + "norm_label": "itemhistory.js" + }, + { + "label": "ItemHistory()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/familyHistory/ItemHistory.js", + "source_location": "L8", + "_origin": "ast", + "id": "familyhistory_itemhistory_itemhistory", + "community": 79, + "norm_label": "itemhistory()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/familyHistory/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "familyhistory_index", + "community": 79, + "norm_label": "index.js" + }, + { + "label": "FamilyHistory()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/familyHistory/index.js", + "source_location": "L7", + "_origin": "ast", + "id": "familyhistory_index_familyhistory", + "community": 79, + "norm_label": "familyhistory()" + }, + { + "label": "Content.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/familyHistory/modal/Content.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_dashboard_useraccount_detailuser_familyhistory_modal_content_js_modal_content", + "community": 165, + "norm_label": "content.js" + }, + { + "label": "Content()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/familyHistory/modal/Content.js", + "source_location": "L4", + "_origin": "ast", + "id": "components_dashboard_useraccount_detailuser_familyhistory_modal_content_js_modal_content_content", + "community": 165, + "norm_label": "content()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/familyHistory/modal/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_dashboard_useraccount_detailuser_familyhistory_modal_index_js_modal_index", + "community": 79, + "norm_label": "index.js" + }, + { + "label": "ModalAddHistory()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/familyHistory/modal/index.js", + "source_location": "L9", + "_origin": "ast", + "id": "modal_index_modaladdhistory", + "community": 79, + "norm_label": "modaladdhistory()" + }, + { + "label": "function.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/function.js", + "source_location": "L1", + "_origin": "ast", + "id": "detailuser_function", + "community": 85, + "norm_label": "function.js" + }, + { + "label": "setNewData()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/function.js", + "source_location": "L1", + "_origin": "ast", + "id": "detailuser_function_setnewdata", + "community": 85, + "norm_label": "setnewdata()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "detailuser_index", + "community": 85, + "norm_label": "index.js" + }, + { + "label": "DetailUser()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/index.js", + "source_location": "L18", + "_origin": "ast", + "id": "detailuser_index_detailuser", + "community": 85, + "norm_label": "detailuser()" + }, + { + "label": "ButtonSendData.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/information/ButtonSendData.js", + "source_location": "L1", + "_origin": "ast", + "id": "information_buttonsenddata", + "community": 80, + "norm_label": "buttonsenddata.js" + }, + { + "label": "ButtonSendData()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/information/ButtonSendData.js", + "source_location": "L12", + "_origin": "ast", + "id": "information_buttonsenddata_buttonsenddata", + "community": 80, + "norm_label": "buttonsenddata()" + }, + { + "label": "AutoSelector.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/information/component/AutoSelector.js", + "source_location": "L1", + "_origin": "ast", + "id": "component_autoselector", + "community": 135, + "norm_label": "autoselector.js" + }, + { + "label": "AutoSelector()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/information/component/AutoSelector.js", + "source_location": "L5", + "_origin": "ast", + "id": "component_autoselector_autoselector", + "community": 135, + "norm_label": "autoselector()" + }, + { + "label": "Field.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/information/component/Field.js", + "source_location": "L1", + "_origin": "ast", + "id": "component_field", + "community": 40, + "norm_label": "field.js" + }, + { + "label": "Field()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/information/component/Field.js", + "source_location": "L5", + "_origin": "ast", + "id": "component_field_field", + "community": 40, + "norm_label": "field()" + }, + { + "label": "Content.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/information/form/Content.js", + "source_location": "L1", + "_origin": "ast", + "id": "form_content", + "community": 40, + "norm_label": "content.js" + }, + { + "label": "Content()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/information/form/Content.js", + "source_location": "L1", + "_origin": "ast", + "id": "form_content_content", + "community": 40, + "norm_label": "content()" + }, + { + "label": "DateBirthday.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/information/form/DateBirthday.js", + "source_location": "L1", + "_origin": "ast", + "id": "form_datebirthday", + "community": 40, + "norm_label": "datebirthday.js" + }, + { + "label": "DateBirthday()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/information/form/DateBirthday.js", + "source_location": "L6", + "_origin": "ast", + "id": "form_datebirthday_datebirthday", + "community": 40, + "norm_label": "datebirthday()" + }, + { + "label": "disease.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/information/form/disease.js", + "source_location": "L1", + "_origin": "ast", + "id": "form_disease", + "community": 80, + "norm_label": "disease.js" + }, + { + "label": "disease", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/information/form/disease.js", + "source_location": "L1", + "_origin": "ast", + "id": "form_disease_disease", + "community": 80, + "norm_label": "disease" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/information/form/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_dashboard_useraccount_detailuser_information_form_index_js_form_index", + "community": 40, + "norm_label": "index.js" + }, + { + "label": "Form()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/information/form/index.js", + "source_location": "L9", + "_origin": "ast", + "id": "components_dashboard_useraccount_detailuser_information_form_index_js_form_index_form", + "community": 40, + "norm_label": "form()" + }, + { + "label": "listSelector.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/information/form/listSelector.js", + "source_location": "L1", + "_origin": "ast", + "id": "form_listselector", + "community": 40, + "norm_label": "listselector.js" + }, + { + "label": "gender", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/information/form/listSelector.js", + "source_location": "L1", + "_origin": "ast", + "id": "form_listselector_gender", + "community": 40, + "norm_label": "gender" + }, + { + "label": "blood_group", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/information/form/listSelector.js", + "source_location": "L6", + "_origin": "ast", + "id": "form_listselector_blood_group", + "community": 40, + "norm_label": "blood_group" + }, + { + "label": "marital_status", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/information/form/listSelector.js", + "source_location": "L17", + "_origin": "ast", + "id": "form_listselector_marital_status", + "community": 40, + "norm_label": "marital_status" + }, + { + "label": "job", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/information/form/listSelector.js", + "source_location": "L22", + "_origin": "ast", + "id": "form_listselector_job", + "community": 40, + "norm_label": "job" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/information/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_dashboard_useraccount_detailuser_information_index_js_information_index", + "community": 80, + "norm_label": "index.js" + }, + { + "label": "Information()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/information/index.js", + "source_location": "L9", + "_origin": "ast", + "id": "components_dashboard_useraccount_detailuser_information_index_js_information_index_information", + "community": 80, + "norm_label": "information()" + }, + { + "label": "ItemMedication.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/medications/ItemMedication.js", + "source_location": "L1", + "_origin": "ast", + "id": "medications_itemmedication", + "community": 81, + "norm_label": "itemmedication.js" + }, + { + "label": "ItemMedication()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/medications/ItemMedication.js", + "source_location": "L8", + "_origin": "ast", + "id": "medications_itemmedication_itemmedication", + "community": 81, + "norm_label": "itemmedication()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/medications/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "medications_index", + "community": 81, + "norm_label": "index.js" + }, + { + "label": "Medications()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/medications/index.js", + "source_location": "L7", + "_origin": "ast", + "id": "medications_index_medications", + "community": 81, + "norm_label": "medications()" + }, + { + "label": "Content.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/medications/modal/Content.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_dashboard_useraccount_detailuser_medications_modal_content_js_modal_content", + "community": 166, + "norm_label": "content.js" + }, + { + "label": "Content()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/medications/modal/Content.js", + "source_location": "L4", + "_origin": "ast", + "id": "components_dashboard_useraccount_detailuser_medications_modal_content_js_modal_content_content", + "community": 166, + "norm_label": "content()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/medications/modal/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_dashboard_useraccount_detailuser_medications_modal_index_js_modal_index", + "community": 81, + "norm_label": "index.js" + }, + { + "label": "ModalAddMedications()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/medications/modal/index.js", + "source_location": "L9", + "_origin": "ast", + "id": "modal_index_modaladdmedications", + "community": 81, + "norm_label": "modaladdmedications()" + }, + { + "label": "ItemRelatives.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/relatives/ItemRelatives.js", + "source_location": "L1", + "_origin": "ast", + "id": "relatives_itemrelatives", + "community": 82, + "norm_label": "itemrelatives.js" + }, + { + "label": "ItemRelatives()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/relatives/ItemRelatives.js", + "source_location": "L8", + "_origin": "ast", + "id": "relatives_itemrelatives_itemrelatives", + "community": 82, + "norm_label": "itemrelatives()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/relatives/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "relatives_index", + "community": 82, + "norm_label": "index.js" + }, + { + "label": "Relatives()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/relatives/index.js", + "source_location": "L7", + "_origin": "ast", + "id": "relatives_index_relatives", + "community": 82, + "norm_label": "relatives()" + }, + { + "label": "Content.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/relatives/modal/Content.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_dashboard_useraccount_detailuser_relatives_modal_content_js_modal_content", + "community": 167, + "norm_label": "content.js" + }, + { + "label": "Content()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/relatives/modal/Content.js", + "source_location": "L4", + "_origin": "ast", + "id": "components_dashboard_useraccount_detailuser_relatives_modal_content_js_modal_content_content", + "community": 167, + "norm_label": "content()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/relatives/modal/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_dashboard_useraccount_detailuser_relatives_modal_index_js_modal_index", + "community": 82, + "norm_label": "index.js" + }, + { + "label": "ModalAddRelatives()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/relatives/modal/index.js", + "source_location": "L9", + "_origin": "ast", + "id": "modal_index_modaladdrelatives", + "community": 82, + "norm_label": "modaladdrelatives()" + }, + { + "label": "ItemSurgeries.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/surgeries/ItemSurgeries.js", + "source_location": "L1", + "_origin": "ast", + "id": "surgeries_itemsurgeries", + "community": 83, + "norm_label": "itemsurgeries.js" + }, + { + "label": "ItemSurgeries()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/surgeries/ItemSurgeries.js", + "source_location": "L8", + "_origin": "ast", + "id": "surgeries_itemsurgeries_itemsurgeries", + "community": 83, + "norm_label": "itemsurgeries()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/surgeries/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "surgeries_index", + "community": 83, + "norm_label": "index.js" + }, + { + "label": "Surgeries()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/surgeries/index.js", + "source_location": "L7", + "_origin": "ast", + "id": "surgeries_index_surgeries", + "community": 83, + "norm_label": "surgeries()" + }, + { + "label": "Content.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/surgeries/modal/Content.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_dashboard_useraccount_detailuser_surgeries_modal_content_js_modal_content", + "community": 112, + "norm_label": "content.js" + }, + { + "label": "listIntensity", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/surgeries/modal/Content.js", + "source_location": "L4", + "_origin": "ast", + "id": "components_dashboard_useraccount_detailuser_surgeries_modal_content_js_modal_content_listintensity", + "community": 112, + "norm_label": "listintensity" + }, + { + "label": "Content()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/surgeries/modal/Content.js", + "source_location": "L10", + "_origin": "ast", + "id": "components_dashboard_useraccount_detailuser_surgeries_modal_content_js_modal_content_content", + "community": 112, + "norm_label": "content()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/surgeries/modal/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_dashboard_useraccount_detailuser_surgeries_modal_index_js_modal_index", + "community": 83, + "norm_label": "index.js" + }, + { + "label": "ModalAddSurgeries()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/detailUser/surgeries/modal/index.js", + "source_location": "L9", + "_origin": "ast", + "id": "modal_index_modaladdsurgeries", + "community": 83, + "norm_label": "modaladdsurgeries()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "useraccount_index", + "community": 46, + "norm_label": "index.js" + }, + { + "label": "listTab", + "file_type": "code", + "source_file": "components/dashboard/userAccount/index.js", + "source_location": "L14", + "_origin": "ast", + "id": "useraccount_index_listtab", + "community": 46, + "norm_label": "listtab" + }, + { + "label": "UserAccountPage()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/index.js", + "source_location": "L23", + "_origin": "ast", + "id": "useraccount_index_useraccountpage", + "community": 46, + "norm_label": "useraccountpage()" + }, + { + "label": "Comment.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/comments/Comment.js", + "source_location": "L1", + "_origin": "ast", + "id": "comments_comment", + "community": 98, + "norm_label": "comment.js" + }, + { + "label": "Comment()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/comments/Comment.js", + "source_location": "L10", + "_origin": "ast", + "id": "comments_comment_comment", + "community": 98, + "norm_label": "comment()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/comments/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_dashboard_useraccount_sidebars_comments_index_js_comments_index", + "community": 98, + "norm_label": "index.js" + }, + { + "label": "Comments()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/comments/index.js", + "source_location": "L3", + "_origin": "ast", + "id": "components_dashboard_useraccount_sidebars_comments_index_js_comments_index_comments", + "community": 98, + "norm_label": "comments()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/comments/modal/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_dashboard_useraccount_sidebars_comments_modal_index_js_modal_index", + "community": 168, + "norm_label": "index.js" + }, + { + "label": "ModalDeleteComment()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/comments/modal/index.js", + "source_location": "L7", + "_origin": "ast", + "id": "components_dashboard_useraccount_sidebars_comments_modal_index_js_modal_index_modaldeletecomment", + "community": 168, + "norm_label": "modaldeletecomment()" + }, + { + "label": "Message.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/messages/Message.js", + "source_location": "L1", + "_origin": "ast", + "id": "messages_message", + "community": 46, + "norm_label": "message.js" + }, + { + "label": "Message()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/messages/Message.js", + "source_location": "L7", + "_origin": "ast", + "id": "messages_message_message", + "community": 46, + "norm_label": "message()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/messages/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "messages_index", + "community": 46, + "norm_label": "index.js" + }, + { + "label": "Messages()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/messages/index.js", + "source_location": "L3", + "_origin": "ast", + "id": "messages_index_messages", + "community": 46, + "norm_label": "messages()" + }, + { + "label": "Card.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/transactions/Card.js", + "source_location": "L1", + "_origin": "ast", + "id": "transactions_card", + "community": 51, + "norm_label": "card.js" + }, + { + "label": "PAYMENT_STATUS", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/transactions/Card.js", + "source_location": "L6", + "_origin": "ast", + "id": "transactions_card_payment_status", + "community": 51, + "norm_label": "payment_status" + }, + { + "label": "TYPE_LABELS", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/transactions/Card.js", + "source_location": "L14", + "_origin": "ast", + "id": "transactions_card_type_labels", + "community": 51, + "norm_label": "type_labels" + }, + { + "label": "Card()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/transactions/Card.js", + "source_location": "L20", + "_origin": "ast", + "id": "transactions_card_card", + "community": 51, + "norm_label": "card()" + }, + { + "label": "Head.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/transactions/Head.js", + "source_location": "L1", + "_origin": "ast", + "id": "transactions_head", + "community": 51, + "norm_label": "head.js" + }, + { + "label": "listTab", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/transactions/Head.js", + "source_location": "L3", + "_origin": "ast", + "id": "transactions_head_listtab", + "community": 51, + "norm_label": "listtab" + }, + { + "label": "Head()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/transactions/Head.js", + "source_location": "L5", + "_origin": "ast", + "id": "transactions_head_head", + "community": 51, + "norm_label": "head()" + }, + { + "label": "List.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/transactions/List.js", + "source_location": "L1", + "_origin": "ast", + "id": "transactions_list", + "community": 51, + "norm_label": "list.js" + }, + { + "label": "PAYMENT_STATUS", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/transactions/List.js", + "source_location": "L13", + "_origin": "ast", + "id": "transactions_list_payment_status", + "community": 51, + "norm_label": "payment_status" + }, + { + "label": "TYPE_LABELS", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/transactions/List.js", + "source_location": "L21", + "_origin": "ast", + "id": "transactions_list_type_labels", + "community": 51, + "norm_label": "type_labels" + }, + { + "label": "List()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/transactions/List.js", + "source_location": "L27", + "_origin": "ast", + "id": "transactions_list_list", + "community": 51, + "norm_label": "list()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/transactions/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "transactions_index", + "community": 51, + "norm_label": "index.js" + }, + { + "label": "Transactions()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/transactions/index.js", + "source_location": "L10", + "_origin": "ast", + "id": "transactions_index_transactions", + "community": 51, + "norm_label": "transactions()" + }, + { + "label": "Card.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/turns/Card.js", + "source_location": "L1", + "_origin": "ast", + "id": "turns_card", + "community": 1, + "norm_label": "card.js" + }, + { + "label": "STATUS_LABELS", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/turns/Card.js", + "source_location": "L8", + "_origin": "ast", + "id": "turns_card_status_labels", + "community": 1, + "norm_label": "status_labels" + }, + { + "label": "Card()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/turns/Card.js", + "source_location": "L18", + "_origin": "ast", + "id": "turns_card_card", + "community": 1, + "norm_label": "card()" + }, + { + "label": "Head.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/turns/Head.js", + "source_location": "L1", + "_origin": "ast", + "id": "turns_head", + "community": 1, + "norm_label": "head.js" + }, + { + "label": "listTab", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/turns/Head.js", + "source_location": "L3", + "_origin": "ast", + "id": "turns_head_listtab", + "community": 1, + "norm_label": "listtab" + }, + { + "label": "Head()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/turns/Head.js", + "source_location": "L12", + "_origin": "ast", + "id": "turns_head_head", + "community": 1, + "norm_label": "head()" + }, + { + "label": "List.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/turns/List.js", + "source_location": "L1", + "_origin": "ast", + "id": "turns_list", + "community": 1, + "norm_label": "list.js" + }, + { + "label": "STATUS_LABELS", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/turns/List.js", + "source_location": "L12", + "_origin": "ast", + "id": "turns_list_status_labels", + "community": 1, + "norm_label": "status_labels" + }, + { + "label": "List()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/turns/List.js", + "source_location": "L22", + "_origin": "ast", + "id": "turns_list_list", + "community": 1, + "norm_label": "list()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/turns/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "turns_index", + "community": 1, + "norm_label": "index.js" + }, + { + "label": "Turns()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/turns/index.js", + "source_location": "L10", + "_origin": "ast", + "id": "turns_index_turns", + "community": 1, + "norm_label": "turns()" + }, + { + "label": "ButtonData.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/ButtonData.js", + "source_location": "L1", + "_origin": "ast", + "id": "isturnsdetails_buttondata", + "community": 1, + "norm_label": "buttondata.js" + }, + { + "label": "ButtonData()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/ButtonData.js", + "source_location": "L7", + "_origin": "ast", + "id": "isturnsdetails_buttondata_buttondata", + "community": 1, + "norm_label": "buttondata()" + }, + { + "label": "DetailLg.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/DetailLg.js", + "source_location": "L1", + "_origin": "ast", + "id": "isturnsdetails_detaillg", + "community": 1, + "norm_label": "detaillg.js" + }, + { + "label": "DetailLg()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/DetailLg.js", + "source_location": "L14", + "_origin": "ast", + "id": "isturnsdetails_detaillg_detaillg", + "community": 1, + "norm_label": "detaillg()" + }, + { + "label": "DetailSm.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/DetailSm.js", + "source_location": "L1", + "_origin": "ast", + "id": "isturnsdetails_detailsm", + "community": 1, + "norm_label": "detailsm.js" + }, + { + "label": "DetailSm()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/DetailSm.js", + "source_location": "L10", + "_origin": "ast", + "id": "isturnsdetails_detailsm_detailsm", + "community": 1, + "norm_label": "detailsm()" + }, + { + "label": "Head.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/Head.js", + "source_location": "L1", + "_origin": "ast", + "id": "isturnsdetails_head", + "community": 1, + "norm_label": "head.js" + }, + { + "label": "Head()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/Head.js", + "source_location": "L6", + "_origin": "ast", + "id": "isturnsdetails_head_head", + "community": 1, + "norm_label": "head()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "isturnsdetails_index", + "community": 1, + "norm_label": "index.js" + }, + { + "label": "IsTurnsDetails()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/index.js", + "source_location": "L5", + "_origin": "ast", + "id": "isturnsdetails_index_isturnsdetails", + "community": 1, + "norm_label": "isturnsdetails()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/modal/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_dashboard_useraccount_sidebars_turns_isturnsdetails_modal_index_js_modal_index", + "community": 169, + "norm_label": "index.js" + }, + { + "label": "ModalDeleteComment()", + "file_type": "code", + "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/modal/index.js", + "source_location": "L6", + "_origin": "ast", + "id": "components_dashboard_useraccount_sidebars_turns_isturnsdetails_modal_index_js_modal_index_modaldeletecomment", + "community": 169, + "norm_label": "modaldeletecomment()" + }, + { + "label": "ItemAppointment.js", + "file_type": "code", + "source_file": "components/doctor/appointmentList/ItemAppointment.js", + "source_location": "L1", + "_origin": "ast", + "id": "appointmentlist_itemappointment", + "community": 5, + "norm_label": "itemappointment.js" + }, + { + "label": "ItemAppointment()", + "file_type": "code", + "source_file": "components/doctor/appointmentList/ItemAppointment.js", + "source_location": "L9", + "_origin": "ast", + "id": "appointmentlist_itemappointment_itemappointment", + "community": 5, + "norm_label": "itemappointment()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/doctor/appointmentList/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "appointmentlist_index", + "community": 5, + "norm_label": "index.js" + }, + { + "label": "AppointmentList()", + "file_type": "code", + "source_file": "components/doctor/appointmentList/index.js", + "source_location": "L8", + "_origin": "ast", + "id": "appointmentlist_index_appointmentlist", + "community": 5, + "norm_label": "appointmentlist()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/doctor/appointmentList/modal/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_doctor_appointmentlist_modal_index_js_modal_index", + "community": 170, + "norm_label": "index.js" + }, + { + "label": "ModalDatePicker()", + "file_type": "code", + "source_file": "components/doctor/appointmentList/modal/index.js", + "source_location": "L7", + "_origin": "ast", + "id": "modal_index_modaldatepicker", + "community": 170, + "norm_label": "modaldatepicker()" + }, + { + "label": "Link.js", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/Link.js", + "source_location": "L1", + "_origin": "ast", + "id": "detaildoctor_link", + "community": 5, + "norm_label": "link.js" + }, + { + "label": "listLink", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/Link.js", + "source_location": "L5", + "_origin": "ast", + "id": "detaildoctor_link_listlink", + "community": 5, + "norm_label": "listlink" + }, + { + "label": "Link()", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/Link.js", + "source_location": "L11", + "_origin": "ast", + "id": "detaildoctor_link_link", + "community": 5, + "norm_label": "link()" + }, + { + "label": "List.js", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/List.js", + "source_location": "L1", + "_origin": "ast", + "id": "detaildoctor_list", + "community": 5, + "norm_label": "list.js" + }, + { + "label": "VAZIR_WEIGHTS", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/List.js", + "source_location": "L16", + "_origin": "ast", + "id": "detaildoctor_list_vazir_weights", + "community": 5, + "norm_label": "vazir_weights" + }, + { + "label": "getVazirEmbedCss()", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/List.js", + "source_location": "L25", + "_origin": "ast", + "id": "detaildoctor_list_getvazirembedcss", + "community": 5, + "norm_label": "getvazirembedcss()" + }, + { + "label": "waitForImages()", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/List.js", + "source_location": "L42", + "_origin": "ast", + "id": "detaildoctor_list_waitforimages", + "community": 5, + "norm_label": "waitforimages()" + }, + { + "label": "List()", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/List.js", + "source_location": "L57", + "_origin": "ast", + "id": "detaildoctor_list_list", + "community": 5, + "norm_label": "list()" + }, + { + "label": "Share.js", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/Share.js", + "source_location": "L1", + "_origin": "ast", + "id": "detaildoctor_share", + "community": 5, + "norm_label": "share.js" + }, + { + "label": "VARIANTS", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/Share.js", + "source_location": "L12", + "_origin": "ast", + "id": "detaildoctor_share_variants", + "community": 5, + "norm_label": "variants" + }, + { + "label": "Share()", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/Share.js", + "source_location": "L17", + "_origin": "ast", + "id": "detaildoctor_share_share", + "community": 5, + "norm_label": "share()" + }, + { + "label": "Title.js", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/Title.js", + "source_location": "L1", + "_origin": "ast", + "id": "detaildoctor_title", + "community": 5, + "norm_label": "title.js" + }, + { + "label": "SOCIAL_ICONS", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/Title.js", + "source_location": "L14", + "_origin": "ast", + "id": "detaildoctor_title_social_icons", + "community": 5, + "norm_label": "social_icons" + }, + { + "label": "Title()", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/Title.js", + "source_location": "L22", + "_origin": "ast", + "id": "detaildoctor_title_title", + "community": 5, + "norm_label": "title()" + }, + { + "label": "AboutDcotor.js", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/cards/AboutDcotor.js", + "source_location": "L1", + "_origin": "ast", + "id": "cards_aboutdcotor", + "community": 5, + "norm_label": "aboutdcotor.js" + }, + { + "label": "AboutDcotor()", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/cards/AboutDcotor.js", + "source_location": "L8", + "_origin": "ast", + "id": "cards_aboutdcotor_aboutdcotor", + "community": 5, + "norm_label": "aboutdcotor()" + }, + { + "label": "ProgressAll.js", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/cards/comments/chart/ProgressAll.js", + "source_location": "L1", + "_origin": "ast", + "id": "chart_progressall", + "community": 15, + "norm_label": "progressall.js" + }, + { + "label": "ProgressAll()", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/cards/comments/chart/ProgressAll.js", + "source_location": "L5", + "_origin": "ast", + "id": "chart_progressall_progressall", + "community": 15, + "norm_label": "progressall()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/cards/comments/chart/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "chart_index", + "community": 15, + "norm_label": "index.js" + }, + { + "label": "Chart()", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/cards/comments/chart/index.js", + "source_location": "L9", + "_origin": "ast", + "id": "chart_index_chart", + "community": 15, + "norm_label": "chart()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/cards/comments/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_doctor_detaildoctor_cards_comments_index_js_comments_index", + "community": 15, + "norm_label": "index.js" + }, + { + "label": "Comments()", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/cards/comments/index.js", + "source_location": "L7", + "_origin": "ast", + "id": "components_doctor_detaildoctor_cards_comments_index_js_comments_index_comments", + "community": 15, + "norm_label": "comments()" + }, + { + "label": "BtnNewComment.js", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/cards/comments/modal/BtnNewComment.js", + "source_location": "L1", + "_origin": "ast", + "id": "modal_btnnewcomment", + "community": 15, + "norm_label": "btnnewcomment.js" + }, + { + "label": "BtnNewComment()", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/cards/comments/modal/BtnNewComment.js", + "source_location": "L4", + "_origin": "ast", + "id": "modal_btnnewcomment_btnnewcomment", + "community": 15, + "norm_label": "btnnewcomment()" + }, + { + "label": "ModalAnswer.js", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/cards/comments/modal/ModalAnswer.js", + "source_location": "L1", + "_origin": "ast", + "id": "modal_modalanswer", + "community": 15, + "norm_label": "modalanswer.js" + }, + { + "label": "ModalAnswer()", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/cards/comments/modal/ModalAnswer.js", + "source_location": "L12", + "_origin": "ast", + "id": "modal_modalanswer_modalanswer", + "community": 15, + "norm_label": "modalanswer()" + }, + { + "label": "Form.js", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/cards/comments/modal/content/Form.js", + "source_location": "L1", + "_origin": "ast", + "id": "content_form", + "community": 15, + "norm_label": "form.js" + }, + { + "label": "Form()", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/cards/comments/modal/content/Form.js", + "source_location": "L8", + "_origin": "ast", + "id": "content_form_form", + "community": 15, + "norm_label": "form()" + }, + { + "label": "Rates.js", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/cards/comments/modal/content/Rates.js", + "source_location": "L1", + "_origin": "ast", + "id": "content_rates", + "community": 15, + "norm_label": "rates.js" + }, + { + "label": "Rates()", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/cards/comments/modal/content/Rates.js", + "source_location": "L4", + "_origin": "ast", + "id": "content_rates_rates", + "community": 15, + "norm_label": "rates()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/cards/comments/modal/content/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "content_index", + "community": 15, + "norm_label": "index.js" + }, + { + "label": "Content()", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/cards/comments/modal/content/index.js", + "source_location": "L6", + "_origin": "ast", + "id": "content_index_content", + "community": 15, + "norm_label": "content()" + }, + { + "label": "Item.js", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/cards/locations/Item.js", + "source_location": "L1", + "_origin": "ast", + "id": "locations_item", + "community": 5, + "norm_label": "item.js" + }, + { + "label": "Item()", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/cards/locations/Item.js", + "source_location": "L10", + "_origin": "ast", + "id": "locations_item_item", + "community": 5, + "norm_label": "item()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/cards/locations/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "locations_index", + "community": 5, + "norm_label": "index.js" + }, + { + "label": "Locations()", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/cards/locations/index.js", + "source_location": "L4", + "_origin": "ast", + "id": "locations_index_locations", + "community": 5, + "norm_label": "locations()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "detaildoctor_index", + "community": 5, + "norm_label": "index.js" + }, + { + "label": "DetailDoctor()", + "file_type": "code", + "source_file": "components/doctor/detailDoctor/index.js", + "source_location": "L8", + "_origin": "ast", + "id": "detaildoctor_index_detaildoctor", + "community": 5, + "norm_label": "detaildoctor()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/doctor/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "doctor_index", + "community": 5, + "norm_label": "index.js" + }, + { + "label": "DoctorPage()", + "file_type": "code", + "source_file": "components/doctor/index.js", + "source_location": "L7", + "_origin": "ast", + "id": "doctor_index_doctorpage", + "community": 5, + "norm_label": "doctorpage()" + }, + { + "label": "PosterLight.js", + "file_type": "code", + "source_file": "components/doctor/poster/PosterLight.js", + "source_location": "L1", + "_origin": "ast", + "id": "poster_posterlight", + "community": 5, + "norm_label": "posterlight.js" + }, + { + "label": "PosterLight()", + "file_type": "code", + "source_file": "components/doctor/poster/PosterLight.js", + "source_location": "L14", + "_origin": "ast", + "id": "poster_posterlight_posterlight", + "community": 5, + "norm_label": "posterlight()" + }, + { + "label": "QrImg.js", + "file_type": "code", + "source_file": "components/doctor/poster/QrImg.js", + "source_location": "L1", + "_origin": "ast", + "id": "poster_qrimg", + "community": 5, + "norm_label": "qrimg.js" + }, + { + "label": "QrImg()", + "file_type": "code", + "source_file": "components/doctor/poster/QrImg.js", + "source_location": "L5", + "_origin": "ast", + "id": "poster_qrimg_qrimg", + "community": 5, + "norm_label": "qrimg()" + }, + { + "label": "SiteLogo.js", + "file_type": "code", + "source_file": "components/doctor/poster/SiteLogo.js", + "source_location": "L1", + "_origin": "ast", + "id": "poster_sitelogo", + "community": 5, + "norm_label": "sitelogo.js" + }, + { + "label": "SiteLogo()", + "file_type": "code", + "source_file": "components/doctor/poster/SiteLogo.js", + "source_location": "L1", + "_origin": "ast", + "id": "poster_sitelogo_sitelogo", + "community": 5, + "norm_label": "sitelogo()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/doctor/poster/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "poster_index", + "community": 5, + "norm_label": "index.js" + }, + { + "label": "SiteLogo()", + "file_type": "code", + "source_file": "components/doctor/poster/index.js", + "source_location": "L19", + "_origin": "ast", + "id": "poster_index_sitelogo", + "community": 5, + "norm_label": "sitelogo()" + }, + { + "label": "SectionTitle()", + "file_type": "code", + "source_file": "components/doctor/poster/index.js", + "source_location": "L23", + "_origin": "ast", + "id": "poster_index_sectiontitle", + "community": 5, + "norm_label": "sectiontitle()" + }, + { + "label": "Poster()", + "file_type": "code", + "source_file": "components/doctor/poster/index.js", + "source_location": "L34", + "_origin": "ast", + "id": "poster_index_poster", + "community": 5, + "norm_label": "poster()" + }, + { + "label": "FilterLocate.js", + "file_type": "code", + "source_file": "components/doctors/head/FilterLocate.js", + "source_location": "L1", + "_origin": "ast", + "id": "head_filterlocate", + "community": 84, + "norm_label": "filterlocate.js" + }, + { + "label": "FilterLocate()", + "file_type": "code", + "source_file": "components/doctors/head/FilterLocate.js", + "source_location": "L6", + "_origin": "ast", + "id": "head_filterlocate_filterlocate", + "community": 84, + "norm_label": "filterlocate()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/doctors/head/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_doctors_head_index_js_head_index", + "community": 84, + "norm_label": "index.js" + }, + { + "label": "Head()", + "file_type": "code", + "source_file": "components/doctors/head/index.js", + "source_location": "L10", + "_origin": "ast", + "id": "components_doctors_head_index_js_head_index_head", + "community": 84, + "norm_label": "head()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/doctors/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_doctors_index_js_doctors_index", + "community": 3, + "norm_label": "index.js" + }, + { + "label": "DoctorsPage()", + "file_type": "code", + "source_file": "components/doctors/index.js", + "source_location": "L12", + "_origin": "ast", + "id": "doctors_index_doctorspage", + "community": 3, + "norm_label": "doctorspage()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/doctors/listDoctors/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "listdoctors_index", + "community": 3, + "norm_label": "index.js" + }, + { + "label": "ListDoctors()", + "file_type": "code", + "source_file": "components/doctors/listDoctors/index.js", + "source_location": "L8", + "_origin": "ast", + "id": "listdoctors_index_listdoctors", + "community": 3, + "norm_label": "listdoctors()" + }, + { + "label": "ButtonApply.js", + "file_type": "code", + "source_file": "components/doctors/modal/ButtonApply.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_doctors_modal_buttonapply_js_modal_buttonapply", + "community": 171, + "norm_label": "buttonapply.js" + }, + { + "label": "ButtonApply()", + "file_type": "code", + "source_file": "components/doctors/modal/ButtonApply.js", + "source_location": "L3", + "_origin": "ast", + "id": "components_doctors_modal_buttonapply_js_modal_buttonapply_buttonapply", + "community": 171, + "norm_label": "buttonapply()" + }, + { + "label": "Content.js", + "file_type": "code", + "source_file": "components/doctors/modal/Content.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_doctors_modal_content_js_modal_content", + "community": 172, + "norm_label": "content.js" + }, + { + "label": "Content()", + "file_type": "code", + "source_file": "components/doctors/modal/Content.js", + "source_location": "L4", + "_origin": "ast", + "id": "components_doctors_modal_content_js_modal_content_content", + "community": 172, + "norm_label": "content()" + }, + { + "label": "DeleteAllButton.js", + "file_type": "code", + "source_file": "components/doctors/modal/DeleteAllButton.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_doctors_modal_deleteallbutton_js_modal_deleteallbutton", + "community": 173, + "norm_label": "deleteallbutton.js" + }, + { + "label": "DeleteAllButton()", + "file_type": "code", + "source_file": "components/doctors/modal/DeleteAllButton.js", + "source_location": "L7", + "_origin": "ast", + "id": "components_doctors_modal_deleteallbutton_js_modal_deleteallbutton_deleteallbutton", + "community": 173, + "norm_label": "deleteallbutton()" + }, + { + "label": "FilterModal.js", + "file_type": "code", + "source_file": "components/doctors/modal/FilterModal.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_doctors_modal_filtermodal_js_modal_filtermodal", + "community": 174, + "norm_label": "filtermodal.js" + }, + { + "label": "FilterModal()", + "file_type": "code", + "source_file": "components/doctors/modal/FilterModal.js", + "source_location": "L10", + "_origin": "ast", + "id": "components_doctors_modal_filtermodal_js_modal_filtermodal_filtermodal", + "community": 174, + "norm_label": "filtermodal()" + }, + { + "label": "CateSelector.js", + "file_type": "code", + "source_file": "components/doctors/modal/form/CateSelector.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_doctors_modal_form_cateselector_js_form_cateselector", + "community": 175, + "norm_label": "cateselector.js" + }, + { + "label": "CateSelector()", + "file_type": "code", + "source_file": "components/doctors/modal/form/CateSelector.js", + "source_location": "L5", + "_origin": "ast", + "id": "components_doctors_modal_form_cateselector_js_form_cateselector_cateselector", + "community": 175, + "norm_label": "cateselector()" + }, + { + "label": "RadioContent.js", + "file_type": "code", + "source_file": "components/doctors/modal/form/RadioContent.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_doctors_modal_form_radiocontent_js_form_radiocontent", + "community": 176, + "norm_label": "radiocontent.js" + }, + { + "label": "RadioContent()", + "file_type": "code", + "source_file": "components/doctors/modal/form/RadioContent.js", + "source_location": "L3", + "_origin": "ast", + "id": "components_doctors_modal_form_radiocontent_js_form_radiocontent_radiocontent", + "community": 176, + "norm_label": "radiocontent()" + }, + { + "label": "Radios.js", + "file_type": "code", + "source_file": "components/doctors/modal/form/Radios.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_doctors_modal_form_radios_js_form_radios", + "community": 177, + "norm_label": "radios.js" + }, + { + "label": "Radios()", + "file_type": "code", + "source_file": "components/doctors/modal/form/Radios.js", + "source_location": "L3", + "_origin": "ast", + "id": "components_doctors_modal_form_radios_js_form_radios_radios", + "community": 177, + "norm_label": "radios()" + }, + { + "label": "SwitchContent.js", + "file_type": "code", + "source_file": "components/doctors/modal/form/SwitchContent.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_doctors_modal_form_switchcontent_js_form_switchcontent", + "community": 178, + "norm_label": "switchcontent.js" + }, + { + "label": "SwitchContent()", + "file_type": "code", + "source_file": "components/doctors/modal/form/SwitchContent.js", + "source_location": "L3", + "_origin": "ast", + "id": "components_doctors_modal_form_switchcontent_js_form_switchcontent_switchcontent", + "community": 178, + "norm_label": "switchcontent()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/doctors/modal/form/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_doctors_modal_form_index_js_form_index", + "community": 71, + "norm_label": "index.js" + }, + { + "label": "gender", + "file_type": "code", + "source_file": "components/doctors/modal/form/index.js", + "source_location": "L6", + "_origin": "ast", + "id": "components_doctors_modal_form_index_js_form_index_gender", + "community": 71, + "norm_label": "gender" + }, + { + "label": "degree", + "file_type": "code", + "source_file": "components/doctors/modal/form/index.js", + "source_location": "L7", + "_origin": "ast", + "id": "components_doctors_modal_form_index_js_form_index_degree", + "community": 71, + "norm_label": "degree" + }, + { + "label": "Form()", + "file_type": "code", + "source_file": "components/doctors/modal/form/index.js", + "source_location": "L9", + "_origin": "ast", + "id": "components_doctors_modal_form_index_js_form_index_form", + "community": 71, + "norm_label": "form()" + }, + { + "label": "AutoComplete.js", + "file_type": "code", + "source_file": "components/doctors/search/AutoComplete.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_doctors_search_autocomplete_js_search_autocomplete", + "community": 179, + "norm_label": "autocomplete.js" + }, + { + "label": "AutoComplete()", + "file_type": "code", + "source_file": "components/doctors/search/AutoComplete.js", + "source_location": "L4", + "_origin": "ast", + "id": "components_doctors_search_autocomplete_js_search_autocomplete_autocomplete", + "community": 179, + "norm_label": "autocomplete()" + }, + { + "label": "SearchField.js", + "file_type": "code", + "source_file": "components/doctors/search/SearchField.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_doctors_search_searchfield_js_search_searchfield", + "community": 181, + "norm_label": "searchfield.js" + }, + { + "label": "SearchField()", + "file_type": "code", + "source_file": "components/doctors/search/SearchField.js", + "source_location": "L8", + "_origin": "ast", + "id": "components_doctors_search_searchfield_js_search_searchfield_searchfield", + "community": 181, + "norm_label": "searchfield()" + }, + { + "label": "SendReq.js", + "file_type": "code", + "source_file": "components/doctors/search/SendReq.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_doctors_search_sendreq_js_search_sendreq", + "community": 182, + "norm_label": "sendreq.js" + }, + { + "label": "SendReq()", + "file_type": "code", + "source_file": "components/doctors/search/SendReq.js", + "source_location": "L6", + "_origin": "ast", + "id": "components_doctors_search_sendreq_js_search_sendreq_sendreq", + "community": 182, + "norm_label": "sendreq()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/doctors/search/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_doctors_search_index_js_search_index", + "community": 180, + "norm_label": "index.js" + }, + { + "label": "SearchBar()", + "file_type": "code", + "source_file": "components/doctors/search/index.js", + "source_location": "L8", + "_origin": "ast", + "id": "components_doctors_search_index_js_search_index_searchbar", + "community": 180, + "norm_label": "searchbar()" + }, + { + "label": "FilterBtn.js", + "file_type": "code", + "source_file": "components/doctors/sortlist/FilterBtn.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_doctors_sortlist_filterbtn_js_sortlist_filterbtn", + "community": 183, + "norm_label": "filterbtn.js" + }, + { + "label": "FilterBtn()", + "file_type": "code", + "source_file": "components/doctors/sortlist/FilterBtn.js", + "source_location": "L5", + "_origin": "ast", + "id": "components_doctors_sortlist_filterbtn_js_sortlist_filterbtn_filterbtn", + "community": 183, + "norm_label": "filterbtn()" + }, + { + "label": "SelectSort.js", + "file_type": "code", + "source_file": "components/doctors/sortlist/SelectSort.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_doctors_sortlist_selectsort_js_sortlist_selectsort", + "community": 74, + "norm_label": "selectsort.js" + }, + { + "label": "listSort", + "file_type": "code", + "source_file": "components/doctors/sortlist/SelectSort.js", + "source_location": "L8", + "_origin": "ast", + "id": "components_doctors_sortlist_selectsort_js_sortlist_selectsort_listsort", + "community": 74, + "norm_label": "listsort" + }, + { + "label": "SelectSort()", + "file_type": "code", + "source_file": "components/doctors/sortlist/SelectSort.js", + "source_location": "L14", + "_origin": "ast", + "id": "components_doctors_sortlist_selectsort_js_sortlist_selectsort_selectsort", + "community": 74, + "norm_label": "selectsort()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/doctors/sortlist/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_doctors_sortlist_index_js_sortlist_index", + "community": 184, + "norm_label": "index.js" + }, + { + "label": "SortList()", + "file_type": "code", + "source_file": "components/doctors/sortlist/index.js", + "source_location": "L7", + "_origin": "ast", + "id": "components_doctors_sortlist_index_js_sortlist_index_sortlist", + "community": 184, + "norm_label": "sortlist()" + }, + { + "label": "FrequentSearches.js", + "file_type": "code", + "source_file": "components/home/FrequentSearches.js", + "source_location": "L1", + "_origin": "ast", + "id": "home_frequentsearches", + "community": 67, + "norm_label": "frequentsearches.js" + }, + { + "label": "FrequentSearches()", + "file_type": "code", + "source_file": "components/home/FrequentSearches.js", + "source_location": "L5", + "_origin": "ast", + "id": "home_frequentsearches_frequentsearches", + "community": 67, + "norm_label": "frequentsearches()" + }, + { + "label": "TextHeader.js", + "file_type": "code", + "source_file": "components/home/TextHeader.js", + "source_location": "L1", + "_origin": "ast", + "id": "home_textheader", + "community": 67, + "norm_label": "textheader.js" + }, + { + "label": "TextHeader()", + "file_type": "code", + "source_file": "components/home/TextHeader.js", + "source_location": "L5", + "_origin": "ast", + "id": "home_textheader_textheader", + "community": 67, + "norm_label": "textheader()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/home/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "home_index", + "community": 67, + "norm_label": "index.js" + }, + { + "label": "HomePage()", + "file_type": "code", + "source_file": "components/home/index.js", + "source_location": "L7", + "_origin": "ast", + "id": "home_index_homepage", + "community": 67, + "norm_label": "homepage()" + }, + { + "label": "Fields.js", + "file_type": "code", + "source_file": "components/home/search/Fields.js", + "source_location": "L1", + "_origin": "ast", + "id": "search_fields", + "community": 16, + "norm_label": "fields.js" + }, + { + "label": "Fields()", + "file_type": "code", + "source_file": "components/home/search/Fields.js", + "source_location": "L11", + "_origin": "ast", + "id": "search_fields_fields", + "community": 16, + "norm_label": "fields()" + }, + { + "label": "FilterText.js", + "file_type": "code", + "source_file": "components/home/search/FilterText.js", + "source_location": "L1", + "_origin": "ast", + "id": "search_filtertext", + "community": 351, + "norm_label": "filtertext.js" + }, + { + "label": "FilterText()", + "file_type": "code", + "source_file": "components/home/search/FilterText.js", + "source_location": "L3", + "_origin": "ast", + "id": "search_filtertext_filtertext", + "community": 351, + "norm_label": "filtertext()" + }, + { + "label": "RedirectLink.js", + "file_type": "code", + "source_file": "components/home/search/RedirectLink.js", + "source_location": "L1", + "_origin": "ast", + "id": "search_redirectlink", + "community": 16, + "norm_label": "redirectlink.js" + }, + { + "label": "RedirectLink()", + "file_type": "code", + "source_file": "components/home/search/RedirectLink.js", + "source_location": "L10", + "_origin": "ast", + "id": "search_redirectlink_redirectlink", + "community": 16, + "norm_label": "redirectlink()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/home/search/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_home_search_index_js_search_index", + "community": 16, + "norm_label": "index.js" + }, + { + "label": "SearchBar()", + "file_type": "code", + "source_file": "components/home/search/index.js", + "source_location": "L5", + "_origin": "ast", + "id": "components_home_search_index_js_search_index_searchbar", + "community": 16, + "norm_label": "searchbar()" + }, + { + "label": "AutoComplete.js", + "file_type": "code", + "source_file": "components/home/search/modal/AutoComplete.js", + "source_location": "L1", + "_origin": "ast", + "id": "modal_autocomplete", + "community": 343, + "norm_label": "autocomplete.js" + }, + { + "label": "AutoComplete()", + "file_type": "code", + "source_file": "components/home/search/modal/AutoComplete.js", + "source_location": "L5", + "_origin": "ast", + "id": "modal_autocomplete_autocomplete", + "community": 343, + "norm_label": "autocomplete()" + }, + { + "label": "ButtonFilter.js", + "file_type": "code", + "source_file": "components/home/search/modal/ButtonFilter.js", + "source_location": "L1", + "_origin": "ast", + "id": "modal_buttonfilter", + "community": 16, + "norm_label": "buttonfilter.js" + }, + { + "label": "ButtonFilter()", + "file_type": "code", + "source_file": "components/home/search/modal/ButtonFilter.js", + "source_location": "L6", + "_origin": "ast", + "id": "modal_buttonfilter_buttonfilter", + "community": 16, + "norm_label": "buttonfilter()" + }, + { + "label": "Content.js", + "file_type": "code", + "source_file": "components/home/search/modal/Content.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_home_search_modal_content_js_modal_content", + "community": 186, + "norm_label": "content.js" + }, + { + "label": "Content()", + "file_type": "code", + "source_file": "components/home/search/modal/Content.js", + "source_location": "L8", + "_origin": "ast", + "id": "components_home_search_modal_content_js_modal_content_content", + "community": 186, + "norm_label": "content()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/home/search/modal/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_home_search_modal_index_js_modal_index", + "community": 113, + "norm_label": "index.js" + }, + { + "label": "ModalSearchCity()", + "file_type": "code", + "source_file": "components/home/search/modal/index.js", + "source_location": "L13", + "_origin": "ast", + "id": "components_home_search_modal_index_js_modal_index_modalsearchcity", + "community": 113, + "norm_label": "modalsearchcity()" + }, + { + "label": "AText.js", + "file_type": "code", + "source_file": "components/icons/AText.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_atext", + "community": 67, + "norm_label": "atext.js" + }, + { + "label": "AText()", + "file_type": "code", + "source_file": "components/icons/AText.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_atext_atext", + "community": 67, + "norm_label": "atext()" + }, + { + "label": "AddCircleBlueA.js", + "file_type": "code", + "source_file": "components/icons/AddCircleBlueA.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_addcirclebluea", + "community": 199, + "norm_label": "addcirclebluea.js" + }, + { + "label": "AddCircleBlueA()", + "file_type": "code", + "source_file": "components/icons/AddCircleBlueA.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_addcirclebluea_addcirclebluea", + "community": 199, + "norm_label": "addcirclebluea()" + }, + { + "label": "AddLocationP.js", + "file_type": "code", + "source_file": "components/icons/AddLocationP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_addlocationp", + "community": 200, + "norm_label": "addlocationp.js" + }, + { + "label": "AddLocationP()", + "file_type": "code", + "source_file": "components/icons/AddLocationP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_addlocationp_addlocationp", + "community": 200, + "norm_label": "addlocationp()" + }, + { + "label": "AddTimeP.js", + "file_type": "code", + "source_file": "components/icons/AddTimeP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_addtimep", + "community": 202, + "norm_label": "addtimep.js" + }, + { + "label": "AddTimeP()", + "file_type": "code", + "source_file": "components/icons/AddTimeP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_addtimep_addtimep", + "community": 202, + "norm_label": "addtimep()" + }, + { + "label": "AddressPoster.js", + "file_type": "code", + "source_file": "components/icons/AddressPoster.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_addressposter", + "community": 201, + "norm_label": "addressposter.js" + }, + { + "label": "AddressPoster()", + "file_type": "code", + "source_file": "components/icons/AddressPoster.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_addressposter_addressposter", + "community": 201, + "norm_label": "addressposter()" + }, + { + "label": "Aparat.js", + "file_type": "code", + "source_file": "components/icons/Aparat.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_aparat", + "community": 203, + "norm_label": "aparat.js" + }, + { + "label": "Aparat()", + "file_type": "code", + "source_file": "components/icons/Aparat.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_aparat_aparat", + "community": 203, + "norm_label": "aparat()" + }, + { + "label": "ArrowBottomD.js", + "file_type": "code", + "source_file": "components/icons/ArrowBottomD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowbottomd", + "community": 74, + "norm_label": "arrowbottomd.js" + }, + { + "label": "ArrowBottomD()", + "file_type": "code", + "source_file": "components/icons/ArrowBottomD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowbottomd_arrowbottomd", + "community": 74, + "norm_label": "arrowbottomd()" + }, + { + "label": "ArrowBottomGrayD.js", + "file_type": "code", + "source_file": "components/icons/ArrowBottomGrayD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowbottomgrayd", + "community": 204, + "norm_label": "arrowbottomgrayd.js" + }, + { + "label": "ArrowBottomGrayD()", + "file_type": "code", + "source_file": "components/icons/ArrowBottomGrayD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowbottomgrayd_arrowbottomgrayd", + "community": 204, + "norm_label": "arrowbottomgrayd()" + }, + { + "label": "ArrowBottomH.js", + "file_type": "code", + "source_file": "components/icons/ArrowBottomH.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowbottomh", + "community": 205, + "norm_label": "arrowbottomh.js" + }, + { + "label": "ArrowBottomH()", + "file_type": "code", + "source_file": "components/icons/ArrowBottomH.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowbottomh_arrowbottomh", + "community": 205, + "norm_label": "arrowbottomh()" + }, + { + "label": "ArrowBottomHD.js", + "file_type": "code", + "source_file": "components/icons/ArrowBottomHD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowbottomhd", + "community": 206, + "norm_label": "arrowbottomhd.js" + }, + { + "label": "ArrowBottomHD()", + "file_type": "code", + "source_file": "components/icons/ArrowBottomHD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowbottomhd_arrowbottomhd", + "community": 206, + "norm_label": "arrowbottomhd()" + }, + { + "label": "ArrowBottomP.js", + "file_type": "code", + "source_file": "components/icons/ArrowBottomP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowbottomp", + "community": 207, + "norm_label": "arrowbottomp.js" + }, + { + "label": "ArrowBottomP()", + "file_type": "code", + "source_file": "components/icons/ArrowBottomP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowbottomp_arrowbottomp", + "community": 207, + "norm_label": "arrowbottomp()" + }, + { + "label": "ArrowDownF.js", + "file_type": "code", + "source_file": "components/icons/ArrowDownF.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowdownf", + "community": 208, + "norm_label": "arrowdownf.js" + }, + { + "label": "ArrowDownF()", + "file_type": "code", + "source_file": "components/icons/ArrowDownF.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowdownf_arrowdownf", + "community": 208, + "norm_label": "arrowdownf()" + }, + { + "label": "ArrowDownP.js", + "file_type": "code", + "source_file": "components/icons/ArrowDownP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowdownp", + "community": 209, + "norm_label": "arrowdownp.js" + }, + { + "label": "ArrowDownP()", + "file_type": "code", + "source_file": "components/icons/ArrowDownP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowdownp_arrowdownp", + "community": 209, + "norm_label": "arrowdownp()" + }, + { + "label": "ArrowLeftB.js", + "file_type": "code", + "source_file": "components/icons/ArrowLeftB.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftb", + "community": 210, + "norm_label": "arrowleftb.js" + }, + { + "label": "ArrowLeftB()", + "file_type": "code", + "source_file": "components/icons/ArrowLeftB.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftb_arrowleftb", + "community": 210, + "norm_label": "arrowleftb()" + }, + { + "label": "ArrowLeftBlueA.js", + "file_type": "code", + "source_file": "components/icons/ArrowLeftBlueA.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftbluea", + "community": 211, + "norm_label": "arrowleftbluea.js" + }, + { + "label": "ArrowLeftBlueA()", + "file_type": "code", + "source_file": "components/icons/ArrowLeftBlueA.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftbluea_arrowleftbluea", + "community": 211, + "norm_label": "arrowleftbluea()" + }, + { + "label": "ArrowLeftBlueD.js", + "file_type": "code", + "source_file": "components/icons/ArrowLeftBlueD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftblued", + "community": 212, + "norm_label": "arrowleftblued.js" + }, + { + "label": "ArrowLeftBlueD()", + "file_type": "code", + "source_file": "components/icons/ArrowLeftBlueD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftblued_arrowleftblued", + "community": 212, + "norm_label": "arrowleftblued()" + }, + { + "label": "ArrowLeftBlueP.js", + "file_type": "code", + "source_file": "components/icons/ArrowLeftBlueP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftbluep", + "community": 213, + "norm_label": "arrowleftbluep.js" + }, + { + "label": "ArrowLeftBlueP()", + "file_type": "code", + "source_file": "components/icons/ArrowLeftBlueP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftbluep_arrowleftbluep", + "community": 213, + "norm_label": "arrowleftbluep()" + }, + { + "label": "ArrowLeftButtonP.js", + "file_type": "code", + "source_file": "components/icons/ArrowLeftButtonP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftbuttonp", + "community": 214, + "norm_label": "arrowleftbuttonp.js" + }, + { + "label": "ArrowLeftButtonP()", + "file_type": "code", + "source_file": "components/icons/ArrowLeftButtonP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftbuttonp_arrowleftbuttonp", + "community": 214, + "norm_label": "arrowleftbuttonp()" + }, + { + "label": "ArrowLeftC.js", + "file_type": "code", + "source_file": "components/icons/ArrowLeftC.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftc", + "community": 14, + "norm_label": "arrowleftc.js" + }, + { + "label": "ArrowLeftC()", + "file_type": "code", + "source_file": "components/icons/ArrowLeftC.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftc_arrowleftc", + "community": 14, + "norm_label": "arrowleftc()" + }, + { + "label": "ArrowLeftCardD.js", + "file_type": "code", + "source_file": "components/icons/ArrowLeftCardD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftcardd", + "community": 215, + "norm_label": "arrowleftcardd.js" + }, + { + "label": "ArrowLeftCardD()", + "file_type": "code", + "source_file": "components/icons/ArrowLeftCardD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftcardd_arrowleftcardd", + "community": 215, + "norm_label": "arrowleftcardd()" + }, + { + "label": "ArrowLeftD.js", + "file_type": "code", + "source_file": "components/icons/ArrowLeftD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftd", + "community": 216, + "norm_label": "arrowleftd.js" + }, + { + "label": "ArrowLeftD()", + "file_type": "code", + "source_file": "components/icons/ArrowLeftD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftd_arrowleftd", + "community": 216, + "norm_label": "arrowleftd()" + }, + { + "label": "ArrowLeftList.js", + "file_type": "code", + "source_file": "components/icons/ArrowLeftList.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftlist", + "community": 217, + "norm_label": "arrowleftlist.js" + }, + { + "label": "ArrowLeftList()", + "file_type": "code", + "source_file": "components/icons/ArrowLeftList.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftlist_arrowleftlist", + "community": 217, + "norm_label": "arrowleftlist()" + }, + { + "label": "ArrowLeftM.js", + "file_type": "code", + "source_file": "components/icons/ArrowLeftM.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftm", + "community": 218, + "norm_label": "arrowleftm.js" + }, + { + "label": "ArrowLeftM()", + "file_type": "code", + "source_file": "components/icons/ArrowLeftM.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftm_arrowleftm", + "community": 218, + "norm_label": "arrowleftm()" + }, + { + "label": "ArrowLeftOrangeA.js", + "file_type": "code", + "source_file": "components/icons/ArrowLeftOrangeA.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftorangea", + "community": 219, + "norm_label": "arrowleftorangea.js" + }, + { + "label": "ArrowLeftOrangeA()", + "file_type": "code", + "source_file": "components/icons/ArrowLeftOrangeA.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftorangea_arrowleftorangea", + "community": 219, + "norm_label": "arrowleftorangea()" + }, + { + "label": "ArrowLeftOrangeS.js", + "file_type": "code", + "source_file": "components/icons/ArrowLeftOrangeS.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftoranges", + "community": 220, + "norm_label": "arrowleftoranges.js" + }, + { + "label": "ArrowLeftOrangeS()", + "file_type": "code", + "source_file": "components/icons/ArrowLeftOrangeS.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftoranges_arrowleftoranges", + "community": 220, + "norm_label": "arrowleftoranges()" + }, + { + "label": "ArrowLeftP.js", + "file_type": "code", + "source_file": "components/icons/ArrowLeftP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftp", + "community": 221, + "norm_label": "arrowleftp.js" + }, + { + "label": "ArrowLeftP()", + "file_type": "code", + "source_file": "components/icons/ArrowLeftP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftp_arrowleftp", + "community": 221, + "norm_label": "arrowleftp()" + }, + { + "label": "ArrowLeftPA.js", + "file_type": "code", + "source_file": "components/icons/ArrowLeftPA.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftpa", + "community": 222, + "norm_label": "arrowleftpa.js" + }, + { + "label": "ArrowLeftPA()", + "file_type": "code", + "source_file": "components/icons/ArrowLeftPA.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftpa_arrowleftpa", + "community": 222, + "norm_label": "arrowleftpa()" + }, + { + "label": "ArrowLeftPH.js", + "file_type": "code", + "source_file": "components/icons/ArrowLeftPH.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftph", + "community": 223, + "norm_label": "arrowleftph.js" + }, + { + "label": "ArrowLeftPH()", + "file_type": "code", + "source_file": "components/icons/ArrowLeftPH.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftph_arrowleftph", + "community": 223, + "norm_label": "arrowleftph()" + }, + { + "label": "ArrowLeftPU.js", + "file_type": "code", + "source_file": "components/icons/ArrowLeftPU.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftpu", + "community": 224, + "norm_label": "arrowleftpu.js" + }, + { + "label": "ArrowLeftPU()", + "file_type": "code", + "source_file": "components/icons/ArrowLeftPU.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftpu_arrowleftpu", + "community": 224, + "norm_label": "arrowleftpu()" + }, + { + "label": "ArrowLeftSideBar.js", + "file_type": "code", + "source_file": "components/icons/ArrowLeftSideBar.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftsidebar", + "community": 225, + "norm_label": "arrowleftsidebar.js" + }, + { + "label": "ArrowLeftSideBar()", + "file_type": "code", + "source_file": "components/icons/ArrowLeftSideBar.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftsidebar_arrowleftsidebar", + "community": 225, + "norm_label": "arrowleftsidebar()" + }, + { + "label": "ArrowLeftWD.js", + "file_type": "code", + "source_file": "components/icons/ArrowLeftWD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftwd", + "community": 226, + "norm_label": "arrowleftwd.js" + }, + { + "label": "ArrowLeftWD()", + "file_type": "code", + "source_file": "components/icons/ArrowLeftWD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftwd_arrowleftwd", + "community": 226, + "norm_label": "arrowleftwd()" + }, + { + "label": "ArrowLeftWhiteD.js", + "file_type": "code", + "source_file": "components/icons/ArrowLeftWhiteD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftwhited", + "community": 227, + "norm_label": "arrowleftwhited.js" + }, + { + "label": "ArrowLeftWhiteD()", + "file_type": "code", + "source_file": "components/icons/ArrowLeftWhiteD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowleftwhited_arrowleftwhited", + "community": 227, + "norm_label": "arrowleftwhited()" + }, + { + "label": "ArrowRightD.js", + "file_type": "code", + "source_file": "components/icons/ArrowRightD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowrightd", + "community": 228, + "norm_label": "arrowrightd.js" + }, + { + "label": "ArrowRightD()", + "file_type": "code", + "source_file": "components/icons/ArrowRightD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowrightd_arrowrightd", + "community": 228, + "norm_label": "arrowrightd()" + }, + { + "label": "ArrowRightP.js", + "file_type": "code", + "source_file": "components/icons/ArrowRightP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowrightp", + "community": 229, + "norm_label": "arrowrightp.js" + }, + { + "label": "ArrowRightP()", + "file_type": "code", + "source_file": "components/icons/ArrowRightP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowrightp_arrowrightp", + "community": 229, + "norm_label": "arrowrightp()" + }, + { + "label": "ArrowRightPH.js", + "file_type": "code", + "source_file": "components/icons/ArrowRightPH.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowrightph", + "community": 230, + "norm_label": "arrowrightph.js" + }, + { + "label": "ArrowRightPH()", + "file_type": "code", + "source_file": "components/icons/ArrowRightPH.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowrightph_arrowrightph", + "community": 230, + "norm_label": "arrowrightph()" + }, + { + "label": "ArrowRightS.js", + "file_type": "code", + "source_file": "components/icons/ArrowRightS.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowrights", + "community": 52, + "norm_label": "arrowrights.js" + }, + { + "label": "ArrowRightS()", + "file_type": "code", + "source_file": "components/icons/ArrowRightS.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowrights_arrowrights", + "community": 52, + "norm_label": "arrowrights()" + }, + { + "label": "ArrowUpComment.js", + "file_type": "code", + "source_file": "components/icons/ArrowUpComment.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowupcomment", + "community": 231, + "norm_label": "arrowupcomment.js" + }, + { + "label": "ArrowUpComment()", + "file_type": "code", + "source_file": "components/icons/ArrowUpComment.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_arrowupcomment_arrowupcomment", + "community": 231, + "norm_label": "arrowupcomment()" + }, + { + "label": "BText.js", + "file_type": "code", + "source_file": "components/icons/BText.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_btext", + "community": 67, + "norm_label": "btext.js" + }, + { + "label": "BText()", + "file_type": "code", + "source_file": "components/icons/BText.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_btext_btext", + "community": 67, + "norm_label": "btext()" + }, + { + "label": "BoldDisLikeComment.js", + "file_type": "code", + "source_file": "components/icons/BoldDisLikeComment.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_bolddislikecomment", + "community": 232, + "norm_label": "bolddislikecomment.js" + }, + { + "label": "BoldDisLikeComment()", + "file_type": "code", + "source_file": "components/icons/BoldDisLikeComment.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_bolddislikecomment_bolddislikecomment", + "community": 232, + "norm_label": "bolddislikecomment()" + }, + { + "label": "BoldLikeComment.js", + "file_type": "code", + "source_file": "components/icons/BoldLikeComment.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_boldlikecomment", + "community": 233, + "norm_label": "boldlikecomment.js" + }, + { + "label": "BoldLikeComment()", + "file_type": "code", + "source_file": "components/icons/BoldLikeComment.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_boldlikecomment_boldlikecomment", + "community": 233, + "norm_label": "boldlikecomment()" + }, + { + "label": "BottomSelect.js", + "file_type": "code", + "source_file": "components/icons/BottomSelect.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_bottomselect", + "community": 234, + "norm_label": "bottomselect.js" + }, + { + "label": "BottomSelect()", + "file_type": "code", + "source_file": "components/icons/BottomSelect.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_bottomselect_bottomselect", + "community": 234, + "norm_label": "bottomselect()" + }, + { + "label": "CalendarA.js", + "file_type": "code", + "source_file": "components/icons/CalendarA.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_calendara", + "community": 235, + "norm_label": "calendara.js" + }, + { + "label": "CalendarA()", + "file_type": "code", + "source_file": "components/icons/CalendarA.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_calendara_calendara", + "community": 235, + "norm_label": "calendara()" + }, + { + "label": "CalendarAdD.js", + "file_type": "code", + "source_file": "components/icons/CalendarAdD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_calendaradd", + "community": 236, + "norm_label": "calendaradd.js" + }, + { + "label": "CalendarAdD()", + "file_type": "code", + "source_file": "components/icons/CalendarAdD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_calendaradd_calendaradd", + "community": 236, + "norm_label": "calendaradd()" + }, + { + "label": "CalendarAddF.js", + "file_type": "code", + "source_file": "components/icons/CalendarAddF.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_calendaraddf", + "community": 0, + "norm_label": "calendaraddf.js" + }, + { + "label": "CalendarAddF()", + "file_type": "code", + "source_file": "components/icons/CalendarAddF.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_calendaraddf_calendaraddf", + "community": 0, + "norm_label": "calendaraddf()" + }, + { + "label": "CalendarD.js", + "file_type": "code", + "source_file": "components/icons/CalendarD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_calendard", + "community": 237, + "norm_label": "calendard.js" + }, + { + "label": "CalendarD()", + "file_type": "code", + "source_file": "components/icons/CalendarD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_calendard_calendard", + "community": 237, + "norm_label": "calendard()" + }, + { + "label": "CalendarEdit.js", + "file_type": "code", + "source_file": "components/icons/CalendarEdit.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_calendaredit", + "community": 238, + "norm_label": "calendaredit.js" + }, + { + "label": "CalendarEdit()", + "file_type": "code", + "source_file": "components/icons/CalendarEdit.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_calendaredit_calendaredit", + "community": 238, + "norm_label": "calendaredit()" + }, + { + "label": "CalendarP.js", + "file_type": "code", + "source_file": "components/icons/CalendarP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_calendarp", + "community": 239, + "norm_label": "calendarp.js" + }, + { + "label": "CalendarP()", + "file_type": "code", + "source_file": "components/icons/CalendarP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_calendarp_calendarp", + "community": 239, + "norm_label": "calendarp()" + }, + { + "label": "CalendarPD.js", + "file_type": "code", + "source_file": "components/icons/CalendarPD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_calendarpd", + "community": 240, + "norm_label": "calendarpd.js" + }, + { + "label": "CalendarPD()", + "file_type": "code", + "source_file": "components/icons/CalendarPD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_calendarpd_calendarpd", + "community": 240, + "norm_label": "calendarpd()" + }, + { + "label": "CalendarTick.js", + "file_type": "code", + "source_file": "components/icons/CalendarTick.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_calendartick", + "community": 241, + "norm_label": "calendartick.js" + }, + { + "label": "CalendarTick()", + "file_type": "code", + "source_file": "components/icons/CalendarTick.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_calendartick_calendartick", + "community": 241, + "norm_label": "calendartick()" + }, + { + "label": "CalendarTickGreenP.js", + "file_type": "code", + "source_file": "components/icons/CalendarTickGreenP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_calendartickgreenp", + "community": 242, + "norm_label": "calendartickgreenp.js" + }, + { + "label": "CalendarTickGreenP()", + "file_type": "code", + "source_file": "components/icons/CalendarTickGreenP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_calendartickgreenp_calendartickgreenp", + "community": 242, + "norm_label": "calendartickgreenp()" + }, + { + "label": "CallC.js", + "file_type": "code", + "source_file": "components/icons/CallC.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_callc", + "community": 14, + "norm_label": "callc.js" + }, + { + "label": "CallC()", + "file_type": "code", + "source_file": "components/icons/CallC.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_callc_callc", + "community": 14, + "norm_label": "callc()" + }, + { + "label": "CallD.js", + "file_type": "code", + "source_file": "components/icons/CallD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_calld", + "community": 243, + "norm_label": "calld.js" + }, + { + "label": "CallD()", + "file_type": "code", + "source_file": "components/icons/CallD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_calld_calld", + "community": 243, + "norm_label": "calld()" + }, + { + "label": "CalndarD.js", + "file_type": "code", + "source_file": "components/icons/CalndarD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_calndard", + "community": 244, + "norm_label": "calndard.js" + }, + { + "label": "CalndarD()", + "file_type": "code", + "source_file": "components/icons/CalndarD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_calndard_calndard", + "community": 244, + "norm_label": "calndard()" + }, + { + "label": "CardD.js", + "file_type": "code", + "source_file": "components/icons/CardD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_cardd", + "community": 245, + "norm_label": "cardd.js" + }, + { + "label": "CardD()", + "file_type": "code", + "source_file": "components/icons/CardD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_cardd_cardd", + "community": 245, + "norm_label": "cardd()" + }, + { + "label": "CardDA.js", + "file_type": "code", + "source_file": "components/icons/CardDA.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_cardda", + "community": 246, + "norm_label": "cardda.js" + }, + { + "label": "CardDA()", + "file_type": "code", + "source_file": "components/icons/CardDA.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_cardda_cardda", + "community": 246, + "norm_label": "cardda()" + }, + { + "label": "CardOrangeP.js", + "file_type": "code", + "source_file": "components/icons/CardOrangeP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_cardorangep", + "community": 247, + "norm_label": "cardorangep.js" + }, + { + "label": "CardOrangeP()", + "file_type": "code", + "source_file": "components/icons/CardOrangeP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_cardorangep_cardorangep", + "community": 247, + "norm_label": "cardorangep()" + }, + { + "label": "CardTickD.js", + "file_type": "code", + "source_file": "components/icons/CardTickD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_cardtickd", + "community": 248, + "norm_label": "cardtickd.js" + }, + { + "label": "CardTickD()", + "file_type": "code", + "source_file": "components/icons/CardTickD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_cardtickd_cardtickd", + "community": 248, + "norm_label": "cardtickd()" + }, + { + "label": "CategoryP.js", + "file_type": "code", + "source_file": "components/icons/CategoryP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_categoryp", + "community": 249, + "norm_label": "categoryp.js" + }, + { + "label": "CategoryP()", + "file_type": "code", + "source_file": "components/icons/CategoryP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_categoryp_categoryp", + "community": 249, + "norm_label": "categoryp()" + }, + { + "label": "CircleOrangeSm.js", + "file_type": "code", + "source_file": "components/icons/CircleOrangeSm.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_circleorangesm", + "community": 250, + "norm_label": "circleorangesm.js" + }, + { + "label": "CircleOrangeSm()", + "file_type": "code", + "source_file": "components/icons/CircleOrangeSm.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_circleorangesm_circleorangesm", + "community": 250, + "norm_label": "circleorangesm()" + }, + { + "label": "ClipBoard.js", + "file_type": "code", + "source_file": "components/icons/ClipBoard.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_clipboard", + "community": 251, + "norm_label": "clipboard.js" + }, + { + "label": "ClipBoard()", + "file_type": "code", + "source_file": "components/icons/ClipBoard.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_clipboard_clipboard", + "community": 251, + "norm_label": "clipboard()" + }, + { + "label": "ClockA.js", + "file_type": "code", + "source_file": "components/icons/ClockA.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_clocka", + "community": 252, + "norm_label": "clocka.js" + }, + { + "label": "ClockA()", + "file_type": "code", + "source_file": "components/icons/ClockA.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_clocka_clocka", + "community": 252, + "norm_label": "clocka()" + }, + { + "label": "ClockClinic.js", + "file_type": "code", + "source_file": "components/icons/ClockClinic.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_clockclinic", + "community": 253, + "norm_label": "clockclinic.js" + }, + { + "label": "ClockClinic()", + "file_type": "code", + "source_file": "components/icons/ClockClinic.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_clockclinic_clockclinic", + "community": 253, + "norm_label": "clockclinic()" + }, + { + "label": "ClockD.js", + "file_type": "code", + "source_file": "components/icons/ClockD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_clockd", + "community": 254, + "norm_label": "clockd.js" + }, + { + "label": "ClockD()", + "file_type": "code", + "source_file": "components/icons/ClockD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_clockd_clockd", + "community": 254, + "norm_label": "clockd()" + }, + { + "label": "ClockField.js", + "file_type": "code", + "source_file": "components/icons/ClockField.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_clockfield", + "community": 255, + "norm_label": "clockfield.js" + }, + { + "label": "ClockField()", + "file_type": "code", + "source_file": "components/icons/ClockField.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_clockfield_clockfield", + "community": 255, + "norm_label": "clockfield()" + }, + { + "label": "ClockP.js", + "file_type": "code", + "source_file": "components/icons/ClockP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_clockp", + "community": 256, + "norm_label": "clockp.js" + }, + { + "label": "ClockP()", + "file_type": "code", + "source_file": "components/icons/ClockP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_clockp_clockp", + "community": 256, + "norm_label": "clockp()" + }, + { + "label": "ClockTurn.js", + "file_type": "code", + "source_file": "components/icons/ClockTurn.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_clockturn", + "community": 257, + "norm_label": "clockturn.js" + }, + { + "label": "ClockTurn()", + "file_type": "code", + "source_file": "components/icons/ClockTurn.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_clockturn_clockturn", + "community": 257, + "norm_label": "clockturn()" + }, + { + "label": "CloseModalD.js", + "file_type": "code", + "source_file": "components/icons/CloseModalD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_closemodald", + "community": 258, + "norm_label": "closemodald.js" + }, + { + "label": "CloseModalD()", + "file_type": "code", + "source_file": "components/icons/CloseModalD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_closemodald_closemodald", + "community": 258, + "norm_label": "closemodald()" + }, + { + "label": "CloseOrangeModal.js", + "file_type": "code", + "source_file": "components/icons/CloseOrangeModal.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_closeorangemodal", + "community": 259, + "norm_label": "closeorangemodal.js" + }, + { + "label": "CloseOrangeModal()", + "file_type": "code", + "source_file": "components/icons/CloseOrangeModal.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_closeorangemodal_closeorangemodal", + "community": 259, + "norm_label": "closeorangemodal()" + }, + { + "label": "CopyBlueD.js", + "file_type": "code", + "source_file": "components/icons/CopyBlueD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_copyblued", + "community": 260, + "norm_label": "copyblued.js" + }, + { + "label": "CopyBlueD()", + "file_type": "code", + "source_file": "components/icons/CopyBlueD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_copyblued_copyblued", + "community": 260, + "norm_label": "copyblued()" + }, + { + "label": "DisLikeComment.js", + "file_type": "code", + "source_file": "components/icons/DisLikeComment.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_dislikecomment", + "community": 261, + "norm_label": "dislikecomment.js" + }, + { + "label": "DisLikeComment()", + "file_type": "code", + "source_file": "components/icons/DisLikeComment.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_dislikecomment_dislikecomment", + "community": 261, + "norm_label": "dislikecomment()" + }, + { + "label": "DoubleArrowLeftP.js", + "file_type": "code", + "source_file": "components/icons/DoubleArrowLeftP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_doublearrowleftp", + "community": 262, + "norm_label": "doublearrowleftp.js" + }, + { + "label": "DoubleArrowLeftP()", + "file_type": "code", + "source_file": "components/icons/DoubleArrowLeftP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_doublearrowleftp_doublearrowleftp", + "community": 262, + "norm_label": "doublearrowleftp()" + }, + { + "label": "DownloadBlue.js", + "file_type": "code", + "source_file": "components/icons/DownloadBlue.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_downloadblue", + "community": 263, + "norm_label": "downloadblue.js" + }, + { + "label": "DownloadBlue()", + "file_type": "code", + "source_file": "components/icons/DownloadBlue.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_downloadblue_downloadblue", + "community": 263, + "norm_label": "downloadblue()" + }, + { + "label": "DownloadD.js", + "file_type": "code", + "source_file": "components/icons/DownloadD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_downloadd", + "community": 264, + "norm_label": "downloadd.js" + }, + { + "label": "DownloadD()", + "file_type": "code", + "source_file": "components/icons/DownloadD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_downloadd_downloadd", + "community": 264, + "norm_label": "downloadd()" + }, + { + "label": "EditB.js", + "file_type": "code", + "source_file": "components/icons/EditB.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_editb", + "community": 265, + "norm_label": "editb.js" + }, + { + "label": "EditB()", + "file_type": "code", + "source_file": "components/icons/EditB.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_editb_editb", + "community": 265, + "norm_label": "editb()" + }, + { + "label": "EditGrayA.js", + "file_type": "code", + "source_file": "components/icons/EditGrayA.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_editgraya", + "community": 266, + "norm_label": "editgraya.js" + }, + { + "label": "EditGrayA()", + "file_type": "code", + "source_file": "components/icons/EditGrayA.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_editgraya_editgraya", + "community": 266, + "norm_label": "editgraya()" + }, + { + "label": "EditLogin.js", + "file_type": "code", + "source_file": "components/icons/EditLogin.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_editlogin", + "community": 52, + "norm_label": "editlogin.js" + }, + { + "label": "EditLogin()", + "file_type": "code", + "source_file": "components/icons/EditLogin.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_editlogin_editlogin", + "community": 52, + "norm_label": "editlogin()" + }, + { + "label": "EditOrangeA.js", + "file_type": "code", + "source_file": "components/icons/EditOrangeA.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_editorangea", + "community": 267, + "norm_label": "editorangea.js" + }, + { + "label": "EditOrangeA()", + "file_type": "code", + "source_file": "components/icons/EditOrangeA.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_editorangea_editorangea", + "community": 267, + "norm_label": "editorangea()" + }, + { + "label": "EditOrangeAD.js", + "file_type": "code", + "source_file": "components/icons/EditOrangeAD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_editorangead", + "community": 268, + "norm_label": "editorangead.js" + }, + { + "label": "EditOrangeAD()", + "file_type": "code", + "source_file": "components/icons/EditOrangeAD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_editorangead_editorangead", + "community": 268, + "norm_label": "editorangead()" + }, + { + "label": "EditTurnsD.js", + "file_type": "code", + "source_file": "components/icons/EditTurnsD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_editturnsd", + "community": 269, + "norm_label": "editturnsd.js" + }, + { + "label": "EditTurnsD()", + "file_type": "code", + "source_file": "components/icons/EditTurnsD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_editturnsd_editturnsd", + "community": 269, + "norm_label": "editturnsd()" + }, + { + "label": "EmailC.js", + "file_type": "code", + "source_file": "components/icons/EmailC.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_emailc", + "community": 14, + "norm_label": "emailc.js" + }, + { + "label": "EmailC()", + "file_type": "code", + "source_file": "components/icons/EmailC.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_emailc_emailc", + "community": 14, + "norm_label": "emailc()" + }, + { + "label": "ExportP.js", + "file_type": "code", + "source_file": "components/icons/ExportP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_exportp", + "community": 270, + "norm_label": "exportp.js" + }, + { + "label": "ExportP()", + "file_type": "code", + "source_file": "components/icons/ExportP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_exportp_exportp", + "community": 270, + "norm_label": "exportp()" + }, + { + "label": "GreenCalendarTurn.js", + "file_type": "code", + "source_file": "components/icons/GreenCalendarTurn.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_greencalendarturn", + "community": 271, + "norm_label": "greencalendarturn.js" + }, + { + "label": "GreenCalendarTurn()", + "file_type": "code", + "source_file": "components/icons/GreenCalendarTurn.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_greencalendarturn_greencalendarturn", + "community": 271, + "norm_label": "greencalendarturn()" + }, + { + "label": "IconMultipleSelect.js", + "file_type": "code", + "source_file": "components/icons/IconMultipleSelect.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_iconmultipleselect", + "community": 272, + "norm_label": "iconmultipleselect.js" + }, + { + "label": "IconMultipleSelect()", + "file_type": "code", + "source_file": "components/icons/IconMultipleSelect.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_iconmultipleselect_iconmultipleselect", + "community": 272, + "norm_label": "iconmultipleselect()" + }, + { + "label": "InfoCircleRedA.js", + "file_type": "code", + "source_file": "components/icons/InfoCircleRedA.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_infocirclereda", + "community": 273, + "norm_label": "infocirclereda.js" + }, + { + "label": "InfoCircleRedA()", + "file_type": "code", + "source_file": "components/icons/InfoCircleRedA.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_infocirclereda_infocirclereda", + "community": 273, + "norm_label": "infocirclereda()" + }, + { + "label": "Instagram.js", + "file_type": "code", + "source_file": "components/icons/Instagram.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_instagram", + "community": 0, + "norm_label": "instagram.js" + }, + { + "label": "Instagram()", + "file_type": "code", + "source_file": "components/icons/Instagram.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_instagram_instagram", + "community": 0, + "norm_label": "instagram()" + }, + { + "label": "LikeComment.js", + "file_type": "code", + "source_file": "components/icons/LikeComment.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_likecomment", + "community": 274, + "norm_label": "likecomment.js" + }, + { + "label": "LikeComment()", + "file_type": "code", + "source_file": "components/icons/LikeComment.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_likecomment_likecomment", + "community": 274, + "norm_label": "likecomment()" + }, + { + "label": "LikeD.js", + "file_type": "code", + "source_file": "components/icons/LikeD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_liked", + "community": 275, + "norm_label": "liked.js" + }, + { + "label": "LikeD()", + "file_type": "code", + "source_file": "components/icons/LikeD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_liked_liked", + "community": 275, + "norm_label": "liked()" + }, + { + "label": "LikeDI.js", + "file_type": "code", + "source_file": "components/icons/LikeDI.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_likedi", + "community": 276, + "norm_label": "likedi.js" + }, + { + "label": "LikeDI()", + "file_type": "code", + "source_file": "components/icons/LikeDI.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_likedi_likedi", + "community": 276, + "norm_label": "likedi()" + }, + { + "label": "Linkedin.js", + "file_type": "code", + "source_file": "components/icons/Linkedin.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_linkedin", + "community": 0, + "norm_label": "linkedin.js" + }, + { + "label": "Linkedin()", + "file_type": "code", + "source_file": "components/icons/Linkedin.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_linkedin_linkedin", + "community": 0, + "norm_label": "linkedin()" + }, + { + "label": "LinkedinB.js", + "file_type": "code", + "source_file": "components/icons/LinkedinB.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_linkedinb", + "community": 277, + "norm_label": "linkedinb.js" + }, + { + "label": "LinkedinB()", + "file_type": "code", + "source_file": "components/icons/LinkedinB.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_linkedinb_linkedinb", + "community": 277, + "norm_label": "linkedinb()" + }, + { + "label": "LinkedingBlueD.js", + "file_type": "code", + "source_file": "components/icons/LinkedingBlueD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_linkedingblued", + "community": 278, + "norm_label": "linkedingblued.js" + }, + { + "label": "LinkedingBlueD()", + "file_type": "code", + "source_file": "components/icons/LinkedingBlueD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_linkedingblued_linkedingblued", + "community": 278, + "norm_label": "linkedingblued()" + }, + { + "label": "Location.js", + "file_type": "code", + "source_file": "components/icons/Location.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_location", + "community": 279, + "norm_label": "location.js" + }, + { + "label": "Location()", + "file_type": "code", + "source_file": "components/icons/Location.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_location_location", + "community": 279, + "norm_label": "location()" + }, + { + "label": "LocationA.js", + "file_type": "code", + "source_file": "components/icons/LocationA.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_locationa", + "community": 280, + "norm_label": "locationa.js" + }, + { + "label": "LocationA()", + "file_type": "code", + "source_file": "components/icons/LocationA.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_locationa_locationa", + "community": 280, + "norm_label": "locationa()" + }, + { + "label": "LocationAdd.js", + "file_type": "code", + "source_file": "components/icons/LocationAdd.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_locationadd", + "community": 281, + "norm_label": "locationadd.js" + }, + { + "label": "LocationAdd()", + "file_type": "code", + "source_file": "components/icons/LocationAdd.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_locationadd_locationadd", + "community": 281, + "norm_label": "locationadd()" + }, + { + "label": "LocationClinic.js", + "file_type": "code", + "source_file": "components/icons/LocationClinic.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_locationclinic", + "community": 282, + "norm_label": "locationclinic.js" + }, + { + "label": "LocationClinic()", + "file_type": "code", + "source_file": "components/icons/LocationClinic.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_locationclinic_locationclinic", + "community": 282, + "norm_label": "locationclinic()" + }, + { + "label": "LocationD.js", + "file_type": "code", + "source_file": "components/icons/LocationD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_locationd", + "community": 84, + "norm_label": "locationd.js" + }, + { + "label": "LocationD()", + "file_type": "code", + "source_file": "components/icons/LocationD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_locationd_locationd", + "community": 84, + "norm_label": "locationd()" + }, + { + "label": "LocationF.js", + "file_type": "code", + "source_file": "components/icons/LocationF.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_locationf", + "community": 0, + "norm_label": "locationf.js" + }, + { + "label": "LocationF()", + "file_type": "code", + "source_file": "components/icons/LocationF.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_locationf_locationf", + "community": 0, + "norm_label": "locationf()" + }, + { + "label": "LocationP.js", + "file_type": "code", + "source_file": "components/icons/LocationP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_locationp", + "community": 283, + "norm_label": "locationp.js" + }, + { + "label": "LocationP()", + "file_type": "code", + "source_file": "components/icons/LocationP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_locationp_locationp", + "community": 283, + "norm_label": "locationp()" + }, + { + "label": "LocationTurn.js", + "file_type": "code", + "source_file": "components/icons/LocationTurn.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_locationturn", + "community": 284, + "norm_label": "locationturn.js" + }, + { + "label": "LocationTurn()", + "file_type": "code", + "source_file": "components/icons/LocationTurn.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_locationturn_locationturn", + "community": 284, + "norm_label": "locationturn()" + }, + { + "label": "LogoPanel.js", + "file_type": "code", + "source_file": "components/icons/LogoPanel.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_logopanel", + "community": 285, + "norm_label": "logopanel.js" + }, + { + "label": "LogoPanel()", + "file_type": "code", + "source_file": "components/icons/LogoPanel.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_logopanel_logopanel", + "community": 285, + "norm_label": "logopanel()" + }, + { + "label": "LogoPanelHead.js", + "file_type": "code", + "source_file": "components/icons/LogoPanelHead.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_logopanelhead", + "community": 286, + "norm_label": "logopanelhead.js" + }, + { + "label": "LogoPanelHead()", + "file_type": "code", + "source_file": "components/icons/LogoPanelHead.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_logopanelhead_logopanelhead", + "community": 286, + "norm_label": "logopanelhead()" + }, + { + "label": "LogoutD.js", + "file_type": "code", + "source_file": "components/icons/LogoutD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_logoutd", + "community": 287, + "norm_label": "logoutd.js" + }, + { + "label": "LogoutD()", + "file_type": "code", + "source_file": "components/icons/LogoutD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_logoutd_logoutd", + "community": 287, + "norm_label": "logoutd()" + }, + { + "label": "LogoutOrangeP.js", + "file_type": "code", + "source_file": "components/icons/LogoutOrangeP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_logoutorangep", + "community": 288, + "norm_label": "logoutorangep.js" + }, + { + "label": "LogoutOrangeP()", + "file_type": "code", + "source_file": "components/icons/LogoutOrangeP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_logoutorangep_logoutorangep", + "community": 288, + "norm_label": "logoutorangep()" + }, + { + "label": "LogoutP.js", + "file_type": "code", + "source_file": "components/icons/LogoutP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_logoutp", + "community": 289, + "norm_label": "logoutp.js" + }, + { + "label": "LogoutP()", + "file_type": "code", + "source_file": "components/icons/LogoutP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_logoutp_logoutp", + "community": 289, + "norm_label": "logoutp()" + }, + { + "label": "MenuS.js", + "file_type": "code", + "source_file": "components/icons/MenuS.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_menus", + "community": 290, + "norm_label": "menus.js" + }, + { + "label": "MenuS()", + "file_type": "code", + "source_file": "components/icons/MenuS.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_menus_menus", + "community": 290, + "norm_label": "menus()" + }, + { + "label": "MessageD.js", + "file_type": "code", + "source_file": "components/icons/MessageD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_messaged", + "community": 291, + "norm_label": "messaged.js" + }, + { + "label": "MessageD()", + "file_type": "code", + "source_file": "components/icons/MessageD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_messaged_messaged", + "community": 291, + "norm_label": "messaged()" + }, + { + "label": "MessageNotifD.js", + "file_type": "code", + "source_file": "components/icons/MessageNotifD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_messagenotifd", + "community": 292, + "norm_label": "messagenotifd.js" + }, + { + "label": "MessageNotifd()", + "file_type": "code", + "source_file": "components/icons/MessageNotifD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_messagenotifd_messagenotifd", + "community": 292, + "norm_label": "messagenotifd()" + }, + { + "label": "MoonP.js", + "file_type": "code", + "source_file": "components/icons/MoonP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_moonp", + "community": 293, + "norm_label": "moonp.js" + }, + { + "label": "MoonP()", + "file_type": "code", + "source_file": "components/icons/MoonP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_moonp_moonp", + "community": 293, + "norm_label": "moonp()" + }, + { + "label": "NotFoundCover.js", + "file_type": "code", + "source_file": "components/icons/NotFoundCover.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_notfoundcover", + "community": 294, + "norm_label": "notfoundcover.js" + }, + { + "label": "NotFoundCover()", + "file_type": "code", + "source_file": "components/icons/NotFoundCover.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_notfoundcover_notfoundcover", + "community": 294, + "norm_label": "notfoundcover()" + }, + { + "label": "NotificationD.js", + "file_type": "code", + "source_file": "components/icons/NotificationD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_notificationd", + "community": 295, + "norm_label": "notificationd.js" + }, + { + "label": "NotificationD()", + "file_type": "code", + "source_file": "components/icons/NotificationD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_notificationd_notificationd", + "community": 295, + "norm_label": "notificationd()" + }, + { + "label": "NotificationP.js", + "file_type": "code", + "source_file": "components/icons/NotificationP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_notificationp", + "community": 296, + "norm_label": "notificationp.js" + }, + { + "label": "NotificationP()", + "file_type": "code", + "source_file": "components/icons/NotificationP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_notificationp_notificationp", + "community": 296, + "norm_label": "notificationp()" + }, + { + "label": "NumberNotFound.js", + "file_type": "code", + "source_file": "components/icons/NumberNotFound.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_numbernotfound", + "community": 101, + "norm_label": "numbernotfound.js" + }, + { + "label": "NumberNotFound()", + "file_type": "code", + "source_file": "components/icons/NumberNotFound.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_numbernotfound_numbernotfound", + "community": 101, + "norm_label": "numbernotfound()" + }, + { + "label": "PeopleBlueP.js", + "file_type": "code", + "source_file": "components/icons/PeopleBlueP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_peoplebluep", + "community": 297, + "norm_label": "peoplebluep.js" + }, + { + "label": "PeopleBlueP()", + "file_type": "code", + "source_file": "components/icons/PeopleBlueP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_peoplebluep_peoplebluep", + "community": 297, + "norm_label": "peoplebluep()" + }, + { + "label": "PlusB.js", + "file_type": "code", + "source_file": "components/icons/PlusB.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_plusb", + "community": 298, + "norm_label": "plusb.js" + }, + { + "label": "PlusB()", + "file_type": "code", + "source_file": "components/icons/PlusB.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_plusb_plusb", + "community": 298, + "norm_label": "plusb()" + }, + { + "label": "PlusBlueP.js", + "file_type": "code", + "source_file": "components/icons/PlusBlueP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_plusbluep", + "community": 299, + "norm_label": "plusbluep.js" + }, + { + "label": "PlusBlueP()", + "file_type": "code", + "source_file": "components/icons/PlusBlueP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_plusbluep_plusbluep", + "community": 299, + "norm_label": "plusbluep()" + }, + { + "label": "PointD.js", + "file_type": "code", + "source_file": "components/icons/PointD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_pointd", + "community": 300, + "norm_label": "pointd.js" + }, + { + "label": "PointD()", + "file_type": "code", + "source_file": "components/icons/PointD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_pointd_pointd", + "community": 300, + "norm_label": "pointd()" + }, + { + "label": "ProfileAddP.js", + "file_type": "code", + "source_file": "components/icons/ProfileAddP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_profileaddp", + "community": 301, + "norm_label": "profileaddp.js" + }, + { + "label": "ProfileAddP()", + "file_type": "code", + "source_file": "components/icons/ProfileAddP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_profileaddp_profileaddp", + "community": 301, + "norm_label": "profileaddp()" + }, + { + "label": "ProfileCircleP.js", + "file_type": "code", + "source_file": "components/icons/ProfileCircleP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_profilecirclep", + "community": 302, + "norm_label": "profilecirclep.js" + }, + { + "label": "ProfileCircleP()", + "file_type": "code", + "source_file": "components/icons/ProfileCircleP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_profilecirclep_profilecirclep", + "community": 302, + "norm_label": "profilecirclep()" + }, + { + "label": "ProfileD.js", + "file_type": "code", + "source_file": "components/icons/ProfileD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_profiled", + "community": 303, + "norm_label": "profiled.js" + }, + { + "label": "ProfileD()", + "file_type": "code", + "source_file": "components/icons/ProfileD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_profiled_profiled", + "community": 303, + "norm_label": "profiled()" + }, + { + "label": "ProfileP.js", + "file_type": "code", + "source_file": "components/icons/ProfileP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_profilep", + "community": 304, + "norm_label": "profilep.js" + }, + { + "label": "ProfileP()", + "file_type": "code", + "source_file": "components/icons/ProfileP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_profilep_profilep", + "community": 304, + "norm_label": "profilep()" + }, + { + "label": "ProfilePA.js", + "file_type": "code", + "source_file": "components/icons/ProfilePA.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_profilepa", + "community": 305, + "norm_label": "profilepa.js" + }, + { + "label": "ProfilePA()", + "file_type": "code", + "source_file": "components/icons/ProfilePA.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_profilepa_profilepa", + "community": 305, + "norm_label": "profilepa()" + }, + { + "label": "RedoA.js", + "file_type": "code", + "source_file": "components/icons/RedoA.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_redoa", + "community": 306, + "norm_label": "redoa.js" + }, + { + "label": "RedoA()", + "file_type": "code", + "source_file": "components/icons/RedoA.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_redoa_redoa", + "community": 306, + "norm_label": "redoa()" + }, + { + "label": "RefreshA.js", + "file_type": "code", + "source_file": "components/icons/RefreshA.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_refresha", + "community": 307, + "norm_label": "refresha.js" + }, + { + "label": "RefreshA()", + "file_type": "code", + "source_file": "components/icons/RefreshA.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_refresha_refresha", + "community": 307, + "norm_label": "refresha()" + }, + { + "label": "RetryLogin.js", + "file_type": "code", + "source_file": "components/icons/RetryLogin.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_retrylogin", + "community": 308, + "norm_label": "retrylogin.js" + }, + { + "label": "RetryLogin()", + "file_type": "code", + "source_file": "components/icons/RetryLogin.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_retrylogin_retrylogin", + "community": 308, + "norm_label": "retrylogin()" + }, + { + "label": "RoutingC.js", + "file_type": "code", + "source_file": "components/icons/RoutingC.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_routingc", + "community": 309, + "norm_label": "routingc.js" + }, + { + "label": "RoutingC()", + "file_type": "code", + "source_file": "components/icons/RoutingC.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_routingc_routingc", + "community": 309, + "norm_label": "routingc()" + }, + { + "label": "RoutingWhiteC.js", + "file_type": "code", + "source_file": "components/icons/RoutingWhiteC.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_routingwhitec", + "community": 310, + "norm_label": "routingwhitec.js" + }, + { + "label": "RoutingWhiteC()", + "file_type": "code", + "source_file": "components/icons/RoutingWhiteC.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_routingwhitec_routingwhitec", + "community": 310, + "norm_label": "routingwhitec()" + }, + { + "label": "Search.js", + "file_type": "code", + "source_file": "components/icons/Search.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_search", + "community": 311, + "norm_label": "search.js" + }, + { + "label": "Search()", + "file_type": "code", + "source_file": "components/icons/Search.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_search_search", + "community": 311, + "norm_label": "search()" + }, + { + "label": "SearchD.js", + "file_type": "code", + "source_file": "components/icons/SearchD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_searchd", + "community": 312, + "norm_label": "searchd.js" + }, + { + "label": "SearchD()", + "file_type": "code", + "source_file": "components/icons/SearchD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_searchd_searchd", + "community": 312, + "norm_label": "searchd()" + }, + { + "label": "SearchHeaderP.js", + "file_type": "code", + "source_file": "components/icons/SearchHeaderP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_searchheaderp", + "community": 313, + "norm_label": "searchheaderp.js" + }, + { + "label": "SearchHeaderP()", + "file_type": "code", + "source_file": "components/icons/SearchHeaderP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_searchheaderp_searchheaderp", + "community": 313, + "norm_label": "searchheaderp()" + }, + { + "label": "SettingD.js", + "file_type": "code", + "source_file": "components/icons/SettingD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_settingd", + "community": 314, + "norm_label": "settingd.js" + }, + { + "label": "SettingD()", + "file_type": "code", + "source_file": "components/icons/SettingD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_settingd_settingd", + "community": 314, + "norm_label": "settingd()" + }, + { + "label": "SettingP.js", + "file_type": "code", + "source_file": "components/icons/SettingP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_settingp", + "community": 315, + "norm_label": "settingp.js" + }, + { + "label": "SettingP()", + "file_type": "code", + "source_file": "components/icons/SettingP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_settingp_settingp", + "community": 315, + "norm_label": "settingp()" + }, + { + "label": "SettingPA.js", + "file_type": "code", + "source_file": "components/icons/SettingPA.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_settingpa", + "community": 316, + "norm_label": "settingpa.js" + }, + { + "label": "SettingPA()", + "file_type": "code", + "source_file": "components/icons/SettingPA.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_settingpa_settingpa", + "community": 316, + "norm_label": "settingpa()" + }, + { + "label": "ShareDI.js", + "file_type": "code", + "source_file": "components/icons/ShareDI.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_sharedi", + "community": 317, + "norm_label": "sharedi.js" + }, + { + "label": "ShareDI()", + "file_type": "code", + "source_file": "components/icons/ShareDI.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_sharedi_sharedi", + "community": 317, + "norm_label": "sharedi()" + }, + { + "label": "SortD.js", + "file_type": "code", + "source_file": "components/icons/SortD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_sortd", + "community": 74, + "norm_label": "sortd.js" + }, + { + "label": "SortD()", + "file_type": "code", + "source_file": "components/icons/SortD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_sortd_sortd", + "community": 74, + "norm_label": "sortd()" + }, + { + "label": "StarDI.js", + "file_type": "code", + "source_file": "components/icons/StarDI.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_stardi", + "community": 318, + "norm_label": "stardi.js" + }, + { + "label": "StarDI()", + "file_type": "code", + "source_file": "components/icons/StarDI.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_stardi_stardi", + "community": 318, + "norm_label": "stardi()" + }, + { + "label": "StethoscopeF.js", + "file_type": "code", + "source_file": "components/icons/StethoscopeF.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_stethoscopef", + "community": 0, + "norm_label": "stethoscopef.js" + }, + { + "label": "StethoscopeF()", + "file_type": "code", + "source_file": "components/icons/StethoscopeF.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_stethoscopef_stethoscopef", + "community": 0, + "norm_label": "stethoscopef()" + }, + { + "label": "Sun.js", + "file_type": "code", + "source_file": "components/icons/Sun.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_sun", + "community": 319, + "norm_label": "sun.js" + }, + { + "label": "Sun()", + "file_type": "code", + "source_file": "components/icons/Sun.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_sun_sun", + "community": 319, + "norm_label": "sun()" + }, + { + "label": "TelefonPoster.js", + "file_type": "code", + "source_file": "components/icons/TelefonPoster.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_telefonposter", + "community": 320, + "norm_label": "telefonposter.js" + }, + { + "label": "TelefonPoster()", + "file_type": "code", + "source_file": "components/icons/TelefonPoster.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_telefonposter_telefonposter", + "community": 320, + "norm_label": "telefonposter()" + }, + { + "label": "Telegram.js", + "file_type": "code", + "source_file": "components/icons/Telegram.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_telegram", + "community": 0, + "norm_label": "telegram.js" + }, + { + "label": "Telegram()", + "file_type": "code", + "source_file": "components/icons/Telegram.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_telegram_telegram", + "community": 0, + "norm_label": "telegram()" + }, + { + "label": "TelegramB.js", + "file_type": "code", + "source_file": "components/icons/TelegramB.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_telegramb", + "community": 321, + "norm_label": "telegramb.js" + }, + { + "label": "TelegramB()", + "file_type": "code", + "source_file": "components/icons/TelegramB.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_telegramb_telegramb", + "community": 321, + "norm_label": "telegramb()" + }, + { + "label": "TelegramBlueD.js", + "file_type": "code", + "source_file": "components/icons/TelegramBlueD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_telegramblued", + "community": 322, + "norm_label": "telegramblued.js" + }, + { + "label": "TelegramBlueD()", + "file_type": "code", + "source_file": "components/icons/TelegramBlueD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_telegramblued_telegramblued", + "community": 322, + "norm_label": "telegramblued()" + }, + { + "label": "TickAlert.js", + "file_type": "code", + "source_file": "components/icons/TickAlert.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_tickalert", + "community": 323, + "norm_label": "tickalert.js" + }, + { + "label": "TickAlert()", + "file_type": "code", + "source_file": "components/icons/TickAlert.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_tickalert_tickalert", + "community": 323, + "norm_label": "tickalert()" + }, + { + "label": "TickCircle.js", + "file_type": "code", + "source_file": "components/icons/TickCircle.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_tickcircle", + "community": 324, + "norm_label": "tickcircle.js" + }, + { + "label": "TickCircle()", + "file_type": "code", + "source_file": "components/icons/TickCircle.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_tickcircle_tickcircle", + "community": 324, + "norm_label": "tickcircle()" + }, + { + "label": "TickCircleGreenA.js", + "file_type": "code", + "source_file": "components/icons/TickCircleGreenA.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_tickcirclegreena", + "community": 325, + "norm_label": "tickcirclegreena.js" + }, + { + "label": "TickCircleGreenA()", + "file_type": "code", + "source_file": "components/icons/TickCircleGreenA.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_tickcirclegreena_tickcirclegreena", + "community": 325, + "norm_label": "tickcirclegreena()" + }, + { + "label": "TickCircleOrange.js", + "file_type": "code", + "source_file": "components/icons/TickCircleOrange.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_tickcircleorange", + "community": 326, + "norm_label": "tickcircleorange.js" + }, + { + "label": "TickCircleOrange()", + "file_type": "code", + "source_file": "components/icons/TickCircleOrange.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_tickcircleorange_tickcircleorange", + "community": 326, + "norm_label": "tickcircleorange()" + }, + { + "label": "TickOrangeA.js", + "file_type": "code", + "source_file": "components/icons/TickOrangeA.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_tickorangea", + "community": 16, + "norm_label": "tickorangea.js" + }, + { + "label": "TickOrangeA()", + "file_type": "code", + "source_file": "components/icons/TickOrangeA.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_tickorangea_tickorangea", + "community": 16, + "norm_label": "tickorangea()" + }, + { + "label": "TicketD.js", + "file_type": "code", + "source_file": "components/icons/TicketD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_ticketd", + "community": 327, + "norm_label": "ticketd.js" + }, + { + "label": "TicketD()", + "file_type": "code", + "source_file": "components/icons/TicketD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_ticketd_ticketd", + "community": 327, + "norm_label": "ticketd()" + }, + { + "label": "TrashB.js", + "file_type": "code", + "source_file": "components/icons/TrashB.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_trashb", + "community": 328, + "norm_label": "trashb.js" + }, + { + "label": "TrashB()", + "file_type": "code", + "source_file": "components/icons/TrashB.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_trashb_trashb", + "community": 328, + "norm_label": "trashb()" + }, + { + "label": "TrashOrangeD.js", + "file_type": "code", + "source_file": "components/icons/TrashOrangeD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_trashoranged", + "community": 329, + "norm_label": "trashoranged.js" + }, + { + "label": "TrashOrangeD()", + "file_type": "code", + "source_file": "components/icons/TrashOrangeD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_trashoranged_trashoranged", + "community": 329, + "norm_label": "trashoranged()" + }, + { + "label": "Underline.js", + "file_type": "code", + "source_file": "components/icons/Underline.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_underline", + "community": 330, + "norm_label": "underline.js" + }, + { + "label": "Underline()", + "file_type": "code", + "source_file": "components/icons/Underline.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_underline_underline", + "community": 330, + "norm_label": "underline()" + }, + { + "label": "UnderlineLG.js", + "file_type": "code", + "source_file": "components/icons/UnderlineLG.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_underlinelg", + "community": 16, + "norm_label": "underlinelg.js" + }, + { + "label": "UnderlineLG()", + "file_type": "code", + "source_file": "components/icons/UnderlineLG.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_underlinelg_underlinelg", + "community": 16, + "norm_label": "underlinelg()" + }, + { + "label": "UpdateList.js", + "file_type": "code", + "source_file": "components/icons/UpdateList.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_updatelist", + "community": 331, + "norm_label": "updatelist.js" + }, + { + "label": "UpdateList()", + "file_type": "code", + "source_file": "components/icons/UpdateList.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_updatelist_updatelist", + "community": 331, + "norm_label": "updatelist()" + }, + { + "label": "UserEdit.js", + "file_type": "code", + "source_file": "components/icons/UserEdit.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_useredit", + "community": 332, + "norm_label": "useredit.js" + }, + { + "label": "UserEdit()", + "file_type": "code", + "source_file": "components/icons/UserEdit.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_useredit_useredit", + "community": 332, + "norm_label": "useredit()" + }, + { + "label": "UserLogin.js", + "file_type": "code", + "source_file": "components/icons/UserLogin.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_userlogin", + "community": 333, + "norm_label": "userlogin.js" + }, + { + "label": "UserLogin()", + "file_type": "code", + "source_file": "components/icons/UserLogin.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_userlogin_userlogin", + "community": 333, + "norm_label": "userlogin()" + }, + { + "label": "WarnP.js", + "file_type": "code", + "source_file": "components/icons/WarnP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_warnp", + "community": 334, + "norm_label": "warnp.js" + }, + { + "label": "WarnP()", + "file_type": "code", + "source_file": "components/icons/WarnP.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_warnp_warnp", + "community": 334, + "norm_label": "warnp()" + }, + { + "label": "Whatsapp.js", + "file_type": "code", + "source_file": "components/icons/Whatsapp.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_whatsapp", + "community": 0, + "norm_label": "whatsapp.js" + }, + { + "label": "Whatsapp()", + "file_type": "code", + "source_file": "components/icons/Whatsapp.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_whatsapp_whatsapp", + "community": 0, + "norm_label": "whatsapp()" + }, + { + "label": "WhatsappB.js", + "file_type": "code", + "source_file": "components/icons/WhatsappB.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_whatsappb", + "community": 335, + "norm_label": "whatsappb.js" + }, + { + "label": "WhatsappB()", + "file_type": "code", + "source_file": "components/icons/WhatsappB.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_whatsappb_whatsappb", + "community": 335, + "norm_label": "whatsappb()" + }, + { + "label": "WhatsappBlueD.js", + "file_type": "code", + "source_file": "components/icons/WhatsappBlueD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_whatsappblued", + "community": 336, + "norm_label": "whatsappblued.js" + }, + { + "label": "WhatsappBlueD()", + "file_type": "code", + "source_file": "components/icons/WhatsappBlueD.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_whatsappblued_whatsappblued", + "community": 336, + "norm_label": "whatsappblued()" + }, + { + "label": "WhatsappC.js", + "file_type": "code", + "source_file": "components/icons/WhatsappC.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_whatsappc", + "community": 14, + "norm_label": "whatsappc.js" + }, + { + "label": "WhatsappC()", + "file_type": "code", + "source_file": "components/icons/WhatsappC.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_whatsappc_whatsappc", + "community": 14, + "norm_label": "whatsappc()" + }, + { + "label": "Youtube.js", + "file_type": "code", + "source_file": "components/icons/Youtube.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_youtube", + "community": 337, + "norm_label": "youtube.js" + }, + { + "label": "Youtube()", + "file_type": "code", + "source_file": "components/icons/Youtube.js", + "source_location": "L1", + "_origin": "ast", + "id": "icons_youtube_youtube", + "community": 337, + "norm_label": "youtube()" + }, + { + "label": "StLayout.js", + "file_type": "code", + "source_file": "components/layout/StLayout.js", + "source_location": "L1", + "_origin": "ast", + "id": "layout_stlayout", + "community": 0, + "norm_label": "stlayout.js" + }, + { + "label": "StLayout()", + "file_type": "code", + "source_file": "components/layout/StLayout.js", + "source_location": "L6", + "_origin": "ast", + "id": "layout_stlayout_stlayout", + "community": 0, + "norm_label": "stlayout()" + }, + { + "label": "LogoNamad.js", + "file_type": "code", + "source_file": "components/layout/footer/LogoNamad.js", + "source_location": "L1", + "_origin": "ast", + "id": "footer_logonamad", + "community": 0, + "norm_label": "logonamad.js" + }, + { + "label": "Namads", + "file_type": "code", + "source_file": "components/layout/footer/LogoNamad.js", + "source_location": "L3", + "_origin": "ast", + "id": "footer_logonamad_namads", + "community": 0, + "norm_label": "namads" + }, + { + "label": "LogoNamad()", + "file_type": "code", + "source_file": "components/layout/footer/LogoNamad.js", + "source_location": "L9", + "_origin": "ast", + "id": "footer_logonamad_logonamad", + "community": 0, + "norm_label": "logonamad()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/layout/footer/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "footer_index", + "community": 0, + "norm_label": "index.js" + }, + { + "label": "head", + "file_type": "code", + "source_file": "components/layout/footer/index.js", + "source_location": "L20", + "_origin": "ast", + "id": "footer_index_head", + "community": 0, + "norm_label": "head" + }, + { + "label": "buildSocialUrl()", + "file_type": "code", + "source_file": "components/layout/footer/index.js", + "source_location": "L30", + "_origin": "ast", + "id": "footer_index_buildsocialurl", + "community": 0, + "norm_label": "buildsocialurl()" + }, + { + "label": "Footer()", + "file_type": "code", + "source_file": "components/layout/footer/index.js", + "source_location": "L46", + "_origin": "ast", + "id": "footer_index_footer", + "community": 0, + "norm_label": "footer()" + }, + { + "label": "HeadMenu.js", + "file_type": "code", + "source_file": "components/layout/footer/menu/HeadMenu.js", + "source_location": "L1", + "_origin": "ast", + "id": "menu_headmenu", + "community": 0, + "norm_label": "headmenu.js" + }, + { + "label": "HeadMenu()", + "file_type": "code", + "source_file": "components/layout/footer/menu/HeadMenu.js", + "source_location": "L4", + "_origin": "ast", + "id": "menu_headmenu_headmenu", + "community": 0, + "norm_label": "headmenu()" + }, + { + "label": "ListMenu.js", + "file_type": "code", + "source_file": "components/layout/footer/menu/ListMenu.js", + "source_location": "L1", + "_origin": "ast", + "id": "menu_listmenu", + "community": 0, + "norm_label": "listmenu.js" + }, + { + "label": "ListMenu()", + "file_type": "code", + "source_file": "components/layout/footer/menu/ListMenu.js", + "source_location": "L4", + "_origin": "ast", + "id": "menu_listmenu_listmenu", + "community": 0, + "norm_label": "listmenu()" + }, + { + "label": "Content.js", + "file_type": "code", + "source_file": "components/layout/header/Content.js", + "source_location": "L1", + "_origin": "ast", + "id": "header_content", + "community": 0, + "norm_label": "content.js" + }, + { + "label": "Content()", + "file_type": "code", + "source_file": "components/layout/header/Content.js", + "source_location": "L15", + "_origin": "ast", + "id": "header_content_content", + "community": 0, + "norm_label": "content()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/layout/header/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "header_index", + "community": 0, + "norm_label": "index.js" + }, + { + "label": "Header()", + "file_type": "code", + "source_file": "components/layout/header/index.js", + "source_location": "L3", + "_origin": "ast", + "id": "header_index_header", + "community": 0, + "norm_label": "header()" + }, + { + "label": "Row.js", + "file_type": "code", + "source_file": "components/layout/header/list/Row.js", + "source_location": "L1", + "_origin": "ast", + "id": "list_row", + "community": 0, + "norm_label": "row.js" + }, + { + "label": "Row()", + "file_type": "code", + "source_file": "components/layout/header/list/Row.js", + "source_location": "L4", + "_origin": "ast", + "id": "list_row_row", + "community": 0, + "norm_label": "row()" + }, + { + "label": "BgGray.js", + "file_type": "code", + "source_file": "components/layout/header/list/col/BgGray.js", + "source_location": "L1", + "_origin": "ast", + "id": "col_bggray", + "community": 0, + "norm_label": "bggray.js" + }, + { + "label": "BgGray()", + "file_type": "code", + "source_file": "components/layout/header/list/col/BgGray.js", + "source_location": "L1", + "_origin": "ast", + "id": "col_bggray_bggray", + "community": 0, + "norm_label": "bggray()" + }, + { + "label": "ButtonMenu.js", + "file_type": "code", + "source_file": "components/layout/header/list/col/ButtonMenu.js", + "source_location": "L1", + "_origin": "ast", + "id": "col_buttonmenu", + "community": 0, + "norm_label": "buttonmenu.js" + }, + { + "label": "ButtonMenu()", + "file_type": "code", + "source_file": "components/layout/header/list/col/ButtonMenu.js", + "source_location": "L3", + "_origin": "ast", + "id": "col_buttonmenu_buttonmenu", + "community": 0, + "norm_label": "buttonmenu()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/layout/header/list/col/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "col_index", + "community": 0, + "norm_label": "index.js" + }, + { + "label": "Col()", + "file_type": "code", + "source_file": "components/layout/header/list/col/index.js", + "source_location": "L6", + "_origin": "ast", + "id": "col_index_col", + "community": 0, + "norm_label": "col()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/layout/header/profile/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "profile_index", + "community": 0, + "norm_label": "index.js" + }, + { + "label": "ProfileUser()", + "file_type": "code", + "source_file": "components/layout/header/profile/index.js", + "source_location": "L7", + "_origin": "ast", + "id": "profile_index_profileuser", + "community": 0, + "norm_label": "profileuser()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/layout/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "layout_index", + "community": 0, + "norm_label": "index.js" + }, + { + "label": "Layout()", + "file_type": "code", + "source_file": "components/layout/index.js", + "source_location": "L5", + "_origin": "ast", + "id": "layout_index_layout", + "community": 0, + "norm_label": "layout()" + }, + { + "label": "Cards.js", + "file_type": "code", + "source_file": "components/layout/sidebar/Cards.js", + "source_location": "L1", + "_origin": "ast", + "id": "sidebar_cards", + "community": 0, + "norm_label": "cards.js" + }, + { + "label": "Cards()", + "file_type": "code", + "source_file": "components/layout/sidebar/Cards.js", + "source_location": "L4", + "_origin": "ast", + "id": "sidebar_cards_cards", + "community": 0, + "norm_label": "cards()" + }, + { + "label": "Head.js", + "file_type": "code", + "source_file": "components/layout/sidebar/Head.js", + "source_location": "L1", + "_origin": "ast", + "id": "sidebar_head", + "community": 0, + "norm_label": "head.js" + }, + { + "label": "Head()", + "file_type": "code", + "source_file": "components/layout/sidebar/Head.js", + "source_location": "L9", + "_origin": "ast", + "id": "sidebar_head_head", + "community": 0, + "norm_label": "head()" + }, + { + "label": "List.js", + "file_type": "code", + "source_file": "components/layout/sidebar/List.js", + "source_location": "L1", + "_origin": "ast", + "id": "sidebar_list", + "community": 0, + "norm_label": "list.js" + }, + { + "label": "List()", + "file_type": "code", + "source_file": "components/layout/sidebar/List.js", + "source_location": "L14", + "_origin": "ast", + "id": "sidebar_list_list", + "community": 0, + "norm_label": "list()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/layout/sidebar/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "sidebar_index", + "community": 0, + "norm_label": "index.js" + }, + { + "label": "Sidebar()", + "file_type": "code", + "source_file": "components/layout/sidebar/index.js", + "source_location": "L5", + "_origin": "ast", + "id": "sidebar_index_sidebar", + "community": 0, + "norm_label": "sidebar()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/loginVerify/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "loginverify_index", + "community": 342, + "norm_label": "index.js" + }, + { + "label": "LoginVerifyPage()", + "file_type": "code", + "source_file": "components/loginVerify/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "loginverify_index_loginverifypage", + "community": 342, + "norm_label": "loginverifypage()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/notFound/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "notfound_index", + "community": 101, + "norm_label": "index.js" + }, + { + "label": "NotFoundPage()", + "file_type": "code", + "source_file": "components/notFound/index.js", + "source_location": "L6", + "_origin": "ast", + "id": "notfound_index_notfoundpage", + "community": 101, + "norm_label": "notfoundpage()" + }, + { + "label": "ContentLogin.js", + "file_type": "code", + "source_file": "components/register/ContentLogin.js", + "source_location": "L1", + "_origin": "ast", + "id": "register_contentlogin", + "community": 29, + "norm_label": "contentlogin.js" + }, + { + "label": "ContentLogin()", + "file_type": "code", + "source_file": "components/register/ContentLogin.js", + "source_location": "L4", + "_origin": "ast", + "id": "register_contentlogin_contentlogin", + "community": 29, + "norm_label": "contentlogin()" + }, + { + "label": "ContentVerify.js", + "file_type": "code", + "source_file": "components/register/ContentVerify.js", + "source_location": "L1", + "_origin": "ast", + "id": "register_contentverify", + "community": 349, + "norm_label": "contentverify.js" + }, + { + "label": "ContentVerify()", + "file_type": "code", + "source_file": "components/register/ContentVerify.js", + "source_location": "L8", + "_origin": "ast", + "id": "register_contentverify_contentverify", + "community": 349, + "norm_label": "contentverify()" + }, + { + "label": "LayoutRegister.js", + "file_type": "code", + "source_file": "components/register/LayoutRegister.js", + "source_location": "L1", + "_origin": "ast", + "id": "register_layoutregister", + "community": 97, + "norm_label": "layoutregister.js" + }, + { + "label": "about", + "file_type": "code", + "source_file": "components/register/LayoutRegister.js", + "source_location": "L4", + "_origin": "ast", + "id": "register_layoutregister_about", + "community": 97, + "norm_label": "about" + }, + { + "label": "LayoutRegister()", + "file_type": "code", + "source_file": "components/register/LayoutRegister.js", + "source_location": "L6", + "_origin": "ast", + "id": "register_layoutregister_layoutregister", + "community": 97, + "norm_label": "layoutregister()" + }, + { + "label": "LogInPage.js", + "file_type": "code", + "source_file": "components/register/LogInPage.js", + "source_location": "L1", + "_origin": "ast", + "id": "register_loginpage", + "community": 350, + "norm_label": "loginpage.js" + }, + { + "label": "LogInPage()", + "file_type": "code", + "source_file": "components/register/LogInPage.js", + "source_location": "L9", + "_origin": "ast", + "id": "register_loginpage_loginpage", + "community": 350, + "norm_label": "loginpage()" + }, + { + "label": "OTPForm.js", + "file_type": "code", + "source_file": "components/register/element/OTPForm.js", + "source_location": "L1", + "_origin": "ast", + "id": "element_otpform", + "community": 52, + "norm_label": "otpform.js" + }, + { + "label": "OTPForm()", + "file_type": "code", + "source_file": "components/register/element/OTPForm.js", + "source_location": "L1", + "_origin": "ast", + "id": "element_otpform_otpform", + "community": 52, + "norm_label": "otpform()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/register/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "register_index", + "community": 97, + "norm_label": "index.js" + }, + { + "label": "RegisterPage()", + "file_type": "code", + "source_file": "components/register/index.js", + "source_location": "L8", + "_origin": "ast", + "id": "register_index_registerpage", + "community": 97, + "norm_label": "registerpage()" + }, + { + "label": "Recode.js", + "file_type": "code", + "source_file": "components/register/verificationPage/Recode.js", + "source_location": "L1", + "_origin": "ast", + "id": "verificationpage_recode", + "community": 52, + "norm_label": "recode.js" + }, + { + "label": "Recode()", + "file_type": "code", + "source_file": "components/register/verificationPage/Recode.js", + "source_location": "L9", + "_origin": "ast", + "id": "verificationpage_recode_recode", + "community": 52, + "norm_label": "recode()" + }, + { + "label": "SendReq.js", + "file_type": "code", + "source_file": "components/register/verificationPage/SendReq.js", + "source_location": "L1", + "_origin": "ast", + "id": "verificationpage_sendreq", + "community": 52, + "norm_label": "sendreq.js" + }, + { + "label": "SendReq()", + "file_type": "code", + "source_file": "components/register/verificationPage/SendReq.js", + "source_location": "L8", + "_origin": "ast", + "id": "verificationpage_sendreq_sendreq", + "community": 52, + "norm_label": "sendreq()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/register/verificationPage/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "verificationpage_index", + "community": 52, + "norm_label": "index.js" + }, + { + "label": "VerificationPage()", + "file_type": "code", + "source_file": "components/register/verificationPage/index.js", + "source_location": "L12", + "_origin": "ast", + "id": "verificationpage_index_verificationpage", + "community": 52, + "norm_label": "verificationpage()" + }, + { + "label": "AutoCompleteSearch.js", + "file_type": "code", + "source_file": "components/searchHead/smSearch/AutoCompleteSearch.js", + "source_location": "L1", + "_origin": "ast", + "id": "smsearch_autocompletesearch", + "community": 88, + "norm_label": "autocompletesearch.js" + }, + { + "label": "AutoCompleteSearch()", + "file_type": "code", + "source_file": "components/searchHead/smSearch/AutoCompleteSearch.js", + "source_location": "L3", + "_origin": "ast", + "id": "smsearch_autocompletesearch_autocompletesearch", + "community": 88, + "norm_label": "autocompletesearch()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/searchHead/smSearch/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "smsearch_index", + "community": 88, + "norm_label": "index.js" + }, + { + "label": "SmSearch()", + "file_type": "code", + "source_file": "components/searchHead/smSearch/index.js", + "source_location": "L6", + "_origin": "ast", + "id": "smsearch_index_smsearch", + "community": 88, + "norm_label": "smsearch()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/specialties/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "specialties_index", + "community": 88, + "norm_label": "index.js" + }, + { + "label": "SpecialtiesPage()", + "file_type": "code", + "source_file": "components/specialties/index.js", + "source_location": "L11", + "_origin": "ast", + "id": "specialties_index_specialtiespage", + "community": 88, + "norm_label": "specialtiespage()" + }, + { + "label": "ItemSpecialties.js", + "file_type": "code", + "source_file": "components/specialties/list/ItemSpecialties.js", + "source_location": "L1", + "_origin": "ast", + "id": "list_itemspecialties", + "community": 100, + "norm_label": "itemspecialties.js" + }, + { + "label": "ItemSpecialties()", + "file_type": "code", + "source_file": "components/specialties/list/ItemSpecialties.js", + "source_location": "L3", + "_origin": "ast", + "id": "list_itemspecialties_itemspecialties", + "community": 100, + "norm_label": "itemspecialties()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "components/specialties/list/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "components_specialties_list_index_js_list_index", + "community": 100, + "norm_label": "index.js" + }, + { + "label": "List()", + "file_type": "code", + "source_file": "components/specialties/list/index.js", + "source_location": "L4", + "_origin": "ast", + "id": "components_specialties_list_index_js_list_index_list", + "community": 100, + "norm_label": "list()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "constans/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "constans_index", + "community": 92, + "norm_label": "index.js" + }, + { + "label": "listNav", + "file_type": "code", + "source_file": "constans/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "constans_index_listnav", + "community": 92, + "norm_label": "listnav" + }, + { + "label": "frequentSearches", + "file_type": "code", + "source_file": "constans/index.js", + "source_location": "L10", + "_origin": "ast", + "id": "constans_index_frequentsearches", + "community": 92, + "norm_label": "frequentsearches" + }, + { + "label": "footerR", + "file_type": "code", + "source_file": "constans/index.js", + "source_location": "L18", + "_origin": "ast", + "id": "constans_index_footerr", + "community": 92, + "norm_label": "footerr" + }, + { + "label": "footerL", + "file_type": "code", + "source_file": "constans/index.js", + "source_location": "L25", + "_origin": "ast", + "id": "constans_index_footerl", + "community": 92, + "norm_label": "footerl" + }, + { + "label": "ProvinceProvider.js", + "file_type": "code", + "source_file": "context/ProvinceProvider.js", + "source_location": "L1", + "_origin": "ast", + "id": "context_provinceprovider", + "community": 3, + "norm_label": "provinceprovider.js" + }, + { + "label": "ProvinceContext", + "file_type": "code", + "source_file": "context/ProvinceProvider.js", + "source_location": "L7", + "_origin": "ast", + "id": "context_provinceprovider_provincecontext", + "community": 3, + "norm_label": "provincecontext" + }, + { + "label": "ProvinceProvider()", + "file_type": "code", + "source_file": "context/ProvinceProvider.js", + "source_location": "L9", + "_origin": "ast", + "id": "context_provinceprovider_provinceprovider", + "community": 3, + "norm_label": "provinceprovider()" + }, + { + "label": "useProvince()", + "file_type": "code", + "source_file": "context/ProvinceProvider.js", + "source_location": "L30", + "_origin": "ast", + "id": "context_provinceprovider_useprovince", + "community": 3, + "norm_label": "useprovince()" + }, + { + "label": "ProvinceProvider.test.jsx", + "file_type": "code", + "source_file": "context/ProvinceProvider.test.jsx", + "source_location": "L1", + "_origin": "ast", + "id": "context_provinceprovider_test", + "community": 3, + "norm_label": "provinceprovider.test.jsx" + }, + { + "label": "Probe()", + "file_type": "code", + "source_file": "context/ProvinceProvider.test.jsx", + "source_location": "L5", + "_origin": "ast", + "id": "context_provinceprovider_test_probe", + "community": 3, + "norm_label": "probe()" + }, + { + "label": "setHostname()", + "file_type": "code", + "source_file": "context/ProvinceProvider.test.jsx", + "source_location": "L10", + "_origin": "ast", + "id": "context_provinceprovider_test_sethostname", + "community": 3, + "norm_label": "sethostname()" + }, + { + "label": "eslint.config.mjs", + "file_type": "code", + "source_file": "eslint.config.mjs", + "source_location": "L1", + "_origin": "ast", + "id": "eslint_config", + "community": 195, + "norm_label": "eslint.config.mjs" + }, + { + "label": "eslintConfig", + "file_type": "code", + "source_file": "eslint.config.mjs", + "source_location": "L3", + "_origin": "ast", + "id": "eslint_config_eslintconfig", + "community": 195, + "norm_label": "eslintconfig" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "helper_index", + "community": 7, + "norm_label": "index.js" + }, + { + "label": "numberToArStyle()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L11", + "_origin": "ast", + "id": "helper_index_numbertoarstyle", + "community": 15, + "norm_label": "numbertoarstyle()" + }, + { + "label": "isActiveURL()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L13", + "_origin": "ast", + "id": "helper_index_isactiveurl", + "community": 7, + "norm_label": "isactiveurl()" + }, + { + "label": "normalizeBlog()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L17", + "_origin": "ast", + "id": "helper_index_normalizeblog", + "community": 45, + "norm_label": "normalizeblog()" + }, + { + "label": "imageUrl()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L39", + "_origin": "ast", + "id": "helper_index_imageurl", + "community": 45, + "norm_label": "imageurl()" + }, + { + "label": "convertToJalali()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L49", + "_origin": "ast", + "id": "helper_index_converttojalali", + "community": 7, + "norm_label": "converttojalali()" + }, + { + "label": "convertTimestampToJalali()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L60", + "_origin": "ast", + "id": "helper_index_converttimestamptojalali", + "community": 1, + "norm_label": "converttimestamptojalali()" + }, + { + "label": "convertTimestampToTime()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L66", + "_origin": "ast", + "id": "helper_index_converttimestamptotime", + "community": 1, + "norm_label": "converttimestamptotime()" + }, + { + "label": "handleTwoLength()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L72", + "_origin": "ast", + "id": "helper_index_handletwolength", + "community": 7, + "norm_label": "handletwolength()" + }, + { + "label": "checkAllValues()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L75", + "_origin": "ast", + "id": "helper_index_checkallvalues", + "community": 7, + "norm_label": "checkallvalues()" + }, + { + "label": "checkTimes()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L95", + "_origin": "ast", + "id": "helper_index_checktimes", + "community": 7, + "norm_label": "checktimes()" + }, + { + "label": "uploadImage()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L103", + "_origin": "ast", + "id": "helper_index_uploadimage", + "community": 7, + "norm_label": "uploadimage()" + }, + { + "label": "alert()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L135", + "_origin": "ast", + "id": "helper_index_alert", + "community": 7, + "norm_label": "alert()" + }, + { + "label": "formatPhoneNumber()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L154", + "_origin": "ast", + "id": "helper_index_formatphonenumber", + "community": 7, + "norm_label": "formatphonenumber()" + }, + { + "label": "validatePhoneNumber()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L171", + "_origin": "ast", + "id": "helper_index_validatephonenumber", + "community": 7, + "norm_label": "validatephonenumber()" + }, + { + "label": "searchOnList()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L194", + "_origin": "ast", + "id": "helper_index_searchonlist", + "community": 7, + "norm_label": "searchonlist()" + }, + { + "label": "clearFilterParams()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L200", + "_origin": "ast", + "id": "helper_index_clearfilterparams", + "community": 7, + "norm_label": "clearfilterparams()" + }, + { + "label": "clearDoctorClinicParams()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L209", + "_origin": "ast", + "id": "helper_index_cleardoctorclinicparams", + "community": 7, + "norm_label": "cleardoctorclinicparams()" + }, + { + "label": "filterList()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L215", + "_origin": "ast", + "id": "helper_index_filterlist", + "community": 71, + "norm_label": "filterlist()" + }, + { + "label": "getCleanNumberValue()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L232", + "_origin": "ast", + "id": "helper_index_getcleannumbervalue", + "community": 7, + "norm_label": "getcleannumbervalue()" + }, + { + "label": "hasDataChanged()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L245", + "_origin": "ast", + "id": "helper_index_hasdatachanged", + "community": 7, + "norm_label": "hasdatachanged()" + }, + { + "label": "getParsedUserInfo()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L254", + "_origin": "ast", + "id": "helper_index_getparseduserinfo", + "community": 40, + "norm_label": "getparseduserinfo()" + }, + { + "label": "handleTimeExpiresToken()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L264", + "_origin": "ast", + "id": "helper_index_handletimeexpirestoken", + "community": 7, + "norm_label": "handletimeexpirestoken()" + }, + { + "label": "removeAdditionalKeysDashboard()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L276", + "_origin": "ast", + "id": "helper_index_removeadditionalkeysdashboard", + "community": 7, + "norm_label": "removeadditionalkeysdashboard()" + }, + { + "label": "changeDateType()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L291", + "_origin": "ast", + "id": "helper_index_changedatetype", + "community": 7, + "norm_label": "changedatetype()" + }, + { + "label": "removeTokenHead", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L304", + "_origin": "ast", + "id": "helper_index_removetokenhead", + "community": 7, + "norm_label": "removetokenhead" + }, + { + "label": "dateToTimestamp()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L310", + "_origin": "ast", + "id": "helper_index_datetotimestamp", + "community": 7, + "norm_label": "datetotimestamp()" + }, + { + "label": "degreeVal", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L320", + "_origin": "ast", + "id": "helper_index_degreeval", + "community": 7, + "norm_label": "degreeval" + }, + { + "label": "addLabelToList()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L326", + "_origin": "ast", + "id": "helper_index_addlabeltolist", + "community": 113, + "norm_label": "addlabeltolist()" + }, + { + "label": "QueryForDoctorsFilter()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L334", + "_origin": "ast", + "id": "helper_index_queryfordoctorsfilter", + "community": 7, + "norm_label": "queryfordoctorsfilter()" + }, + { + "label": "QueryForClinicDoctorFilter()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L383", + "_origin": "ast", + "id": "helper_index_queryforclinicdoctorfilter", + "community": 7, + "norm_label": "queryforclinicdoctorfilter()" + }, + { + "label": "QueryForDoctorsReq()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L422", + "_origin": "ast", + "id": "helper_index_queryfordoctorsreq", + "community": 7, + "norm_label": "queryfordoctorsreq()" + }, + { + "label": "QueryForDoctorsClinicReq()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L466", + "_origin": "ast", + "id": "helper_index_queryfordoctorsclinicreq", + "community": 7, + "norm_label": "queryfordoctorsclinicreq()" + }, + { + "label": "buildDoctorParams()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L507", + "_origin": "ast", + "id": "helper_index_builddoctorparams", + "community": 86, + "norm_label": "builddoctorparams()" + }, + { + "label": "QueryForClinicsFilter()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L586", + "_origin": "ast", + "id": "helper_index_queryforclinicsfilter", + "community": 7, + "norm_label": "queryforclinicsfilter()" + }, + { + "label": "buildClinicParams()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L622", + "_origin": "ast", + "id": "helper_index_buildclinicparams", + "community": 70, + "norm_label": "buildclinicparams()" + }, + { + "label": "timeAgo()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L658", + "_origin": "ast", + "id": "helper_index_timeago", + "community": 55, + "norm_label": "timeago()" + }, + { + "label": "isUserLoggedIn()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L683", + "_origin": "ast", + "id": "helper_index_isuserloggedin", + "community": 7, + "norm_label": "isuserloggedin()" + }, + { + "label": "convertTimestampToPersianDateSimple()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L688", + "_origin": "ast", + "id": "helper_index_converttimestamptopersiandatesimple", + "community": 7, + "norm_label": "converttimestamptopersiandatesimple()" + }, + { + "label": "changeNumToDefault()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L706", + "_origin": "ast", + "id": "helper_index_changenumtodefault", + "community": 7, + "norm_label": "changenumtodefault()" + }, + { + "label": "isValidIranNationalCode()", + "file_type": "code", + "source_file": "helper/index.js", + "source_location": "L716", + "_origin": "ast", + "id": "helper_index_isvalidirannationalcode", + "community": 7, + "norm_label": "isvalidirannationalcode()" + }, + { + "label": "index.test.js", + "file_type": "code", + "source_file": "helper/index.test.js", + "source_location": "L1", + "_origin": "ast", + "id": "helper_index_test", + "community": 359, + "norm_label": "index.test.js" + }, + { + "label": "useCanonicalUrl.js", + "file_type": "code", + "source_file": "hooks/useCanonicalUrl.js", + "source_location": "L1", + "_origin": "ast", + "id": "hooks_usecanonicalurl", + "community": 116, + "norm_label": "usecanonicalurl.js" + }, + { + "label": "useCanonicalUrl()", + "file_type": "code", + "source_file": "hooks/useCanonicalUrl.js", + "source_location": "L10", + "_origin": "ast", + "id": "hooks_usecanonicalurl_usecanonicalurl", + "community": 116, + "norm_label": "usecanonicalurl()" + }, + { + "label": "useCanonicalUrlInjection()", + "file_type": "code", + "source_file": "hooks/useCanonicalUrl.js", + "source_location": "L27", + "_origin": "ast", + "id": "hooks_usecanonicalurl_usecanonicalurlinjection", + "community": 116, + "norm_label": "usecanonicalurlinjection()" + }, + { + "label": "jsconfig.json", + "file_type": "code", + "source_file": "jsconfig.json", + "source_location": "L1", + "_origin": "ast", + "id": "jsconfig", + "community": 102, + "norm_label": "jsconfig.json" + }, + { + "label": "compilerOptions", + "file_type": "code", + "source_file": "jsconfig.json", + "source_location": "L2", + "_origin": "ast", + "id": "jsconfig_compileroptions", + "community": 102, + "norm_label": "compileroptions" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "jsconfig.json", + "source_location": "L3", + "_origin": "ast", + "id": "jsconfig_compileroptions_paths", + "community": 102, + "norm_label": "paths" + }, + { + "label": "@/*", + "file_type": "code", + "source_file": "jsconfig.json", + "source_location": "L4", + "_origin": "ast", + "id": "jsconfig_paths", + "community": 102, + "norm_label": "@/*" + }, + { + "label": "ability.js", + "file_type": "code", + "source_file": "lib/ability.js", + "source_location": "L1", + "_origin": "ast", + "id": "lib_ability", + "community": 6, + "norm_label": "ability.js" + }, + { + "label": "defineAbilitiesFor()", + "file_type": "code", + "source_file": "lib/ability.js", + "source_location": "L3", + "_origin": "ast", + "id": "lib_ability_defineabilitiesfor", + "community": 6, + "norm_label": "defineabilitiesfor()" + }, + { + "label": "appointmentSlots.js", + "file_type": "code", + "source_file": "lib/appointmentSlots.js", + "source_location": "L1", + "_origin": "ast", + "id": "lib_appointmentslots", + "community": 117, + "norm_label": "appointmentslots.js" + }, + { + "label": "adaptSlots()", + "file_type": "code", + "source_file": "lib/appointmentSlots.js", + "source_location": "L3", + "_origin": "ast", + "id": "lib_appointmentslots_adaptslots", + "community": 117, + "norm_label": "adaptslots()" + }, + { + "label": "hasAvailable()", + "file_type": "code", + "source_file": "lib/appointmentSlots.js", + "source_location": "L19", + "_origin": "ast", + "id": "lib_appointmentslots_hasavailable", + "community": 117, + "norm_label": "hasavailable()" + }, + { + "label": "auth.js", + "file_type": "code", + "source_file": "lib/auth.js", + "source_location": "L1", + "_origin": "ast", + "id": "lib_auth", + "community": 6, + "norm_label": "auth.js" + }, + { + "label": "getUser()", + "file_type": "code", + "source_file": "lib/auth.js", + "source_location": "L3", + "_origin": "ast", + "id": "lib_auth_getuser", + "community": 6, + "norm_label": "getuser()" + }, + { + "label": "getCanonicalUrl.js", + "file_type": "code", + "source_file": "lib/getCanonicalUrl.js", + "source_location": "L1", + "_origin": "ast", + "id": "lib_getcanonicalurl", + "community": 72, + "norm_label": "getcanonicalurl.js" + }, + { + "label": "normalizeHost()", + "file_type": "code", + "source_file": "lib/getCanonicalUrl.js", + "source_location": "L11", + "_origin": "ast", + "id": "lib_getcanonicalurl_normalizehost", + "community": 72, + "norm_label": "normalizehost()" + }, + { + "label": "buildCanonicalPath()", + "file_type": "code", + "source_file": "lib/getCanonicalUrl.js", + "source_location": "L15", + "_origin": "ast", + "id": "lib_getcanonicalurl_buildcanonicalpath", + "community": 72, + "norm_label": "buildcanonicalpath()" + }, + { + "label": "buildCanonicalUrl()", + "file_type": "code", + "source_file": "lib/getCanonicalUrl.js", + "source_location": "L22", + "_origin": "ast", + "id": "lib_getcanonicalurl_buildcanonicalurl", + "community": 72, + "norm_label": "buildcanonicalurl()" + }, + { + "label": "getRequestOrigin()", + "file_type": "code", + "source_file": "lib/getCanonicalUrl.js", + "source_location": "L31", + "_origin": "ast", + "id": "lib_getcanonicalurl_getrequestorigin", + "community": 72, + "norm_label": "getrequestorigin()" + }, + { + "label": "buildMainCanonicalUrl()", + "file_type": "code", + "source_file": "lib/getCanonicalUrl.js", + "source_location": "L40", + "_origin": "ast", + "id": "lib_getcanonicalurl_buildmaincanonicalurl", + "community": 72, + "norm_label": "buildmaincanonicalurl()" + }, + { + "label": "getCanonicalUrl()", + "file_type": "code", + "source_file": "lib/getCanonicalUrl.js", + "source_location": "L44", + "_origin": "ast", + "id": "lib_getcanonicalurl_getcanonicalurl", + "community": 72, + "norm_label": "getcanonicalurl()" + }, + { + "label": "getStateInfo.js", + "file_type": "code", + "source_file": "lib/getStateInfo.js", + "source_location": "L1", + "_origin": "ast", + "id": "lib_getstateinfo", + "community": 29, + "norm_label": "getstateinfo.js" + }, + { + "label": "getStateInfo()", + "file_type": "code", + "source_file": "lib/getStateInfo.js", + "source_location": "L10", + "_origin": "ast", + "id": "lib_getstateinfo_getstateinfo", + "community": 29, + "norm_label": "getstateinfo()" + }, + { + "label": "getStateInfo.test.js", + "file_type": "code", + "source_file": "lib/getStateInfo.test.js", + "source_location": "L1", + "_origin": "ast", + "id": "lib_getstateinfo_test", + "community": 339, + "norm_label": "getstateinfo.test.js" + }, + { + "label": "{ hostRef }", + "file_type": "code", + "source_file": "lib/getStateInfo.test.js", + "source_location": "L3", + "_origin": "ast", + "id": "lib_getstateinfo_test_hostref", + "community": 339, + "norm_label": "{ hostref }" + }, + { + "label": "getStateInfoClient.js", + "file_type": "code", + "source_file": "lib/getStateInfoClient.js", + "source_location": "L1", + "_origin": "ast", + "id": "lib_getstateinfoclient", + "community": 73, + "norm_label": "getstateinfoclient.js" + }, + { + "label": "getStateInfoClient()", + "file_type": "code", + "source_file": "lib/getStateInfoClient.js", + "source_location": "L5", + "_origin": "ast", + "id": "lib_getstateinfoclient_getstateinfoclient", + "community": 73, + "norm_label": "getstateinfoclient()" + }, + { + "label": "lib.test.js", + "file_type": "code", + "source_file": "lib/lib.test.js", + "source_location": "L1", + "_origin": "ast", + "id": "lib_lib_test", + "community": 360, + "norm_label": "lib.test.js" + }, + { + "label": "money.js", + "file_type": "code", + "source_file": "lib/money.js", + "source_location": "L1", + "_origin": "ast", + "id": "lib_money", + "community": 6, + "norm_label": "money.js" + }, + { + "label": "rialToToman()", + "file_type": "code", + "source_file": "lib/money.js", + "source_location": "L4", + "_origin": "ast", + "id": "lib_money_rialtotoman", + "community": 6, + "norm_label": "rialtotoman()" + }, + { + "label": "tomanToRial()", + "file_type": "code", + "source_file": "lib/money.js", + "source_location": "L5", + "_origin": "ast", + "id": "lib_money_tomantorial", + "community": 6, + "norm_label": "tomantorial()" + }, + { + "label": "formatToman()", + "file_type": "code", + "source_file": "lib/money.js", + "source_location": "L8", + "_origin": "ast", + "id": "lib_money_formattoman", + "community": 6, + "norm_label": "formattoman()" + }, + { + "label": "multiDomainClient.test.js", + "file_type": "code", + "source_file": "lib/multiDomainClient.test.js", + "source_location": "L1", + "_origin": "ast", + "id": "lib_multidomainclient_test", + "community": 340, + "norm_label": "multidomainclient.test.js" + }, + { + "label": "setLocation()", + "file_type": "code", + "source_file": "lib/multiDomainClient.test.js", + "source_location": "L10", + "_origin": "ast", + "id": "lib_multidomainclient_test_setlocation", + "community": 340, + "norm_label": "setlocation()" + }, + { + "label": "refreshCookie.js", + "file_type": "code", + "source_file": "lib/refreshCookie.js", + "source_location": "L1", + "_origin": "ast", + "id": "lib_refreshcookie", + "community": 68, + "norm_label": "refreshcookie.js" + }, + { + "label": "cookieDomain()", + "file_type": "code", + "source_file": "lib/refreshCookie.js", + "source_location": "L3", + "_origin": "ast", + "id": "lib_refreshcookie_cookiedomain", + "community": 68, + "norm_label": "cookiedomain()" + }, + { + "label": "setRefreshCookie()", + "file_type": "code", + "source_file": "lib/refreshCookie.js", + "source_location": "L14", + "_origin": "ast", + "id": "lib_refreshcookie_setrefreshcookie", + "community": 68, + "norm_label": "setrefreshcookie()" + }, + { + "label": "clearRefreshCookie()", + "file_type": "code", + "source_file": "lib/refreshCookie.js", + "source_location": "L25", + "_origin": "ast", + "id": "lib_refreshcookie_clearrefreshcookie", + "community": 68, + "norm_label": "clearrefreshcookie()" + }, + { + "label": "representationAdapters.js", + "file_type": "code", + "source_file": "lib/representationAdapters.js", + "source_location": "L1", + "_origin": "ast", + "id": "lib_representationadapters", + "community": 6, + "norm_label": "representationadapters.js" + }, + { + "label": "buildPatientUser()", + "file_type": "code", + "source_file": "lib/representationAdapters.js", + "source_location": "L1", + "_origin": "ast", + "id": "lib_representationadapters_buildpatientuser", + "community": 6, + "norm_label": "buildpatientuser()" + }, + { + "label": "req.js", + "file_type": "code", + "source_file": "lib/req.js", + "source_location": "L1", + "_origin": "ast", + "id": "lib_req", + "community": 70, + "norm_label": "req.js" + }, + { + "label": "axiosInstance", + "file_type": "code", + "source_file": "lib/req.js", + "source_location": "L4", + "_origin": "ast", + "id": "lib_req_axiosinstance", + "community": 70, + "norm_label": "axiosinstance" + }, + { + "label": "fetchReq()", + "file_type": "code", + "source_file": "lib/req.js", + "source_location": "L10", + "_origin": "ast", + "id": "lib_req_fetchreq", + "community": 70, + "norm_label": "fetchreq()" + }, + { + "label": "rootCity.js", + "file_type": "code", + "source_file": "lib/rootCity.js", + "source_location": "L1", + "_origin": "ast", + "id": "lib_rootcity", + "community": 3, + "norm_label": "rootcity.js" + }, + { + "label": "isRootCity()", + "file_type": "code", + "source_file": "lib/rootCity.js", + "source_location": "L5", + "_origin": "ast", + "id": "lib_rootcity_isrootcity", + "community": 3, + "norm_label": "isrootcity()" + }, + { + "label": "sanitize.js", + "file_type": "code", + "source_file": "lib/sanitize.js", + "source_location": "L1", + "_origin": "ast", + "id": "lib_sanitize", + "community": 6, + "norm_label": "sanitize.js" + }, + { + "label": "sanitizeHtml()", + "file_type": "code", + "source_file": "lib/sanitize.js", + "source_location": "L3", + "_origin": "ast", + "id": "lib_sanitize_sanitizehtml", + "community": 4, + "norm_label": "sanitizehtml()" + }, + { + "label": "safeJsonLd()", + "file_type": "code", + "source_file": "lib/sanitize.js", + "source_location": "L18", + "_origin": "ast", + "id": "lib_sanitize_safejsonld", + "community": 45, + "norm_label": "safejsonld()" + }, + { + "label": "safeJsonParse()", + "file_type": "code", + "source_file": "lib/sanitize.js", + "source_location": "L22", + "_origin": "ast", + "id": "lib_sanitize_safejsonparse", + "community": 6, + "norm_label": "safejsonparse()" + }, + { + "label": "serverToken.js", + "file_type": "code", + "source_file": "lib/serverToken.js", + "source_location": "L1", + "_origin": "ast", + "id": "lib_servertoken", + "community": 6, + "norm_label": "servertoken.js" + }, + { + "label": "getServerAccessToken()", + "file_type": "code", + "source_file": "lib/serverToken.js", + "source_location": "L4", + "_origin": "ast", + "id": "lib_servertoken_getserveraccesstoken", + "community": 6, + "norm_label": "getserveraccesstoken()" + }, + { + "label": "tokenStore.js", + "file_type": "code", + "source_file": "lib/tokenStore.js", + "source_location": "L1", + "_origin": "ast", + "id": "lib_tokenstore", + "community": 6, + "norm_label": "tokenstore.js" + }, + { + "label": "getAccessToken()", + "file_type": "code", + "source_file": "lib/tokenStore.js", + "source_location": "L3", + "_origin": "ast", + "id": "lib_tokenstore_getaccesstoken", + "community": 6, + "norm_label": "getaccesstoken()" + }, + { + "label": "setAccessToken()", + "file_type": "code", + "source_file": "lib/tokenStore.js", + "source_location": "L7", + "_origin": "ast", + "id": "lib_tokenstore_setaccesstoken", + "community": 6, + "norm_label": "setaccesstoken()" + }, + { + "label": "clearAccessToken()", + "file_type": "code", + "source_file": "lib/tokenStore.js", + "source_location": "L11", + "_origin": "ast", + "id": "lib_tokenstore_clearaccesstoken", + "community": 6, + "norm_label": "clearaccesstoken()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "mui/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "mui_index", + "community": 119, + "norm_label": "index.js" + }, + { + "label": "styleDefault", + "file_type": "code", + "source_file": "mui/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "mui_index_styledefault", + "community": 119, + "norm_label": "styledefault" + }, + { + "label": "styleTextSelectRight", + "file_type": "code", + "source_file": "mui/index.js", + "source_location": "L13", + "_origin": "ast", + "id": "mui_index_styletextselectright", + "community": 119, + "norm_label": "styletextselectright" + }, + { + "label": "next.config.js", + "file_type": "code", + "source_file": "next.config.js", + "source_location": "L1", + "_origin": "ast", + "id": "next_config", + "community": 347, + "norm_label": "next.config.js" + }, + { + "label": "nextConfig", + "file_type": "code", + "source_file": "next.config.js", + "source_location": "L2", + "_origin": "ast", + "id": "next_config_nextconfig", + "community": 347, + "norm_label": "nextconfig" + }, + { + "label": "package.json", + "file_type": "code", + "source_file": "package.json", + "source_location": "L1", + "_origin": "ast", + "id": "package", + "community": 8, + "norm_label": "package.json" + }, + { + "label": "name", + "file_type": "code", + "source_file": "package.json", + "source_location": "L2", + "_origin": "ast", + "id": "package_name", + "community": 8, + "norm_label": "name" + }, + { + "label": "version", + "file_type": "code", + "source_file": "package.json", + "source_location": "L3", + "_origin": "ast", + "id": "package_version", + "community": 8, + "norm_label": "version" + }, + { + "label": "private", + "file_type": "code", + "source_file": "package.json", + "source_location": "L4", + "_origin": "ast", + "id": "package_private", + "community": 8, + "norm_label": "private" + }, + { + "label": "engines", + "file_type": "code", + "source_file": "package.json", + "source_location": "L5", + "_origin": "ast", + "id": "package_engines", + "community": 8, + "norm_label": "engines" + }, + { + "label": "node", + "file_type": "code", + "source_file": "package.json", + "source_location": "L6", + "_origin": "ast", + "id": "package_engines_node", + "community": 8, + "norm_label": "node" + }, + { + "label": "scripts", + "file_type": "code", + "source_file": "package.json", + "source_location": "L8", + "_origin": "ast", + "id": "package_scripts", + "community": 8, + "norm_label": "scripts" + }, + { + "label": "dev", + "file_type": "code", + "source_file": "package.json", + "source_location": "L9", + "_origin": "ast", + "id": "package_scripts_dev", + "community": 8, + "norm_label": "dev" + }, + { + "label": "build", + "file_type": "code", + "source_file": "package.json", + "source_location": "L10", + "_origin": "ast", + "id": "package_scripts_build", + "community": 8, + "norm_label": "build" + }, + { + "label": "start", + "file_type": "code", + "source_file": "package.json", + "source_location": "L11", + "_origin": "ast", + "id": "package_scripts_start", + "community": 8, + "norm_label": "start" + }, + { + "label": "lint", + "file_type": "code", + "source_file": "package.json", + "source_location": "L12", + "_origin": "ast", + "id": "package_scripts_lint", + "community": 8, + "norm_label": "lint" + }, + { + "label": "test", + "file_type": "code", + "source_file": "package.json", + "source_location": "L13", + "_origin": "ast", + "id": "package_scripts_test", + "community": 8, + "norm_label": "test" + }, + { + "label": "test:watch", + "file_type": "code", + "source_file": "package.json", + "source_location": "L14", + "_origin": "ast", + "id": "package_scripts_test_watch", + "community": 8, + "norm_label": "test:watch" + }, + { + "label": "test:cov", + "file_type": "code", + "source_file": "package.json", + "source_location": "L15", + "_origin": "ast", + "id": "package_scripts_test_cov", + "community": 8, + "norm_label": "test:cov" + }, + { + "label": "dependencies", + "file_type": "code", + "source_file": "package.json", + "source_location": "L17", + "_origin": "ast", + "id": "package_dependencies", + "community": 2, + "norm_label": "dependencies" + }, + { + "label": "@casl/ability", + "file_type": "code", + "source_file": "package.json", + "source_location": "L18", + "_origin": "ast", + "id": "package_dependencies_casl_ability", + "community": 2, + "norm_label": "@casl/ability" + }, + { + "label": "@casl/react", + "file_type": "code", + "source_file": "package.json", + "source_location": "L19", + "_origin": "ast", + "id": "package_dependencies_casl_react", + "community": 2, + "norm_label": "@casl/react" + }, + { + "label": "@emotion/cache", + "file_type": "code", + "source_file": "package.json", + "source_location": "L20", + "_origin": "ast", + "id": "package_dependencies_emotion_cache", + "community": 2, + "norm_label": "@emotion/cache" + }, + { + "label": "@emotion/react", + "file_type": "code", + "source_file": "package.json", + "source_location": "L21", + "_origin": "ast", + "id": "package_dependencies_emotion_react", + "community": 2, + "norm_label": "@emotion/react" + }, + { + "label": "@emotion/styled", + "file_type": "code", + "source_file": "package.json", + "source_location": "L22", + "_origin": "ast", + "id": "package_dependencies_emotion_styled", + "community": 2, + "norm_label": "@emotion/styled" + }, + { + "label": "@maptiler/sdk", + "file_type": "code", + "source_file": "package.json", + "source_location": "L23", + "_origin": "ast", + "id": "package_dependencies_maptiler_sdk", + "community": 2, + "norm_label": "@maptiler/sdk" + }, + { + "label": "@mui/icons-material", + "file_type": "code", + "source_file": "package.json", + "source_location": "L24", + "_origin": "ast", + "id": "package_dependencies_mui_icons_material", + "community": 2, + "norm_label": "@mui/icons-material" + }, + { + "label": "@mui/material", + "file_type": "code", + "source_file": "package.json", + "source_location": "L25", + "_origin": "ast", + "id": "package_dependencies_mui_material", + "community": 2, + "norm_label": "@mui/material" + }, + { + "label": "@mui/styled-engine", + "file_type": "code", + "source_file": "package.json", + "source_location": "L26", + "_origin": "ast", + "id": "package_dependencies_mui_styled_engine", + "community": 2, + "norm_label": "@mui/styled-engine" + }, + { + "label": "@mui/x-charts", + "file_type": "code", + "source_file": "package.json", + "source_location": "L27", + "_origin": "ast", + "id": "package_dependencies_mui_x_charts", + "community": 2, + "norm_label": "@mui/x-charts" + }, + { + "label": "@mui/x-date-pickers", + "file_type": "code", + "source_file": "package.json", + "source_location": "L28", + "_origin": "ast", + "id": "package_dependencies_mui_x_date_pickers", + "community": 2, + "norm_label": "@mui/x-date-pickers" + }, + { + "label": "@next/third-parties", + "file_type": "code", + "source_file": "package.json", + "source_location": "L29", + "_origin": "ast", + "id": "package_dependencies_next_third_parties", + "community": 2, + "norm_label": "@next/third-parties" + }, + { + "label": "aos", + "file_type": "code", + "source_file": "package.json", + "source_location": "L30", + "_origin": "ast", + "id": "package_dependencies_aos", + "community": 2, + "norm_label": "aos" + }, + { + "label": "axios", + "file_type": "code", + "source_file": "package.json", + "source_location": "L31", + "_origin": "ast", + "id": "package_dependencies_axios", + "community": 2, + "norm_label": "axios" + }, + { + "label": "date-fns", + "file_type": "code", + "source_file": "package.json", + "source_location": "L32", + "_origin": "ast", + "id": "package_dependencies_date_fns", + "community": 2, + "norm_label": "date-fns" + }, + { + "label": "dayjs", + "file_type": "code", + "source_file": "package.json", + "source_location": "L33", + "_origin": "ast", + "id": "package_dependencies_dayjs", + "community": 2, + "norm_label": "dayjs" + }, + { + "label": "html-to-image", + "file_type": "code", + "source_file": "package.json", + "source_location": "L34", + "_origin": "ast", + "id": "package_dependencies_html_to_image", + "community": 2, + "norm_label": "html-to-image" + }, + { + "label": "html2canvas", + "file_type": "code", + "source_file": "package.json", + "source_location": "L35", + "_origin": "ast", + "id": "package_dependencies_html2canvas", + "community": 2, + "norm_label": "html2canvas" + }, + { + "label": "i", + "file_type": "code", + "source_file": "package.json", + "source_location": "L36", + "_origin": "ast", + "id": "package_dependencies_i", + "community": 2, + "norm_label": "i" + }, + { + "label": "isomorphic-dompurify", + "file_type": "code", + "source_file": "package.json", + "source_location": "L37", + "_origin": "ast", + "id": "package_dependencies_isomorphic_dompurify", + "community": 2, + "norm_label": "isomorphic-dompurify" + }, + { + "label": "jalaali-js", + "file_type": "code", + "source_file": "package.json", + "source_location": "L38", + "_origin": "ast", + "id": "package_dependencies_jalaali_js", + "community": 2, + "norm_label": "jalaali-js" + }, + { + "label": "jalali-moment", + "file_type": "code", + "source_file": "package.json", + "source_location": "L39", + "_origin": "ast", + "id": "package_dependencies_jalali_moment", + "community": 2, + "norm_label": "jalali-moment" + }, + { + "label": "js-cookie", + "file_type": "code", + "source_file": "package.json", + "source_location": "L40", + "_origin": "ast", + "id": "package_dependencies_js_cookie", + "community": 2, + "norm_label": "js-cookie" + }, + { + "label": "jspdf", + "file_type": "code", + "source_file": "package.json", + "source_location": "L41", + "_origin": "ast", + "id": "package_dependencies_jspdf", + "community": 2, + "norm_label": "jspdf" + }, + { + "label": "moment-jalaali", + "file_type": "code", + "source_file": "package.json", + "source_location": "L42", + "_origin": "ast", + "id": "package_dependencies_moment_jalaali", + "community": 2, + "norm_label": "moment-jalaali" + }, + { + "label": "next", + "file_type": "code", + "source_file": "package.json", + "source_location": "L43", + "_origin": "ast", + "id": "package_dependencies_next", + "community": 2, + "norm_label": "next" + }, + { + "label": "next-themes", + "file_type": "code", + "source_file": "package.json", + "source_location": "L44", + "_origin": "ast", + "id": "package_dependencies_next_themes", + "community": 2, + "norm_label": "next-themes" + }, + { + "label": "npm", + "file_type": "code", + "source_file": "package.json", + "source_location": "L45", + "_origin": "ast", + "id": "package_dependencies_npm", + "community": 2, + "norm_label": "npm" + }, + { + "label": "postcss", + "file_type": "code", + "source_file": "package.json", + "source_location": "L46", + "_origin": "ast", + "id": "package_dependencies_postcss", + "community": 2, + "norm_label": "postcss" + }, + { + "label": "qrcode", + "file_type": "code", + "source_file": "package.json", + "source_location": "L47", + "_origin": "ast", + "id": "package_dependencies_qrcode", + "community": 2, + "norm_label": "qrcode" + }, + { + "label": "qrcode.react", + "file_type": "code", + "source_file": "package.json", + "source_location": "L48", + "_origin": "ast", + "id": "package_dependencies_qrcode_react", + "community": 2, + "norm_label": "qrcode.react" + }, + { + "label": "react", + "file_type": "code", + "source_file": "package.json", + "source_location": "L49", + "_origin": "ast", + "id": "package_dependencies_react", + "community": 2, + "norm_label": "react" + }, + { + "label": "react-dom", + "file_type": "code", + "source_file": "package.json", + "source_location": "L50", + "_origin": "ast", + "id": "package_dependencies_react_dom", + "community": 2, + "norm_label": "react-dom" + }, + { + "label": "react-easy-crop", + "file_type": "code", + "source_file": "package.json", + "source_location": "L51", + "_origin": "ast", + "id": "package_dependencies_react_easy_crop", + "community": 2, + "norm_label": "react-easy-crop" + }, + { + "label": "react-google-map-picker", + "file_type": "code", + "source_file": "package.json", + "source_location": "L52", + "_origin": "ast", + "id": "package_dependencies_react_google_map_picker", + "community": 2, + "norm_label": "react-google-map-picker" + }, + { + "label": "react-images-uploading", + "file_type": "code", + "source_file": "package.json", + "source_location": "L53", + "_origin": "ast", + "id": "package_dependencies_react_images_uploading", + "community": 2, + "norm_label": "react-images-uploading" + }, + { + "label": "react-toastify", + "file_type": "code", + "source_file": "package.json", + "source_location": "L54", + "_origin": "ast", + "id": "package_dependencies_react_toastify", + "community": 2, + "norm_label": "react-toastify" + }, + { + "label": "sharp", + "file_type": "code", + "source_file": "package.json", + "source_location": "L55", + "_origin": "ast", + "id": "package_dependencies_sharp", + "community": 2, + "norm_label": "sharp" + }, + { + "label": "styled-components", + "file_type": "code", + "source_file": "package.json", + "source_location": "L56", + "_origin": "ast", + "id": "package_dependencies_styled_components", + "community": 2, + "norm_label": "styled-components" + }, + { + "label": "stylis", + "file_type": "code", + "source_file": "package.json", + "source_location": "L57", + "_origin": "ast", + "id": "package_dependencies_stylis", + "community": 2, + "norm_label": "stylis" + }, + { + "label": "stylis-plugin-rtl", + "file_type": "code", + "source_file": "package.json", + "source_location": "L58", + "_origin": "ast", + "id": "package_dependencies_stylis_plugin_rtl", + "community": 2, + "norm_label": "stylis-plugin-rtl" + }, + { + "label": "swiper", + "file_type": "code", + "source_file": "package.json", + "source_location": "L59", + "_origin": "ast", + "id": "package_dependencies_swiper", + "community": 2, + "norm_label": "swiper" + }, + { + "label": "tailwindcss", + "file_type": "code", + "source_file": "package.json", + "source_location": "L60", + "_origin": "ast", + "id": "package_dependencies_tailwindcss", + "community": 2, + "norm_label": "tailwindcss" + }, + { + "label": "uninstall", + "file_type": "code", + "source_file": "package.json", + "source_location": "L61", + "_origin": "ast", + "id": "package_dependencies_uninstall", + "community": 2, + "norm_label": "uninstall" + }, + { + "label": "devDependencies", + "file_type": "code", + "source_file": "package.json", + "source_location": "L63", + "_origin": "ast", + "id": "package_devdependencies", + "community": 8, + "norm_label": "devdependencies" + }, + { + "label": "@eslint/eslintrc", + "file_type": "code", + "source_file": "package.json", + "source_location": "L64", + "_origin": "ast", + "id": "package_devdependencies_eslint_eslintrc", + "community": 8, + "norm_label": "@eslint/eslintrc" + }, + { + "label": "@testing-library/dom", + "file_type": "code", + "source_file": "package.json", + "source_location": "L65", + "_origin": "ast", + "id": "package_devdependencies_testing_library_dom", + "community": 8, + "norm_label": "@testing-library/dom" + }, + { + "label": "@testing-library/jest-dom", + "file_type": "code", + "source_file": "package.json", + "source_location": "L66", + "_origin": "ast", + "id": "package_devdependencies_testing_library_jest_dom", + "community": 8, + "norm_label": "@testing-library/jest-dom" + }, + { + "label": "@testing-library/react", + "file_type": "code", + "source_file": "package.json", + "source_location": "L67", + "_origin": "ast", + "id": "package_devdependencies_testing_library_react", + "community": 8, + "norm_label": "@testing-library/react" + }, + { + "label": "@testing-library/user-event", + "file_type": "code", + "source_file": "package.json", + "source_location": "L68", + "_origin": "ast", + "id": "package_devdependencies_testing_library_user_event", + "community": 8, + "norm_label": "@testing-library/user-event" + }, + { + "label": "@vitejs/plugin-react", + "file_type": "code", + "source_file": "package.json", + "source_location": "L69", + "_origin": "ast", + "id": "package_devdependencies_vitejs_plugin_react", + "community": 8, + "norm_label": "@vitejs/plugin-react" + }, + { + "label": "babel-plugin-react-compiler", + "file_type": "code", + "source_file": "package.json", + "source_location": "L70", + "_origin": "ast", + "id": "package_devdependencies_babel_plugin_react_compiler", + "community": 8, + "norm_label": "babel-plugin-react-compiler" + }, + { + "label": "cross-env", + "file_type": "code", + "source_file": "package.json", + "source_location": "L71", + "_origin": "ast", + "id": "package_devdependencies_cross_env", + "community": 8, + "norm_label": "cross-env" + }, + { + "label": "eslint", + "file_type": "code", + "source_file": "package.json", + "source_location": "L72", + "_origin": "ast", + "id": "package_devdependencies_eslint", + "community": 8, + "norm_label": "eslint" + }, + { + "label": "eslint-config-next", + "file_type": "code", + "source_file": "package.json", + "source_location": "L73", + "_origin": "ast", + "id": "package_devdependencies_eslint_config_next", + "community": 8, + "norm_label": "eslint-config-next" + }, + { + "label": "jsdom", + "file_type": "code", + "source_file": "package.json", + "source_location": "L74", + "_origin": "ast", + "id": "package_devdependencies_jsdom", + "community": 8, + "norm_label": "jsdom" + }, + { + "label": "prettier", + "file_type": "code", + "source_file": "package.json", + "source_location": "L75", + "_origin": "ast", + "id": "package_devdependencies_prettier", + "community": 8, + "norm_label": "prettier" + }, + { + "label": "typescript", + "file_type": "code", + "source_file": "package.json", + "source_location": "L76", + "_origin": "ast", + "id": "package_devdependencies_typescript", + "community": 8, + "norm_label": "typescript" + }, + { + "label": "vitest", + "file_type": "code", + "source_file": "package.json", + "source_location": "L77", + "_origin": "ast", + "id": "package_devdependencies_vitest", + "community": 8, + "norm_label": "vitest" + }, + { + "label": "postcss.config.mjs", + "file_type": "code", + "source_file": "postcss.config.mjs", + "source_location": "L1", + "_origin": "ast", + "id": "postcss_config", + "community": 348, + "norm_label": "postcss.config.mjs" + }, + { + "label": "config", + "file_type": "code", + "source_file": "postcss.config.mjs", + "source_location": "L2", + "_origin": "ast", + "id": "postcss_config_config", + "community": 348, + "norm_label": "config" + }, + { + "label": "proxy.js", + "file_type": "code", + "source_file": "proxy.js", + "source_location": "L1", + "_origin": "ast", + "id": "proxy", + "community": 121, + "norm_label": "proxy.js" + }, + { + "label": "proxy()", + "file_type": "code", + "source_file": "proxy.js", + "source_location": "L3", + "_origin": "ast", + "id": "proxy_proxy", + "community": 121, + "norm_label": "proxy()" + }, + { + "label": "config", + "file_type": "code", + "source_file": "proxy.js", + "source_location": "L12", + "_origin": "ast", + "id": "proxy_config", + "community": 121, + "norm_label": "config" + }, + { + "label": "api.js", + "file_type": "code", + "source_file": "services/api.js", + "source_location": "L1", + "_origin": "ast", + "id": "services_api", + "community": 6, + "norm_label": "api.js" + }, + { + "label": "extractErrorMessage()", + "file_type": "code", + "source_file": "services/api.js", + "source_location": "L6", + "_origin": "ast", + "id": "services_api_extracterrormessage", + "community": 6, + "norm_label": "extracterrormessage()" + }, + { + "label": "api", + "file_type": "code", + "source_file": "services/api.js", + "source_location": "L19", + "_origin": "ast", + "id": "services_api_api", + "community": 6, + "norm_label": "api" + }, + { + "label": "refreshAccessToken()", + "file_type": "code", + "source_file": "services/api.js", + "source_location": "L28", + "_origin": "ast", + "id": "services_api_refreshaccesstoken", + "community": 6, + "norm_label": "refreshaccesstoken()" + }, + { + "label": "handleSessionExpired()", + "file_type": "code", + "source_file": "services/api.js", + "source_location": "L45", + "_origin": "ast", + "id": "services_api_handlesessionexpired", + "community": 6, + "norm_label": "handlesessionexpired()" + }, + { + "label": "clinicApi.js", + "file_type": "code", + "source_file": "services/clinicApi.js", + "source_location": "L1", + "_origin": "ast", + "id": "services_clinicapi", + "community": 354, + "norm_label": "clinicapi.js" + }, + { + "label": "getClinicDoctors()", + "file_type": "code", + "source_file": "services/clinicApi.js", + "source_location": "L2", + "_origin": "ast", + "id": "services_clinicapi_getclinicdoctors", + "community": 354, + "norm_label": "getclinicdoctors()" + }, + { + "label": "response.js", + "file_type": "code", + "source_file": "services/response.js", + "source_location": "L1", + "_origin": "ast", + "id": "services_response", + "community": 6, + "norm_label": "response.js" + }, + { + "label": "request", + "file_type": "code", + "source_file": "services/response.js", + "source_location": "L4", + "_origin": "ast", + "id": "services_response_request", + "community": 6, + "norm_label": "request" + }, + { + "label": "services.test.js", + "file_type": "code", + "source_file": "services/services.test.js", + "source_location": "L1", + "_origin": "ast", + "id": "services_services_test", + "community": 361, + "norm_label": "services.test.js" + }, + { + "label": "tailwind.config.js", + "file_type": "code", + "source_file": "tailwind.config.js", + "source_location": "L1", + "_origin": "ast", + "id": "tailwind_config", + "community": 362, + "norm_label": "tailwind.config.js" + }, + { + "label": "setup.js", + "file_type": "code", + "source_file": "test/setup.js", + "source_location": "L1", + "_origin": "ast", + "id": "test_setup", + "community": 363, + "norm_label": "setup.js" + }, + { + "label": "utils.jsx", + "file_type": "code", + "source_file": "test/utils.jsx", + "source_location": "L1", + "_origin": "ast", + "id": "test_utils", + "community": 357, + "norm_label": "utils.jsx" + }, + { + "label": "renderUI()", + "file_type": "code", + "source_file": "test/utils.jsx", + "source_location": "L3", + "_origin": "ast", + "id": "test_utils_renderui", + "community": 357, + "norm_label": "renderui()" + }, + { + "label": "index.js", + "file_type": "code", + "source_file": "utils/index.js", + "source_location": "L1", + "_origin": "ast", + "id": "utils_index", + "community": 6, + "norm_label": "index.js" + }, + { + "label": "removeToken()", + "file_type": "code", + "source_file": "utils/index.js", + "source_location": "L4", + "_origin": "ast", + "id": "utils_index_removetoken", + "community": 6, + "norm_label": "removetoken()" + }, + { + "label": "sitemap.js", + "file_type": "code", + "source_file": "utils/sitemap.js", + "source_location": "L1", + "_origin": "ast", + "id": "utils_sitemap", + "community": 21, + "norm_label": "sitemap.js" + }, + { + "label": "getBaseUrl()", + "file_type": "code", + "source_file": "utils/sitemap.js", + "source_location": "L3", + "_origin": "ast", + "id": "utils_sitemap_getbaseurl", + "community": 21, + "norm_label": "getbaseurl()" + }, + { + "label": "vitest.config.mjs", + "file_type": "code", + "source_file": "vitest.config.mjs", + "source_location": "L1", + "_origin": "ast", + "id": "vitest_config", + "community": 364, + "norm_label": "vitest.config.mjs" + }, + { + "label": "adapt-backend-audit-api.md", + "file_type": "document", + "source_file": ".claude/prompt/adapt-backend-audit-api.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_adapt_backend_audit_api", + "community": 35, + "norm_label": "adapt-backend-audit-api.md" + }, + { + "label": "\u062a\u0637\u0628\u06cc\u0642 \u0633\u0627\u06cc\u062a \u0639\u0645\u0648\u0645\u06cc \u0628\u0627 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a API \u0628\u0631\u0646\u0686 `backend-audit`", + "file_type": "document", + "source_file": ".claude/prompt/adapt-backend-audit-api.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_adapt_backend_audit_api_\u062a\u0637\u0628\u06cc\u0642_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0628\u0627_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_api_\u0628\u0631\u0646\u0686_backend_audit", + "community": 35, + "norm_label": "\u062a\u0637\u0628\u06cc\u0642 \u0633\u0627\u06cc\u062a \u0639\u0645\u0648\u0645\u06cc \u0628\u0627 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a api \u0628\u0631\u0646\u0686 `backend-audit`" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/adapt-backend-audit-api.md", + "source_location": "L7", + "_origin": "ast", + "id": "prompt_adapt_backend_audit_api_\u067e\u0631\u0648\u0698\u0647", + "community": 35, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/adapt-backend-audit-api.md", + "source_location": "L11", + "_origin": "ast", + "id": "prompt_adapt_backend_audit_api_\u0632\u0645\u06cc\u0646\u0647", + "community": 35, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u062c\u062f\u0648\u0644 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a API \u0645\u0631\u062a\u0628\u0637 \u0628\u0627 \u0633\u0627\u06cc\u062a \u0639\u0645\u0648\u0645\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/adapt-backend-audit-api.md", + "source_location": "L15", + "_origin": "ast", + "id": "prompt_adapt_backend_audit_api_\u062c\u062f\u0648\u0644_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_api_\u0645\u0631\u062a\u0628\u0637_\u0628\u0627_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", + "community": 35, + "norm_label": "\u062c\u062f\u0648\u0644 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a api \u0645\u0631\u062a\u0628\u0637 \u0628\u0627 \u0633\u0627\u06cc\u062a \u0639\u0645\u0648\u0645\u06cc" + }, + { + "label": "\ud83d\udd34 \u0645\u0634\u06a9\u0644 \u0627\u0635\u0644\u06cc: rotation \u062a\u0648\u06a9\u0646 refresh (`POST /oauth/token/refresh`)", + "file_type": "document", + "source_file": ".claude/prompt/adapt-backend-audit-api.md", + "source_location": "L24", + "_origin": "ast", + "id": "prompt_adapt_backend_audit_api_\u0645\u0634\u06a9\u0644_\u0627\u0635\u0644\u06cc_rotation_\u062a\u0648\u06a9\u0646_refresh_post_oauth_token_refresh", + "community": 35, + "norm_label": "\ud83d\udd34 \u0645\u0634\u06a9\u0644 \u0627\u0635\u0644\u06cc: rotation \u062a\u0648\u06a9\u0646 refresh (`post /oauth/token/refresh`)" + }, + { + "label": "\u0631\u0641\u062a\u0627\u0631 \u062c\u062f\u06cc\u062f backend", + "file_type": "document", + "source_file": ".claude/prompt/adapt-backend-audit-api.md", + "source_location": "L26", + "_origin": "ast", + "id": "prompt_adapt_backend_audit_api_\u0631\u0641\u062a\u0627\u0631_\u062c\u062f\u06cc\u062f_backend", + "community": 35, + "norm_label": "\u0631\u0641\u062a\u0627\u0631 \u062c\u062f\u06cc\u062f backend" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc nobat724 (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc \u2014 `lib/serverToken.js`)", + "file_type": "document", + "source_file": ".claude/prompt/adapt-backend-audit-api.md", + "source_location": "L37", + "_origin": "ast", + "id": "prompt_adapt_backend_audit_api_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_nobat724_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_lib_servertoken_js", + "community": 35, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc nobat724 (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc \u2014 `lib/servertoken.js`)" + }, + { + "label": "\u0686\u0631\u0627 \u0645\u06cc\u200c\u0634\u06a9\u0646\u062f", + "file_type": "document", + "source_file": ".claude/prompt/adapt-backend-audit-api.md", + "source_location": "L55", + "_origin": "ast", + "id": "prompt_adapt_backend_audit_api_\u0686\u0631\u0627_\u0645\u06cc_\u0634\u06a9\u0646\u062f", + "community": 35, + "norm_label": "\u0686\u0631\u0627 \u0645\u06cc\u200c\u0634\u06a9\u0646\u062f" + }, + { + "label": "\u0648\u0638\u06cc\u0641\u0647 \u06f1 \u2014 \u062d\u0644 rotation (\u06cc\u06a9\u06cc \u0627\u0632 \u062f\u0648 \u0645\u0633\u06cc\u0631\u061b \u0645\u0633\u06cc\u0631 A \u062a\u0648\u0635\u06cc\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f)", + "file_type": "document", + "source_file": ".claude/prompt/adapt-backend-audit-api.md", + "source_location": "L61", + "_origin": "ast", + "id": "prompt_adapt_backend_audit_api_\u0648\u0638\u06cc\u0641\u0647_\u06f1_\u062d\u0644_rotation_\u06cc\u06a9\u06cc_\u0627\u0632_\u062f\u0648_\u0645\u0633\u06cc\u0631_\u0645\u0633\u06cc\u0631_a_\u062a\u0648\u0635\u06cc\u0647_\u0645\u06cc_\u0634\u0648\u062f", + "community": 35, + "norm_label": "\u0648\u0638\u06cc\u0641\u0647 \u06f1 \u2014 \u062d\u0644 rotation (\u06cc\u06a9\u06cc \u0627\u0632 \u062f\u0648 \u0645\u0633\u06cc\u0631\u061b \u0645\u0633\u06cc\u0631 a \u062a\u0648\u0635\u06cc\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f)" + }, + { + "label": "\ud83d\udfe1 \u0648\u0638\u06cc\u0641\u0647 \u06f2 \u2014 \u0635\u0641\u062d\u0647\u200c\u0628\u0646\u062f\u06cc \u0646\u0638\u0631\u0627\u062a (`GET /api/v1/comments/{uuid}`)", + "file_type": "document", + "source_file": ".claude/prompt/adapt-backend-audit-api.md", + "source_location": "L94", + "_origin": "ast", + "id": "prompt_adapt_backend_audit_api_\u0648\u0638\u06cc\u0641\u0647_\u06f2_\u0635\u0641\u062d\u0647_\u0628\u0646\u062f\u06cc_\u0646\u0638\u0631\u0627\u062a_get_api_v1_comments_uuid", + "community": 35, + "norm_label": "\ud83d\udfe1 \u0648\u0638\u06cc\u0641\u0647 \u06f2 \u2014 \u0635\u0641\u062d\u0647\u200c\u0628\u0646\u062f\u06cc \u0646\u0638\u0631\u0627\u062a (`get /api/v1/comments/{uuid}`)" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (`app/doctor/[slug]/page.js`)", + "file_type": "document", + "source_file": ".claude/prompt/adapt-backend-audit-api.md", + "source_location": "L96", + "_origin": "ast", + "id": "prompt_adapt_backend_audit_api_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_app_doctor_slug_page_js", + "community": 35, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (`app/doctor/[slug]/page.js`)" + }, + { + "label": "\u062a\u063a\u06cc\u06cc\u0631", + "file_type": "document", + "source_file": ".claude/prompt/adapt-backend-audit-api.md", + "source_location": "L103", + "_origin": "ast", + "id": "prompt_adapt_backend_audit_api_\u062a\u063a\u06cc\u06cc\u0631", + "community": 35, + "norm_label": "\u062a\u063a\u06cc\u06cc\u0631" + }, + { + "label": "\u0648\u0638\u06cc\u0641\u0647", + "file_type": "document", + "source_file": ".claude/prompt/adapt-backend-audit-api.md", + "source_location": "L106", + "_origin": "ast", + "id": "prompt_adapt_backend_audit_api_\u0648\u0638\u06cc\u0641\u0647", + "community": 35, + "norm_label": "\u0648\u0638\u06cc\u0641\u0647" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/adapt-backend-audit-api.md", + "source_location": "L111", + "_origin": "ast", + "id": "prompt_adapt_backend_audit_api_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 35, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "appointment-calendar-disabled-dates.md", + "file_type": "document", + "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_appointment_calendar_disabled_dates", + "community": 22, + "norm_label": "appointment-calendar-disabled-dates.md" + }, + { + "label": "\u0646\u0645\u0627\u06cc\u0634 \u0631\u0648\u0632\u0647\u0627\u06cc \u062a\u0639\u0637\u06cc\u0644/\u063a\u06cc\u0631\u0642\u0627\u0628\u0644\u200c\u0627\u0646\u062a\u062e\u0627\u0628 \u0631\u0648\u06cc \u062a\u0642\u0648\u06cc\u0645 \u0635\u0641\u062d\u0647\u200c\u06cc \u0646\u0648\u0628\u062a + \u0627\u062d\u062a\u0631\u0627\u0645 \u0628\u0647 \u0628\u0627\u0632\u0647\u200c\u06cc \u0631\u0632\u0631\u0648", + "file_type": "document", + "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_appointment_calendar_disabled_dates_\u0646\u0645\u0627\u06cc\u0634_\u0631\u0648\u0632\u0647\u0627\u06cc_\u062a\u0639\u0637\u06cc\u0644_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0627\u0646\u062a\u062e\u0627\u0628_\u0631\u0648\u06cc_\u062a\u0642\u0648\u06cc\u0645_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a_\u0627\u062d\u062a\u0631\u0627\u0645_\u0628\u0647_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648", + "community": 22, + "norm_label": "\u0646\u0645\u0627\u06cc\u0634 \u0631\u0648\u0632\u0647\u0627\u06cc \u062a\u0639\u0637\u06cc\u0644/\u063a\u06cc\u0631\u0642\u0627\u0628\u0644\u200c\u0627\u0646\u062a\u062e\u0627\u0628 \u0631\u0648\u06cc \u062a\u0642\u0648\u06cc\u0645 \u0635\u0641\u062d\u0647\u200c\u06cc \u0646\u0648\u0628\u062a + \u0627\u062d\u062a\u0631\u0627\u0645 \u0628\u0647 \u0628\u0627\u0632\u0647\u200c\u06cc \u0631\u0632\u0631\u0648" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_appointment_calendar_disabled_dates_\u067e\u0631\u0648\u0698\u0647", + "community": 22, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", + "source_location": "L11", + "_origin": "ast", + "id": "prompt_appointment_calendar_disabled_dates_\u0632\u0645\u06cc\u0646\u0647", + "community": 22, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", + "source_location": "L15", + "_origin": "ast", + "id": "prompt_appointment_calendar_disabled_dates_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "community": 22, + "norm_label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", + "source_location": "L19", + "_origin": "ast", + "id": "prompt_appointment_calendar_disabled_dates_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 22, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", + "file_type": "document", + "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", + "source_location": "L30", + "_origin": "ast", + "id": "prompt_appointment_calendar_disabled_dates_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "community": 22, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)" + }, + { + "label": "`app/appointment/[doctorId]/page.js` \u2014 disabledDates \u062e\u0627\u0644\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", + "source_location": "L32", + "_origin": "ast", + "id": "prompt_appointment_calendar_disabled_dates_app_appointment_doctorid_page_js_disableddates_\u062e\u0627\u0644\u06cc", + "community": 22, + "norm_label": "`app/appointment/[doctorid]/page.js` \u2014 disableddates \u062e\u0627\u0644\u06cc" + }, + { + "label": "`app/component/date/datePicker/index.js` \u2014 \u0645\u0635\u0631\u0641 disabledDates", + "file_type": "document", + "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", + "source_location": "L46", + "_origin": "ast", + "id": "prompt_appointment_calendar_disabled_dates_app_component_date_datepicker_index_js_\u0645\u0635\u0631\u0641_disableddates", + "community": 22, + "norm_label": "`app/component/date/datepicker/index.js` \u2014 \u0645\u0635\u0631\u0641 disableddates" + }, + { + "label": "`services/response.js` \u2014 \u062a\u0648\u0627\u0628\u0639 slot \u0645\u0648\u062c\u0648\u062f", + "file_type": "document", + "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", + "source_location": "L64", + "_origin": "ast", + "id": "prompt_appointment_calendar_disabled_dates_services_response_js_\u062a\u0648\u0627\u0628\u0639_slot_\u0645\u0648\u062c\u0648\u062f", + "community": 22, + "norm_label": "`services/response.js` \u2014 \u062a\u0648\u0627\u0628\u0639 slot \u0645\u0648\u062c\u0648\u062f" + }, + { + "label": "\u0642\u0631\u0627\u0631\u062f\u0627\u062f endpoint \u062c\u062f\u06cc\u062f backend (\u0645\u0631\u062c\u0639)", + "file_type": "document", + "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", + "source_location": "L71", + "_origin": "ast", + "id": "prompt_appointment_calendar_disabled_dates_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_endpoint_\u062c\u062f\u06cc\u062f_backend_\u0645\u0631\u062c\u0639", + "community": 22, + "norm_label": "\u0642\u0631\u0627\u0631\u062f\u0627\u062f endpoint \u062c\u062f\u06cc\u062f backend (\u0645\u0631\u062c\u0639)" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", + "source_location": "L92", + "_origin": "ast", + "id": "prompt_appointment_calendar_disabled_dates_\u0648\u0638\u0627\u06cc\u0641", + "community": 22, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. \u0627\u0641\u0632\u0648\u062f\u0646 `getMonthAvailability` \u0628\u0647 `services/response.js`", + "file_type": "document", + "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", + "source_location": "L96", + "_origin": "ast", + "id": "prompt_appointment_calendar_disabled_dates_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_getmonthavailability_\u0628\u0647_services_response_js", + "community": 22, + "norm_label": "\u06f1. \u0627\u0641\u0632\u0648\u062f\u0646 `getmonthavailability` \u0628\u0647 `services/response.js`" + }, + { + "label": "\u06f2. \u0644\u0648\u062f \u062f\u0627\u062f\u0647\u200c\u06cc \u062f\u0631\u200c\u062f\u0633\u062a\u0631\u0633\u200c\u0628\u0648\u062f\u0646 \u062f\u0631 `DatePicker` \u0648 disable\u200c\u06a9\u0631\u062f\u0646 \u0631\u0648\u0632\u0647\u0627", + "file_type": "document", + "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", + "source_location": "L107", + "_origin": "ast", + "id": "prompt_appointment_calendar_disabled_dates_\u06f2_\u0644\u0648\u062f_\u062f\u0627\u062f\u0647_\u06cc_\u062f\u0631_\u062f\u0633\u062a\u0631\u0633_\u0628\u0648\u062f\u0646_\u062f\u0631_datepicker_\u0648_disable_\u06a9\u0631\u062f\u0646_\u0631\u0648\u0632\u0647\u0627", + "community": 22, + "norm_label": "\u06f2. \u0644\u0648\u062f \u062f\u0627\u062f\u0647\u200c\u06cc \u062f\u0631\u200c\u062f\u0633\u062a\u0631\u0633\u200c\u0628\u0648\u062f\u0646 \u062f\u0631 `datepicker` \u0648 disable\u200c\u06a9\u0631\u062f\u0646 \u0631\u0648\u0632\u0647\u0627" + }, + { + "label": "\u06f3. \u0647\u0646\u062f\u0644 \u0646\u0627\u0648\u0628\u0631\u06cc \u0645\u0627\u0647", + "file_type": "document", + "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", + "source_location": "L116", + "_origin": "ast", + "id": "prompt_appointment_calendar_disabled_dates_\u06f3_\u0647\u0646\u062f\u0644_\u0646\u0627\u0648\u0628\u0631\u06cc_\u0645\u0627\u0647", + "community": 22, + "norm_label": "\u06f3. \u0647\u0646\u062f\u0644 \u0646\u0627\u0648\u0628\u0631\u06cc \u0645\u0627\u0647" + }, + { + "label": "\u06f4. (\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc \u0648\u0644\u06cc \u062a\u0648\u0635\u06cc\u0647\u200c\u0634\u062f\u0647) \u0646\u0645\u0627\u06cc\u0634 \u0648\u0636\u0639\u06cc\u062a \u0646\u0648\u0628\u062a\u200c\u062f\u0647\u06cc \u062e\u0627\u0645\u0648\u0634", + "file_type": "document", + "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", + "source_location": "L120", + "_origin": "ast", + "id": "prompt_appointment_calendar_disabled_dates_\u06f4_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc_\u0648\u0644\u06cc_\u062a\u0648\u0635\u06cc\u0647_\u0634\u062f\u0647_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0636\u0639\u06cc\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u062e\u0627\u0645\u0648\u0634", + "community": 22, + "norm_label": "\u06f4. (\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc \u0648\u0644\u06cc \u062a\u0648\u0635\u06cc\u0647\u200c\u0634\u062f\u0647) \u0646\u0645\u0627\u06cc\u0634 \u0648\u0636\u0639\u06cc\u062a \u0646\u0648\u0628\u062a\u200c\u062f\u0647\u06cc \u062e\u0627\u0645\u0648\u0634" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", + "source_location": "L124", + "_origin": "ast", + "id": "prompt_appointment_calendar_disabled_dates_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 22, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "appointment-detail-fields-fix.md", + "file_type": "document", + "source_file": ".claude/prompt/appointment-detail-fields-fix.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_appointment_detail_fields_fix", + "community": 57, + "norm_label": "appointment-detail-fields-fix.md" + }, + { + "label": "\u0627\u0635\u0644\u0627\u062d \u0641\u06cc\u0644\u062f\u0647\u0627\u06cc \u00ab\u062c\u0632\u0626\u06cc\u0627\u062a \u0646\u0648\u0628\u062a\u00bb \u062f\u0631 \u062f\u0627\u0634\u0628\u0648\u0631\u062f", + "file_type": "document", + "source_file": ".claude/prompt/appointment-detail-fields-fix.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_appointment_detail_fields_fix_\u0627\u0635\u0644\u0627\u062d_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u062c\u0632\u0626\u06cc\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0631_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", + "community": 57, + "norm_label": "\u0627\u0635\u0644\u0627\u062d \u0641\u06cc\u0644\u062f\u0647\u0627\u06cc \u00ab\u062c\u0632\u064a\u06cc\u0627\u062a \u0646\u0648\u0628\u062a\u00bb \u062f\u0631 \u062f\u0627\u0634\u0628\u0648\u0631\u062f" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/appointment-detail-fields-fix.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_appointment_detail_fields_fix_\u067e\u0631\u0648\u0698\u0647", + "community": 57, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/appointment-detail-fields-fix.md", + "source_location": "L9", + "_origin": "ast", + "id": "prompt_appointment_detail_fields_fix_\u0632\u0645\u06cc\u0646\u0647", + "community": 57, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/appointment-detail-fields-fix.md", + "source_location": "L15", + "_origin": "ast", + "id": "prompt_appointment_detail_fields_fix_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "community": 57, + "norm_label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/appointment-detail-fields-fix.md", + "source_location": "L28", + "_origin": "ast", + "id": "prompt_appointment_detail_fields_fix_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 57, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc \u2014 \u0647\u0631 \u062f\u0648 \u0641\u0627\u06cc\u0644 \u0645\u0634\u0627\u0628\u0647)", + "file_type": "document", + "source_file": ".claude/prompt/appointment-detail-fields-fix.md", + "source_location": "L35", + "_origin": "ast", + "id": "prompt_appointment_detail_fields_fix_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_\u0647\u0631_\u062f\u0648_\u0641\u0627\u06cc\u0644_\u0645\u0634\u0627\u0628\u0647", + "community": 57, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc \u2014 \u0647\u0631 \u062f\u0648 \u0641\u0627\u06cc\u0644 \u0645\u0634\u0627\u0628\u0647)" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/appointment-detail-fields-fix.md", + "source_location": "L45", + "_origin": "ast", + "id": "prompt_appointment_detail_fields_fix_\u0648\u0638\u0627\u06cc\u0641", + "community": 57, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. \u0627\u0635\u0644\u0627\u062d `DetailLg.js`", + "file_type": "document", + "source_file": ".claude/prompt/appointment-detail-fields-fix.md", + "source_location": "L47", + "_origin": "ast", + "id": "prompt_appointment_detail_fields_fix_\u06f1_\u0627\u0635\u0644\u0627\u062d_detaillg_js", + "community": 57, + "norm_label": "\u06f1. \u0627\u0635\u0644\u0627\u062d `detaillg.js`" + }, + { + "label": "\u06f2. \u0627\u0635\u0644\u0627\u062d `DetailSm.js`", + "file_type": "document", + "source_file": ".claude/prompt/appointment-detail-fields-fix.md", + "source_location": "L54", + "_origin": "ast", + "id": "prompt_appointment_detail_fields_fix_\u06f2_\u0627\u0635\u0644\u0627\u062d_detailsm_js", + "community": 57, + "norm_label": "\u06f2. \u0627\u0635\u0644\u0627\u062d `detailsm.js`" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/appointment-detail-fields-fix.md", + "source_location": "L57", + "_origin": "ast", + "id": "prompt_appointment_detail_fields_fix_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 57, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "appointment-required-account-fields.md", + "file_type": "document", + "source_file": ".claude/prompt/appointment-required-account-fields.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_appointment_required_account_fields", + "community": 58, + "norm_label": "appointment-required-account-fields.md" + }, + { + "label": "\u0627\u062c\u0628\u0627\u0631\u06cc\u200c\u06a9\u0631\u062f\u0646 \u0641\u06cc\u0644\u062f\u0647\u0627\u06cc \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u062d\u0633\u0627\u0628 \u06a9\u0627\u0631\u0628\u0631\u06cc \u062f\u0631 \u0635\u0641\u062d\u0647 \u0646\u0648\u0628\u062a\u200c\u06af\u06cc\u0631\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/appointment-required-account-fields.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_appointment_required_account_fields_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc", + "community": 58, + "norm_label": "\u0627\u062c\u0628\u0627\u0631\u06cc\u200c\u06a9\u0631\u062f\u0646 \u0641\u06cc\u0644\u062f\u0647\u0627\u06cc \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u062d\u0633\u0627\u0628 \u06a9\u0627\u0631\u0628\u0631\u06cc \u062f\u0631 \u0635\u0641\u062d\u0647 \u0646\u0648\u0628\u062a\u200c\u06af\u06cc\u0631\u06cc" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/appointment-required-account-fields.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_appointment_required_account_fields_\u067e\u0631\u0648\u0698\u0647", + "community": 58, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/appointment-required-account-fields.md", + "source_location": "L9", + "_origin": "ast", + "id": "prompt_appointment_required_account_fields_\u0632\u0645\u06cc\u0646\u0647", + "community": 58, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/appointment-required-account-fields.md", + "source_location": "L13", + "_origin": "ast", + "id": "prompt_appointment_required_account_fields_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "community": 58, + "norm_label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/appointment-required-account-fields.md", + "source_location": "L22", + "_origin": "ast", + "id": "prompt_appointment_required_account_fields_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 58, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", + "file_type": "document", + "source_file": ".claude/prompt/appointment-required-account-fields.md", + "source_location": "L30", + "_origin": "ast", + "id": "prompt_appointment_required_account_fields_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "community": 58, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/appointment-required-account-fields.md", + "source_location": "L67", + "_origin": "ast", + "id": "prompt_appointment_required_account_fields_\u0648\u0638\u0627\u06cc\u0641", + "community": 58, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. \u062a\u0627\u0628\u0639 \u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc \u0627\u062c\u0628\u0627\u0631\u06cc \u062f\u0631 `SubmitData`", + "file_type": "document", + "source_file": ".claude/prompt/appointment-required-account-fields.md", + "source_location": "L69", + "_origin": "ast", + "id": "prompt_appointment_required_account_fields_\u06f1_\u062a\u0627\u0628\u0639_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_\u0627\u062c\u0628\u0627\u0631\u06cc_\u062f\u0631_submitdata", + "community": 58, + "norm_label": "\u06f1. \u062a\u0627\u0628\u0639 \u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc \u0627\u062c\u0628\u0627\u0631\u06cc \u062f\u0631 `submitdata`" + }, + { + "label": "\u06f2. \u0647\u0645\u0627\u0647\u0646\u06af\u06cc \u0634\u06a9\u0644 \u062f\u0627\u062f\u0647", + "file_type": "document", + "source_file": ".claude/prompt/appointment-required-account-fields.md", + "source_location": "L103", + "_origin": "ast", + "id": "prompt_appointment_required_account_fields_\u06f2_\u0647\u0645\u0627\u0647\u0646\u06af\u06cc_\u0634\u06a9\u0644_\u062f\u0627\u062f\u0647", + "community": 58, + "norm_label": "\u06f2. \u0647\u0645\u0627\u0647\u0646\u06af\u06cc \u0634\u06a9\u0644 \u062f\u0627\u062f\u0647" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/appointment-required-account-fields.md", + "source_location": "L109", + "_origin": "ast", + "id": "prompt_appointment_required_account_fields_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 58, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "birthday-picker-year-month-day.md", + "file_type": "document", + "source_file": ".claude/prompt/birthday-picker-year-month-day.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_birthday_picker_year_month_day", + "community": 59, + "norm_label": "birthday-picker-year-month-day.md" + }, + { + "label": "\u0627\u0646\u062a\u062e\u0627\u0628 \u062a\u0627\u0631\u06cc\u062e \u062a\u0648\u0644\u062f \u0628\u0647\u200c\u0635\u0648\u0631\u062a \u0645\u0631\u062d\u0644\u0647\u200c\u0627\u06cc: \u0633\u0627\u0644 \u2190 \u0645\u0627\u0647 \u2190 \u0631\u0648\u0632", + "file_type": "document", + "source_file": ".claude/prompt/birthday-picker-year-month-day.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_birthday_picker_year_month_day_\u0627\u0646\u062a\u062e\u0627\u0628_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0645\u0631\u062d\u0644\u0647_\u0627\u06cc_\u0633\u0627\u0644_\u0645\u0627\u0647_\u0631\u0648\u0632", + "community": 59, + "norm_label": "\u0627\u0646\u062a\u062e\u0627\u0628 \u062a\u0627\u0631\u06cc\u062e \u062a\u0648\u0644\u062f \u0628\u0647\u200c\u0635\u0648\u0631\u062a \u0645\u0631\u062d\u0644\u0647\u200c\u0627\u06cc: \u0633\u0627\u0644 \u2190 \u0645\u0627\u0647 \u2190 \u0631\u0648\u0632" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/birthday-picker-year-month-day.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_birthday_picker_year_month_day_\u067e\u0631\u0648\u0698\u0647", + "community": 59, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/birthday-picker-year-month-day.md", + "source_location": "L9", + "_origin": "ast", + "id": "prompt_birthday_picker_year_month_day_\u0632\u0645\u06cc\u0646\u0647", + "community": 59, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/birthday-picker-year-month-day.md", + "source_location": "L15", + "_origin": "ast", + "id": "prompt_birthday_picker_year_month_day_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "community": 59, + "norm_label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/birthday-picker-year-month-day.md", + "source_location": "L19", + "_origin": "ast", + "id": "prompt_birthday_picker_year_month_day_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 59, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", + "file_type": "document", + "source_file": ".claude/prompt/birthday-picker-year-month-day.md", + "source_location": "L29", + "_origin": "ast", + "id": "prompt_birthday_picker_year_month_day_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "community": 59, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/birthday-picker-year-month-day.md", + "source_location": "L55", + "_origin": "ast", + "id": "prompt_birthday_picker_year_month_day_\u0648\u0638\u0627\u06cc\u0641", + "community": 59, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. \u0627\u0641\u0632\u0648\u062f\u0646 \u062d\u0627\u0644\u062a \u0645\u0631\u062d\u0644\u0647\u200c\u0627\u06cc \u0628\u0647 `JalaliDatePicker`", + "file_type": "document", + "source_file": ".claude/prompt/birthday-picker-year-month-day.md", + "source_location": "L57", + "_origin": "ast", + "id": "prompt_birthday_picker_year_month_day_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_\u062d\u0627\u0644\u062a_\u0645\u0631\u062d\u0644\u0647_\u0627\u06cc_\u0628\u0647_jalalidatepicker", + "community": 59, + "norm_label": "\u06f1. \u0627\u0641\u0632\u0648\u062f\u0646 \u062d\u0627\u0644\u062a \u0645\u0631\u062d\u0644\u0647\u200c\u0627\u06cc \u0628\u0647 `jalalidatepicker`" + }, + { + "label": "\u06f2. \u0641\u0639\u0627\u0644\u200c\u06a9\u0631\u062f\u0646 \u062f\u0631 `DateBirthday.js`", + "file_type": "document", + "source_file": ".claude/prompt/birthday-picker-year-month-day.md", + "source_location": "L87", + "_origin": "ast", + "id": "prompt_birthday_picker_year_month_day_\u06f2_\u0641\u0639\u0627\u0644_\u06a9\u0631\u062f\u0646_\u062f\u0631_datebirthday_js", + "community": 59, + "norm_label": "\u06f2. \u0641\u0639\u0627\u0644\u200c\u06a9\u0631\u062f\u0646 \u062f\u0631 `datebirthday.js`" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/birthday-picker-year-month-day.md", + "source_location": "L100", + "_origin": "ast", + "id": "prompt_birthday_picker_year_month_day_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 59, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "booking-lock-patient-flow.md", + "file_type": "document", + "source_file": ".claude/prompt/booking-lock-patient-flow.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_booking_lock_patient_flow", + "community": 23, + "norm_label": "booking-lock-patient-flow.md" + }, + { + "label": "\u0641\u0644\u0648\u06cc \u0646\u0648\u0628\u062a\u200c\u06af\u06cc\u0631\u06cc: \u0642\u0641\u0644 \u0648\u0627\u0642\u0639\u06cc \u06f1\u06f5\u062f\u0642\u06cc\u0642\u0647\u200c\u0627\u06cc\u060c \u0641\u0631\u0645 \u00ab\u0646\u0648\u0628\u062a \u0628\u0631\u0627\u06cc \u0634\u062e\u0635 \u062f\u06cc\u06af\u0631\u00bb\u060c \u0648 UX \u0648\u0636\u0639\u06cc\u062a\u200c\u0645\u062d\u0648\u0631", + "file_type": "document", + "source_file": ".claude/prompt/booking-lock-patient-flow.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_booking_lock_patient_flow_\u0641\u0644\u0648\u06cc_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0642\u0641\u0644_\u0648\u0627\u0642\u0639\u06cc_\u06f1\u06f5\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0641\u0631\u0645_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u0634\u062e\u0635_\u062f\u06cc\u06af\u0631_\u0648_ux_\u0648\u0636\u0639\u06cc\u062a_\u0645\u062d\u0648\u0631", + "community": 23, + "norm_label": "\u0641\u0644\u0648\u06cc \u0646\u0648\u0628\u062a\u200c\u06af\u06cc\u0631\u06cc: \u0642\u0641\u0644 \u0648\u0627\u0642\u0639\u06cc \u06f1\u06f5\u062f\u0642\u06cc\u0642\u0647\u200c\u0627\u06cc\u060c \u0641\u0631\u0645 \u00ab\u0646\u0648\u0628\u062a \u0628\u0631\u0627\u06cc \u0634\u062e\u0635 \u062f\u06cc\u06af\u0631\u00bb\u060c \u0648 ux \u0648\u0636\u0639\u06cc\u062a\u200c\u0645\u062d\u0648\u0631" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/booking-lock-patient-flow.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_booking_lock_patient_flow_\u067e\u0631\u0648\u0698\u0647", + "community": 23, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/booking-lock-patient-flow.md", + "source_location": "L11", + "_origin": "ast", + "id": "prompt_booking_lock_patient_flow_\u0632\u0645\u06cc\u0646\u0647", + "community": 23, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/booking-lock-patient-flow.md", + "source_location": "L19", + "_origin": "ast", + "id": "prompt_booking_lock_patient_flow_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "community": 23, + "norm_label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/booking-lock-patient-flow.md", + "source_location": "L25", + "_origin": "ast", + "id": "prompt_booking_lock_patient_flow_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 23, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", + "file_type": "document", + "source_file": ".claude/prompt/booking-lock-patient-flow.md", + "source_location": "L36", + "_origin": "ast", + "id": "prompt_booking_lock_patient_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "community": 23, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)" + }, + { + "label": "`detail/index.js` \u2014 \u062f\u06a9\u0645\u0647\u200c\u06cc mock \u00ab\u0628\u0631\u0627\u06cc \u0641\u0631\u062f \u062f\u06cc\u06af\u0631\u00bb", + "file_type": "document", + "source_file": ".claude/prompt/booking-lock-patient-flow.md", + "source_location": "L38", + "_origin": "ast", + "id": "prompt_booking_lock_patient_flow_detail_index_js_\u062f\u06a9\u0645\u0647_\u06cc_mock_\u0628\u0631\u0627\u06cc_\u0641\u0631\u062f_\u062f\u06cc\u06af\u0631", + "community": 23, + "norm_label": "`detail/index.js` \u2014 \u062f\u06a9\u0645\u0647\u200c\u06cc mock \u00ab\u0628\u0631\u0627\u06cc \u0641\u0631\u062f \u062f\u06cc\u06af\u0631\u00bb" + }, + { + "label": "`SubmitData.js` \u2014 \u0628\u062f\u0646\u0647\u200c\u06cc \u0646\u0648\u0628\u062a \u0628\u062f\u0648\u0646 \u0628\u06cc\u0645\u0627\u0631", + "file_type": "document", + "source_file": ".claude/prompt/booking-lock-patient-flow.md", + "source_location": "L56", + "_origin": "ast", + "id": "prompt_booking_lock_patient_flow_submitdata_js_\u0628\u062f\u0646\u0647_\u06cc_\u0646\u0648\u0628\u062a_\u0628\u062f\u0648\u0646_\u0628\u06cc\u0645\u0627\u0631", + "community": 23, + "norm_label": "`submitdata.js` \u2014 \u0628\u062f\u0646\u0647\u200c\u06cc \u0646\u0648\u0628\u062a \u0628\u062f\u0648\u0646 \u0628\u06cc\u0645\u0627\u0631" + }, + { + "label": "`paying/index.js` \u2014 \u062a\u0627\u06cc\u0645\u0631 \u0645\u062d\u0644\u06cc \u06f6\u06f0\u06f0 \u062b\u0627\u0646\u06cc\u0647 (\u0642\u0644\u0627\u0628\u06cc)", + "file_type": "document", + "source_file": ".claude/prompt/booking-lock-patient-flow.md", + "source_location": "L70", + "_origin": "ast", + "id": "prompt_booking_lock_patient_flow_paying_index_js_\u062a\u0627\u06cc\u0645\u0631_\u0645\u062d\u0644\u06cc_\u06f6\u06f0\u06f0_\u062b\u0627\u0646\u06cc\u0647_\u0642\u0644\u0627\u0628\u06cc", + "community": 23, + "norm_label": "`paying/index.js` \u2014 \u062a\u0627\u06cc\u0645\u0631 \u0645\u062d\u0644\u06cc \u06f6\u06f0\u06f0 \u062b\u0627\u0646\u06cc\u0647 (\u0642\u0644\u0627\u0628\u06cc)" + }, + { + "label": "\u0642\u0631\u0627\u0631\u062f\u0627\u062f backend (\u0628\u0639\u062f \u0627\u0632 \u0627\u062c\u0631\u0627\u06cc \u067e\u0631\u0627\u0645\u067e\u062a \u0647\u0645\u062a\u0627)", + "file_type": "document", + "source_file": ".claude/prompt/booking-lock-patient-flow.md", + "source_location": "L81", + "_origin": "ast", + "id": "prompt_booking_lock_patient_flow_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_backend_\u0628\u0639\u062f_\u0627\u0632_\u0627\u062c\u0631\u0627\u06cc_\u067e\u0631\u0627\u0645\u067e\u062a_\u0647\u0645\u062a\u0627", + "community": 23, + "norm_label": "\u0642\u0631\u0627\u0631\u062f\u0627\u062f backend (\u0628\u0639\u062f \u0627\u0632 \u0627\u062c\u0631\u0627\u06cc \u067e\u0631\u0627\u0645\u067e\u062a \u0647\u0645\u062a\u0627)" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/booking-lock-patient-flow.md", + "source_location": "L97", + "_origin": "ast", + "id": "prompt_booking_lock_patient_flow_\u0648\u0638\u0627\u06cc\u0641", + "community": 23, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. \u0641\u0631\u0645 \u00ab\u0646\u0648\u0628\u062a \u0628\u0631\u0627\u06cc \u0634\u062e\u0635 \u062f\u06cc\u06af\u0631\u00bb (`detail/index.js` + `Form.js`)", + "file_type": "document", + "source_file": ".claude/prompt/booking-lock-patient-flow.md", + "source_location": "L99", + "_origin": "ast", + "id": "prompt_booking_lock_patient_flow_\u06f1_\u0641\u0631\u0645_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u0634\u062e\u0635_\u062f\u06cc\u06af\u0631_detail_index_js_form_js", + "community": 23, + "norm_label": "\u06f1. \u0641\u0631\u0645 \u00ab\u0646\u0648\u0628\u062a \u0628\u0631\u0627\u06cc \u0634\u062e\u0635 \u062f\u06cc\u06af\u0631\u00bb (`detail/index.js` + `form.js`)" + }, + { + "label": "\u06f2. \u0627\u0631\u0633\u0627\u0644 `patient_*` \u0648 `for_self` \u062f\u0631 `SubmitData.js`", + "file_type": "document", + "source_file": ".claude/prompt/booking-lock-patient-flow.md", + "source_location": "L106", + "_origin": "ast", + "id": "prompt_booking_lock_patient_flow_\u06f2_\u0627\u0631\u0633\u0627\u0644_patient_\u0648_for_self_\u062f\u0631_submitdata_js", + "community": 23, + "norm_label": "\u06f2. \u0627\u0631\u0633\u0627\u0644 `patient_*` \u0648 `for_self` \u062f\u0631 `submitdata.js`" + }, + { + "label": "\u06f3. \u062a\u0627\u06cc\u0645\u0631 \u067e\u0631\u062f\u0627\u062e\u062a \u0628\u0631 \u0645\u0628\u0646\u0627\u06cc `expires_at` (`paying/index.js`)", + "file_type": "document", + "source_file": ".claude/prompt/booking-lock-patient-flow.md", + "source_location": "L132", + "_origin": "ast", + "id": "prompt_booking_lock_patient_flow_\u06f3_\u062a\u0627\u06cc\u0645\u0631_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0631_\u0645\u0628\u0646\u0627\u06cc_expires_at_paying_index_js", + "community": 23, + "norm_label": "\u06f3. \u062a\u0627\u06cc\u0645\u0631 \u067e\u0631\u062f\u0627\u062e\u062a \u0628\u0631 \u0645\u0628\u0646\u0627\u06cc `expires_at` (`paying/index.js`)" + }, + { + "label": "\u06f4. UX \u0646\u0647\u0627\u06cc\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/booking-lock-patient-flow.md", + "source_location": "L148", + "_origin": "ast", + "id": "prompt_booking_lock_patient_flow_\u06f4_ux_\u0646\u0647\u0627\u06cc\u06cc", + "community": 23, + "norm_label": "\u06f4. ux \u0646\u0647\u0627\u06cc\u06cc" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/booking-lock-patient-flow.md", + "source_location": "L153", + "_origin": "ast", + "id": "prompt_booking_lock_patient_flow_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 23, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "booking-send-representation.md", + "file_type": "document", + "source_file": ".claude/prompt/booking-send-representation.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_booking_send_representation", + "community": 60, + "norm_label": "booking-send-representation.md" + }, + { + "label": "\u0627\u0631\u0633\u0627\u0644 city_id \u062f\u0627\u0645\u0646\u0647\u200c\u06cc \u062c\u0627\u0631\u06cc \u0647\u0646\u06af\u0627\u0645 \u0631\u0632\u0631\u0648 \u0646\u0648\u0628\u062a", + "file_type": "document", + "source_file": ".claude/prompt/booking-send-representation.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_booking_send_representation_\u0627\u0631\u0633\u0627\u0644_city_id_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u062c\u0627\u0631\u06cc_\u0647\u0646\u06af\u0627\u0645_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", + "community": 60, + "norm_label": "\u0627\u0631\u0633\u0627\u0644 city_id \u062f\u0627\u0645\u0646\u0647\u200c\u06cc \u062c\u0627\u0631\u06cc \u0647\u0646\u06af\u0627\u0645 \u0631\u0632\u0631\u0648 \u0646\u0648\u0628\u062a" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/booking-send-representation.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_booking_send_representation_\u067e\u0631\u0648\u0698\u0647", + "community": 60, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/booking-send-representation.md", + "source_location": "L7", + "_origin": "ast", + "id": "prompt_booking_send_representation_\u0632\u0645\u06cc\u0646\u0647", + "community": 60, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/booking-send-representation.md", + "source_location": "L13", + "_origin": "ast", + "id": "prompt_booking_send_representation_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "community": 60, + "norm_label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/booking-send-representation.md", + "source_location": "L17", + "_origin": "ast", + "id": "prompt_booking_send_representation_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 60, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/booking-send-representation.md", + "source_location": "L27", + "_origin": "ast", + "id": "prompt_booking_send_representation_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "community": 60, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/booking-send-representation.md", + "source_location": "L46", + "_origin": "ast", + "id": "prompt_booking_send_representation_\u0648\u0638\u0627\u06cc\u0641", + "community": 60, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. \u062f\u0631 \u062f\u0633\u062a\u0631\u0633 \u0642\u0631\u0627\u0631 \u062f\u0627\u062f\u0646 city.id \u062f\u0631 \u06a9\u0644\u0627\u06cc\u0646\u062a", + "file_type": "document", + "source_file": ".claude/prompt/booking-send-representation.md", + "source_location": "L48", + "_origin": "ast", + "id": "prompt_booking_send_representation_\u06f1_\u062f\u0631_\u062f\u0633\u062a\u0631\u0633_\u0642\u0631\u0627\u0631_\u062f\u0627\u062f\u0646_city_id_\u062f\u0631_\u06a9\u0644\u0627\u06cc\u0646\u062a", + "community": 60, + "norm_label": "\u06f1. \u062f\u0631 \u062f\u0633\u062a\u0631\u0633 \u0642\u0631\u0627\u0631 \u062f\u0627\u062f\u0646 city.id \u062f\u0631 \u06a9\u0644\u0627\u06cc\u0646\u062a" + }, + { + "label": "\u06f2. \u0627\u0641\u0632\u0648\u062f\u0646 city_id \u0628\u0647 payload \u0631\u0632\u0631\u0648", + "file_type": "document", + "source_file": ".claude/prompt/booking-send-representation.md", + "source_location": "L52", + "_origin": "ast", + "id": "prompt_booking_send_representation_\u06f2_\u0627\u0641\u0632\u0648\u062f\u0646_city_id_\u0628\u0647_payload_\u0631\u0632\u0631\u0648", + "community": 60, + "norm_label": "\u06f2. \u0627\u0641\u0632\u0648\u062f\u0646 city_id \u0628\u0647 payload \u0631\u0632\u0631\u0648" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/booking-send-representation.md", + "source_location": "L73", + "_origin": "ast", + "id": "prompt_booking_send_representation_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 60, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "city-seo-optimization.md", + "file_type": "document", + "source_file": ".claude/prompt/city-seo-optimization.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_city_seo_optimization", + "community": 18, + "norm_label": "city-seo-optimization.md" + }, + { + "label": "\u0628\u0647\u06cc\u0646\u0647\u200c\u0633\u0627\u0632\u06cc SEO \u062a\u06a9\u200c\u062a\u06a9 \u0634\u0647\u0631\u0647\u0627 \u062f\u0631 city.json (\u0633\u0637\u062d \u062d\u0631\u0641\u0647\u200c\u0627\u06cc)", + "file_type": "document", + "source_file": ".claude/prompt/city-seo-optimization.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_city_seo_optimization_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u062a\u06a9_\u062a\u06a9_\u0634\u0647\u0631\u0647\u0627_\u062f\u0631_city_json_\u0633\u0637\u062d_\u062d\u0631\u0641\u0647_\u0627\u06cc", + "community": 18, + "norm_label": "\u0628\u0647\u06cc\u0646\u0647\u200c\u0633\u0627\u0632\u06cc seo \u062a\u06a9\u200c\u062a\u06a9 \u0634\u0647\u0631\u0647\u0627 \u062f\u0631 city.json (\u0633\u0637\u062d \u062d\u0631\u0641\u0647\u200c\u0627\u06cc)" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/city-seo-optimization.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_city_seo_optimization_\u067e\u0631\u0648\u0698\u0647", + "community": 18, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0646\u0642\u0634", + "file_type": "document", + "source_file": ".claude/prompt/city-seo-optimization.md", + "source_location": "L7", + "_origin": "ast", + "id": "prompt_city_seo_optimization_\u0646\u0642\u0634", + "community": 18, + "norm_label": "\u0646\u0642\u0634" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/city-seo-optimization.md", + "source_location": "L11", + "_origin": "ast", + "id": "prompt_city_seo_optimization_\u0632\u0645\u06cc\u0646\u0647", + "community": 18, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/city-seo-optimization.md", + "source_location": "L17", + "_origin": "ast", + "id": "prompt_city_seo_optimization_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "community": 18, + "norm_label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/city-seo-optimization.md", + "source_location": "L26", + "_origin": "ast", + "id": "prompt_city_seo_optimization_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 18, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/city-seo-optimization.md", + "source_location": "L33", + "_origin": "ast", + "id": "prompt_city_seo_optimization_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "community": 18, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc" + }, + { + "label": "\u0641\u0647\u0631\u0633\u062a \u06f3\u06f4 \u0631\u06a9\u0648\u0631\u062f (\u0647\u0645\u0647 \u0628\u0627\u06cc\u062f \u067e\u0631\u062f\u0627\u0632\u0634 \u0634\u0648\u0646\u062f)", + "file_type": "document", + "source_file": ".claude/prompt/city-seo-optimization.md", + "source_location": "L61", + "_origin": "ast", + "id": "prompt_city_seo_optimization_\u0641\u0647\u0631\u0633\u062a_\u06f3\u06f4_\u0631\u06a9\u0648\u0631\u062f_\u0647\u0645\u0647_\u0628\u0627\u06cc\u062f_\u067e\u0631\u062f\u0627\u0632\u0634_\u0634\u0648\u0646\u062f", + "community": 18, + "norm_label": "\u0641\u0647\u0631\u0633\u062a \u06f3\u06f4 \u0631\u06a9\u0648\u0631\u062f (\u0647\u0645\u0647 \u0628\u0627\u06cc\u062f \u067e\u0631\u062f\u0627\u0632\u0634 \u0634\u0648\u0646\u062f)" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/city-seo-optimization.md", + "source_location": "L100", + "_origin": "ast", + "id": "prompt_city_seo_optimization_\u0648\u0638\u0627\u06cc\u0641", + "community": 18, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. \u0627\u0641\u0632\u0648\u062f\u0646 \u0641\u06cc\u0644\u062f `title` \u06cc\u06a9\u062a\u0627 \u0628\u0647 \u0647\u0631 \u0631\u06a9\u0648\u0631\u062f (\u0645\u0647\u0645\u200c\u062a\u0631\u06cc\u0646)", + "file_type": "document", + "source_file": ".claude/prompt/city-seo-optimization.md", + "source_location": "L102", + "_origin": "ast", + "id": "prompt_city_seo_optimization_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_\u0641\u06cc\u0644\u062f_title_\u06cc\u06a9\u062a\u0627_\u0628\u0647_\u0647\u0631_\u0631\u06a9\u0648\u0631\u062f_\u0645\u0647\u0645_\u062a\u0631\u06cc\u0646", + "community": 18, + "norm_label": "\u06f1. \u0627\u0641\u0632\u0648\u062f\u0646 \u0641\u06cc\u0644\u062f `title` \u06cc\u06a9\u062a\u0627 \u0628\u0647 \u0647\u0631 \u0631\u06a9\u0648\u0631\u062f (\u0645\u0647\u0645\u200c\u062a\u0631\u06cc\u0646)" + }, + { + "label": "\u06f2. \u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc `description` (\u0645\u062a\u0627 \u062f\u06cc\u0633\u06a9\u0631\u06cc\u067e\u0634\u0646)", + "file_type": "document", + "source_file": ".claude/prompt/city-seo-optimization.md", + "source_location": "L119", + "_origin": "ast", + "id": "prompt_city_seo_optimization_\u06f2_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_description_\u0645\u062a\u0627_\u062f\u06cc\u0633\u06a9\u0631\u06cc\u067e\u0634\u0646", + "community": 18, + "norm_label": "\u06f2. \u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc `description` (\u0645\u062a\u0627 \u062f\u06cc\u0633\u06a9\u0631\u06cc\u067e\u0634\u0646)" + }, + { + "label": "\u06f3. \u0628\u0647\u06cc\u0646\u0647\u200c\u0633\u0627\u0632\u06cc `keywords`", + "file_type": "document", + "source_file": ".claude/prompt/city-seo-optimization.md", + "source_location": "L134", + "_origin": "ast", + "id": "prompt_city_seo_optimization_\u06f3_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_keywords", + "community": 18, + "norm_label": "\u06f3. \u0628\u0647\u06cc\u0646\u0647\u200c\u0633\u0627\u0632\u06cc `keywords`" + }, + { + "label": "\u06f4. \u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc `slogan` \u06cc\u06a9\u062a\u0627", + "file_type": "document", + "source_file": ".claude/prompt/city-seo-optimization.md", + "source_location": "L140", + "_origin": "ast", + "id": "prompt_city_seo_optimization_\u06f4_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_slogan_\u06cc\u06a9\u062a\u0627", + "community": 18, + "norm_label": "\u06f4. \u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc `slogan` \u06cc\u06a9\u062a\u0627" + }, + { + "label": "\u06f5. \u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc `footer_description` \u06cc\u06a9\u062a\u0627", + "file_type": "document", + "source_file": ".claude/prompt/city-seo-optimization.md", + "source_location": "L145", + "_origin": "ast", + "id": "prompt_city_seo_optimization_\u06f5_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_footer_description_\u06cc\u06a9\u062a\u0627", + "community": 18, + "norm_label": "\u06f5. \u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc `footer_description` \u06cc\u06a9\u062a\u0627" + }, + { + "label": "\u06f6. (\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc\u060c \u0627\u06af\u0631 \u06a9\u0627\u0631\u0628\u0631 \u062e\u0648\u0627\u0633\u062a) \u0628\u0647\u0628\u0648\u062f \u0641\u0646\u06cc \u062f\u0631 `layout.js`", + "file_type": "document", + "source_file": ".claude/prompt/city-seo-optimization.md", + "source_location": "L150", + "_origin": "ast", + "id": "prompt_city_seo_optimization_\u06f6_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc_\u0627\u06af\u0631_\u06a9\u0627\u0631\u0628\u0631_\u062e\u0648\u0627\u0633\u062a_\u0628\u0647\u0628\u0648\u062f_\u0641\u0646\u06cc_\u062f\u0631_layout_js", + "community": 18, + "norm_label": "\u06f6. (\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc\u060c \u0627\u06af\u0631 \u06a9\u0627\u0631\u0628\u0631 \u062e\u0648\u0627\u0633\u062a) \u0628\u0647\u0628\u0648\u062f \u0641\u0646\u06cc \u062f\u0631 `layout.js`" + }, + { + "label": "\u06f7. \u0631\u06a9\u0648\u0631\u062f \u0628\u0631\u0646\u062f \u0627\u0635\u0644\u06cc (`id: 600`)", + "file_type": "document", + "source_file": ".claude/prompt/city-seo-optimization.md", + "source_location": "L156", + "_origin": "ast", + "id": "prompt_city_seo_optimization_\u06f7_\u0631\u06a9\u0648\u0631\u062f_\u0628\u0631\u0646\u062f_\u0627\u0635\u0644\u06cc_id_600", + "community": 18, + "norm_label": "\u06f7. \u0631\u06a9\u0648\u0631\u062f \u0628\u0631\u0646\u062f \u0627\u0635\u0644\u06cc (`id: 600`)" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/city-seo-optimization.md", + "source_location": "L160", + "_origin": "ast", + "id": "prompt_city_seo_optimization_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 18, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "clinic-seo-schema-knowledge-panel.md", + "file_type": "document", + "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_clinic_seo_schema_knowledge_panel", + "community": 47, + "norm_label": "clinic-seo-schema-knowledge-panel.md" + }, + { + "label": "Schema.org \u06a9\u0627\u0645\u0644 \u0648 Knowledge Panel \u0628\u0631\u0627\u06cc \u0635\u0641\u062d\u0647 \u06a9\u0644\u06cc\u0646\u06cc\u06a9", + "file_type": "document", + "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_clinic_seo_schema_knowledge_panel_schema_org_\u06a9\u0627\u0645\u0644_\u0648_knowledge_panel_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", + "community": 47, + "norm_label": "schema.org \u06a9\u0627\u0645\u0644 \u0648 knowledge panel \u0628\u0631\u0627\u06cc \u0635\u0641\u062d\u0647 \u06a9\u0644\u06cc\u0646\u06cc\u06a9" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_clinic_seo_schema_knowledge_panel_\u067e\u0631\u0648\u0698\u0647", + "community": 47, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", + "source_location": "L7", + "_origin": "ast", + "id": "prompt_clinic_seo_schema_knowledge_panel_\u0632\u0645\u06cc\u0646\u0647", + "community": 47, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", + "source_location": "L13", + "_origin": "ast", + "id": "prompt_clinic_seo_schema_knowledge_panel_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "community": 47, + "norm_label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", + "source_location": "L38", + "_origin": "ast", + "id": "prompt_clinic_seo_schema_knowledge_panel_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 47, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc API \u06a9\u0644\u06cc\u0646\u06cc\u06a9", + "file_type": "document", + "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", + "source_location": "L46", + "_origin": "ast", + "id": "prompt_clinic_seo_schema_knowledge_panel_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_api_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", + "community": 47, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc api \u06a9\u0644\u06cc\u0646\u06cc\u06a9" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", + "source_location": "L85", + "_origin": "ast", + "id": "prompt_clinic_seo_schema_knowledge_panel_\u0648\u0638\u0627\u06cc\u0641", + "community": 47, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. \u0628\u0647\u0628\u0648\u062f `generateMetadata`", + "file_type": "document", + "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", + "source_location": "L87", + "_origin": "ast", + "id": "prompt_clinic_seo_schema_knowledge_panel_\u06f1_\u0628\u0647\u0628\u0648\u062f_generatemetadata", + "community": 47, + "norm_label": "\u06f1. \u0628\u0647\u0628\u0648\u062f `generatemetadata`" + }, + { + "label": "\u06f2. \u062a\u0627\u0628\u0639 \u06a9\u0645\u06a9\u06cc `computeClinicRating`", + "file_type": "document", + "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", + "source_location": "L114", + "_origin": "ast", + "id": "prompt_clinic_seo_schema_knowledge_panel_\u06f2_\u062a\u0627\u0628\u0639_\u06a9\u0645\u06a9\u06cc_computeclinicrating", + "community": 47, + "norm_label": "\u06f2. \u062a\u0627\u0628\u0639 \u06a9\u0645\u06a9\u06cc `computeclinicrating`" + }, + { + "label": "\u06f3. \u0633\u0627\u062e\u062a JSON-LD \u06a9\u0627\u0645\u0644", + "file_type": "document", + "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", + "source_location": "L133", + "_origin": "ast", + "id": "prompt_clinic_seo_schema_knowledge_panel_\u06f3_\u0633\u0627\u062e\u062a_json_ld_\u06a9\u0627\u0645\u0644", + "community": 47, + "norm_label": "\u06f3. \u0633\u0627\u062e\u062a json-ld \u06a9\u0627\u0645\u0644" + }, + { + "label": "\u06f4. \u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc Breadcrumb", + "file_type": "document", + "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", + "source_location": "L217", + "_origin": "ast", + "id": "prompt_clinic_seo_schema_knowledge_panel_\u06f4_\u0628\u0647_\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc_breadcrumb", + "community": 47, + "norm_label": "\u06f4. \u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc breadcrumb" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", + "source_location": "L250", + "_origin": "ast", + "id": "prompt_clinic_seo_schema_knowledge_panel_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 47, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "connect-panel-dashboard-to-api.md", + "file_type": "document", + "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_connect_panel_dashboard_to_api", + "community": 24, + "norm_label": "connect-panel-dashboard-to-api.md" + }, + { + "label": "\u0627\u062a\u0635\u0627\u0644 \u067e\u0646\u0644 \u0646\u0645\u0627\u06cc\u0646\u062f\u0647 \u0648 \u062f\u0627\u0634\u0628\u0648\u0631\u062f \u06a9\u0627\u0631\u0628\u0631 \u0628\u0647 API \u0648\u0627\u0642\u0639\u06cc (\u062d\u0630\u0641 \u062f\u0627\u062f\u0647\u200c\u0647\u0627\u06cc mock)", + "file_type": "document", + "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_connect_panel_dashboard_to_api_\u0627\u062a\u0635\u0627\u0644_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0648_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_api_\u0648\u0627\u0642\u0639\u06cc_\u062d\u0630\u0641_\u062f\u0627\u062f\u0647_\u0647\u0627\u06cc_mock", + "community": 24, + "norm_label": "\u0627\u062a\u0635\u0627\u0644 \u067e\u0646\u0644 \u0646\u0645\u0627\u06cc\u0646\u062f\u0647 \u0648 \u062f\u0627\u0634\u0628\u0648\u0631\u062f \u06a9\u0627\u0631\u0628\u0631 \u0628\u0647 api \u0648\u0627\u0642\u0639\u06cc (\u062d\u0630\u0641 \u062f\u0627\u062f\u0647\u200c\u0647\u0627\u06cc mock)" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_connect_panel_dashboard_to_api_\u067e\u0631\u0648\u0698\u0647", + "community": 24, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", + "source_location": "L7", + "_origin": "ast", + "id": "prompt_connect_panel_dashboard_to_api_\u0632\u0645\u06cc\u0646\u0647", + "community": 24, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", + "source_location": "L16", + "_origin": "ast", + "id": "prompt_connect_panel_dashboard_to_api_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "community": 24, + "norm_label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", + "source_location": "L22", + "_origin": "ast", + "id": "prompt_connect_panel_dashboard_to_api_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 24, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", + "source_location": "L40", + "_origin": "ast", + "id": "prompt_connect_panel_dashboard_to_api_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "community": 24, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc" + }, + { + "label": "\u067e\u0646\u0644: \u062f\u0627\u062f\u0647\u200c\u06cc \u0648\u0627\u0642\u0639\u06cc \u0645\u0648\u062c\u0648\u062f \u0627\u0633\u062a \u0648\u0644\u06cc \u0646\u0627\u062f\u06cc\u062f\u0647 \u06af\u0631\u0641\u062a\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f", + "file_type": "document", + "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", + "source_location": "L42", + "_origin": "ast", + "id": "prompt_connect_panel_dashboard_to_api_\u067e\u0646\u0644_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u0645\u0648\u062c\u0648\u062f_\u0627\u0633\u062a_\u0648\u0644\u06cc_\u0646\u0627\u062f\u06cc\u062f\u0647_\u06af\u0631\u0641\u062a\u0647_\u0645\u06cc_\u0634\u0648\u062f", + "community": 24, + "norm_label": "\u067e\u0646\u0644: \u062f\u0627\u062f\u0647\u200c\u06cc \u0648\u0627\u0642\u0639\u06cc \u0645\u0648\u062c\u0648\u062f \u0627\u0633\u062a \u0648\u0644\u06cc \u0646\u0627\u062f\u06cc\u062f\u0647 \u06af\u0631\u0641\u062a\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f" + }, + { + "label": "\u062f\u0627\u0634\u0628\u0648\u0631\u062f \u06a9\u0627\u0631\u0628\u0631: \u06a9\u0627\u0645\u0644\u0627\u064b mock", + "file_type": "document", + "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", + "source_location": "L76", + "_origin": "ast", + "id": "prompt_connect_panel_dashboard_to_api_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u06a9\u0627\u0645\u0644\u0627_mock", + "community": 24, + "norm_label": "\u062f\u0627\u0634\u0628\u0648\u0631\u062f \u06a9\u0627\u0631\u0628\u0631: \u06a9\u0627\u0645\u0644\u0627 mock" + }, + { + "label": "\u0644\u0627\u06cc\u0647\u200c\u06cc API \u0645\u0648\u062c\u0648\u062f (\u062f\u0631 `services/response.js`)", + "file_type": "document", + "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", + "source_location": "L88", + "_origin": "ast", + "id": "prompt_connect_panel_dashboard_to_api_\u0644\u0627\u06cc\u0647_\u06cc_api_\u0645\u0648\u062c\u0648\u062f_\u062f\u0631_services_response_js", + "community": 24, + "norm_label": "\u0644\u0627\u06cc\u0647\u200c\u06cc api \u0645\u0648\u062c\u0648\u062f (\u062f\u0631 `services/response.js`)" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", + "source_location": "L101", + "_origin": "ast", + "id": "prompt_connect_panel_dashboard_to_api_\u0648\u0638\u0627\u06cc\u0641", + "community": 24, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. \u0627\u0641\u0632\u0648\u062f\u0646 \u062a\u0648\u0627\u0628\u0639 representation dashboard \u0628\u0647 `services/response.js`", + "file_type": "document", + "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", + "source_location": "L105", + "_origin": "ast", + "id": "prompt_connect_panel_dashboard_to_api_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_\u062a\u0648\u0627\u0628\u0639_representation_dashboard_\u0628\u0647_services_response_js", + "community": 24, + "norm_label": "\u06f1. \u0627\u0641\u0632\u0648\u062f\u0646 \u062a\u0648\u0627\u0628\u0639 representation dashboard \u0628\u0647 `services/response.js`" + }, + { + "label": "\u06f2. \u0648\u0635\u0644\u200c\u06a9\u0631\u062f\u0646 Header \u0648 UserDetail \u067e\u0646\u0644 \u0628\u0647 `representationInfo`", + "file_type": "document", + "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", + "source_location": "L124", + "_origin": "ast", + "id": "prompt_connect_panel_dashboard_to_api_\u06f2_\u0648\u0635\u0644_\u06a9\u0631\u062f\u0646_header_\u0648_userdetail_\u067e\u0646\u0644_\u0628\u0647_representationinfo", + "community": 24, + "norm_label": "\u06f2. \u0648\u0635\u0644\u200c\u06a9\u0631\u062f\u0646 header \u0648 userdetail \u067e\u0646\u0644 \u0628\u0647 `representationinfo`" + }, + { + "label": "\u06f3. \u0635\u0641\u062d\u0647\u200c\u06cc dashboard \u067e\u0646\u0644 \u0628\u0627 \u062f\u0627\u062f\u0647\u200c\u06cc \u0648\u0627\u0642\u0639\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", + "source_location": "L131", + "_origin": "ast", + "id": "prompt_connect_panel_dashboard_to_api_\u06f3_\u0635\u0641\u062d\u0647_\u06cc_dashboard_\u067e\u0646\u0644_\u0628\u0627_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc", + "community": 24, + "norm_label": "\u06f3. \u0635\u0641\u062d\u0647\u200c\u06cc dashboard \u067e\u0646\u0644 \u0628\u0627 \u062f\u0627\u062f\u0647\u200c\u06cc \u0648\u0627\u0642\u0639\u06cc" + }, + { + "label": "\u06f4. \u0635\u0641\u062d\u0627\u062a turns \u0648 user-account \u0648 add-doctor \u067e\u0646\u0644", + "file_type": "document", + "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", + "source_location": "L139", + "_origin": "ast", + "id": "prompt_connect_panel_dashboard_to_api_\u06f4_\u0635\u0641\u062d\u0627\u062a_turns_\u0648_user_account_\u0648_add_doctor_\u067e\u0646\u0644", + "community": 24, + "norm_label": "\u06f4. \u0635\u0641\u062d\u0627\u062a turns \u0648 user-account \u0648 add-doctor \u067e\u0646\u0644" + }, + { + "label": "\u06f5. \u062f\u0627\u0634\u0628\u0648\u0631\u062f/\u062d\u0633\u0627\u0628 \u06a9\u0627\u0631\u0628\u0631\u06cc \u0628\u06cc\u0645\u0627\u0631 \u0628\u0627 \u062f\u0627\u062f\u0647\u200c\u06cc \u0648\u0627\u0642\u0639\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", + "source_location": "L145", + "_origin": "ast", + "id": "prompt_connect_panel_dashboard_to_api_\u06f5_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u0628\u06cc\u0645\u0627\u0631_\u0628\u0627_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc", + "community": 24, + "norm_label": "\u06f5. \u062f\u0627\u0634\u0628\u0648\u0631\u062f/\u062d\u0633\u0627\u0628 \u06a9\u0627\u0631\u0628\u0631\u06cc \u0628\u06cc\u0645\u0627\u0631 \u0628\u0627 \u062f\u0627\u062f\u0647\u200c\u06cc \u0648\u0627\u0642\u0639\u06cc" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", + "source_location": "L154", + "_origin": "ast", + "id": "prompt_connect_panel_dashboard_to_api_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 24, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "currency-toman-display-front.md", + "file_type": "document", + "source_file": ".claude/prompt/currency-toman-display-front.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_currency_toman_display_front", + "community": 25, + "norm_label": "currency-toman-display-front.md" + }, + { + "label": "\u0648\u0627\u062d\u062f \u067e\u0648\u0644 = \u062a\u0648\u0645\u0627\u0646 \u062f\u0631 \u0633\u0627\u06cc\u062a \u0639\u0645\u0648\u0645\u06cc (\u0646\u0645\u0627\u06cc\u0634 \u00f7\u06f1\u06f0 / \u0648\u0631\u0648\u062f\u06cc \u00d7\u06f1\u06f0) \u2014 API \u0631\u06cc\u0627\u0644 \u0645\u06cc\u200c\u0645\u0627\u0646\u062f", + "file_type": "document", + "source_file": ".claude/prompt/currency-toman-display-front.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_currency_toman_display_front_\u0648\u0627\u062d\u062f_\u067e\u0648\u0644_\u062a\u0648\u0645\u0627\u0646_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0646\u0645\u0627\u06cc\u0634_\u06f1\u06f0_\u0648\u0631\u0648\u062f\u06cc_\u06f1\u06f0_api_\u0631\u06cc\u0627\u0644_\u0645\u06cc_\u0645\u0627\u0646\u062f", + "community": 25, + "norm_label": "\u0648\u0627\u062d\u062f \u067e\u0648\u0644 = \u062a\u0648\u0645\u0627\u0646 \u062f\u0631 \u0633\u0627\u06cc\u062a \u0639\u0645\u0648\u0645\u06cc (\u0646\u0645\u0627\u06cc\u0634 \u00f7\u06f1\u06f0 / \u0648\u0631\u0648\u062f\u06cc \u00d7\u06f1\u06f0) \u2014 api \u0631\u06cc\u0627\u0644 \u0645\u06cc\u200c\u0645\u0627\u0646\u062f" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/currency-toman-display-front.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_currency_toman_display_front_\u067e\u0631\u0648\u0698\u0647", + "community": 25, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/currency-toman-display-front.md", + "source_location": "L7", + "_origin": "ast", + "id": "prompt_currency_toman_display_front_\u0632\u0645\u06cc\u0646\u0647", + "community": 25, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/currency-toman-display-front.md", + "source_location": "L13", + "_origin": "ast", + "id": "prompt_currency_toman_display_front_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "community": 25, + "norm_label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/currency-toman-display-front.md", + "source_location": "L17", + "_origin": "ast", + "id": "prompt_currency_toman_display_front_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 25, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/currency-toman-display-front.md", + "source_location": "L31", + "_origin": "ast", + "id": "prompt_currency_toman_display_front_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "community": 25, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc" + }, + { + "label": "`components/appointment/paying/index.js`", + "file_type": "document", + "source_file": ".claude/prompt/currency-toman-display-front.md", + "source_location": "L33", + "_origin": "ast", + "id": "prompt_currency_toman_display_front_components_appointment_paying_index_js", + "community": 25, + "norm_label": "`components/appointment/paying/index.js`" + }, + { + "label": "`app/dashboard/page.js` (\u062a\u0628\u062f\u06cc\u0644 \u062f\u0633\u062a\u06cc \u0646\u0627\u0647\u0645\u0627\u0647\u0646\u06af)", + "file_type": "document", + "source_file": ".claude/prompt/currency-toman-display-front.md", + "source_location": "L45", + "_origin": "ast", + "id": "prompt_currency_toman_display_front_app_dashboard_page_js_\u062a\u0628\u062f\u06cc\u0644_\u062f\u0633\u062a\u06cc_\u0646\u0627\u0647\u0645\u0627\u0647\u0646\u06af", + "community": 25, + "norm_label": "`app/dashboard/page.js` (\u062a\u0628\u062f\u06cc\u0644 \u062f\u0633\u062a\u06cc \u0646\u0627\u0647\u0645\u0627\u0647\u0646\u06af)" + }, + { + "label": "`app/payment/[uuid]/page.js`", + "file_type": "document", + "source_file": ".claude/prompt/currency-toman-display-front.md", + "source_location": "L50", + "_origin": "ast", + "id": "prompt_currency_toman_display_front_app_payment_uuid_page_js", + "community": 25, + "norm_label": "`app/payment/[uuid]/page.js`" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/currency-toman-display-front.md", + "source_location": "L55", + "_origin": "ast", + "id": "prompt_currency_toman_display_front_\u0648\u0638\u0627\u06cc\u0641", + "community": 25, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. helper \u0645\u0631\u06a9\u0632\u06cc `lib/money.js`", + "file_type": "document", + "source_file": ".claude/prompt/currency-toman-display-front.md", + "source_location": "L57", + "_origin": "ast", + "id": "prompt_currency_toman_display_front_\u06f1_helper_\u0645\u0631\u06a9\u0632\u06cc_lib_money_js", + "community": 25, + "norm_label": "\u06f1. helper \u0645\u0631\u06a9\u0632\u06cc `lib/money.js`" + }, + { + "label": "\u06f2. `paying/index.js`", + "file_type": "document", + "source_file": ".claude/prompt/currency-toman-display-front.md", + "source_location": "L67", + "_origin": "ast", + "id": "prompt_currency_toman_display_front_\u06f2_paying_index_js", + "community": 25, + "norm_label": "\u06f2. `paying/index.js`" + }, + { + "label": "\u06f3. \u062a\u0631\u0627\u06a9\u0646\u0634\u200c\u0647\u0627 \u0648 \u0645\u0648\u062c\u0648\u062f\u06cc \u062f\u0627\u0634\u0628\u0648\u0631\u062f", + "file_type": "document", + "source_file": ".claude/prompt/currency-toman-display-front.md", + "source_location": "L73", + "_origin": "ast", + "id": "prompt_currency_toman_display_front_\u06f3_\u062a\u0631\u0627\u06a9\u0646\u0634_\u0647\u0627_\u0648_\u0645\u0648\u062c\u0648\u062f\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", + "community": 25, + "norm_label": "\u06f3. \u062a\u0631\u0627\u06a9\u0646\u0634\u200c\u0647\u0627 \u0648 \u0645\u0648\u062c\u0648\u062f\u06cc \u062f\u0627\u0634\u0628\u0648\u0631\u062f" + }, + { + "label": "\u06f4. \u0635\u0641\u062d\u0647\u0654 \u0646\u062a\u06cc\u062c\u0647\u0654 \u067e\u0631\u062f\u0627\u062e\u062a", + "file_type": "document", + "source_file": ".claude/prompt/currency-toman-display-front.md", + "source_location": "L79", + "_origin": "ast", + "id": "prompt_currency_toman_display_front_\u06f4_\u0635\u0641\u062d\u0647_\u0646\u062a\u06cc\u062c\u0647_\u067e\u0631\u062f\u0627\u062e\u062a", + "community": 25, + "norm_label": "\u06f4. \u0635\u0641\u062d\u0647 \u0646\u062a\u06cc\u062c\u0647 \u067e\u0631\u062f\u0627\u062e\u062a" + }, + { + "label": "\u06f5. \u062c\u0633\u062a\u062c\u0648\u06cc \u0628\u0627\u0642\u06cc\u200c\u0645\u0627\u0646\u062f\u0647\u0654 \u00ab\u0631\u06cc\u0627\u0644\u00bb", + "file_type": "document", + "source_file": ".claude/prompt/currency-toman-display-front.md", + "source_location": "L83", + "_origin": "ast", + "id": "prompt_currency_toman_display_front_\u06f5_\u062c\u0633\u062a\u062c\u0648\u06cc_\u0628\u0627\u0642\u06cc_\u0645\u0627\u0646\u062f\u0647_\u0631\u06cc\u0627\u0644", + "community": 25, + "norm_label": "\u06f5. \u062c\u0633\u062a\u062c\u0648\u06cc \u0628\u0627\u0642\u06cc\u200c\u0645\u0627\u0646\u062f\u0647 \u00ab\u0631\u06cc\u0627\u0644\u00bb" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/currency-toman-display-front.md", + "source_location": "L87", + "_origin": "ast", + "id": "prompt_currency_toman_display_front_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 25, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "dashboard-tabs-real-data.md", + "file_type": "document", + "source_file": ".claude/prompt/dashboard-tabs-real-data.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_dashboard_tabs_real_data", + "community": 30, + "norm_label": "dashboard-tabs-real-data.md" + }, + { + "label": "\u0627\u062a\u0635\u0627\u0644 \u062f\u0642\u06cc\u0642 \u0647\u0645\u0647\u200c\u06cc \u062a\u0628\u200c\u0647\u0627\u06cc \u062f\u0627\u0634\u0628\u0648\u0631\u062f \u06a9\u0627\u0631\u0628\u0631 \u0628\u0647 \u062f\u0627\u062f\u0647\u200c\u06cc \u0648\u0627\u0642\u0639\u06cc backend", + "file_type": "document", + "source_file": ".claude/prompt/dashboard-tabs-real-data.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_dashboard_tabs_real_data_\u0627\u062a\u0635\u0627\u0644_\u062f\u0642\u06cc\u0642_\u0647\u0645\u0647_\u06cc_\u062a\u0628_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_backend", + "community": 30, + "norm_label": "\u0627\u062a\u0635\u0627\u0644 \u062f\u0642\u06cc\u0642 \u0647\u0645\u0647\u200c\u06cc \u062a\u0628\u200c\u0647\u0627\u06cc \u062f\u0627\u0634\u0628\u0648\u0631\u062f \u06a9\u0627\u0631\u0628\u0631 \u0628\u0647 \u062f\u0627\u062f\u0647\u200c\u06cc \u0648\u0627\u0642\u0639\u06cc backend" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/dashboard-tabs-real-data.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_dashboard_tabs_real_data_\u067e\u0631\u0648\u0698\u0647", + "community": 30, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/dashboard-tabs-real-data.md", + "source_location": "L7", + "_origin": "ast", + "id": "prompt_dashboard_tabs_real_data_\u0632\u0645\u06cc\u0646\u0647", + "community": 30, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/dashboard-tabs-real-data.md", + "source_location": "L23", + "_origin": "ast", + "id": "prompt_dashboard_tabs_real_data_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "community": 30, + "norm_label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/dashboard-tabs-real-data.md", + "source_location": "L29", + "_origin": "ast", + "id": "prompt_dashboard_tabs_real_data_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 30, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", + "file_type": "document", + "source_file": ".claude/prompt/dashboard-tabs-real-data.md", + "source_location": "L44", + "_origin": "ast", + "id": "prompt_dashboard_tabs_real_data_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "community": 30, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)" + }, + { + "label": "\u0645\u067e\u06cc\u0646\u06af \u063a\u0644\u0637 \u0628\u06cc\u0645\u0647 \u062f\u0631 `information/index.js`", + "file_type": "document", + "source_file": ".claude/prompt/dashboard-tabs-real-data.md", + "source_location": "L46", + "_origin": "ast", + "id": "prompt_dashboard_tabs_real_data_\u0645\u067e\u06cc\u0646\u06af_\u063a\u0644\u0637_\u0628\u06cc\u0645\u0647_\u062f\u0631_information_index_js", + "community": 30, + "norm_label": "\u0645\u067e\u06cc\u0646\u06af \u063a\u0644\u0637 \u0628\u06cc\u0645\u0647 \u062f\u0631 `information/index.js`" + }, + { + "label": "\u0642\u0631\u0627\u0631\u062f\u0627\u062f backend (\u0627\u0632 `user-profile.md` \u0648 entity `toArray`)", + "file_type": "document", + "source_file": ".claude/prompt/dashboard-tabs-real-data.md", + "source_location": "L60", + "_origin": "ast", + "id": "prompt_dashboard_tabs_real_data_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_backend_\u0627\u0632_user_profile_md_\u0648_entity_toarray", + "community": 30, + "norm_label": "\u0642\u0631\u0627\u0631\u062f\u0627\u062f backend (\u0627\u0632 `user-profile.md` \u0648 entity `toarray`)" + }, + { + "label": "\u0630\u062e\u06cc\u0631\u0647 \u062f\u0631 `detailUser/index.js`", + "file_type": "document", + "source_file": ".claude/prompt/dashboard-tabs-real-data.md", + "source_location": "L76", + "_origin": "ast", + "id": "prompt_dashboard_tabs_real_data_\u0630\u062e\u06cc\u0631\u0647_\u062f\u0631_detailuser_index_js", + "community": 30, + "norm_label": "\u0630\u062e\u06cc\u0631\u0647 \u062f\u0631 `detailuser/index.js`" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/dashboard-tabs-real-data.md", + "source_location": "L86", + "_origin": "ast", + "id": "prompt_dashboard_tabs_real_data_\u0648\u0638\u0627\u06cc\u0641", + "community": 30, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. \u0645\u067e\u06cc\u0646\u06af \u062f\u0631\u0633\u062a \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u0647\u0646\u06af\u0627\u0645 \u0644\u0648\u062f (`information/index.js`)", + "file_type": "document", + "source_file": ".claude/prompt/dashboard-tabs-real-data.md", + "source_location": "L88", + "_origin": "ast", + "id": "prompt_dashboard_tabs_real_data_\u06f1_\u0645\u067e\u06cc\u0646\u06af_\u062f\u0631\u0633\u062a_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0647\u0646\u06af\u0627\u0645_\u0644\u0648\u062f_information_index_js", + "community": 30, + "norm_label": "\u06f1. \u0645\u067e\u06cc\u0646\u06af \u062f\u0631\u0633\u062a \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u0647\u0646\u06af\u0627\u0645 \u0644\u0648\u062f (`information/index.js`)" + }, + { + "label": "\u06f2. \u062a\u0623\u06cc\u06cc\u062f \u0630\u062e\u06cc\u0631\u0647 (\u0633\u0648\u0627\u0628\u0642 \u067e\u0632\u0634\u06a9\u06cc \u2192 `other`)", + "file_type": "document", + "source_file": ".claude/prompt/dashboard-tabs-real-data.md", + "source_location": "L115", + "_origin": "ast", + "id": "prompt_dashboard_tabs_real_data_\u06f2_\u062a\u0623\u06cc\u06cc\u062f_\u0630\u062e\u06cc\u0631\u0647_\u0633\u0648\u0627\u0628\u0642_\u067e\u0632\u0634\u06a9\u06cc_other", + "community": 30, + "norm_label": "\u06f2. \u062a\u0627\u06cc\u06cc\u062f \u0630\u062e\u06cc\u0631\u0647 (\u0633\u0648\u0627\u0628\u0642 \u067e\u0632\u0634\u06a9\u06cc \u2192 `other`)" + }, + { + "label": "\u06f3. \u062a\u0623\u06cc\u06cc\u062f \u062a\u0628\u200c\u0647\u0627\u06cc \u0646\u0648\u0628\u062a\u200c\u0647\u0627 \u0648 \u062a\u0631\u0627\u06a9\u0646\u0634\u200c\u0647\u0627", + "file_type": "document", + "source_file": ".claude/prompt/dashboard-tabs-real-data.md", + "source_location": "L121", + "_origin": "ast", + "id": "prompt_dashboard_tabs_real_data_\u06f3_\u062a\u0623\u06cc\u06cc\u062f_\u062a\u0628_\u0647\u0627\u06cc_\u0646\u0648\u0628\u062a_\u0647\u0627_\u0648_\u062a\u0631\u0627\u06a9\u0646\u0634_\u0647\u0627", + "community": 30, + "norm_label": "\u06f3. \u062a\u0627\u06cc\u06cc\u062f \u062a\u0628\u200c\u0647\u0627\u06cc \u0646\u0648\u0628\u062a\u200c\u0647\u0627 \u0648 \u062a\u0631\u0627\u06a9\u0646\u0634\u200c\u0647\u0627" + }, + { + "label": "\u06f4. \u062a\u0628\u200c\u0647\u0627\u06cc \u0646\u0638\u0631\u0627\u062a \u0648 \u067e\u06cc\u0627\u0645\u200c\u0647\u0627 (\u0628\u062f\u0648\u0646 backend)", + "file_type": "document", + "source_file": ".claude/prompt/dashboard-tabs-real-data.md", + "source_location": "L127", + "_origin": "ast", + "id": "prompt_dashboard_tabs_real_data_\u06f4_\u062a\u0628_\u0647\u0627\u06cc_\u0646\u0638\u0631\u0627\u062a_\u0648_\u067e\u06cc\u0627\u0645_\u0647\u0627_\u0628\u062f\u0648\u0646_backend", + "community": 30, + "norm_label": "\u06f4. \u062a\u0628\u200c\u0647\u0627\u06cc \u0646\u0638\u0631\u0627\u062a \u0648 \u067e\u06cc\u0627\u0645\u200c\u0647\u0627 (\u0628\u062f\u0648\u0646 backend)" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/dashboard-tabs-real-data.md", + "source_location": "L132", + "_origin": "ast", + "id": "prompt_dashboard_tabs_real_data_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 30, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "doctor-poster-redesign.md", + "file_type": "document", + "source_file": ".claude/prompt/doctor-poster-redesign.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_doctor_poster_redesign", + "community": 26, + "norm_label": "doctor-poster-redesign.md" + }, + { + "label": "\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc \u062d\u0631\u0641\u0647\u200c\u0627\u06cc \u067e\u0648\u0633\u062a\u0631 \u0627\u0634\u062a\u0631\u0627\u06a9\u200c\u06af\u0630\u0627\u0631\u06cc \u067e\u0632\u0634\u06a9 (\u062f\u0627\u0646\u0644\u0648\u062f)", + "file_type": "document", + "source_file": ".claude/prompt/doctor-poster-redesign.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_doctor_poster_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u062d\u0631\u0641\u0647_\u0627\u06cc_\u067e\u0648\u0633\u062a\u0631_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc_\u067e\u0632\u0634\u06a9_\u062f\u0627\u0646\u0644\u0648\u062f", + "community": 26, + "norm_label": "\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc \u062d\u0631\u0641\u0647\u200c\u0627\u06cc \u067e\u0648\u0633\u062a\u0631 \u0627\u0634\u062a\u0631\u0627\u06a9\u200c\u06af\u0630\u0627\u0631\u06cc \u067e\u0632\u0634\u06a9 (\u062f\u0627\u0646\u0644\u0648\u062f)" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/doctor-poster-redesign.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_doctor_poster_redesign_\u067e\u0631\u0648\u0698\u0647", + "community": 26, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0646\u0642\u0634", + "file_type": "document", + "source_file": ".claude/prompt/doctor-poster-redesign.md", + "source_location": "L7", + "_origin": "ast", + "id": "prompt_doctor_poster_redesign_\u0646\u0642\u0634", + "community": 26, + "norm_label": "\u0646\u0642\u0634" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/doctor-poster-redesign.md", + "source_location": "L11", + "_origin": "ast", + "id": "prompt_doctor_poster_redesign_\u0632\u0645\u06cc\u0646\u0647", + "community": 26, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/doctor-poster-redesign.md", + "source_location": "L17", + "_origin": "ast", + "id": "prompt_doctor_poster_redesign_\u0647\u062f\u0641", + "community": 26, + "norm_label": "\u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/doctor-poster-redesign.md", + "source_location": "L24", + "_origin": "ast", + "id": "prompt_doctor_poster_redesign_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 26, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/doctor-poster-redesign.md", + "source_location": "L41", + "_origin": "ast", + "id": "prompt_doctor_poster_redesign_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "community": 26, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc" + }, + { + "label": "\u062f\u0627\u062f\u0647\u200c\u0647\u0627\u06cc \u062f\u0631 \u062f\u0633\u062a\u0631\u0633", + "file_type": "document", + "source_file": ".claude/prompt/doctor-poster-redesign.md", + "source_location": "L91", + "_origin": "ast", + "id": "prompt_doctor_poster_redesign_\u062f\u0627\u062f\u0647_\u0647\u0627\u06cc_\u062f\u0631_\u062f\u0633\u062a\u0631\u0633", + "community": 26, + "norm_label": "\u062f\u0627\u062f\u0647\u200c\u0647\u0627\u06cc \u062f\u0631 \u062f\u0633\u062a\u0631\u0633" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/doctor-poster-redesign.md", + "source_location": "L97", + "_origin": "ast", + "id": "prompt_doctor_poster_redesign_\u0648\u0638\u0627\u06cc\u0641", + "community": 26, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. \u06a9\u0627\u0646\u0648\u0627\u0633 \u062b\u0627\u0628\u062a \u0648 \u0628\u0627\u06a9\u06cc\u0641\u06cc\u062a", + "file_type": "document", + "source_file": ".claude/prompt/doctor-poster-redesign.md", + "source_location": "L99", + "_origin": "ast", + "id": "prompt_doctor_poster_redesign_\u06f1_\u06a9\u0627\u0646\u0648\u0627\u0633_\u062b\u0627\u0628\u062a_\u0648_\u0628\u0627\u06a9\u06cc\u0641\u06cc\u062a", + "community": 26, + "norm_label": "\u06f1. \u06a9\u0627\u0646\u0648\u0627\u0633 \u062b\u0627\u0628\u062a \u0648 \u0628\u0627\u06a9\u06cc\u0641\u06cc\u062a" + }, + { + "label": "\u06f2. \u0633\u06cc\u0633\u062a\u0645 \u0628\u0635\u0631\u06cc (\u0628\u0647\u200c\u0639\u0646\u0648\u0627\u0646 UI/UX)", + "file_type": "document", + "source_file": ".claude/prompt/doctor-poster-redesign.md", + "source_location": "L106", + "_origin": "ast", + "id": "prompt_doctor_poster_redesign_\u06f2_\u0633\u06cc\u0633\u062a\u0645_\u0628\u0635\u0631\u06cc_\u0628\u0647_\u0639\u0646\u0648\u0627\u0646_ui_ux", + "community": 26, + "norm_label": "\u06f2. \u0633\u06cc\u0633\u062a\u0645 \u0628\u0635\u0631\u06cc (\u0628\u0647\u200c\u0639\u0646\u0648\u0627\u0646 ui/ux)" + }, + { + "label": "\u06f3. \u0647\u062f\u0631 \u0628\u0631\u0646\u062f + \u0644\u0648\u06af\u0648 (\u0627\u0644\u0632\u0627\u0645 \u06a9\u0627\u0631\u0628\u0631)", + "file_type": "document", + "source_file": ".claude/prompt/doctor-poster-redesign.md", + "source_location": "L116", + "_origin": "ast", + "id": "prompt_doctor_poster_redesign_\u06f3_\u0647\u062f\u0631_\u0628\u0631\u0646\u062f_\u0644\u0648\u06af\u0648_\u0627\u0644\u0632\u0627\u0645_\u06a9\u0627\u0631\u0628\u0631", + "community": 26, + "norm_label": "\u06f3. \u0647\u062f\u0631 \u0628\u0631\u0646\u062f + \u0644\u0648\u06af\u0648 (\u0627\u0644\u0632\u0627\u0645 \u06a9\u0627\u0631\u0628\u0631)" + }, + { + "label": "\u06f4. \u0628\u062f\u0646\u0647 \u2014 \u0628\u062e\u0634\u200c\u0647\u0627\u06cc \u0627\u0637\u0644\u0627\u0639\u0627\u062a\u06cc \u0628\u0627 \u0645\u062f\u06cc\u0631\u06cc\u062a \u0633\u0631\u0631\u06cc\u0632", + "file_type": "document", + "source_file": ".claude/prompt/doctor-poster-redesign.md", + "source_location": "L139", + "_origin": "ast", + "id": "prompt_doctor_poster_redesign_\u06f4_\u0628\u062f\u0646\u0647_\u0628\u062e\u0634_\u0647\u0627\u06cc_\u0627\u0637\u0644\u0627\u0639\u0627\u062a\u06cc_\u0628\u0627_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0633\u0631\u0631\u06cc\u0632", + "community": 26, + "norm_label": "\u06f4. \u0628\u062f\u0646\u0647 \u2014 \u0628\u062e\u0634\u200c\u0647\u0627\u06cc \u0627\u0637\u0644\u0627\u0639\u0627\u062a\u06cc \u0628\u0627 \u0645\u062f\u06cc\u0631\u06cc\u062a \u0633\u0631\u0631\u06cc\u0632" + }, + { + "label": "\u06f5. \u0641\u0648\u062a\u0631 \u2014 QR + CTA + \u0648\u0627\u062a\u0631\u0645\u0627\u0631\u06a9 \u0644\u0648\u06af\u0648", + "file_type": "document", + "source_file": ".claude/prompt/doctor-poster-redesign.md", + "source_location": "L147", + "_origin": "ast", + "id": "prompt_doctor_poster_redesign_\u06f5_\u0641\u0648\u062a\u0631_qr_cta_\u0648\u0627\u062a\u0631\u0645\u0627\u0631\u06a9_\u0644\u0648\u06af\u0648", + "community": 26, + "norm_label": "\u06f5. \u0641\u0648\u062a\u0631 \u2014 qr + cta + \u0648\u0627\u062a\u0631\u0645\u0627\u0631\u06a9 \u0644\u0648\u06af\u0648" + }, + { + "label": "\u06f6. \u062d\u0641\u0638 \u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u0628\u0627 \u067e\u0627\u06cc\u067e\u200c\u0644\u0627\u06cc\u0646 \u062f\u0627\u0646\u0644\u0648\u062f", + "file_type": "document", + "source_file": ".claude/prompt/doctor-poster-redesign.md", + "source_location": "L154", + "_origin": "ast", + "id": "prompt_doctor_poster_redesign_\u06f6_\u062d\u0641\u0638_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u0628\u0627_\u067e\u0627\u06cc\u067e_\u0644\u0627\u06cc\u0646_\u062f\u0627\u0646\u0644\u0648\u062f", + "community": 26, + "norm_label": "\u06f6. \u062d\u0641\u0638 \u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u0628\u0627 \u067e\u0627\u06cc\u067e\u200c\u0644\u0627\u06cc\u0646 \u062f\u0627\u0646\u0644\u0648\u062f" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/doctor-poster-redesign.md", + "source_location": "L160", + "_origin": "ast", + "id": "prompt_doctor_poster_redesign_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 26, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "doctor-seo-schema-knowledge-panel.md", + "file_type": "document", + "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_doctor_seo_schema_knowledge_panel", + "community": 36, + "norm_label": "doctor-seo-schema-knowledge-panel.md" + }, + { + "label": "SEO \u067e\u06cc\u0634\u0631\u0641\u062a\u0647 \u0635\u0641\u062d\u0647 \u067e\u0632\u0634\u06a9: Schema \u06a9\u0627\u0645\u0644\u060c Sitelinks\u060c Knowledge Panel\u060c Local SEO", + "file_type": "document", + "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_doctor_seo_schema_knowledge_panel_seo_\u067e\u06cc\u0634\u0631\u0641\u062a\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_schema_\u06a9\u0627\u0645\u0644_sitelinks_knowledge_panel_local_seo", + "community": 36, + "norm_label": "seo \u067e\u06cc\u0634\u0631\u0641\u062a\u0647 \u0635\u0641\u062d\u0647 \u067e\u0632\u0634\u06a9: schema \u06a9\u0627\u0645\u0644\u060c sitelinks\u060c knowledge panel\u060c local seo" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_doctor_seo_schema_knowledge_panel_\u067e\u0631\u0648\u0698\u0647", + "community": 36, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", + "source_location": "L9", + "_origin": "ast", + "id": "prompt_doctor_seo_schema_knowledge_panel_\u0632\u0645\u06cc\u0646\u0647", + "community": 36, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", + "source_location": "L17", + "_origin": "ast", + "id": "prompt_doctor_seo_schema_knowledge_panel_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "community": 36, + "norm_label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", + "source_location": "L25", + "_origin": "ast", + "id": "prompt_doctor_seo_schema_knowledge_panel_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 36, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", + "source_location": "L36", + "_origin": "ast", + "id": "prompt_doctor_seo_schema_knowledge_panel_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "community": 36, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc" + }, + { + "label": "`app/doctor/[slug]/page.js` \u2014 schema \u0641\u0639\u0644\u06cc (\u0646\u0627\u0642\u0635)", + "file_type": "document", + "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", + "source_location": "L38", + "_origin": "ast", + "id": "prompt_doctor_seo_schema_knowledge_panel_app_doctor_slug_page_js_schema_\u0641\u0639\u0644\u06cc_\u0646\u0627\u0642\u0635", + "community": 36, + "norm_label": "`app/doctor/[slug]/page.js` \u2014 schema \u0641\u0639\u0644\u06cc (\u0646\u0627\u0642\u0635)" + }, + { + "label": "`app/sitemap.js` \u2014 \u0641\u0639\u0644\u0627\u064b \u06cc\u06a9 \u0641\u0627\u06cc\u0644 \u0648\u0627\u062d\u062f", + "file_type": "document", + "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", + "source_location": "L64", + "_origin": "ast", + "id": "prompt_doctor_seo_schema_knowledge_panel_app_sitemap_js_\u0641\u0639\u0644\u0627_\u06cc\u06a9_\u0641\u0627\u06cc\u0644_\u0648\u0627\u062d\u062f", + "community": 36, + "norm_label": "`app/sitemap.js` \u2014 \u0641\u0639\u0644\u0627 \u06cc\u06a9 \u0641\u0627\u06cc\u0644 \u0648\u0627\u062d\u062f" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", + "source_location": "L85", + "_origin": "ast", + "id": "prompt_doctor_seo_schema_knowledge_panel_\u0648\u0638\u0627\u06cc\u0641", + "community": 36, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. Schema.org \u06a9\u0627\u0645\u0644 \u0628\u0631\u0627\u06cc \u0635\u0641\u062d\u0647 \u067e\u0632\u0634\u06a9", + "file_type": "document", + "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", + "source_location": "L87", + "_origin": "ast", + "id": "prompt_doctor_seo_schema_knowledge_panel_\u06f1_schema_org_\u06a9\u0627\u0645\u0644_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9", + "community": 36, + "norm_label": "\u06f1. schema.org \u06a9\u0627\u0645\u0644 \u0628\u0631\u0627\u06cc \u0635\u0641\u062d\u0647 \u067e\u0632\u0634\u06a9" + }, + { + "label": "\u06f2. Sitemap \u062a\u0641\u06a9\u06cc\u06a9\u200c\u0634\u062f\u0647", + "file_type": "document", + "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", + "source_location": "L170", + "_origin": "ast", + "id": "prompt_doctor_seo_schema_knowledge_panel_\u06f2_sitemap_\u062a\u0641\u06a9\u06cc\u06a9_\u0634\u062f\u0647", + "community": 36, + "norm_label": "\u06f2. sitemap \u062a\u0641\u06a9\u06cc\u06a9\u200c\u0634\u062f\u0647" + }, + { + "label": "\u06f3. \u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc `robots.js`", + "file_type": "document", + "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", + "source_location": "L219", + "_origin": "ast", + "id": "prompt_doctor_seo_schema_knowledge_panel_\u06f3_\u0628\u0647_\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc_robots_js", + "community": 36, + "norm_label": "\u06f3. \u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc `robots.js`" + }, + { + "label": "\u06f4. \u06a9\u0627\u0631\u062a \u0634\u0628\u06a9\u0647\u200c\u0647\u0627\u06cc \u0627\u062c\u062a\u0645\u0627\u0639\u06cc \u062f\u0631 UI (\u0645\u0634\u0631\u0648\u0637 \u0628\u0647 \u0648\u062c\u0648\u062f \u0641\u06cc\u0644\u062f backend)", + "file_type": "document", + "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", + "source_location": "L232", + "_origin": "ast", + "id": "prompt_doctor_seo_schema_knowledge_panel_\u06f4_\u06a9\u0627\u0631\u062a_\u0634\u0628\u06a9\u0647_\u0647\u0627\u06cc_\u0627\u062c\u062a\u0645\u0627\u0639\u06cc_\u062f\u0631_ui_\u0645\u0634\u0631\u0648\u0637_\u0628\u0647_\u0648\u062c\u0648\u062f_\u0641\u06cc\u0644\u062f_backend", + "community": 36, + "norm_label": "\u06f4. \u06a9\u0627\u0631\u062a \u0634\u0628\u06a9\u0647\u200c\u0647\u0627\u06cc \u0627\u062c\u062a\u0645\u0627\u0639\u06cc \u062f\u0631 ui (\u0645\u0634\u0631\u0648\u0637 \u0628\u0647 \u0648\u062c\u0648\u062f \u0641\u06cc\u0644\u062f backend)" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", + "source_location": "L251", + "_origin": "ast", + "id": "prompt_doctor_seo_schema_knowledge_panel_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 36, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "fix-appointment-booking-flow.md", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_fix_appointment_booking_flow", + "community": 9, + "norm_label": "fix-appointment-booking-flow.md" + }, + { + "label": "\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc \u0635\u0641\u062d\u0647\u200c\u06cc \u06af\u0631\u0641\u062a\u0646 \u0646\u0648\u0628\u062a (`/appointment/[doctorId]`) \u0628\u0631\u0627\u06cc \u0647\u0645\u200c\u062e\u0648\u0627\u0646\u06cc \u0628\u0627 API \u0648\u0627\u0642\u0639\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_fix_appointment_booking_flow_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_\u0635\u0641\u062d\u0647_\u06cc_\u06af\u0631\u0641\u062a\u0646_\u0646\u0648\u0628\u062a_appointment_doctorid_\u0628\u0631\u0627\u06cc_\u0647\u0645_\u062e\u0648\u0627\u0646\u06cc_\u0628\u0627_api_\u0648\u0627\u0642\u0639\u06cc", + "community": 9, + "norm_label": "\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc \u0635\u0641\u062d\u0647\u200c\u06cc \u06af\u0631\u0641\u062a\u0646 \u0646\u0648\u0628\u062a (`/appointment/[doctorid]`) \u0628\u0631\u0627\u06cc \u0647\u0645\u200c\u062e\u0648\u0627\u0646\u06cc \u0628\u0627 api \u0648\u0627\u0642\u0639\u06cc" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_fix_appointment_booking_flow_\u067e\u0631\u0648\u0698\u0647", + "community": 9, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L7", + "_origin": "ast", + "id": "prompt_fix_appointment_booking_flow_\u0632\u0645\u06cc\u0646\u0647", + "community": 9, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L17", + "_origin": "ast", + "id": "prompt_fix_appointment_booking_flow_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "community": 9, + "norm_label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641" + }, + { + "label": "\u0642\u0631\u0627\u0631\u062f\u0627\u062f \u0648\u0627\u0642\u0639\u06cc Backend (\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647 \u0628\u0627 curl \u0631\u0648\u06cc `https://clinic-pro.ddev.site`)", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L23", + "_origin": "ast", + "id": "prompt_fix_appointment_booking_flow_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0648\u0627\u0642\u0639\u06cc_backend_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u0628\u0627_curl_\u0631\u0648\u06cc_https_clinic_pro_ddev_site", + "community": 9, + "norm_label": "\u0642\u0631\u0627\u0631\u062f\u0627\u062f \u0648\u0627\u0642\u0639\u06cc backend (\u062a\u0627\u06cc\u06cc\u062f\u0634\u062f\u0647 \u0628\u0627 curl \u0631\u0648\u06cc `https://clinic-pro.ddev.site`)" + }, + { + "label": "\u06f1. \u0627\u0633\u0644\u0627\u062a\u200c\u0647\u0627 \u2014 `GET /api/v1/appointment-slots?doctor_uuid={uuid}&date={Y-m-d}` (PUBLIC)", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L25", + "_origin": "ast", + "id": "prompt_fix_appointment_booking_flow_\u06f1_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627_get_api_v1_appointment_slots_doctor_uuid_uuid_date_y_m_d_public", + "community": 9, + "norm_label": "\u06f1. \u0627\u0633\u0644\u0627\u062a\u200c\u0647\u0627 \u2014 `get /api/v1/appointment-slots?doctor_uuid={uuid}&date={y-m-d}` (public)" + }, + { + "label": "\u06f2. \u0631\u0632\u0631\u0648 \u0646\u0648\u0628\u062a \u2014 `POST /api/v1/appointment` (AUTH)", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L52", + "_origin": "ast", + "id": "prompt_fix_appointment_booking_flow_\u06f2_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a_post_api_v1_appointment_auth", + "community": 9, + "norm_label": "\u06f2. \u0631\u0632\u0631\u0648 \u0646\u0648\u0628\u062a \u2014 `post /api/v1/appointment` (auth)" + }, + { + "label": "\u06f3. \u067e\u0631\u062f\u0627\u062e\u062a \u2014 `POST /api/v1/payment/appointment` (AUTH\u060c \u0628\u0627\u06cc\u062f \u0645\u0627\u0644\u06a9 \u0646\u0648\u0628\u062a \u0628\u0627\u0634\u062f)", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L63", + "_origin": "ast", + "id": "prompt_fix_appointment_booking_flow_\u06f3_\u067e\u0631\u062f\u0627\u062e\u062a_post_api_v1_payment_appointment_auth_\u0628\u0627\u06cc\u062f_\u0645\u0627\u0644\u06a9_\u0646\u0648\u0628\u062a_\u0628\u0627\u0634\u062f", + "community": 9, + "norm_label": "\u06f3. \u067e\u0631\u062f\u0627\u062e\u062a \u2014 `post /api/v1/payment/appointment` (auth\u060c \u0628\u0627\u06cc\u062f \u0645\u0627\u0644\u06a9 \u0646\u0648\u0628\u062a \u0628\u0627\u0634\u062f)" + }, + { + "label": "\u06f4. \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u06a9\u0627\u0631\u0628\u0631 \u2014 `GET /api/v1/user-profile/{uuid}` (AUTH)", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L74", + "_origin": "ast", + "id": "prompt_fix_appointment_booking_flow_\u06f4_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_get_api_v1_user_profile_uuid_auth", + "community": 9, + "norm_label": "\u06f4. \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u06a9\u0627\u0631\u0628\u0631 \u2014 `get /api/v1/user-profile/{uuid}` (auth)" + }, + { + "label": "\u06f5. interceptor \u0645\u0647\u0645 (`services/api.js`)", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L78", + "_origin": "ast", + "id": "prompt_fix_appointment_booking_flow_\u06f5_interceptor_\u0645\u0647\u0645_services_api_js", + "community": 9, + "norm_label": "\u06f5. interceptor \u0645\u0647\u0645 (`services/api.js`)" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L88", + "_origin": "ast", + "id": "prompt_fix_appointment_booking_flow_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 9, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc \u0645\u0634\u06a9\u0644\u200c\u062f\u0627\u0631)", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L103", + "_origin": "ast", + "id": "prompt_fix_appointment_booking_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_\u0645\u0634\u06a9\u0644_\u062f\u0627\u0631", + "community": 9, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc \u0645\u0634\u06a9\u0644\u200c\u062f\u0627\u0631)" + }, + { + "label": "`app/appointment/[doctorId]/page.js`", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L105", + "_origin": "ast", + "id": "prompt_fix_appointment_booking_flow_app_appointment_doctorid_page_js", + "community": 9, + "norm_label": "`app/appointment/[doctorid]/page.js`" + }, + { + "label": "`services/response.js`", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L119", + "_origin": "ast", + "id": "prompt_fix_appointment_booking_flow_services_response_js", + "community": 9, + "norm_label": "`services/response.js`" + }, + { + "label": "`app/component/date/dateTime/index.js`", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L131", + "_origin": "ast", + "id": "prompt_fix_appointment_booking_flow_app_component_date_datetime_index_js", + "community": 9, + "norm_label": "`app/component/date/datetime/index.js`" + }, + { + "label": "`app/component/date/dateTime/hours/List.js`", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L144", + "_origin": "ast", + "id": "prompt_fix_appointment_booking_flow_app_component_date_datetime_hours_list_js", + "community": 9, + "norm_label": "`app/component/date/datetime/hours/list.js`" + }, + { + "label": "`components/appointment/detail/SubmitData.js`", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L153", + "_origin": "ast", + "id": "prompt_fix_appointment_booking_flow_components_appointment_detail_submitdata_js", + "community": 9, + "norm_label": "`components/appointment/detail/submitdata.js`" + }, + { + "label": "`components/appointment/paying/index.js`", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L171", + "_origin": "ast", + "id": "prompt_fix_appointment_booking_flow_components_appointment_paying_index_js", + "community": 9, + "norm_label": "`components/appointment/paying/index.js`" + }, + { + "label": "`components/appointment/index.js` (\u062e\u0648\u0627\u0646\u062f\u0646 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644)", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L186", + "_origin": "ast", + "id": "prompt_fix_appointment_booking_flow_components_appointment_index_js_\u062e\u0648\u0627\u0646\u062f\u0646_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", + "community": 9, + "norm_label": "`components/appointment/index.js` (\u062e\u0648\u0627\u0646\u062f\u0646 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644)" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L195", + "_origin": "ast", + "id": "prompt_fix_appointment_booking_flow_\u0648\u0638\u0627\u06cc\u0641", + "community": 9, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. \u0627\u0635\u0644\u0627\u062d \u0644\u0627\u06cc\u0647\u200c\u06cc `request.*` \u062f\u0631 `services/response.js`", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L199", + "_origin": "ast", + "id": "prompt_fix_appointment_booking_flow_\u06f1_\u0627\u0635\u0644\u0627\u062d_\u0644\u0627\u06cc\u0647_\u06cc_request_\u062f\u0631_services_response_js", + "community": 9, + "norm_label": "\u06f1. \u0627\u0635\u0644\u0627\u062d \u0644\u0627\u06cc\u0647\u200c\u06cc `request.*` \u062f\u0631 `services/response.js`" + }, + { + "label": "\u06f2. \u0627\u0635\u0644\u0627\u062d `app/appointment/[doctorId]/page.js`", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L219", + "_origin": "ast", + "id": "prompt_fix_appointment_booking_flow_\u06f2_\u0627\u0635\u0644\u0627\u062d_app_appointment_doctorid_page_js", + "community": 9, + "norm_label": "\u06f2. \u0627\u0635\u0644\u0627\u062d `app/appointment/[doctorid]/page.js`" + }, + { + "label": "\u06f3. \u0645\u067e\u200c\u06a9\u0631\u062f\u0646 \u0633\u0627\u062e\u062a\u0627\u0631 \u0648\u0627\u0642\u0639\u06cc \u0627\u0633\u0644\u0627\u062a \u0628\u0647 UI \u2014 `dateTime/index.js` + `hours/List.js`", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L225", + "_origin": "ast", + "id": "prompt_fix_appointment_booking_flow_\u06f3_\u0645\u067e_\u06a9\u0631\u062f\u0646_\u0633\u0627\u062e\u062a\u0627\u0631_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0633\u0644\u0627\u062a_\u0628\u0647_ui_datetime_index_js_hours_list_js", + "community": 9, + "norm_label": "\u06f3. \u0645\u067e\u200c\u06a9\u0631\u062f\u0646 \u0633\u0627\u062e\u062a\u0627\u0631 \u0648\u0627\u0642\u0639\u06cc \u0627\u0633\u0644\u0627\u062a \u0628\u0647 ui \u2014 `datetime/index.js` + `hours/list.js`" + }, + { + "label": "\u06f4. \u0627\u0635\u0644\u0627\u062d \u0633\u0627\u062e\u062a \u0646\u0648\u0628\u062a \u2014 `components/appointment/detail/SubmitData.js`", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L233", + "_origin": "ast", + "id": "prompt_fix_appointment_booking_flow_\u06f4_\u0627\u0635\u0644\u0627\u062d_\u0633\u0627\u062e\u062a_\u0646\u0648\u0628\u062a_components_appointment_detail_submitdata_js", + "community": 9, + "norm_label": "\u06f4. \u0627\u0635\u0644\u0627\u062d \u0633\u0627\u062e\u062a \u0646\u0648\u0628\u062a \u2014 `components/appointment/detail/submitdata.js`" + }, + { + "label": "\u06f5. \u0627\u0635\u0644\u0627\u062d \u067e\u0631\u062f\u0627\u062e\u062a \u2014 `components/appointment/paying/index.js`", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L252", + "_origin": "ast", + "id": "prompt_fix_appointment_booking_flow_\u06f5_\u0627\u0635\u0644\u0627\u062d_\u067e\u0631\u062f\u0627\u062e\u062a_components_appointment_paying_index_js", + "community": 9, + "norm_label": "\u06f5. \u0627\u0635\u0644\u0627\u062d \u067e\u0631\u062f\u0627\u062e\u062a \u2014 `components/appointment/paying/index.js`" + }, + { + "label": "\u06f6. \u0627\u0635\u0644\u0627\u062d \u062e\u0648\u0627\u0646\u062f\u0646 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u2014 `components/appointment/index.js`", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L274", + "_origin": "ast", + "id": "prompt_fix_appointment_booking_flow_\u06f6_\u0627\u0635\u0644\u0627\u062d_\u062e\u0648\u0627\u0646\u062f\u0646_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_components_appointment_index_js", + "community": 9, + "norm_label": "\u06f6. \u0627\u0635\u0644\u0627\u062d \u062e\u0648\u0627\u0646\u062f\u0646 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u2014 `components/appointment/index.js`" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L278", + "_origin": "ast", + "id": "prompt_fix_appointment_booking_flow_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 9, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "fix-appointment-payment-flow.md", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-payment-flow.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_fix_appointment_payment_flow", + "community": 19, + "norm_label": "fix-appointment-payment-flow.md" + }, + { + "label": "\u0631\u0641\u0639 \u062c\u0631\u06cc\u0627\u0646 \u067e\u0631\u062f\u0627\u062e\u062a \u0648 \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u062d\u0633\u0627\u0628 \u062f\u0631 \u0646\u0648\u0628\u062a\u200c\u06af\u06cc\u0631\u06cc \u0622\u0646\u0644\u0627\u06cc\u0646", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-payment-flow.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_fix_appointment_payment_flow_\u0631\u0641\u0639_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u062f\u0631_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646", + "community": 19, + "norm_label": "\u0631\u0641\u0639 \u062c\u0631\u06cc\u0627\u0646 \u067e\u0631\u062f\u0627\u062e\u062a \u0648 \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u062d\u0633\u0627\u0628 \u062f\u0631 \u0646\u0648\u0628\u062a\u200c\u06af\u06cc\u0631\u06cc \u0627\u0646\u0644\u0627\u06cc\u0646" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-payment-flow.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_fix_appointment_payment_flow_\u067e\u0631\u0648\u0698\u0647", + "community": 19, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-payment-flow.md", + "source_location": "L9", + "_origin": "ast", + "id": "prompt_fix_appointment_payment_flow_\u0632\u0645\u06cc\u0646\u0647", + "community": 19, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-payment-flow.md", + "source_location": "L15", + "_origin": "ast", + "id": "prompt_fix_appointment_payment_flow_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "community": 19, + "norm_label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-payment-flow.md", + "source_location": "L22", + "_origin": "ast", + "id": "prompt_fix_appointment_payment_flow_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 19, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-payment-flow.md", + "source_location": "L32", + "_origin": "ast", + "id": "prompt_fix_appointment_payment_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "community": 19, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)" + }, + { + "label": "\u0628\u0627\u06af \u06f1 \u2014 SubmitData: \u062e\u0648\u0627\u0646\u062f\u0646 \u0646\u062a\u06cc\u062c\u0647\u200c\u06cc \u0646\u0648\u0628\u062a", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-payment-flow.md", + "source_location": "L34", + "_origin": "ast", + "id": "prompt_fix_appointment_payment_flow_\u0628\u0627\u06af_\u06f1_submitdata_\u062e\u0648\u0627\u0646\u062f\u0646_\u0646\u062a\u06cc\u062c\u0647_\u06cc_\u0646\u0648\u0628\u062a", + "community": 19, + "norm_label": "\u0628\u0627\u06af \u06f1 \u2014 submitdata: \u062e\u0648\u0627\u0646\u062f\u0646 \u0646\u062a\u06cc\u062c\u0647\u200c\u06cc \u0646\u0648\u0628\u062a" + }, + { + "label": "\u0628\u0627\u06af \u06f2 \u2014 paying: frontend_address \u0648 config", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-payment-flow.md", + "source_location": "L45", + "_origin": "ast", + "id": "prompt_fix_appointment_payment_flow_\u0628\u0627\u06af_\u06f2_paying_frontend_address_\u0648_config", + "community": 19, + "norm_label": "\u0628\u0627\u06af \u06f2 \u2014 paying: frontend_address \u0648 config" + }, + { + "label": "\u0628\u0627\u06af \u06f3 \u2014 payment/[uuid]/page.js", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-payment-flow.md", + "source_location": "L57", + "_origin": "ast", + "id": "prompt_fix_appointment_payment_flow_\u0628\u0627\u06af_\u06f3_payment_uuid_page_js", + "community": 19, + "norm_label": "\u0628\u0627\u06af \u06f3 \u2014 payment/[uuid]/page.js" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-payment-flow.md", + "source_location": "L66", + "_origin": "ast", + "id": "prompt_fix_appointment_payment_flow_\u0648\u0638\u0627\u06cc\u0641", + "community": 19, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. \u0631\u0641\u0639 double-nest \u062f\u0631 SubmitData (\u0634\u0645\u0627\u0631\u0646\u062f\u0647 + appointmentId)", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-payment-flow.md", + "source_location": "L68", + "_origin": "ast", + "id": "prompt_fix_appointment_payment_flow_\u06f1_\u0631\u0641\u0639_double_nest_\u062f\u0631_submitdata_\u0634\u0645\u0627\u0631\u0646\u062f\u0647_appointmentid", + "community": 19, + "norm_label": "\u06f1. \u0631\u0641\u0639 double-nest \u062f\u0631 submitdata (\u0634\u0645\u0627\u0631\u0646\u062f\u0647 + appointmentid)" + }, + { + "label": "\u06f2. \u0627\u0635\u0644\u0627\u062d frontend_address \u0648 redirect_url \u062f\u0631 paying", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-payment-flow.md", + "source_location": "L81", + "_origin": "ast", + "id": "prompt_fix_appointment_payment_flow_\u06f2_\u0627\u0635\u0644\u0627\u062d_frontend_address_\u0648_redirect_url_\u062f\u0631_paying", + "community": 19, + "norm_label": "\u06f2. \u0627\u0635\u0644\u0627\u062d frontend_address \u0648 redirect_url \u062f\u0631 paying" + }, + { + "label": "\u06f3. \u062a\u0623\u06cc\u06cc\u062f getPaymentConfig", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-payment-flow.md", + "source_location": "L98", + "_origin": "ast", + "id": "prompt_fix_appointment_payment_flow_\u06f3_\u062a\u0623\u06cc\u06cc\u062f_getpaymentconfig", + "community": 19, + "norm_label": "\u06f3. \u062a\u0627\u06cc\u06cc\u062f getpaymentconfig" + }, + { + "label": "\u06f4. \u0627\u0635\u0644\u0627\u062d \u0635\u0641\u062d\u0647\u200c\u06cc \u0646\u062a\u06cc\u062c\u0647 `app/payment/[uuid]/page.js`", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-payment-flow.md", + "source_location": "L101", + "_origin": "ast", + "id": "prompt_fix_appointment_payment_flow_\u06f4_\u0627\u0635\u0644\u0627\u062d_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u062a\u06cc\u062c\u0647_app_payment_uuid_page_js", + "community": 19, + "norm_label": "\u06f4. \u0627\u0635\u0644\u0627\u062d \u0635\u0641\u062d\u0647\u200c\u06cc \u0646\u062a\u06cc\u062c\u0647 `app/payment/[uuid]/page.js`" + }, + { + "label": "\u06f5. \u0635\u0641\u062d\u0647\u200c\u06cc \u0648\u0627\u0633\u0637 \u0646\u062a\u06cc\u062c\u0647 (\u0627\u06af\u0631 \u06af\u0632\u06cc\u0646\u0647 \u0627\u0644\u0641 \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f)", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-payment-flow.md", + "source_location": "L111", + "_origin": "ast", + "id": "prompt_fix_appointment_payment_flow_\u06f5_\u0635\u0641\u062d\u0647_\u06cc_\u0648\u0627\u0633\u0637_\u0646\u062a\u06cc\u062c\u0647_\u0627\u06af\u0631_\u06af\u0632\u06cc\u0646\u0647_\u0627\u0644\u0641_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u062f", + "community": 19, + "norm_label": "\u06f5. \u0635\u0641\u062d\u0647\u200c\u06cc \u0648\u0627\u0633\u0637 \u0646\u062a\u06cc\u062c\u0647 (\u0627\u06af\u0631 \u06af\u0632\u06cc\u0646\u0647 \u0627\u0644\u0641 \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f)" + }, + { + "label": "\u06f6. \u062a\u062b\u0628\u06cc\u062a \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u062d\u0633\u0627\u0628 \u06a9\u0627\u0631\u0628\u0631\u06cc (\u0627\u0646\u062c\u0627\u0645\u200c\u0634\u062f\u0647 \u2014 \u062a\u0623\u06cc\u06cc\u062f)", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-payment-flow.md", + "source_location": "L117", + "_origin": "ast", + "id": "prompt_fix_appointment_payment_flow_\u06f6_\u062a\u062b\u0628\u06cc\u062a_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u0627\u0646\u062c\u0627\u0645_\u0634\u062f\u0647_\u062a\u0623\u06cc\u06cc\u062f", + "community": 19, + "norm_label": "\u06f6. \u062a\u062b\u0628\u06cc\u062a \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u062d\u0633\u0627\u0628 \u06a9\u0627\u0631\u0628\u0631\u06cc (\u0627\u0646\u062c\u0627\u0645\u200c\u0634\u062f\u0647 \u2014 \u062a\u0627\u06cc\u06cc\u062f)" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/fix-appointment-payment-flow.md", + "source_location": "L120", + "_origin": "ast", + "id": "prompt_fix_appointment_payment_flow_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 19, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "fix-dashboard-uuid-and-lists.md", + "file_type": "document", + "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_fix_dashboard_uuid_and_lists", + "community": 27, + "norm_label": "fix-dashboard-uuid-and-lists.md" + }, + { + "label": "\u0631\u0641\u0639 \u0628\u0627\u06af\u200c\u0647\u0627\u06cc \u062f\u0627\u0634\u0628\u0648\u0631\u062f \u06a9\u0627\u0631\u0628\u0631: \u06a9\u0648\u06a9\u06cc uuid \u0627\u0634\u062a\u0628\u0627\u0647\u060c URL \u063a\u0644\u0637 \u0646\u0648\u0628\u062a\u200c\u0647\u0627/\u067e\u0631\u062f\u0627\u062e\u062a\u200c\u0647\u0627\u060c \u0648 crash \u0647\u062f\u0631", + "file_type": "document", + "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_fix_dashboard_uuid_and_lists_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u06a9\u0648\u06a9\u06cc_uuid_\u0627\u0634\u062a\u0628\u0627\u0647_url_\u063a\u0644\u0637_\u0646\u0648\u0628\u062a_\u0647\u0627_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627_\u0648_crash_\u0647\u062f\u0631", + "community": 27, + "norm_label": "\u0631\u0641\u0639 \u0628\u0627\u06af\u200c\u0647\u0627\u06cc \u062f\u0627\u0634\u0628\u0648\u0631\u062f \u06a9\u0627\u0631\u0628\u0631: \u06a9\u0648\u06a9\u06cc uuid \u0627\u0634\u062a\u0628\u0627\u0647\u060c url \u063a\u0644\u0637 \u0646\u0648\u0628\u062a\u200c\u0647\u0627/\u067e\u0631\u062f\u0627\u062e\u062a\u200c\u0647\u0627\u060c \u0648 crash \u0647\u062f\u0631" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_fix_dashboard_uuid_and_lists_\u067e\u0631\u0648\u0698\u0647", + "community": 27, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", + "source_location": "L10", + "_origin": "ast", + "id": "prompt_fix_dashboard_uuid_and_lists_\u0632\u0645\u06cc\u0646\u0647", + "community": 27, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0631\u06cc\u0634\u0647\u200c\u06cc \u0627\u0635\u0644\u06cc \u06a9\u0648\u06a9\u06cc `uuid`", + "file_type": "document", + "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", + "source_location": "L19", + "_origin": "ast", + "id": "prompt_fix_dashboard_uuid_and_lists_\u0631\u06cc\u0634\u0647_\u06cc_\u0627\u0635\u0644\u06cc_\u06a9\u0648\u06a9\u06cc_uuid", + "community": 27, + "norm_label": "\u0631\u06cc\u0634\u0647\u200c\u06cc \u0627\u0635\u0644\u06cc \u06a9\u0648\u06a9\u06cc `uuid`" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", + "source_location": "L28", + "_origin": "ast", + "id": "prompt_fix_dashboard_uuid_and_lists_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 27, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", + "file_type": "document", + "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", + "source_location": "L39", + "_origin": "ast", + "id": "prompt_fix_dashboard_uuid_and_lists_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "community": 27, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)" + }, + { + "label": "`services/response.js` \u2014 URL\u0647\u0627\u06cc \u0646\u0627\u0645\u0648\u062c\u0648\u062f", + "file_type": "document", + "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", + "source_location": "L41", + "_origin": "ast", + "id": "prompt_fix_dashboard_uuid_and_lists_services_response_js_url\u0647\u0627\u06cc_\u0646\u0627\u0645\u0648\u062c\u0648\u062f", + "community": 27, + "norm_label": "`services/response.js` \u2014 url\u0647\u0627\u06cc \u0646\u0627\u0645\u0648\u062c\u0648\u062f" + }, + { + "label": "`app/dashboard/page.js`", + "file_type": "document", + "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", + "source_location": "L48", + "_origin": "ast", + "id": "prompt_fix_dashboard_uuid_and_lists_app_dashboard_page_js", + "community": 27, + "norm_label": "`app/dashboard/page.js`" + }, + { + "label": "`Head.js`", + "file_type": "document", + "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", + "source_location": "L55", + "_origin": "ast", + "id": "prompt_fix_dashboard_uuid_and_lists_head_js", + "community": 27, + "norm_label": "`head.js`" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", + "source_location": "L63", + "_origin": "ast", + "id": "prompt_fix_dashboard_uuid_and_lists_\u0648\u0638\u0627\u06cc\u0641", + "community": 27, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. \u06a9\u0648\u06a9\u06cc `uuid` = uuid \u06a9\u0627\u0631\u0628\u0631 (`SendReq.js`)", + "file_type": "document", + "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", + "source_location": "L65", + "_origin": "ast", + "id": "prompt_fix_dashboard_uuid_and_lists_\u06f1_\u06a9\u0648\u06a9\u06cc_uuid_uuid_\u06a9\u0627\u0631\u0628\u0631_sendreq_js", + "community": 27, + "norm_label": "\u06f1. \u06a9\u0648\u06a9\u06cc `uuid` = uuid \u06a9\u0627\u0631\u0628\u0631 (`sendreq.js`)" + }, + { + "label": "\u06f2. \u06af\u0627\u0631\u062f null \u062f\u0631 `Head.js`", + "file_type": "document", + "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", + "source_location": "L85", + "_origin": "ast", + "id": "prompt_fix_dashboard_uuid_and_lists_\u06f2_\u06af\u0627\u0631\u062f_null_\u062f\u0631_head_js", + "community": 27, + "norm_label": "\u06f2. \u06af\u0627\u0631\u062f null \u062f\u0631 `head.js`" + }, + { + "label": "\u06f3. \u0627\u0635\u0644\u0627\u062d URL\u0647\u0627 \u062f\u0631 `services/response.js`", + "file_type": "document", + "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", + "source_location": "L95", + "_origin": "ast", + "id": "prompt_fix_dashboard_uuid_and_lists_\u06f3_\u0627\u0635\u0644\u0627\u062d_url\u0647\u0627_\u062f\u0631_services_response_js", + "community": 27, + "norm_label": "\u06f3. \u0627\u0635\u0644\u0627\u062d url\u0647\u0627 \u062f\u0631 `services/response.js`" + }, + { + "label": "\u06f4. \u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc caller\u0647\u0627 (turns + transactions)", + "file_type": "document", + "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", + "source_location": "L104", + "_origin": "ast", + "id": "prompt_fix_dashboard_uuid_and_lists_\u06f4_\u0628\u0647_\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc_caller\u0647\u0627_turns_transactions", + "community": 27, + "norm_label": "\u06f4. \u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc caller\u0647\u0627 (turns + transactions)" + }, + { + "label": "\u06f5. (\u062f\u0631 \u0635\u0648\u0631\u062a \u0644\u0632\u0648\u0645) `app/dashboard/page.js`", + "file_type": "document", + "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", + "source_location": "L124", + "_origin": "ast", + "id": "prompt_fix_dashboard_uuid_and_lists_\u06f5_\u062f\u0631_\u0635\u0648\u0631\u062a_\u0644\u0632\u0648\u0645_app_dashboard_page_js", + "community": 27, + "norm_label": "\u06f5. (\u062f\u0631 \u0635\u0648\u0631\u062a \u0644\u0632\u0648\u0645) `app/dashboard/page.js`" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", + "source_location": "L128", + "_origin": "ast", + "id": "prompt_fix_dashboard_uuid_and_lists_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 27, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "fix-doctor-free-turn-disabled.md", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_fix_doctor_free_turn_disabled", + "community": 37, + "norm_label": "fix-doctor-free-turn-disabled.md" + }, + { + "label": "\u0631\u0641\u0639 \u0646\u0645\u0627\u06cc\u0634 \u0646\u0648\u0628\u062a \u0622\u0632\u0627\u062f \u0648 \u062f\u06a9\u0645\u0647 \u0646\u0648\u0628\u062a \u0628\u0631\u0627\u06cc \u067e\u0632\u0634\u06a9 \u0628\u0627 \u0646\u0648\u0628\u062a\u200c\u062f\u0647\u06cc \u063a\u06cc\u0631\u0641\u0639\u0627\u0644", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_fix_doctor_free_turn_disabled_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0648\u0628\u062a_\u0622\u0632\u0627\u062f_\u0648_\u062f\u06a9\u0645\u0647_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0627_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644", + "community": 37, + "norm_label": "\u0631\u0641\u0639 \u0646\u0645\u0627\u06cc\u0634 \u0646\u0648\u0628\u062a \u0627\u0632\u0627\u062f \u0648 \u062f\u06a9\u0645\u0647 \u0646\u0648\u0628\u062a \u0628\u0631\u0627\u06cc \u067e\u0632\u0634\u06a9 \u0628\u0627 \u0646\u0648\u0628\u062a\u200c\u062f\u0647\u06cc \u063a\u06cc\u0631\u0641\u0639\u0627\u0644" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_fix_doctor_free_turn_disabled_\u067e\u0631\u0648\u0698\u0647", + "community": 37, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", + "source_location": "L7", + "_origin": "ast", + "id": "prompt_fix_doctor_free_turn_disabled_\u0632\u0645\u06cc\u0646\u0647", + "community": 37, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", + "source_location": "L15", + "_origin": "ast", + "id": "prompt_fix_doctor_free_turn_disabled_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "community": 37, + "norm_label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", + "source_location": "L21", + "_origin": "ast", + "id": "prompt_fix_doctor_free_turn_disabled_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 37, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", + "source_location": "L29", + "_origin": "ast", + "id": "prompt_fix_doctor_free_turn_disabled_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "community": 37, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc" + }, + { + "label": "`app/component/ItemDoctor.js` (\u062d\u0648\u0627\u0644\u06cc \u062e\u0637 \u06f8\u06f4)", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", + "source_location": "L31", + "_origin": "ast", + "id": "prompt_fix_doctor_free_turn_disabled_app_component_itemdoctor_js_\u062d\u0648\u0627\u0644\u06cc_\u062e\u0637_\u06f8\u06f4", + "community": 37, + "norm_label": "`app/component/itemdoctor.js` (\u062d\u0648\u0627\u0644\u06cc \u062e\u0637 \u06f8\u06f4)" + }, + { + "label": "`components/doctor/appointmentList/ItemAppointment.js` (\u062e\u0637 \u06f3\u06f6\u2013\u06f5\u06f8)", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", + "source_location": "L47", + "_origin": "ast", + "id": "prompt_fix_doctor_free_turn_disabled_components_doctor_appointmentlist_itemappointment_js_\u062e\u0637_\u06f3\u06f6_\u06f5\u06f8", + "community": 37, + "norm_label": "`components/doctor/appointmentlist/itemappointment.js` (\u062e\u0637 \u06f3\u06f6\u2013\u06f5\u06f8)" + }, + { + "label": "`components/doctor/appointmentList/index.js` (\u0646\u0648\u0627\u0631 \u0645\u0648\u0628\u0627\u06cc\u0644\u060c \u062e\u0637 \u06f1\u06f6\u2013\u06f3\u06f4)", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", + "source_location": "L76", + "_origin": "ast", + "id": "prompt_fix_doctor_free_turn_disabled_components_doctor_appointmentlist_index_js_\u0646\u0648\u0627\u0631_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062e\u0637_\u06f1\u06f6_\u06f3\u06f4", + "community": 37, + "norm_label": "`components/doctor/appointmentlist/index.js` (\u0646\u0648\u0627\u0631 \u0645\u0648\u0628\u0627\u06cc\u0644\u060c \u062e\u0637 \u06f1\u06f6\u2013\u06f3\u06f4)" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", + "source_location": "L92", + "_origin": "ast", + "id": "prompt_fix_doctor_free_turn_disabled_\u0648\u0638\u0627\u06cc\u0641", + "community": 37, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. \u06a9\u0627\u0631\u062a \u0644\u06cc\u0633\u062a \u2014 `app/component/ItemDoctor.js`", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", + "source_location": "L94", + "_origin": "ast", + "id": "prompt_fix_doctor_free_turn_disabled_\u06f1_\u06a9\u0627\u0631\u062a_\u0644\u06cc\u0633\u062a_app_component_itemdoctor_js", + "community": 37, + "norm_label": "\u06f1. \u06a9\u0627\u0631\u062a \u0644\u06cc\u0633\u062a \u2014 `app/component/itemdoctor.js`" + }, + { + "label": "\u06f2. \u0628\u0627\u06a9\u0633 \u062f\u0633\u06a9\u062a\u0627\u067e \u2014 `components/doctor/appointmentList/ItemAppointment.js`", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", + "source_location": "L105", + "_origin": "ast", + "id": "prompt_fix_doctor_free_turn_disabled_\u06f2_\u0628\u0627\u06a9\u0633_\u062f\u0633\u06a9\u062a\u0627\u067e_components_doctor_appointmentlist_itemappointment_js", + "community": 37, + "norm_label": "\u06f2. \u0628\u0627\u06a9\u0633 \u062f\u0633\u06a9\u062a\u0627\u067e \u2014 `components/doctor/appointmentlist/itemappointment.js`" + }, + { + "label": "\u06f3. \u0646\u0648\u0627\u0631 \u0645\u0648\u0628\u0627\u06cc\u0644 \u2014 `components/doctor/appointmentList/index.js`", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", + "source_location": "L139", + "_origin": "ast", + "id": "prompt_fix_doctor_free_turn_disabled_\u06f3_\u0646\u0648\u0627\u0631_\u0645\u0648\u0628\u0627\u06cc\u0644_components_doctor_appointmentlist_index_js", + "community": 37, + "norm_label": "\u06f3. \u0646\u0648\u0627\u0631 \u0645\u0648\u0628\u0627\u06cc\u0644 \u2014 `components/doctor/appointmentlist/index.js`" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", + "source_location": "L166", + "_origin": "ast", + "id": "prompt_fix_doctor_free_turn_disabled_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 37, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "fix-doctor-poster-download-image.md", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_fix_doctor_poster_download_image", + "community": 31, + "norm_label": "fix-doctor-poster-download-image.md" + }, + { + "label": "\u0631\u0641\u0639 \u0645\u0634\u06a9\u0644 \u0639\u06a9\u0633 \u0646\u0627\u062f\u0631\u0633\u062a \u062f\u0631 \u067e\u0648\u0633\u062a\u0631 \u062f\u0627\u0646\u0644\u0648\u062f\u06cc \u0635\u0641\u062d\u0647 \u067e\u0632\u0634\u06a9 (\u0627\u0634\u062a\u0631\u0627\u06a9\u200c\u06af\u0630\u0627\u0631\u06cc)", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_fix_doctor_poster_download_image_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644_\u0639\u06a9\u0633_\u0646\u0627\u062f\u0631\u0633\u062a_\u062f\u0631_\u067e\u0648\u0633\u062a\u0631_\u062f\u0627\u0646\u0644\u0648\u062f\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc", + "community": 31, + "norm_label": "\u0631\u0641\u0639 \u0645\u0634\u06a9\u0644 \u0639\u06a9\u0633 \u0646\u0627\u062f\u0631\u0633\u062a \u062f\u0631 \u067e\u0648\u0633\u062a\u0631 \u062f\u0627\u0646\u0644\u0648\u062f\u06cc \u0635\u0641\u062d\u0647 \u067e\u0632\u0634\u06a9 (\u0627\u0634\u062a\u0631\u0627\u06a9\u200c\u06af\u0630\u0627\u0631\u06cc)" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_fix_doctor_poster_download_image_\u067e\u0631\u0648\u0698\u0647", + "community": 31, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", + "source_location": "L7", + "_origin": "ast", + "id": "prompt_fix_doctor_poster_download_image_\u0632\u0645\u06cc\u0646\u0647", + "community": 31, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", + "source_location": "L14", + "_origin": "ast", + "id": "prompt_fix_doctor_poster_download_image_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "community": 31, + "norm_label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", + "source_location": "L24", + "_origin": "ast", + "id": "prompt_fix_doctor_poster_download_image_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 31, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", + "source_location": "L35", + "_origin": "ast", + "id": "prompt_fix_doctor_poster_download_image_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "community": 31, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc" + }, + { + "label": "`components/doctor/detailDoctor/List.js` (\u0628\u062e\u0634 \u062f\u0627\u0646\u0644\u0648\u062f)", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", + "source_location": "L37", + "_origin": "ast", + "id": "prompt_fix_doctor_poster_download_image_components_doctor_detaildoctor_list_js_\u0628\u062e\u0634_\u062f\u0627\u0646\u0644\u0648\u062f", + "community": 31, + "norm_label": "`components/doctor/detaildoctor/list.js` (\u0628\u062e\u0634 \u062f\u0627\u0646\u0644\u0648\u062f)" + }, + { + "label": "`components/doctor/poster/ImageProfile.js`", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", + "source_location": "L56", + "_origin": "ast", + "id": "prompt_fix_doctor_poster_download_image_components_doctor_poster_imageprofile_js", + "community": 31, + "norm_label": "`components/doctor/poster/imageprofile.js`" + }, + { + "label": "`components/doctor/poster/QrImg.js` (\u062e\u0644\u0627\u0635\u0647)", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", + "source_location": "L77", + "_origin": "ast", + "id": "prompt_fix_doctor_poster_download_image_components_doctor_poster_qrimg_js_\u062e\u0644\u0627\u0635\u0647", + "community": 31, + "norm_label": "`components/doctor/poster/qrimg.js` (\u062e\u0644\u0627\u0635\u0647)" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", + "source_location": "L89", + "_origin": "ast", + "id": "prompt_fix_doctor_poster_download_image_\u0648\u0638\u0627\u06cc\u0641", + "community": 31, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. \u0645\u0646\u062a\u0638\u0631 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u06a9\u0627\u0645\u0644 \u0647\u0645\u0647\u200c\u06cc ``\u0647\u0627 \u0628\u0645\u0627\u0646 \u0642\u0628\u0644 \u0627\u0632 `html2canvas`", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", + "source_location": "L91", + "_origin": "ast", + "id": "prompt_fix_doctor_poster_download_image_\u06f1_\u0645\u0646\u062a\u0638\u0631_\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc_\u06a9\u0627\u0645\u0644_\u0647\u0645\u0647_\u06cc_img_\u0647\u0627_\u0628\u0645\u0627\u0646_\u0642\u0628\u0644_\u0627\u0632_html2canvas", + "community": 31, + "norm_label": "\u06f1. \u0645\u0646\u062a\u0638\u0631 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u06a9\u0627\u0645\u0644 \u0647\u0645\u0647\u200c\u06cc ``\u0647\u0627 \u0628\u0645\u0627\u0646 \u0642\u0628\u0644 \u0627\u0632 `html2canvas`" + }, + { + "label": "\u06f2. \u0627\u0637\u0645\u06cc\u0646\u0627\u0646 \u0627\u0632 \u0622\u0645\u0627\u062f\u0647 \u0628\u0648\u062f\u0646 QR \u0642\u0628\u0644 \u0627\u0632 \u062f\u0627\u0646\u0644\u0648\u062f", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", + "source_location": "L128", + "_origin": "ast", + "id": "prompt_fix_doctor_poster_download_image_\u06f2_\u0627\u0637\u0645\u06cc\u0646\u0627\u0646_\u0627\u0632_\u0622\u0645\u0627\u062f\u0647_\u0628\u0648\u062f\u0646_qr_\u0642\u0628\u0644_\u0627\u0632_\u062f\u0627\u0646\u0644\u0648\u062f", + "community": 31, + "norm_label": "\u06f2. \u0627\u0637\u0645\u06cc\u0646\u0627\u0646 \u0627\u0632 \u0627\u0645\u0627\u062f\u0647 \u0628\u0648\u062f\u0646 qr \u0642\u0628\u0644 \u0627\u0632 \u062f\u0627\u0646\u0644\u0648\u062f" + }, + { + "label": "\u06f3. \u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u0639\u06a9\u0633 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u0628\u0627 html2canvas", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", + "source_location": "L137", + "_origin": "ast", + "id": "prompt_fix_doctor_poster_download_image_\u06f3_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u0639\u06a9\u0633_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u0627_html2canvas", + "community": 31, + "norm_label": "\u06f3. \u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u0639\u06a9\u0633 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u0628\u0627 html2canvas" + }, + { + "label": "\u06f4. UX \u062f\u06a9\u0645\u0647\u200c\u06cc \u062f\u0627\u0646\u0644\u0648\u062f", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", + "source_location": "L158", + "_origin": "ast", + "id": "prompt_fix_doctor_poster_download_image_\u06f4_ux_\u062f\u06a9\u0645\u0647_\u06cc_\u062f\u0627\u0646\u0644\u0648\u062f", + "community": 31, + "norm_label": "\u06f4. ux \u062f\u06a9\u0645\u0647\u200c\u06cc \u062f\u0627\u0646\u0644\u0648\u062f" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", + "source_location": "L163", + "_origin": "ast", + "id": "prompt_fix_doctor_poster_download_image_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 31, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "fix-doctors-filter-performance.md", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctors-filter-performance.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_fix_doctors_filter_performance", + "community": 32, + "norm_label": "fix-doctors-filter-performance.md" + }, + { + "label": "\u0641\u06cc\u06a9\u0633 \u06a9\u0646\u062f\u06cc \u0648 \u0628\u0627\u06af\u200c\u0647\u0627\u06cc \u0641\u06cc\u0644\u062a\u0631 \u0635\u0641\u062d\u0647 \u067e\u0632\u0634\u06a9\u0627\u0646", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctors-filter-performance.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_fix_doctors_filter_performance_\u0641\u06cc\u06a9\u0633_\u06a9\u0646\u062f\u06cc_\u0648_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u0641\u06cc\u0644\u062a\u0631_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9\u0627\u0646", + "community": 32, + "norm_label": "\u0641\u06cc\u06a9\u0633 \u06a9\u0646\u062f\u06cc \u0648 \u0628\u0627\u06af\u200c\u0647\u0627\u06cc \u0641\u06cc\u0644\u062a\u0631 \u0635\u0641\u062d\u0647 \u067e\u0632\u0634\u06a9\u0627\u0646" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctors-filter-performance.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_fix_doctors_filter_performance_\u067e\u0631\u0648\u0698\u0647", + "community": 32, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctors-filter-performance.md", + "source_location": "L7", + "_origin": "ast", + "id": "prompt_fix_doctors_filter_performance_\u0632\u0645\u06cc\u0646\u0647", + "community": 32, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctors-filter-performance.md", + "source_location": "L14", + "_origin": "ast", + "id": "prompt_fix_doctors_filter_performance_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 32, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctors-filter-performance.md", + "source_location": "L27", + "_origin": "ast", + "id": "prompt_fix_doctors_filter_performance_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "community": 32, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc" + }, + { + "label": "\u0628\u0627\u06af \u06f1 \u2014 \u0645\u0648\u062f\u0627\u0644 \u0634\u0647\u0631/\u0627\u0633\u062a\u0627\u0646 \u062f\u06cc\u0631 \u0628\u0633\u062a\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctors-filter-performance.md", + "source_location": "L29", + "_origin": "ast", + "id": "prompt_fix_doctors_filter_performance_\u0628\u0627\u06af_\u06f1_\u0645\u0648\u062f\u0627\u0644_\u0634\u0647\u0631_\u0627\u0633\u062a\u0627\u0646_\u062f\u06cc\u0631_\u0628\u0633\u062a\u0647_\u0645\u06cc_\u0634\u0648\u062f", + "community": 32, + "norm_label": "\u0628\u0627\u06af \u06f1 \u2014 \u0645\u0648\u062f\u0627\u0644 \u0634\u0647\u0631/\u0627\u0633\u062a\u0627\u0646 \u062f\u06cc\u0631 \u0628\u0633\u062a\u0647 \u0645\u06cc\u200c\u0634\u0648\u062f" + }, + { + "label": "\u0628\u0627\u06af \u06f2 \u2014 \u062f\u0633\u062a\u0647\u200c\u0628\u0646\u062f\u06cc \u06a9\u0627\u0631 \u0646\u0645\u06cc\u200c\u06a9\u0646\u062f", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctors-filter-performance.md", + "source_location": "L54", + "_origin": "ast", + "id": "prompt_fix_doctors_filter_performance_\u0628\u0627\u06af_\u06f2_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u06a9\u0627\u0631_\u0646\u0645\u06cc_\u06a9\u0646\u062f", + "community": 32, + "norm_label": "\u0628\u0627\u06af \u06f2 \u2014 \u062f\u0633\u062a\u0647\u200c\u0628\u0646\u062f\u06cc \u06a9\u0627\u0631 \u0646\u0645\u06cc\u200c\u06a9\u0646\u062f" + }, + { + "label": "\u0628\u0627\u06af \u06f3 \u2014 \u06a9\u0646\u062f\u06cc \u06a9\u0644\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctors-filter-performance.md", + "source_location": "L96", + "_origin": "ast", + "id": "prompt_fix_doctors_filter_performance_\u0628\u0627\u06af_\u06f3_\u06a9\u0646\u062f\u06cc_\u06a9\u0644\u06cc", + "community": 32, + "norm_label": "\u0628\u0627\u06af \u06f3 \u2014 \u06a9\u0646\u062f\u06cc \u06a9\u0644\u06cc" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctors-filter-performance.md", + "source_location": "L100", + "_origin": "ast", + "id": "prompt_fix_doctors_filter_performance_\u0648\u0638\u0627\u06cc\u0641", + "community": 32, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. \u0641\u06cc\u06a9\u0633 \u0628\u0633\u062a\u0646 \u0633\u0631\u06cc\u0639 \u0645\u0648\u062f\u0627\u0644 \u0634\u0647\u0631/\u0627\u0633\u062a\u0627\u0646", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctors-filter-performance.md", + "source_location": "L102", + "_origin": "ast", + "id": "prompt_fix_doctors_filter_performance_\u06f1_\u0641\u06cc\u06a9\u0633_\u0628\u0633\u062a\u0646_\u0633\u0631\u06cc\u0639_\u0645\u0648\u062f\u0627\u0644_\u0634\u0647\u0631_\u0627\u0633\u062a\u0627\u0646", + "community": 32, + "norm_label": "\u06f1. \u0641\u06cc\u06a9\u0633 \u0628\u0633\u062a\u0646 \u0633\u0631\u06cc\u0639 \u0645\u0648\u062f\u0627\u0644 \u0634\u0647\u0631/\u0627\u0633\u062a\u0627\u0646" + }, + { + "label": "\u06f2. \u0641\u06cc\u06a9\u0633 \u0628\u0633\u062a\u0646 \u0633\u0631\u06cc\u0639 \u0645\u0648\u062f\u0627\u0644 \u0641\u06cc\u0644\u062a\u0631", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctors-filter-performance.md", + "source_location": "L123", + "_origin": "ast", + "id": "prompt_fix_doctors_filter_performance_\u06f2_\u0641\u06cc\u06a9\u0633_\u0628\u0633\u062a\u0646_\u0633\u0631\u06cc\u0639_\u0645\u0648\u062f\u0627\u0644_\u0641\u06cc\u0644\u062a\u0631", + "community": 32, + "norm_label": "\u06f2. \u0641\u06cc\u06a9\u0633 \u0628\u0633\u062a\u0646 \u0633\u0631\u06cc\u0639 \u0645\u0648\u062f\u0627\u0644 \u0641\u06cc\u0644\u062a\u0631" + }, + { + "label": "\u06f3. \u0641\u06cc\u06a9\u0633 crash \u062f\u0633\u062a\u0647\u200c\u0628\u0646\u062f\u06cc \u0647\u0646\u06af\u0627\u0645 clear", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctors-filter-performance.md", + "source_location": "L136", + "_origin": "ast", + "id": "prompt_fix_doctors_filter_performance_\u06f3_\u0641\u06cc\u06a9\u0633_crash_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0646\u06af\u0627\u0645_clear", + "community": 32, + "norm_label": "\u06f3. \u0641\u06cc\u06a9\u0633 crash \u062f\u0633\u062a\u0647\u200c\u0628\u0646\u062f\u06cc \u0647\u0646\u06af\u0627\u0645 clear" + }, + { + "label": "\u06f4. \u0641\u06cc\u06a9\u0633 type mismatch \u062f\u0631 filterList", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctors-filter-performance.md", + "source_location": "L161", + "_origin": "ast", + "id": "prompt_fix_doctors_filter_performance_\u06f4_\u0641\u06cc\u06a9\u0633_type_mismatch_\u062f\u0631_filterlist", + "community": 32, + "norm_label": "\u06f4. \u0641\u06cc\u06a9\u0633 type mismatch \u062f\u0631 filterlist" + }, + { + "label": "\u06f5. \u0628\u0631\u0631\u0633\u06cc \u06a9\u0646\u062f\u06cc \u06a9\u0644\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctors-filter-performance.md", + "source_location": "L174", + "_origin": "ast", + "id": "prompt_fix_doctors_filter_performance_\u06f5_\u0628\u0631\u0631\u0633\u06cc_\u06a9\u0646\u062f\u06cc_\u06a9\u0644\u06cc", + "community": 32, + "norm_label": "\u06f5. \u0628\u0631\u0631\u0633\u06cc \u06a9\u0646\u062f\u06cc \u06a9\u0644\u06cc" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/fix-doctors-filter-performance.md", + "source_location": "L190", + "_origin": "ast", + "id": "prompt_fix_doctors_filter_performance_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 32, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "fix-header-logged-state.md", + "file_type": "document", + "source_file": ".claude/prompt/fix-header-logged-state.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_fix_header_logged_state", + "community": 38, + "norm_label": "fix-header-logged-state.md" + }, + { + "label": "\u0631\u0641\u0639 \u0646\u0645\u0627\u06cc\u0634 \u00ab\u0648\u0631\u0648\u062f | \u062b\u0628\u062a\u200c\u0646\u0627\u0645\u00bb \u062f\u0631 \u0647\u062f\u0631 \u0628\u0627 \u0648\u062c\u0648\u062f \u0644\u0627\u06af\u06cc\u0646\u200c\u0628\u0648\u062f\u0646 \u06a9\u0627\u0631\u0628\u0631", + "file_type": "document", + "source_file": ".claude/prompt/fix-header-logged-state.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_fix_header_logged_state_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0631\u0648\u062f_\u062b\u0628\u062a_\u0646\u0627\u0645_\u062f\u0631_\u0647\u062f\u0631_\u0628\u0627_\u0648\u062c\u0648\u062f_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0648\u062f\u0646_\u06a9\u0627\u0631\u0628\u0631", + "community": 38, + "norm_label": "\u0631\u0641\u0639 \u0646\u0645\u0627\u06cc\u0634 \u00ab\u0648\u0631\u0648\u062f | \u062b\u0628\u062a\u200c\u0646\u0627\u0645\u00bb \u062f\u0631 \u0647\u062f\u0631 \u0628\u0627 \u0648\u062c\u0648\u062f \u0644\u0627\u06af\u06cc\u0646\u200c\u0628\u0648\u062f\u0646 \u06a9\u0627\u0631\u0628\u0631" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/fix-header-logged-state.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_fix_header_logged_state_\u067e\u0631\u0648\u0698\u0647", + "community": 38, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/fix-header-logged-state.md", + "source_location": "L7", + "_origin": "ast", + "id": "prompt_fix_header_logged_state_\u0632\u0645\u06cc\u0646\u0647", + "community": 38, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/fix-header-logged-state.md", + "source_location": "L13", + "_origin": "ast", + "id": "prompt_fix_header_logged_state_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "community": 38, + "norm_label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/fix-header-logged-state.md", + "source_location": "L17", + "_origin": "ast", + "id": "prompt_fix_header_logged_state_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 38, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", + "file_type": "document", + "source_file": ".claude/prompt/fix-header-logged-state.md", + "source_location": "L28", + "_origin": "ast", + "id": "prompt_fix_header_logged_state_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "community": 38, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)" + }, + { + "label": "`header/Content.js` \u2014 \u062a\u0635\u0645\u06cc\u0645 \u0641\u0642\u0637 \u0628\u0631 \u0627\u0633\u0627\u0633 prop \u0633\u0631\u0648\u0631", + "file_type": "document", + "source_file": ".claude/prompt/fix-header-logged-state.md", + "source_location": "L30", + "_origin": "ast", + "id": "prompt_fix_header_logged_state_header_content_js_\u062a\u0635\u0645\u06cc\u0645_\u0641\u0642\u0637_\u0628\u0631_\u0627\u0633\u0627\u0633_prop_\u0633\u0631\u0648\u0631", + "community": 38, + "norm_label": "`header/content.js` \u2014 \u062a\u0635\u0645\u06cc\u0645 \u0641\u0642\u0637 \u0628\u0631 \u0627\u0633\u0627\u0633 prop \u0633\u0631\u0648\u0631" + }, + { + "label": "`StLayout.js` \u2014 \u0645\u0642\u062f\u0627\u0631 \u0627\u0648\u0644\u06cc\u0647 \u0627\u0632 \u06a9\u0648\u06a9\u06cc \u0633\u0631\u0648\u0631", + "file_type": "document", + "source_file": ".claude/prompt/fix-header-logged-state.md", + "source_location": "L47", + "_origin": "ast", + "id": "prompt_fix_header_logged_state_stlayout_js_\u0645\u0642\u062f\u0627\u0631_\u0627\u0648\u0644\u06cc\u0647_\u0627\u0632_\u06a9\u0648\u06a9\u06cc_\u0633\u0631\u0648\u0631", + "community": 38, + "norm_label": "`stlayout.js` \u2014 \u0645\u0642\u062f\u0627\u0631 \u0627\u0648\u0644\u06cc\u0647 \u0627\u0632 \u06a9\u0648\u06a9\u06cc \u0633\u0631\u0648\u0631" + }, + { + "label": "\u06a9\u0648\u06a9\u06cc\u200c\u0647\u0627 \u0633\u0645\u062a \u06a9\u0644\u0627\u06cc\u0646\u062a \u0633\u062a \u0645\u06cc\u200c\u0634\u0648\u0646\u062f (`SendReq.js`)", + "file_type": "document", + "source_file": ".claude/prompt/fix-header-logged-state.md", + "source_location": "L58", + "_origin": "ast", + "id": "prompt_fix_header_logged_state_\u06a9\u0648\u06a9\u06cc_\u0647\u0627_\u0633\u0645\u062a_\u06a9\u0644\u0627\u06cc\u0646\u062a_\u0633\u062a_\u0645\u06cc_\u0634\u0648\u0646\u062f_sendreq_js", + "community": 38, + "norm_label": "\u06a9\u0648\u06a9\u06cc\u200c\u0647\u0627 \u0633\u0645\u062a \u06a9\u0644\u0627\u06cc\u0646\u062a \u0633\u062a \u0645\u06cc\u200c\u0634\u0648\u0646\u062f (`sendreq.js`)" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/fix-header-logged-state.md", + "source_location": "L64", + "_origin": "ast", + "id": "prompt_fix_header_logged_state_\u0648\u0638\u0627\u06cc\u0641", + "community": 38, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. \u062a\u0634\u062e\u06cc\u0635 \u0632\u0646\u062f\u0647\u200c\u06cc \u0644\u0627\u06af\u06cc\u0646 \u062f\u0631 `header/Content.js`", + "file_type": "document", + "source_file": ".claude/prompt/fix-header-logged-state.md", + "source_location": "L66", + "_origin": "ast", + "id": "prompt_fix_header_logged_state_\u06f1_\u062a\u0634\u062e\u06cc\u0635_\u0632\u0646\u062f\u0647_\u06cc_\u0644\u0627\u06af\u06cc\u0646_\u062f\u0631_header_content_js", + "community": 38, + "norm_label": "\u06f1. \u062a\u0634\u062e\u06cc\u0635 \u0632\u0646\u062f\u0647\u200c\u06cc \u0644\u0627\u06af\u06cc\u0646 \u062f\u0631 `header/content.js`" + }, + { + "label": "\u06f2. \u0648\u0627\u06a9\u0646\u0634 \u0628\u0647 \u062a\u063a\u06cc\u06cc\u0631 \u0645\u0633\u06cc\u0631 (\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc \u0648\u0644\u06cc \u062a\u0648\u0635\u06cc\u0647\u200c\u0634\u062f\u0647)", + "file_type": "document", + "source_file": ".claude/prompt/fix-header-logged-state.md", + "source_location": "L89", + "_origin": "ast", + "id": "prompt_fix_header_logged_state_\u06f2_\u0648\u0627\u06a9\u0646\u0634_\u0628\u0647_\u062a\u063a\u06cc\u06cc\u0631_\u0645\u0633\u06cc\u0631_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc_\u0648\u0644\u06cc_\u062a\u0648\u0635\u06cc\u0647_\u0634\u062f\u0647", + "community": 38, + "norm_label": "\u06f2. \u0648\u0627\u06a9\u0646\u0634 \u0628\u0647 \u062a\u063a\u06cc\u06cc\u0631 \u0645\u0633\u06cc\u0631 (\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc \u0648\u0644\u06cc \u062a\u0648\u0635\u06cc\u0647\u200c\u0634\u062f\u0647)" + }, + { + "label": "\u06f3. \u0633\u0627\u0632\u06af\u0627\u0631\u06cc logout", + "file_type": "document", + "source_file": ".claude/prompt/fix-header-logged-state.md", + "source_location": "L103", + "_origin": "ast", + "id": "prompt_fix_header_logged_state_\u06f3_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_logout", + "community": 38, + "norm_label": "\u06f3. \u0633\u0627\u0632\u06af\u0627\u0631\u06cc logout" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/fix-header-logged-state.md", + "source_location": "L107", + "_origin": "ast", + "id": "prompt_fix_header_logged_state_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 38, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "fix-login-bugs.md", + "file_type": "document", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_fix_login_bugs", + "community": 17, + "norm_label": "fix-login-bugs.md" + }, + { + "label": "\u0641\u06cc\u06a9\u0633 \u062f\u0648 \u0628\u0627\u06af \u062f\u0631 \u0641\u0644\u0648 login", + "file_type": "document", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_fix_login_bugs_\u0641\u06cc\u06a9\u0633_\u062f\u0648_\u0628\u0627\u06af_\u062f\u0631_\u0641\u0644\u0648_login", + "community": 17, + "norm_label": "\u0641\u06cc\u06a9\u0633 \u062f\u0648 \u0628\u0627\u06af \u062f\u0631 \u0641\u0644\u0648 login" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_fix_login_bugs_\u067e\u0631\u0648\u0698\u0647", + "community": 17, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L7", + "_origin": "ast", + "id": "prompt_fix_login_bugs_\u0632\u0645\u06cc\u0646\u0647", + "community": 17, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0628\u0627\u06af \u06f1 \u2014 \u0634\u0645\u0627\u0631\u0647 \u0645\u0648\u0628\u0627\u06cc\u0644 \u0628\u0627 `09` \u0627\u0636\u0627\u0641\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L11", + "_origin": "ast", + "id": "prompt_fix_login_bugs_\u0628\u0627\u06af_\u06f1_\u0634\u0645\u0627\u0631\u0647_\u0645\u0648\u0628\u0627\u06cc\u0644_\u0628\u0627_09_\u0627\u0636\u0627\u0641\u06cc", + "community": 17, + "norm_label": "\u0628\u0627\u06af \u06f1 \u2014 \u0634\u0645\u0627\u0631\u0647 \u0645\u0648\u0628\u0627\u06cc\u0644 \u0628\u0627 `09` \u0627\u0636\u0627\u0641\u06cc" + }, + { + "label": "\u0645\u0634\u06a9\u0644", + "file_type": "document", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L13", + "_origin": "ast", + "id": "prompt_fix_login_bugs_\u0645\u0634\u06a9\u0644", + "community": 17, + "norm_label": "\u0645\u0634\u06a9\u0644" + }, + { + "label": "\u0639\u0644\u062a", + "file_type": "document", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L17", + "_origin": "ast", + "id": "prompt_fix_login_bugs_\u0639\u0644\u062a", + "community": 17, + "norm_label": "\u0639\u0644\u062a" + }, + { + "label": "\u0641\u06cc\u06a9\u0633", + "file_type": "document", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L27", + "_origin": "ast", + "id": "prompt_fix_login_bugs_\u0641\u06cc\u06a9\u0633", + "community": 17, + "norm_label": "\u0641\u06cc\u06a9\u0633" + }, + { + "label": "\u0628\u0627\u06af \u06f2 \u2014 redirect \u0628\u0647 `/login` \u0628\u0639\u062f \u0627\u0632 refresh \u0635\u0641\u062d\u0647", + "file_type": "document", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L37", + "_origin": "ast", + "id": "prompt_fix_login_bugs_\u0628\u0627\u06af_\u06f2_redirect_\u0628\u0647_login_\u0628\u0639\u062f_\u0627\u0632_refresh_\u0635\u0641\u062d\u0647", + "community": 17, + "norm_label": "\u0628\u0627\u06af \u06f2 \u2014 redirect \u0628\u0647 `/login` \u0628\u0639\u062f \u0627\u0632 refresh \u0635\u0641\u062d\u0647" + }, + { + "label": "\u0645\u0634\u06a9\u0644", + "file_type": "document", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L39", + "_origin": "ast", + "id": "prompt_fix_login_bugs_\u0645\u0634\u06a9\u0644_39", + "community": 17, + "norm_label": "\u0645\u0634\u06a9\u0644" + }, + { + "label": "\u0639\u0644\u062a \u0627\u062d\u062a\u0645\u0627\u0644\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L43", + "_origin": "ast", + "id": "prompt_fix_login_bugs_\u0639\u0644\u062a_\u0627\u062d\u062a\u0645\u0627\u0644\u06cc", + "community": 17, + "norm_label": "\u0639\u0644\u062a \u0627\u062d\u062a\u0645\u0627\u0644\u06cc" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L65", + "_origin": "ast", + "id": "prompt_fix_login_bugs_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 17, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L77", + "_origin": "ast", + "id": "prompt_fix_login_bugs_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "community": 17, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641 \u0628\u0631\u0627\u06cc \u062f\u06cc\u0628\u0627\u06af \u0648 \u0641\u06cc\u06a9\u0633", + "file_type": "document", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L106", + "_origin": "ast", + "id": "prompt_fix_login_bugs_\u0648\u0638\u0627\u06cc\u0641_\u0628\u0631\u0627\u06cc_\u062f\u06cc\u0628\u0627\u06af_\u0648_\u0641\u06cc\u06a9\u0633", + "community": 17, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641 \u0628\u0631\u0627\u06cc \u062f\u06cc\u0628\u0627\u06af \u0648 \u0641\u06cc\u06a9\u0633" + }, + { + "label": "\u06f1. \u0641\u06cc\u06a9\u0633 \u0628\u0627\u06af \u06f1 (\u0642\u0637\u0639\u06cc)", + "file_type": "document", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L108", + "_origin": "ast", + "id": "prompt_fix_login_bugs_\u06f1_\u0641\u06cc\u06a9\u0633_\u0628\u0627\u06af_\u06f1_\u0642\u0637\u0639\u06cc", + "community": 17, + "norm_label": "\u06f1. \u0641\u06cc\u06a9\u0633 \u0628\u0627\u06af \u06f1 (\u0642\u0637\u0639\u06cc)" + }, + { + "label": "\u06f2. \u0628\u0631\u0631\u0633\u06cc `userInfo` cookie", + "file_type": "document", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L119", + "_origin": "ast", + "id": "prompt_fix_login_bugs_\u06f2_\u0628\u0631\u0631\u0633\u06cc_userinfo_cookie", + "community": 17, + "norm_label": "\u06f2. \u0628\u0631\u0631\u0633\u06cc `userinfo` cookie" + }, + { + "label": "\u06f3. \u0628\u0631\u0631\u0633\u06cc endpoint `/oauth/token/refresh`", + "file_type": "document", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L129", + "_origin": "ast", + "id": "prompt_fix_login_bugs_\u06f3_\u0628\u0631\u0631\u0633\u06cc_endpoint_oauth_token_refresh", + "community": 17, + "norm_label": "\u06f3. \u0628\u0631\u0631\u0633\u06cc endpoint `/oauth/token/refresh`" + }, + { + "label": "\u06f4. redirect \u0628\u0639\u062f \u0627\u0632 login", + "file_type": "document", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L139", + "_origin": "ast", + "id": "prompt_fix_login_bugs_\u06f4_redirect_\u0628\u0639\u062f_\u0627\u0632_login", + "community": 17, + "norm_label": "\u06f4. redirect \u0628\u0639\u062f \u0627\u0632 login" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L149", + "_origin": "ast", + "id": "prompt_fix_login_bugs_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 17, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "fix-login-session-userinfo.md", + "file_type": "document", + "source_file": ".claude/prompt/fix-login-session-userinfo.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_fix_login_session_userinfo", + "community": 41, + "norm_label": "fix-login-session-userinfo.md" + }, + { + "label": "\u0631\u0641\u0639 \u0645\u0627\u0646\u062f\u0646 \u0635\u0641\u062d\u0647\u200c\u06cc \u0644\u0627\u06af\u06cc\u0646 \u0628\u0639\u062f \u0627\u0632 \u0648\u0627\u0631\u062f \u06a9\u0631\u062f\u0646 \u06a9\u062f OTP (\u0646\u0634\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0646\u0645\u06cc\u200c\u0634\u0648\u062f)", + "file_type": "document", + "source_file": ".claude/prompt/fix-login-session-userinfo.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_fix_login_session_userinfo_\u0631\u0641\u0639_\u0645\u0627\u0646\u062f\u0646_\u0635\u0641\u062d\u0647_\u06cc_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0639\u062f_\u0627\u0632_\u0648\u0627\u0631\u062f_\u06a9\u0631\u062f\u0646_\u06a9\u062f_otp_\u0646\u0634\u0633\u062a_\u0633\u0627\u062e\u062a\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", + "community": 41, + "norm_label": "\u0631\u0641\u0639 \u0645\u0627\u0646\u062f\u0646 \u0635\u0641\u062d\u0647\u200c\u06cc \u0644\u0627\u06af\u06cc\u0646 \u0628\u0639\u062f \u0627\u0632 \u0648\u0627\u0631\u062f \u06a9\u0631\u062f\u0646 \u06a9\u062f otp (\u0646\u0634\u0633\u062a \u0633\u0627\u062e\u062a\u0647 \u0646\u0645\u06cc\u200c\u0634\u0648\u062f)" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/fix-login-session-userinfo.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_fix_login_session_userinfo_\u067e\u0631\u0648\u0698\u0647", + "community": 41, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/fix-login-session-userinfo.md", + "source_location": "L7", + "_origin": "ast", + "id": "prompt_fix_login_session_userinfo_\u0632\u0645\u06cc\u0646\u0647", + "community": 41, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/fix-login-session-userinfo.md", + "source_location": "L15", + "_origin": "ast", + "id": "prompt_fix_login_session_userinfo_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "community": 41, + "norm_label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/fix-login-session-userinfo.md", + "source_location": "L19", + "_origin": "ast", + "id": "prompt_fix_login_session_userinfo_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 41, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", + "file_type": "document", + "source_file": ".claude/prompt/fix-login-session-userinfo.md", + "source_location": "L29", + "_origin": "ast", + "id": "prompt_fix_login_session_userinfo_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "community": 41, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)" + }, + { + "label": "`SendReq.js` \u2192 `getInfo` (\u0628\u0627\u06af\u200c\u062f\u0627\u0631)", + "file_type": "document", + "source_file": ".claude/prompt/fix-login-session-userinfo.md", + "source_location": "L31", + "_origin": "ast", + "id": "prompt_fix_login_session_userinfo_sendreq_js_getinfo_\u0628\u0627\u06af_\u062f\u0627\u0631", + "community": 41, + "norm_label": "`sendreq.js` \u2192 `getinfo` (\u0628\u0627\u06af\u200c\u062f\u0627\u0631)" + }, + { + "label": "\u0642\u0631\u0627\u0631\u062f\u0627\u062f \u0648\u0627\u0642\u0639\u06cc `GET /oauth/userinfo` (\u0627\u0632 `clinicpro/docs/api/auth.md`)", + "file_type": "document", + "source_file": ".claude/prompt/fix-login-session-userinfo.md", + "source_location": "L56", + "_origin": "ast", + "id": "prompt_fix_login_session_userinfo_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0648\u0627\u0642\u0639\u06cc_get_oauth_userinfo_\u0627\u0632_clinicpro_docs_api_auth_md", + "community": 41, + "norm_label": "\u0642\u0631\u0627\u0631\u062f\u0627\u062f \u0648\u0627\u0642\u0639\u06cc `get /oauth/userinfo` (\u0627\u0632 `clinicpro/docs/api/auth.md`)" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/fix-login-session-userinfo.md", + "source_location": "L76", + "_origin": "ast", + "id": "prompt_fix_login_session_userinfo_\u0648\u0638\u0627\u06cc\u0641", + "community": 41, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. \u062e\u0648\u0627\u0646\u062f\u0646 \u06a9\u0627\u0631\u0628\u0631 \u0627\u0632 `res.data` \u0648 \u0633\u062a\u200c\u06a9\u0631\u062f\u0646 \u06a9\u0648\u06a9\u06cc \u0628\u0627 \u0634\u06cc\u0621 \u06a9\u0627\u0631\u0628\u0631", + "file_type": "document", + "source_file": ".claude/prompt/fix-login-session-userinfo.md", + "source_location": "L78", + "_origin": "ast", + "id": "prompt_fix_login_session_userinfo_\u06f1_\u062e\u0648\u0627\u0646\u062f\u0646_\u06a9\u0627\u0631\u0628\u0631_\u0627\u0632_res_data_\u0648_\u0633\u062a_\u06a9\u0631\u062f\u0646_\u06a9\u0648\u06a9\u06cc_\u0628\u0627_\u0634\u06cc\u0621_\u06a9\u0627\u0631\u0628\u0631", + "community": 41, + "norm_label": "\u06f1. \u062e\u0648\u0627\u0646\u062f\u0646 \u06a9\u0627\u0631\u0628\u0631 \u0627\u0632 `res.data` \u0648 \u0633\u062a\u200c\u06a9\u0631\u062f\u0646 \u06a9\u0648\u06a9\u06cc \u0628\u0627 \u0634\u06cc\u0621 \u06a9\u0627\u0631\u0628\u0631" + }, + { + "label": "\u06f2. \u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u0645\u0635\u0631\u0641\u200c\u06a9\u0646\u0646\u062f\u0647\u200c\u0647\u0627\u06cc `username`", + "file_type": "document", + "source_file": ".claude/prompt/fix-login-session-userinfo.md", + "source_location": "L110", + "_origin": "ast", + "id": "prompt_fix_login_session_userinfo_\u06f2_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u0645\u0635\u0631\u0641_\u06a9\u0646\u0646\u062f\u0647_\u0647\u0627\u06cc_username", + "community": 41, + "norm_label": "\u06f2. \u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u0645\u0635\u0631\u0641\u200c\u06a9\u0646\u0646\u062f\u0647\u200c\u0647\u0627\u06cc `username`" + }, + { + "label": "\u06f3. \u062a\u0623\u06cc\u06cc\u062f \u0639\u062f\u0645 \u0645\u0627\u0646\u062f\u0646 \u0628\u06cc\u200c\u0635\u062f\u0627", + "file_type": "document", + "source_file": ".claude/prompt/fix-login-session-userinfo.md", + "source_location": "L120", + "_origin": "ast", + "id": "prompt_fix_login_session_userinfo_\u06f3_\u062a\u0623\u06cc\u06cc\u062f_\u0639\u062f\u0645_\u0645\u0627\u0646\u062f\u0646_\u0628\u06cc_\u0635\u062f\u0627", + "community": 41, + "norm_label": "\u06f3. \u062a\u0627\u06cc\u06cc\u062f \u0639\u062f\u0645 \u0645\u0627\u0646\u062f\u0646 \u0628\u06cc\u200c\u0635\u062f\u0627" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/fix-login-session-userinfo.md", + "source_location": "L124", + "_origin": "ast", + "id": "prompt_fix_login_session_userinfo_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 41, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "fix-my-appointments-status-filter.md", + "file_type": "document", + "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_fix_my_appointments_status_filter", + "community": 61, + "norm_label": "fix-my-appointments-status-filter.md" + }, + { + "label": "\u0631\u0641\u0639 \u0641\u06cc\u0644\u062a\u0631 \u0648\u0636\u0639\u06cc\u062a \u062f\u0631 \u00ab\u0646\u0648\u0628\u062a\u200c\u0647\u0627\u06cc \u0645\u0646\u00bb (\u0646\u0648\u0628\u062a \u062b\u0628\u062a\u200c\u0634\u062f\u0647 \u0646\u0645\u0627\u06cc\u0634 \u062f\u0627\u062f\u0647 \u0646\u0645\u06cc\u200c\u0634\u0648\u062f)", + "file_type": "document", + "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_fix_my_appointments_status_filter_\u0631\u0641\u0639_\u0641\u06cc\u0644\u062a\u0631_\u0648\u0636\u0639\u06cc\u062a_\u062f\u0631_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0645\u0646_\u0646\u0648\u0628\u062a_\u062b\u0628\u062a_\u0634\u062f\u0647_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0627\u062f\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", + "community": 61, + "norm_label": "\u0631\u0641\u0639 \u0641\u06cc\u0644\u062a\u0631 \u0648\u0636\u0639\u06cc\u062a \u062f\u0631 \u00ab\u0646\u0648\u0628\u062a\u200c\u0647\u0627\u06cc \u0645\u0646\u00bb (\u0646\u0648\u0628\u062a \u062b\u0628\u062a\u200c\u0634\u062f\u0647 \u0646\u0645\u0627\u06cc\u0634 \u062f\u0627\u062f\u0647 \u0646\u0645\u06cc\u200c\u0634\u0648\u062f)" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_fix_my_appointments_status_filter_\u067e\u0631\u0648\u0698\u0647", + "community": 61, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", + "source_location": "L9", + "_origin": "ast", + "id": "prompt_fix_my_appointments_status_filter_\u0632\u0645\u06cc\u0646\u0647", + "community": 61, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", + "source_location": "L17", + "_origin": "ast", + "id": "prompt_fix_my_appointments_status_filter_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "community": 61, + "norm_label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", + "source_location": "L27", + "_origin": "ast", + "id": "prompt_fix_my_appointments_status_filter_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 61, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", + "file_type": "document", + "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", + "source_location": "L35", + "_origin": "ast", + "id": "prompt_fix_my_appointments_status_filter_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "community": 61, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", + "source_location": "L64", + "_origin": "ast", + "id": "prompt_fix_my_appointments_status_filter_\u0648\u0638\u0627\u06cc\u0641", + "community": 61, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. \u0627\u0635\u0644\u0627\u062d \u0646\u06af\u0627\u0634\u062a \u062a\u0628\u200c\u0647\u0627 \u062f\u0631 `Head.js`", + "file_type": "document", + "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", + "source_location": "L66", + "_origin": "ast", + "id": "prompt_fix_my_appointments_status_filter_\u06f1_\u0627\u0635\u0644\u0627\u062d_\u0646\u06af\u0627\u0634\u062a_\u062a\u0628_\u0647\u0627_\u062f\u0631_head_js", + "community": 61, + "norm_label": "\u06f1. \u0627\u0635\u0644\u0627\u062d \u0646\u06af\u0627\u0634\u062a \u062a\u0628\u200c\u0647\u0627 \u062f\u0631 `head.js`" + }, + { + "label": "\u06f2. \u062a\u0623\u06cc\u06cc\u062f \u062c\u0631\u06cc\u0627\u0646", + "file_type": "document", + "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", + "source_location": "L83", + "_origin": "ast", + "id": "prompt_fix_my_appointments_status_filter_\u06f2_\u062a\u0623\u06cc\u06cc\u062f_\u062c\u0631\u06cc\u0627\u0646", + "community": 61, + "norm_label": "\u06f2. \u062a\u0627\u06cc\u06cc\u062f \u062c\u0631\u06cc\u0627\u0646" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", + "source_location": "L87", + "_origin": "ast", + "id": "prompt_fix_my_appointments_status_filter_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 61, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "fix-payment-gateway-flow.md", + "file_type": "document", + "source_file": ".claude/prompt/fix-payment-gateway-flow.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_fix_payment_gateway_flow", + "community": 53, + "norm_label": "fix-payment-gateway-flow.md" + }, + { + "label": "\u0627\u0635\u0644\u0627\u062d \u062c\u0631\u06cc\u0627\u0646 \u067e\u0631\u062f\u0627\u062e\u062a: \u0627\u0646\u062a\u062e\u0627\u0628 \u0641\u0642\u0637 \u062f\u0631\u06af\u0627\u0647\u200c\u0647\u0627\u06cc \u0641\u0639\u0627\u0644\u0650 \u0628\u06a9\u200c\u0627\u0646\u062f + \u0628\u0627\u0632\u06af\u0634\u062a \u0628\u0647 \u062f\u0627\u0645\u0646\u0647 \u0645\u0628\u062f\u0623", + "file_type": "document", + "source_file": ".claude/prompt/fix-payment-gateway-flow.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_fix_payment_gateway_flow_\u0627\u0635\u0644\u0627\u062d_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0627\u0646\u062a\u062e\u0627\u0628_\u0641\u0642\u0637_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0628\u06a9_\u0627\u0646\u062f_\u0628\u0627\u0632\u06af\u0634\u062a_\u0628\u0647_\u062f\u0627\u0645\u0646\u0647_\u0645\u0628\u062f\u0623", + "community": 53, + "norm_label": "\u0627\u0635\u0644\u0627\u062d \u062c\u0631\u06cc\u0627\u0646 \u067e\u0631\u062f\u0627\u062e\u062a: \u0627\u0646\u062a\u062e\u0627\u0628 \u0641\u0642\u0637 \u062f\u0631\u06af\u0627\u0647\u200c\u0647\u0627\u06cc \u0641\u0639\u0627\u0644 \u0628\u06a9\u200c\u0627\u0646\u062f + \u0628\u0627\u0632\u06af\u0634\u062a \u0628\u0647 \u062f\u0627\u0645\u0646\u0647 \u0645\u0628\u062f\u0627" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/fix-payment-gateway-flow.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_fix_payment_gateway_flow_\u067e\u0631\u0648\u0698\u0647", + "community": 53, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/fix-payment-gateway-flow.md", + "source_location": "L9", + "_origin": "ast", + "id": "prompt_fix_payment_gateway_flow_\u0632\u0645\u06cc\u0646\u0647", + "community": 53, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/fix-payment-gateway-flow.md", + "source_location": "L21", + "_origin": "ast", + "id": "prompt_fix_payment_gateway_flow_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "community": 53, + "norm_label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/fix-payment-gateway-flow.md", + "source_location": "L30", + "_origin": "ast", + "id": "prompt_fix_payment_gateway_flow_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 53, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/fix-payment-gateway-flow.md", + "source_location": "L53", + "_origin": "ast", + "id": "prompt_fix_payment_gateway_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "community": 53, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/fix-payment-gateway-flow.md", + "source_location": "L93", + "_origin": "ast", + "id": "prompt_fix_payment_gateway_flow_\u0648\u0638\u0627\u06cc\u0641", + "community": 53, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. \u062e\u0648\u0627\u0646\u062f\u0646 `gateways` \u0627\u0632 config \u0648 \u0646\u06af\u0647\u200c\u062f\u0627\u0631\u06cc \u062f\u0631 state", + "file_type": "document", + "source_file": ".claude/prompt/fix-payment-gateway-flow.md", + "source_location": "L95", + "_origin": "ast", + "id": "prompt_fix_payment_gateway_flow_\u06f1_\u062e\u0648\u0627\u0646\u062f\u0646_gateways_\u0627\u0632_config_\u0648_\u0646\u06af\u0647_\u062f\u0627\u0631\u06cc_\u062f\u0631_state", + "community": 53, + "norm_label": "\u06f1. \u062e\u0648\u0627\u0646\u062f\u0646 `gateways` \u0627\u0632 config \u0648 \u0646\u06af\u0647\u200c\u062f\u0627\u0631\u06cc \u062f\u0631 state" + }, + { + "label": "\u06f2. \u067e\u0631 \u06a9\u0631\u062f\u0646 Select \u0627\u0632 `gateways` \u0641\u0639\u0627\u0644", + "file_type": "document", + "source_file": ".claude/prompt/fix-payment-gateway-flow.md", + "source_location": "L116", + "_origin": "ast", + "id": "prompt_fix_payment_gateway_flow_\u06f2_\u067e\u0631_\u06a9\u0631\u062f\u0646_select_\u0627\u0632_gateways_\u0641\u0639\u0627\u0644", + "community": 53, + "norm_label": "\u06f2. \u067e\u0631 \u06a9\u0631\u062f\u0646 select \u0627\u0632 `gateways` \u0641\u0639\u0627\u0644" + }, + { + "label": "\u06f3. \u0627\u0631\u0633\u0627\u0644 \u062f\u0631\u06af\u0627\u0647 \u0627\u0646\u062a\u062e\u0627\u0628\u200c\u0634\u062f\u0647 \u0648 \u063a\u06cc\u0631\u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc \u062f\u06a9\u0645\u0647 \u062f\u0631 \u0646\u0628\u0648\u062f \u062f\u0631\u06af\u0627\u0647", + "file_type": "document", + "source_file": ".claude/prompt/fix-payment-gateway-flow.md", + "source_location": "L135", + "_origin": "ast", + "id": "prompt_fix_payment_gateway_flow_\u06f3_\u0627\u0631\u0633\u0627\u0644_\u062f\u0631\u06af\u0627\u0647_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u062f\u0647_\u0648_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u062f\u06a9\u0645\u0647_\u062f\u0631_\u0646\u0628\u0648\u062f_\u062f\u0631\u06af\u0627\u0647", + "community": 53, + "norm_label": "\u06f3. \u0627\u0631\u0633\u0627\u0644 \u062f\u0631\u06af\u0627\u0647 \u0627\u0646\u062a\u062e\u0627\u0628\u200c\u0634\u062f\u0647 \u0648 \u063a\u06cc\u0631\u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc \u062f\u06a9\u0645\u0647 \u062f\u0631 \u0646\u0628\u0648\u062f \u062f\u0631\u06af\u0627\u0647" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/fix-payment-gateway-flow.md", + "source_location": "L154", + "_origin": "ast", + "id": "prompt_fix_payment_gateway_flow_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 53, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "fix-token-storage-xss-headers.md", + "file_type": "document", + "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_fix_token_storage_xss_headers", + "community": 48, + "norm_label": "fix-token-storage-xss-headers.md" + }, + { + "label": "\u0633\u062e\u062a\u200c\u0633\u0627\u0632\u06cc \u0627\u0645\u0646\u06cc\u062a\u06cc \u0633\u0627\u06cc\u062a \u0639\u0645\u0648\u0645\u06cc: \u0630\u062e\u06cc\u0631\u0647\u200c\u06cc \u062a\u0648\u06a9\u0646\u060c XSS\u060c \u0647\u062f\u0631\u0647\u0627\u060c client_secret", + "file_type": "document", + "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_fix_token_storage_xss_headers_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u0627\u0645\u0646\u06cc\u062a\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0630\u062e\u06cc\u0631\u0647_\u06cc_\u062a\u0648\u06a9\u0646_xss_\u0647\u062f\u0631\u0647\u0627_client_secret", + "community": 48, + "norm_label": "\u0633\u062e\u062a\u200c\u0633\u0627\u0632\u06cc \u0627\u0645\u0646\u06cc\u062a\u06cc \u0633\u0627\u06cc\u062a \u0639\u0645\u0648\u0645\u06cc: \u0630\u062e\u06cc\u0631\u0647\u200c\u06cc \u062a\u0648\u06a9\u0646\u060c xss\u060c \u0647\u062f\u0631\u0647\u0627\u060c client_secret" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_fix_token_storage_xss_headers_\u067e\u0631\u0648\u0698\u0647", + "community": 48, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", + "source_location": "L9", + "_origin": "ast", + "id": "prompt_fix_token_storage_xss_headers_\u0632\u0645\u06cc\u0646\u0647", + "community": 48, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", + "source_location": "L18", + "_origin": "ast", + "id": "prompt_fix_token_storage_xss_headers_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "community": 48, + "norm_label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", + "source_location": "L22", + "_origin": "ast", + "id": "prompt_fix_token_storage_xss_headers_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 48, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", + "file_type": "document", + "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", + "source_location": "L36", + "_origin": "ast", + "id": "prompt_fix_token_storage_xss_headers_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "community": 48, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", + "source_location": "L74", + "_origin": "ast", + "id": "prompt_fix_token_storage_xss_headers_\u0648\u0638\u0627\u06cc\u0641", + "community": 48, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. OAuth + \u0633\u062a \u06a9\u0648\u06a9\u06cc \u062f\u0631 \u06cc\u06a9 Route Handler \u0633\u0631\u0648\u0631-\u0633\u0627\u06cc\u062f (C-2, H-3)", + "file_type": "document", + "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", + "source_location": "L76", + "_origin": "ast", + "id": "prompt_fix_token_storage_xss_headers_\u06f1_oauth_\u0633\u062a_\u06a9\u0648\u06a9\u06cc_\u062f\u0631_\u06cc\u06a9_route_handler_\u0633\u0631\u0648\u0631_\u0633\u0627\u06cc\u062f_c_2_h_3", + "community": 48, + "norm_label": "\u06f1. oauth + \u0633\u062a \u06a9\u0648\u06a9\u06cc \u062f\u0631 \u06cc\u06a9 route handler \u0633\u0631\u0648\u0631-\u0633\u0627\u06cc\u062f (c-2, h-3)" + }, + { + "label": "\u06f2. \u0645\u062f\u06cc\u0631\u06cc\u062a access token \u062f\u0631 memory \u0628\u0647\u200c\u062c\u0627\u06cc \u06a9\u0648\u06a9\u06cc JS (C-2)", + "file_type": "document", + "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", + "source_location": "L109", + "_origin": "ast", + "id": "prompt_fix_token_storage_xss_headers_\u06f2_\u0645\u062f\u06cc\u0631\u06cc\u062a_access_token_\u062f\u0631_memory_\u0628\u0647_\u062c\u0627\u06cc_\u06a9\u0648\u06a9\u06cc_js_c_2", + "community": 48, + "norm_label": "\u06f2. \u0645\u062f\u06cc\u0631\u06cc\u062a access token \u062f\u0631 memory \u0628\u0647\u200c\u062c\u0627\u06cc \u06a9\u0648\u06a9\u06cc js (c-2)" + }, + { + "label": "\u06f3. \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc sanitizer \u0628\u0627 DOMPurify (C-3)", + "file_type": "document", + "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", + "source_location": "L118", + "_origin": "ast", + "id": "prompt_fix_token_storage_xss_headers_\u06f3_\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc_sanitizer_\u0628\u0627_dompurify_c_3", + "community": 48, + "norm_label": "\u06f3. \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc sanitizer \u0628\u0627 dompurify (c-3)" + }, + { + "label": "\u06f4. Security headers \u062f\u0631 next.config.js (H-2)", + "file_type": "document", + "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", + "source_location": "L136", + "_origin": "ast", + "id": "prompt_fix_token_storage_xss_headers_\u06f4_security_headers_\u062f\u0631_next_config_js_h_2", + "community": 48, + "norm_label": "\u06f4. security headers \u062f\u0631 next.config.js (h-2)" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", + "source_location": "L166", + "_origin": "ast", + "id": "prompt_fix_token_storage_xss_headers_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 48, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "liara-deploy.md", + "file_type": "document", + "source_file": ".claude/prompt/liara-deploy.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_liara_deploy", + "community": 28, + "norm_label": "liara-deploy.md" + }, + { + "label": "\u062f\u06cc\u067e\u0644\u0648\u06cc nobat724_front \u0631\u0648\u06cc Liara (\u067e\u0644\u062a\u0641\u0631\u0645 Next.js)", + "file_type": "document", + "source_file": ".claude/prompt/liara-deploy.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_liara_deploy_\u062f\u06cc\u067e\u0644\u0648\u06cc_nobat724_front_\u0631\u0648\u06cc_liara_\u067e\u0644\u062a\u0641\u0631\u0645_next_js", + "community": 28, + "norm_label": "\u062f\u06cc\u067e\u0644\u0648\u06cc nobat724_front \u0631\u0648\u06cc liara (\u067e\u0644\u062a\u0641\u0631\u0645 next.js)" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/liara-deploy.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_liara_deploy_\u067e\u0631\u0648\u0698\u0647", + "community": 28, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/liara-deploy.md", + "source_location": "L9", + "_origin": "ast", + "id": "prompt_liara_deploy_\u0632\u0645\u06cc\u0646\u0647", + "community": 28, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/liara-deploy.md", + "source_location": "L18", + "_origin": "ast", + "id": "prompt_liara_deploy_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "community": 28, + "norm_label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/liara-deploy.md", + "source_location": "L22", + "_origin": "ast", + "id": "prompt_liara_deploy_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 28, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/liara-deploy.md", + "source_location": "L34", + "_origin": "ast", + "id": "prompt_liara_deploy_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "community": 28, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/liara-deploy.md", + "source_location": "L76", + "_origin": "ast", + "id": "prompt_liara_deploy_\u0648\u0638\u0627\u06cc\u0641", + "community": 28, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. \u062d\u0630\u0641 \u0641\u0627\u06cc\u0644 \u06a9\u0627\u0646\u0641\u06cc\u06af \u062a\u06a9\u0631\u0627\u0631\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/liara-deploy.md", + "source_location": "L78", + "_origin": "ast", + "id": "prompt_liara_deploy_\u06f1_\u062d\u0630\u0641_\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0646\u0641\u06cc\u06af_\u062a\u06a9\u0631\u0627\u0631\u06cc", + "community": 28, + "norm_label": "\u06f1. \u062d\u0630\u0641 \u0641\u0627\u06cc\u0644 \u06a9\u0627\u0646\u0641\u06cc\u06af \u062a\u06a9\u0631\u0627\u0631\u06cc" + }, + { + "label": "\u06f2. \u062a\u0639\u06cc\u06cc\u0646 \u0646\u0633\u062e\u0647 Node \u062f\u0631 `package.json`", + "file_type": "document", + "source_file": ".claude/prompt/liara-deploy.md", + "source_location": "L87", + "_origin": "ast", + "id": "prompt_liara_deploy_\u06f2_\u062a\u0639\u06cc\u06cc\u0646_\u0646\u0633\u062e\u0647_node_\u062f\u0631_package_json", + "community": 28, + "norm_label": "\u06f2. \u062a\u0639\u06cc\u06cc\u0646 \u0646\u0633\u062e\u0647 node \u062f\u0631 `package.json`" + }, + { + "label": "\u06f3. \u0633\u0627\u062e\u062a `liara.json`", + "file_type": "document", + "source_file": ".claude/prompt/liara-deploy.md", + "source_location": "L97", + "_origin": "ast", + "id": "prompt_liara_deploy_\u06f3_\u0633\u0627\u062e\u062a_liara_json", + "community": 28, + "norm_label": "\u06f3. \u0633\u0627\u062e\u062a `liara.json`" + }, + { + "label": "\u06f4. \u0633\u0627\u062e\u062a `.liaraignore`", + "file_type": "document", + "source_file": ".claude/prompt/liara-deploy.md", + "source_location": "L113", + "_origin": "ast", + "id": "prompt_liara_deploy_\u06f4_\u0633\u0627\u062e\u062a_liaraignore", + "community": 28, + "norm_label": "\u06f4. \u0633\u0627\u062e\u062a `.liaraignore`" + }, + { + "label": "\u06f5. \u0633\u062a \u06a9\u0631\u062f\u0646 env \u0631\u0648\u06cc Liara (\u0642\u0628\u0644 \u0627\u0632 \u0627\u0648\u0644\u06cc\u0646 build)", + "file_type": "document", + "source_file": ".claude/prompt/liara-deploy.md", + "source_location": "L143", + "_origin": "ast", + "id": "prompt_liara_deploy_\u06f5_\u0633\u062a_\u06a9\u0631\u062f\u0646_env_\u0631\u0648\u06cc_liara_\u0642\u0628\u0644_\u0627\u0632_\u0627\u0648\u0644\u06cc\u0646_build", + "community": 28, + "norm_label": "\u06f5. \u0633\u062a \u06a9\u0631\u062f\u0646 env \u0631\u0648\u06cc liara (\u0642\u0628\u0644 \u0627\u0632 \u0627\u0648\u0644\u06cc\u0646 build)" + }, + { + "label": "\u06f6. \u0627\u062a\u0635\u0627\u0644 \u062f\u0627\u0645\u0646\u0647\u200c\u0647\u0627\u06cc \u0686\u0646\u062f-\u0634\u0647\u0631\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/liara-deploy.md", + "source_location": "L162", + "_origin": "ast", + "id": "prompt_liara_deploy_\u06f6_\u0627\u062a\u0635\u0627\u0644_\u062f\u0627\u0645\u0646\u0647_\u0647\u0627\u06cc_\u0686\u0646\u062f_\u0634\u0647\u0631\u06cc", + "community": 28, + "norm_label": "\u06f6. \u0627\u062a\u0635\u0627\u0644 \u062f\u0627\u0645\u0646\u0647\u200c\u0647\u0627\u06cc \u0686\u0646\u062f-\u0634\u0647\u0631\u06cc" + }, + { + "label": "\u06f7. (\u062f\u0631 \u0635\u0648\u0631\u062a \u0646\u06cc\u0627\u0632) \u0627\u0641\u0632\u0648\u062f\u0646 \u062f\u0627\u0645\u0646\u0647 backend \u0628\u0647 `images.remotePatterns`", + "file_type": "document", + "source_file": ".claude/prompt/liara-deploy.md", + "source_location": "L166", + "_origin": "ast", + "id": "prompt_liara_deploy_\u06f7_\u062f\u0631_\u0635\u0648\u0631\u062a_\u0646\u06cc\u0627\u0632_\u0627\u0641\u0632\u0648\u062f\u0646_\u062f\u0627\u0645\u0646\u0647_backend_\u0628\u0647_images_remotepatterns", + "community": 28, + "norm_label": "\u06f7. (\u062f\u0631 \u0635\u0648\u0631\u062a \u0646\u06cc\u0627\u0632) \u0627\u0641\u0632\u0648\u062f\u0646 \u062f\u0627\u0645\u0646\u0647 backend \u0628\u0647 `images.remotepatterns`" + }, + { + "label": "\u06f8. \u062f\u06cc\u067e\u0644\u0648\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/liara-deploy.md", + "source_location": "L174", + "_origin": "ast", + "id": "prompt_liara_deploy_\u06f8_\u062f\u06cc\u067e\u0644\u0648\u06cc", + "community": 28, + "norm_label": "\u06f8. \u062f\u06cc\u067e\u0644\u0648\u06cc" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/liara-deploy.md", + "source_location": "L181", + "_origin": "ast", + "id": "prompt_liara_deploy_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 28, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "nobat724-root-domain-not-city.md", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_nobat724_root_domain_not_city", + "community": 12, + "norm_label": "nobat724-root-domain-not-city.md" + }, + { + "label": "\u062f\u0627\u0645\u0646\u0647\u0654 \u0631\u06cc\u0634\u0647\u0654 nobat724.com \u0646\u0628\u0627\u06cc\u062f \u0645\u062b\u0644 \u00ab\u0634\u0647\u0631\u00bb \u0631\u0641\u062a\u0627\u0631 \u06a9\u0646\u062f", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_nobat724_root_domain_not_city_\u062f\u0627\u0645\u0646\u0647_\u0631\u06cc\u0634\u0647_nobat724_com_\u0646\u0628\u0627\u06cc\u062f_\u0645\u062b\u0644_\u0634\u0647\u0631_\u0631\u0641\u062a\u0627\u0631_\u06a9\u0646\u062f", + "community": 12, + "norm_label": "\u062f\u0627\u0645\u0646\u0647 \u0631\u06cc\u0634\u0647 nobat724.com \u0646\u0628\u0627\u06cc\u062f \u0645\u062b\u0644 \u00ab\u0634\u0647\u0631\u00bb \u0631\u0641\u062a\u0627\u0631 \u06a9\u0646\u062f" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_nobat724_root_domain_not_city_\u067e\u0631\u0648\u0698\u0647", + "community": 12, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L7", + "_origin": "ast", + "id": "prompt_nobat724_root_domain_not_city_\u0632\u0645\u06cc\u0646\u0647", + "community": 12, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L17", + "_origin": "ast", + "id": "prompt_nobat724_root_domain_not_city_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "community": 12, + "norm_label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L24", + "_origin": "ast", + "id": "prompt_nobat724_root_domain_not_city_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 12, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L35", + "_origin": "ast", + "id": "prompt_nobat724_root_domain_not_city_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "community": 12, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc" + }, + { + "label": "`lib/getStateInfo.js`", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L37", + "_origin": "ast", + "id": "prompt_nobat724_root_domain_not_city_lib_getstateinfo_js", + "community": 12, + "norm_label": "`lib/getstateinfo.js`" + }, + { + "label": "`app/doctors/page.js` (\u0628\u0627\u06af \u0646\u0648\u0639)", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L49", + "_origin": "ast", + "id": "prompt_nobat724_root_domain_not_city_app_doctors_page_js_\u0628\u0627\u06af_\u0646\u0648\u0639", + "community": 12, + "norm_label": "`app/doctors/page.js` (\u0628\u0627\u06af \u0646\u0648\u0639)" + }, + { + "label": "`components/doctors/index.js` (\u0628\u0627\u06af \u0646\u0648\u0639 \u062f\u0631 defaultFilter)", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L57", + "_origin": "ast", + "id": "prompt_nobat724_root_domain_not_city_components_doctors_index_js_\u0628\u0627\u06af_\u0646\u0648\u0639_\u062f\u0631_defaultfilter", + "community": 12, + "norm_label": "`components/doctors/index.js` (\u0628\u0627\u06af \u0646\u0648\u0639 \u062f\u0631 defaultfilter)" + }, + { + "label": "`context/ProvinceProvider.js`", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L65", + "_origin": "ast", + "id": "prompt_nobat724_root_domain_not_city_context_provinceprovider_js", + "community": 12, + "norm_label": "`context/provinceprovider.js`" + }, + { + "label": "`app/specialties/page.js`", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L73", + "_origin": "ast", + "id": "prompt_nobat724_root_domain_not_city_app_specialties_page_js", + "community": 12, + "norm_label": "`app/specialties/page.js`" + }, + { + "label": "`services/response.js` (\u0628\u062f\u0648\u0646 \u062a\u063a\u06cc\u06cc\u0631 \u2014 \u0641\u0642\u0637 \u0628\u0631\u0627\u06cc \u0645\u0631\u062c\u0639)", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L78", + "_origin": "ast", + "id": "prompt_nobat724_root_domain_not_city_services_response_js_\u0628\u062f\u0648\u0646_\u062a\u063a\u06cc\u06cc\u0631_\u0641\u0642\u0637_\u0628\u0631\u0627\u06cc_\u0645\u0631\u062c\u0639", + "community": 12, + "norm_label": "`services/response.js` (\u0628\u062f\u0648\u0646 \u062a\u063a\u06cc\u06cc\u0631 \u2014 \u0641\u0642\u0637 \u0628\u0631\u0627\u06cc \u0645\u0631\u062c\u0639)" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L86", + "_origin": "ast", + "id": "prompt_nobat724_root_domain_not_city_\u0648\u0638\u0627\u06cc\u0641", + "community": 12, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. \u062a\u0639\u0631\u06cc\u0641 \u0645\u0631\u06a9\u0632\u06cc \u0631\u06cc\u0634\u0647 + `isRoot` \u062f\u0631 `getStateInfo`", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L88", + "_origin": "ast", + "id": "prompt_nobat724_root_domain_not_city_\u06f1_\u062a\u0639\u0631\u06cc\u0641_\u0645\u0631\u06a9\u0632\u06cc_\u0631\u06cc\u0634\u0647_isroot_\u062f\u0631_getstateinfo", + "community": 12, + "norm_label": "\u06f1. \u062a\u0639\u0631\u06cc\u0641 \u0645\u0631\u06a9\u0632\u06cc \u0631\u06cc\u0634\u0647 + `isroot` \u062f\u0631 `getstateinfo`" + }, + { + "label": "\u06f2. `app/doctors/page.js` \u2014 \u0631\u0648\u06cc \u0631\u06cc\u0634\u0647 city \u062a\u0632\u0631\u06cc\u0642 \u0646\u0634\u0648\u062f", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L106", + "_origin": "ast", + "id": "prompt_nobat724_root_domain_not_city_\u06f2_app_doctors_page_js_\u0631\u0648\u06cc_\u0631\u06cc\u0634\u0647_city_\u062a\u0632\u0631\u06cc\u0642_\u0646\u0634\u0648\u062f", + "community": 12, + "norm_label": "\u06f2. `app/doctors/page.js` \u2014 \u0631\u0648\u06cc \u0631\u06cc\u0634\u0647 city \u062a\u0632\u0631\u06cc\u0642 \u0646\u0634\u0648\u062f" + }, + { + "label": "\u06f3. `components/doctors/index.js` \u2014 defaultFilter \u0628\u062f\u0648\u0646 \u0634\u0647\u0631 \u0631\u0648\u06cc \u0631\u06cc\u0634\u0647", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L117", + "_origin": "ast", + "id": "prompt_nobat724_root_domain_not_city_\u06f3_components_doctors_index_js_defaultfilter_\u0628\u062f\u0648\u0646_\u0634\u0647\u0631_\u0631\u0648\u06cc_\u0631\u06cc\u0634\u0647", + "community": 12, + "norm_label": "\u06f3. `components/doctors/index.js` \u2014 defaultfilter \u0628\u062f\u0648\u0646 \u0634\u0647\u0631 \u0631\u0648\u06cc \u0631\u06cc\u0634\u0647" + }, + { + "label": "\u06f4. `context/ProvinceProvider.js` \u2014 cityId \u0631\u0648\u06cc \u0631\u06cc\u0634\u0647 null", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L128", + "_origin": "ast", + "id": "prompt_nobat724_root_domain_not_city_\u06f4_context_provinceprovider_js_cityid_\u0631\u0648\u06cc_\u0631\u06cc\u0634\u0647_null", + "community": 12, + "norm_label": "\u06f4. `context/provinceprovider.js` \u2014 cityid \u0631\u0648\u06cc \u0631\u06cc\u0634\u0647 null" + }, + { + "label": "\u06f5. `app/specialties/page.js` (\u0648 \u0647\u0631 `getSpecialtyDoctorCounts`/\u0634\u0645\u0627\u0631\u0634 \u0645\u0628\u062a\u0646\u06cc \u0628\u0631 \u0634\u0647\u0631)", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L139", + "_origin": "ast", + "id": "prompt_nobat724_root_domain_not_city_\u06f5_app_specialties_page_js_\u0648_\u0647\u0631_getspecialtydoctorcounts_\u0634\u0645\u0627\u0631\u0634_\u0645\u0628\u062a\u0646\u06cc_\u0628\u0631_\u0634\u0647\u0631", + "community": 12, + "norm_label": "\u06f5. `app/specialties/page.js` (\u0648 \u0647\u0631 `getspecialtydoctorcounts`/\u0634\u0645\u0627\u0631\u0634 \u0645\u0628\u062a\u0646\u06cc \u0628\u0631 \u0634\u0647\u0631)" + }, + { + "label": "\u06f6. \u062c\u0633\u062a\u062c\u0648\u06cc \u0628\u0627\u0642\u06cc\u200c\u0645\u0627\u0646\u062f\u0647\u0654 \u0627\u0644\u06af\u0648\u06cc \u0628\u0627\u06af", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L147", + "_origin": "ast", + "id": "prompt_nobat724_root_domain_not_city_\u06f6_\u062c\u0633\u062a\u062c\u0648\u06cc_\u0628\u0627\u0642\u06cc_\u0645\u0627\u0646\u062f\u0647_\u0627\u0644\u06af\u0648\u06cc_\u0628\u0627\u06af", + "community": 12, + "norm_label": "\u06f6. \u062c\u0633\u062a\u062c\u0648\u06cc \u0628\u0627\u0642\u06cc\u200c\u0645\u0627\u0646\u062f\u0647 \u0627\u0644\u06af\u0648\u06cc \u0628\u0627\u06af" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L154", + "_origin": "ast", + "id": "prompt_nobat724_root_domain_not_city_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 12, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "nobat724-test-suite.md", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-test-suite.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_nobat724_test_suite", + "community": 33, + "norm_label": "nobat724-test-suite.md" + }, + { + "label": "\u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u062a\u0633\u062a \u0648 \u0646\u0648\u0634\u062a\u0646 \u062a\u0633\u062a\u200c\u0633\u0648\u0626\u06cc\u062a \u0628\u0631\u0627\u06cc \u0633\u0627\u06cc\u062a \u0639\u0645\u0648\u0645\u06cc (nobat724_front)", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-test-suite.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_nobat724_test_suite_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u062a\u0633\u062a_\u0648_\u0646\u0648\u0634\u062a\u0646_\u062a\u0633\u062a_\u0633\u0648\u0626\u06cc\u062a_\u0628\u0631\u0627\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_nobat724_front", + "community": 33, + "norm_label": "\u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u062a\u0633\u062a \u0648 \u0646\u0648\u0634\u062a\u0646 \u062a\u0633\u062a\u200c\u0633\u0648\u064a\u06cc\u062a \u0628\u0631\u0627\u06cc \u0633\u0627\u06cc\u062a \u0639\u0645\u0648\u0645\u06cc (nobat724_front)" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-test-suite.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_nobat724_test_suite_\u067e\u0631\u0648\u0698\u0647", + "community": 33, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-test-suite.md", + "source_location": "L9", + "_origin": "ast", + "id": "prompt_nobat724_test_suite_\u0632\u0645\u06cc\u0646\u0647", + "community": 33, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-test-suite.md", + "source_location": "L13", + "_origin": "ast", + "id": "prompt_nobat724_test_suite_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "community": 33, + "norm_label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-test-suite.md", + "source_location": "L19", + "_origin": "ast", + "id": "prompt_nobat724_test_suite_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 33, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-test-suite.md", + "source_location": "L42", + "_origin": "ast", + "id": "prompt_nobat724_test_suite_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "community": 33, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-test-suite.md", + "source_location": "L102", + "_origin": "ast", + "id": "prompt_nobat724_test_suite_\u0648\u0638\u0627\u06cc\u0641", + "community": 33, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. \u0646\u0635\u0628 \u0627\u0628\u0632\u0627\u0631 \u0648 \u06a9\u0627\u0646\u0641\u06cc\u06af runner", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-test-suite.md", + "source_location": "L104", + "_origin": "ast", + "id": "prompt_nobat724_test_suite_\u06f1_\u0646\u0635\u0628_\u0627\u0628\u0632\u0627\u0631_\u0648_\u06a9\u0627\u0646\u0641\u06cc\u06af_runner", + "community": 33, + "norm_label": "\u06f1. \u0646\u0635\u0628 \u0627\u0628\u0632\u0627\u0631 \u0648 \u06a9\u0627\u0646\u0641\u06cc\u06af runner" + }, + { + "label": "\u06f2. \u062a\u0633\u062a \u062a\u0648\u0627\u0628\u0639 \u062e\u0627\u0644\u0635 `utils/index.js` (\u0627\u0648\u0644 \u0648 \u0633\u0646\u06af\u06cc\u0646\u200c\u062a\u0631\u06cc\u0646)", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-test-suite.md", + "source_location": "L171", + "_origin": "ast", + "id": "prompt_nobat724_test_suite_\u06f2_\u062a\u0633\u062a_\u062a\u0648\u0627\u0628\u0639_\u062e\u0627\u0644\u0635_utils_index_js_\u0627\u0648\u0644_\u0648_\u0633\u0646\u06af\u06cc\u0646_\u062a\u0631\u06cc\u0646", + "community": 33, + "norm_label": "\u06f2. \u062a\u0633\u062a \u062a\u0648\u0627\u0628\u0639 \u062e\u0627\u0644\u0635 `utils/index.js` (\u0627\u0648\u0644 \u0648 \u0633\u0646\u06af\u06cc\u0646\u200c\u062a\u0631\u06cc\u0646)" + }, + { + "label": "\u06f3. \u062a\u0633\u062a \u062e\u0627\u0644\u0635 `lib/`", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-test-suite.md", + "source_location": "L219", + "_origin": "ast", + "id": "prompt_nobat724_test_suite_\u06f3_\u062a\u0633\u062a_\u062e\u0627\u0644\u0635_lib", + "community": 33, + "norm_label": "\u06f3. \u062a\u0633\u062a \u062e\u0627\u0644\u0635 `lib/`" + }, + { + "label": "\u06f4. \u062a\u0634\u062e\u06cc\u0635 \u0686\u0646\u062f-\u062f\u0627\u0645\u0646\u0647\u200c\u0627\u06cc (mock host / window / next/headers)", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-test-suite.md", + "source_location": "L233", + "_origin": "ast", + "id": "prompt_nobat724_test_suite_\u06f4_\u062a\u0634\u062e\u06cc\u0635_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc_mock_host_window_next_headers", + "community": 33, + "norm_label": "\u06f4. \u062a\u0634\u062e\u06cc\u0635 \u0686\u0646\u062f-\u062f\u0627\u0645\u0646\u0647\u200c\u0627\u06cc (mock host / window / next/headers)" + }, + { + "label": "\u06f5. \u0633\u0631\u0648\u06cc\u0633\u200c\u0647\u0627", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-test-suite.md", + "source_location": "L256", + "_origin": "ast", + "id": "prompt_nobat724_test_suite_\u06f5_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627", + "community": 33, + "norm_label": "\u06f5. \u0633\u0631\u0648\u06cc\u0633\u200c\u0647\u0627" + }, + { + "label": "\u06f6. CASL context \u0648 \u06cc\u06a9 \u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-test-suite.md", + "source_location": "L295", + "_origin": "ast", + "id": "prompt_nobat724_test_suite_\u06f6_casl_context_\u0648_\u06cc\u06a9_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a", + "community": 33, + "norm_label": "\u06f6. casl context \u0648 \u06cc\u06a9 \u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a" + }, + { + "label": "\u06f7. \u0627\u062c\u0631\u0627 \u0648 \u0633\u0628\u0632\u06a9\u0631\u062f\u0646 + lint", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-test-suite.md", + "source_location": "L314", + "_origin": "ast", + "id": "prompt_nobat724_test_suite_\u06f7_\u0627\u062c\u0631\u0627_\u0648_\u0633\u0628\u0632\u06a9\u0631\u062f\u0646_lint", + "community": 33, + "norm_label": "\u06f7. \u0627\u062c\u0631\u0627 \u0648 \u0633\u0628\u0632\u06a9\u0631\u062f\u0646 + lint" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/nobat724-test-suite.md", + "source_location": "L323", + "_origin": "ast", + "id": "prompt_nobat724_test_suite_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 33, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "otp-sms-site-name.md", + "file_type": "document", + "source_file": ".claude/prompt/otp-sms-site-name.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_otp_sms_site_name", + "community": 62, + "norm_label": "otp-sms-site-name.md" + }, + { + "label": "\u0627\u0631\u0633\u0627\u0644 \u062f\u0627\u0645\u0646\u0647\u200c\u06cc \u0634\u0647\u0631 \u0647\u0645\u0631\u0627\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u06a9\u062f \u062a\u0623\u06cc\u06cc\u062f (\u0628\u0631\u0627\u06cc \u0627\u0633\u0645 \u0633\u0627\u06cc\u062a \u062f\u0631 \u067e\u06cc\u0627\u0645\u06a9 OTP)", + "file_type": "document", + "source_file": ".claude/prompt/otp-sms-site-name.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_otp_sms_site_name_\u0627\u0631\u0633\u0627\u0644_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0634\u0647\u0631_\u0647\u0645\u0631\u0627\u0647_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u06a9\u062f_\u062a\u0623\u06cc\u06cc\u062f_\u0628\u0631\u0627\u06cc_\u0627\u0633\u0645_\u0633\u0627\u06cc\u062a_\u062f\u0631_\u067e\u06cc\u0627\u0645\u06a9_otp", + "community": 62, + "norm_label": "\u0627\u0631\u0633\u0627\u0644 \u062f\u0627\u0645\u0646\u0647\u200c\u06cc \u0634\u0647\u0631 \u0647\u0645\u0631\u0627\u0647 \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u06a9\u062f \u062a\u0627\u06cc\u06cc\u062f (\u0628\u0631\u0627\u06cc \u0627\u0633\u0645 \u0633\u0627\u06cc\u062a \u062f\u0631 \u067e\u06cc\u0627\u0645\u06a9 otp)" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/otp-sms-site-name.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_otp_sms_site_name_\u067e\u0631\u0648\u0698\u0647", + "community": 62, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/otp-sms-site-name.md", + "source_location": "L7", + "_origin": "ast", + "id": "prompt_otp_sms_site_name_\u0632\u0645\u06cc\u0646\u0647", + "community": 62, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/otp-sms-site-name.md", + "source_location": "L11", + "_origin": "ast", + "id": "prompt_otp_sms_site_name_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "community": 62, + "norm_label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/otp-sms-site-name.md", + "source_location": "L15", + "_origin": "ast", + "id": "prompt_otp_sms_site_name_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 62, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/otp-sms-site-name.md", + "source_location": "L23", + "_origin": "ast", + "id": "prompt_otp_sms_site_name_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "community": 62, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/otp-sms-site-name.md", + "source_location": "L49", + "_origin": "ast", + "id": "prompt_otp_sms_site_name_\u0648\u0638\u0627\u06cc\u0641", + "community": 62, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. \u0627\u0641\u0632\u0648\u062f\u0646 `domain` \u0628\u0647 wrapper `sendCode`", + "file_type": "document", + "source_file": ".claude/prompt/otp-sms-site-name.md", + "source_location": "L51", + "_origin": "ast", + "id": "prompt_otp_sms_site_name_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_domain_\u0628\u0647_wrapper_sendcode", + "community": 62, + "norm_label": "\u06f1. \u0627\u0641\u0632\u0648\u062f\u0646 `domain` \u0628\u0647 wrapper `sendcode`" + }, + { + "label": "\u06f2. \u067e\u0627\u0633\u200c\u062f\u0627\u062f\u0646 \u062f\u0627\u0645\u0646\u0647\u200c\u06cc \u0641\u0639\u0644\u06cc \u0627\u0632 \u0635\u0641\u062d\u0647\u200c\u0647\u0627\u06cc \u0641\u0631\u0627\u062e\u0648\u0627\u0646", + "file_type": "document", + "source_file": ".claude/prompt/otp-sms-site-name.md", + "source_location": "L68", + "_origin": "ast", + "id": "prompt_otp_sms_site_name_\u06f2_\u067e\u0627\u0633_\u062f\u0627\u062f\u0646_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0641\u0639\u0644\u06cc_\u0627\u0632_\u0635\u0641\u062d\u0647_\u0647\u0627\u06cc_\u0641\u0631\u0627\u062e\u0648\u0627\u0646", + "community": 62, + "norm_label": "\u06f2. \u067e\u0627\u0633\u200c\u062f\u0627\u062f\u0646 \u062f\u0627\u0645\u0646\u0647\u200c\u06cc \u0641\u0639\u0644\u06cc \u0627\u0632 \u0635\u0641\u062d\u0647\u200c\u0647\u0627\u06cc \u0641\u0631\u0627\u062e\u0648\u0627\u0646" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/otp-sms-site-name.md", + "source_location": "L90", + "_origin": "ast", + "id": "prompt_otp_sms_site_name_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 62, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "payment-flow-frontend.md", + "file_type": "document", + "source_file": ".claude/prompt/payment-flow-frontend.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_payment_flow_frontend", + "community": 49, + "norm_label": "payment-flow-frontend.md" + }, + { + "label": "\u062c\u0631\u06cc\u0627\u0646 \u067e\u0631\u062f\u0627\u062e\u062a \u0633\u0645\u062a \u06a9\u0644\u0627\u06cc\u0646\u062a \u2014 \u0627\u0646\u062a\u0642\u0627\u0644 \u0627\u0632 \u0637\u0631\u06cc\u0642 \u0628\u06a9\u200c\u0627\u0646\u062f + \u0635\u0641\u062d\u0627\u062a \u0646\u062a\u06cc\u062c\u0647 (Frontend)", + "file_type": "document", + "source_file": ".claude/prompt/payment-flow-frontend.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_payment_flow_frontend_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0633\u0645\u062a_\u06a9\u0644\u0627\u06cc\u0646\u062a_\u0627\u0646\u062a\u0642\u0627\u0644_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u0628\u06a9_\u0627\u0646\u062f_\u0635\u0641\u062d\u0627\u062a_\u0646\u062a\u06cc\u062c\u0647_frontend", + "community": 49, + "norm_label": "\u062c\u0631\u06cc\u0627\u0646 \u067e\u0631\u062f\u0627\u062e\u062a \u0633\u0645\u062a \u06a9\u0644\u0627\u06cc\u0646\u062a \u2014 \u0627\u0646\u062a\u0642\u0627\u0644 \u0627\u0632 \u0637\u0631\u06cc\u0642 \u0628\u06a9\u200c\u0627\u0646\u062f + \u0635\u0641\u062d\u0627\u062a \u0646\u062a\u06cc\u062c\u0647 (frontend)" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/payment-flow-frontend.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_payment_flow_frontend_\u067e\u0631\u0648\u0698\u0647", + "community": 49, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/payment-flow-frontend.md", + "source_location": "L7", + "_origin": "ast", + "id": "prompt_payment_flow_frontend_\u0632\u0645\u06cc\u0646\u0647", + "community": 49, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/payment-flow-frontend.md", + "source_location": "L15", + "_origin": "ast", + "id": "prompt_payment_flow_frontend_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "community": 49, + "norm_label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/payment-flow-frontend.md", + "source_location": "L24", + "_origin": "ast", + "id": "prompt_payment_flow_frontend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 49, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/payment-flow-frontend.md", + "source_location": "L33", + "_origin": "ast", + "id": "prompt_payment_flow_frontend_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "community": 49, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/payment-flow-frontend.md", + "source_location": "L53", + "_origin": "ast", + "id": "prompt_payment_flow_frontend_\u0648\u0638\u0627\u06cc\u0641", + "community": 49, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. \u062a\u062b\u0628\u06cc\u062a \u0627\u0646\u062a\u0642\u0627\u0644 \u0627\u0632 \u0637\u0631\u06cc\u0642 \u0628\u06a9\u200c\u0627\u0646\u062f (\u0628\u062f\u0648\u0646 \u062a\u0645\u0627\u0633 \u0645\u0633\u062a\u0642\u06cc\u0645 \u0628\u0627 \u0628\u0627\u0646\u06a9)", + "file_type": "document", + "source_file": ".claude/prompt/payment-flow-frontend.md", + "source_location": "L55", + "_origin": "ast", + "id": "prompt_payment_flow_frontend_\u06f1_\u062a\u062b\u0628\u06cc\u062a_\u0627\u0646\u062a\u0642\u0627\u0644_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u0628\u06a9_\u0627\u0646\u062f_\u0628\u062f\u0648\u0646_\u062a\u0645\u0627\u0633_\u0645\u0633\u062a\u0642\u06cc\u0645_\u0628\u0627_\u0628\u0627\u0646\u06a9", + "community": 49, + "norm_label": "\u06f1. \u062a\u062b\u0628\u06cc\u062a \u0627\u0646\u062a\u0642\u0627\u0644 \u0627\u0632 \u0637\u0631\u06cc\u0642 \u0628\u06a9\u200c\u0627\u0646\u062f (\u0628\u062f\u0648\u0646 \u062a\u0645\u0627\u0633 \u0645\u0633\u062a\u0642\u06cc\u0645 \u0628\u0627 \u0628\u0627\u0646\u06a9)" + }, + { + "label": "\u06f2. \u0635\u0641\u062d\u0647\u0654 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0631 \u0627\u0633\u0627\u0633 `status`", + "file_type": "document", + "source_file": ".claude/prompt/payment-flow-frontend.md", + "source_location": "L68", + "_origin": "ast", + "id": "prompt_payment_flow_frontend_\u06f2_\u0635\u0641\u062d\u0647_\u0646\u062a\u06cc\u062c\u0647_\u0628\u0631_\u0627\u0633\u0627\u0633_status", + "community": 49, + "norm_label": "\u06f2. \u0635\u0641\u062d\u0647 \u0646\u062a\u06cc\u062c\u0647 \u0628\u0631 \u0627\u0633\u0627\u0633 `status`" + }, + { + "label": "\u06f3. \u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u0628\u0627 \u0634\u06a9\u0644 \u067e\u0627\u0633\u062e `getPayment`", + "file_type": "document", + "source_file": ".claude/prompt/payment-flow-frontend.md", + "source_location": "L81", + "_origin": "ast", + "id": "prompt_payment_flow_frontend_\u06f3_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u0628\u0627_\u0634\u06a9\u0644_\u067e\u0627\u0633\u062e_getpayment", + "community": 49, + "norm_label": "\u06f3. \u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u0628\u0627 \u0634\u06a9\u0644 \u067e\u0627\u0633\u062e `getpayment`" + }, + { + "label": "\u06f4. UX \u0627\u0646\u0635\u0631\u0627\u0641/\u0634\u06a9\u0633\u062a", + "file_type": "document", + "source_file": ".claude/prompt/payment-flow-frontend.md", + "source_location": "L90", + "_origin": "ast", + "id": "prompt_payment_flow_frontend_\u06f4_ux_\u0627\u0646\u0635\u0631\u0627\u0641_\u0634\u06a9\u0633\u062a", + "community": 49, + "norm_label": "\u06f4. ux \u0627\u0646\u0635\u0631\u0627\u0641/\u0634\u06a9\u0633\u062a" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/payment-flow-frontend.md", + "source_location": "L94", + "_origin": "ast", + "id": "prompt_payment_flow_frontend_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 49, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "payment-single-flow-frontend.md", + "file_type": "document", + "source_file": ".claude/prompt/payment-single-flow-frontend.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_payment_single_flow_frontend", + "community": 54, + "norm_label": "payment-single-flow-frontend.md" + }, + { + "label": "entry \u067e\u0631\u062f\u0627\u062e\u062a \u0628\u0647\u200c\u0635\u0648\u0631\u062a \u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a \u062e\u0627\u0644\u0635 \u0628\u0647 Backend (\u0628\u062f\u0648\u0646 XHR) \u2014 \u0633\u0627\u06cc\u062a \u0639\u0645\u0648\u0645\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/payment-single-flow-frontend.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_payment_single_flow_frontend_entry_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a_\u062e\u0627\u0644\u0635_\u0628\u0647_backend_\u0628\u062f\u0648\u0646_xhr_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", + "community": 54, + "norm_label": "entry \u067e\u0631\u062f\u0627\u062e\u062a \u0628\u0647\u200c\u0635\u0648\u0631\u062a \u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a \u062e\u0627\u0644\u0635 \u0628\u0647 backend (\u0628\u062f\u0648\u0646 xhr) \u2014 \u0633\u0627\u06cc\u062a \u0639\u0645\u0648\u0645\u06cc" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/payment-single-flow-frontend.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_payment_single_flow_frontend_\u067e\u0631\u0648\u0698\u0647", + "community": 54, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/payment-single-flow-frontend.md", + "source_location": "L7", + "_origin": "ast", + "id": "prompt_payment_single_flow_frontend_\u0632\u0645\u06cc\u0646\u0647", + "community": 54, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/payment-single-flow-frontend.md", + "source_location": "L19", + "_origin": "ast", + "id": "prompt_payment_single_flow_frontend_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "community": 54, + "norm_label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/payment-single-flow-frontend.md", + "source_location": "L23", + "_origin": "ast", + "id": "prompt_payment_single_flow_frontend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 54, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/payment-single-flow-frontend.md", + "source_location": "L32", + "_origin": "ast", + "id": "prompt_payment_single_flow_frontend_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "community": 54, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/payment-single-flow-frontend.md", + "source_location": "L55", + "_origin": "ast", + "id": "prompt_payment_single_flow_frontend_\u0648\u0638\u0627\u06cc\u0641", + "community": 54, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. \u062a\u0628\u062f\u06cc\u0644 \u062f\u06a9\u0645\u0647\u0654 \u067e\u0631\u062f\u0627\u062e\u062a \u0628\u0647 \u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a\u0650 \u062e\u0627\u0644\u0635 (\u062d\u0630\u0641 XHR)", + "file_type": "document", + "source_file": ".claude/prompt/payment-single-flow-frontend.md", + "source_location": "L57", + "_origin": "ast", + "id": "prompt_payment_single_flow_frontend_\u06f1_\u062a\u0628\u062f\u06cc\u0644_\u062f\u06a9\u0645\u0647_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0647_\u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a_\u062e\u0627\u0644\u0635_\u062d\u0630\u0641_xhr", + "community": 54, + "norm_label": "\u06f1. \u062a\u0628\u062f\u06cc\u0644 \u062f\u06a9\u0645\u0647 \u067e\u0631\u062f\u0627\u062e\u062a \u0628\u0647 \u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a \u062e\u0627\u0644\u0635 (\u062d\u0630\u0641 xhr)" + }, + { + "label": "\u06f2. \u062d\u0641\u0638 \u0627\u0646\u062a\u062e\u0627\u0628 \u062f\u0631\u06af\u0627\u0647 (\u0645\u0631\u062d\u0644\u0647\u0654 \u06f2 \u0646\u06cc\u0627\u0632)", + "file_type": "document", + "source_file": ".claude/prompt/payment-single-flow-frontend.md", + "source_location": "L80", + "_origin": "ast", + "id": "prompt_payment_single_flow_frontend_\u06f2_\u062d\u0641\u0638_\u0627\u0646\u062a\u062e\u0627\u0628_\u062f\u0631\u06af\u0627\u0647_\u0645\u0631\u062d\u0644\u0647_\u06f2_\u0646\u06cc\u0627\u0632", + "community": 54, + "norm_label": "\u06f2. \u062d\u0641\u0638 \u0627\u0646\u062a\u062e\u0627\u0628 \u062f\u0631\u06af\u0627\u0647 (\u0645\u0631\u062d\u0644\u0647 \u06f2 \u0646\u06cc\u0627\u0632)" + }, + { + "label": "\u06f3. \u067e\u0627\u06a9\u200c\u0633\u0627\u0632\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/payment-single-flow-frontend.md", + "source_location": "L86", + "_origin": "ast", + "id": "prompt_payment_single_flow_frontend_\u06f3_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc", + "community": 54, + "norm_label": "\u06f3. \u067e\u0627\u06a9\u200c\u0633\u0627\u0632\u06cc" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/payment-single-flow-frontend.md", + "source_location": "L91", + "_origin": "ast", + "id": "prompt_payment_single_flow_frontend_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 54, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "profile-birthday-send-direction-fix.md", + "file_type": "document", + "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_profile_birthday_send_direction_fix", + "community": 69, + "norm_label": "profile-birthday-send-direction-fix.md" + }, + { + "label": "\u0631\u0641\u0639 \u062c\u0647\u062a \u062a\u0628\u062f\u06cc\u0644 \u062a\u0627\u0631\u06cc\u062e \u062a\u0648\u0644\u062f \u0647\u0646\u06af\u0627\u0645 \u0627\u06cc\u062c\u0627\u062f \u067e\u0631\u0648\u0641\u0627\u06cc\u0644", + "file_type": "document", + "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_profile_birthday_send_direction_fix_\u0631\u0641\u0639_\u062c\u0647\u062a_\u062a\u0628\u062f\u06cc\u0644_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0647\u0646\u06af\u0627\u0645_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", + "community": 69, + "norm_label": "\u0631\u0641\u0639 \u062c\u0647\u062a \u062a\u0628\u062f\u06cc\u0644 \u062a\u0627\u0631\u06cc\u062e \u062a\u0648\u0644\u062f \u0647\u0646\u06af\u0627\u0645 \u0627\u06cc\u062c\u0627\u062f \u067e\u0631\u0648\u0641\u0627\u06cc\u0644" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_profile_birthday_send_direction_fix_\u067e\u0631\u0648\u0698\u0647", + "community": 69, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", + "source_location": "L9", + "_origin": "ast", + "id": "prompt_profile_birthday_send_direction_fix_\u0632\u0645\u06cc\u0646\u0647", + "community": 69, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", + "source_location": "L17", + "_origin": "ast", + "id": "prompt_profile_birthday_send_direction_fix_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "community": 69, + "norm_label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", + "source_location": "L21", + "_origin": "ast", + "id": "prompt_profile_birthday_send_direction_fix_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 69, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", + "file_type": "document", + "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", + "source_location": "L28", + "_origin": "ast", + "id": "prompt_profile_birthday_send_direction_fix_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "community": 69, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", + "source_location": "L45", + "_origin": "ast", + "id": "prompt_profile_birthday_send_direction_fix_\u0648\u0638\u0627\u06cc\u0641", + "community": 69, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. \u0627\u0635\u0644\u0627\u062d \u062c\u0647\u062a \u062f\u0631 `postData`", + "file_type": "document", + "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", + "source_location": "L47", + "_origin": "ast", + "id": "prompt_profile_birthday_send_direction_fix_\u06f1_\u0627\u0635\u0644\u0627\u062d_\u062c\u0647\u062a_\u062f\u0631_postdata", + "community": 69, + "norm_label": "\u06f1. \u0627\u0635\u0644\u0627\u062d \u062c\u0647\u062a \u062f\u0631 `postdata`" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", + "source_location": "L53", + "_origin": "ast", + "id": "prompt_profile_birthday_send_direction_fix_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 69, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "rating-rich-ui-wiring.md", + "file_type": "document", + "source_file": ".claude/prompt/rating-rich-ui-wiring.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_rating_rich_ui_wiring", + "community": 42, + "norm_label": "rating-rich-ui-wiring.md" + }, + { + "label": "\u0627\u062a\u0635\u0627\u0644 UI \u063a\u0646\u06cc\u0650 \u0646\u0638\u0631\u0627\u062a/\u0627\u0645\u062a\u06cc\u0627\u0632 \u0635\u0641\u062d\u0647 \u067e\u0632\u0634\u06a9 \u0628\u0647 \u0642\u0631\u0627\u0631\u062f\u0627\u062f \u062c\u062f\u06cc\u062f \u0628\u06a9\u200c\u0627\u0646\u062f", + "file_type": "document", + "source_file": ".claude/prompt/rating-rich-ui-wiring.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_rating_rich_ui_wiring_\u0627\u062a\u0635\u0627\u0644_ui_\u063a\u0646\u06cc_\u0646\u0638\u0631\u0627\u062a_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0628\u0647_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u062c\u062f\u06cc\u062f_\u0628\u06a9_\u0627\u0646\u062f", + "community": 42, + "norm_label": "\u0627\u062a\u0635\u0627\u0644 ui \u063a\u0646\u06cc \u0646\u0638\u0631\u0627\u062a/\u0627\u0645\u062a\u06cc\u0627\u0632 \u0635\u0641\u062d\u0647 \u067e\u0632\u0634\u06a9 \u0628\u0647 \u0642\u0631\u0627\u0631\u062f\u0627\u062f \u062c\u062f\u06cc\u062f \u0628\u06a9\u200c\u0627\u0646\u062f" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/rating-rich-ui-wiring.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_rating_rich_ui_wiring_\u067e\u0631\u0648\u0698\u0647", + "community": 42, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/rating-rich-ui-wiring.md", + "source_location": "L9", + "_origin": "ast", + "id": "prompt_rating_rich_ui_wiring_\u0632\u0645\u06cc\u0646\u0647", + "community": 42, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0642\u0631\u0627\u0631\u062f\u0627\u062f \u0628\u06a9\u200c\u0627\u0646\u062f (\u0645\u0631\u062c\u0639 \u2014 \u0627\u0632 \u067e\u0631\u0627\u0645\u067e\u062a \u0647\u0645\u062a\u0627)", + "file_type": "document", + "source_file": ".claude/prompt/rating-rich-ui-wiring.md", + "source_location": "L15", + "_origin": "ast", + "id": "prompt_rating_rich_ui_wiring_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0628\u06a9_\u0627\u0646\u062f_\u0645\u0631\u062c\u0639_\u0627\u0632_\u067e\u0631\u0627\u0645\u067e\u062a_\u0647\u0645\u062a\u0627", + "community": 42, + "norm_label": "\u0642\u0631\u0627\u0631\u062f\u0627\u062f \u0628\u06a9\u200c\u0627\u0646\u062f (\u0645\u0631\u062c\u0639 \u2014 \u0627\u0632 \u067e\u0631\u0627\u0645\u067e\u062a \u0647\u0645\u062a\u0627)" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637 (UI \u0645\u0648\u062c\u0648\u062f \u06a9\u0647 \u0628\u0627\u06cc\u062f \u0648\u0635\u0644 \u0634\u0648\u062f)", + "file_type": "document", + "source_file": ".claude/prompt/rating-rich-ui-wiring.md", + "source_location": "L25", + "_origin": "ast", + "id": "prompt_rating_rich_ui_wiring_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637_ui_\u0645\u0648\u062c\u0648\u062f_\u06a9\u0647_\u0628\u0627\u06cc\u062f_\u0648\u0635\u0644_\u0634\u0648\u062f", + "community": 42, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637 (ui \u0645\u0648\u062c\u0648\u062f \u06a9\u0647 \u0628\u0627\u06cc\u062f \u0648\u0635\u0644 \u0634\u0648\u062f)" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/rating-rich-ui-wiring.md", + "source_location": "L40", + "_origin": "ast", + "id": "prompt_rating_rich_ui_wiring_\u0648\u0638\u0627\u06cc\u0641", + "community": 42, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. fetch \u062a\u062c\u0645\u06cc\u0639 \u0627\u0645\u062a\u06cc\u0627\u0632 \u062f\u0631 \u0635\u0641\u062d\u0647 \u0648 \u0639\u0628\u0648\u0631 prop", + "file_type": "document", + "source_file": ".claude/prompt/rating-rich-ui-wiring.md", + "source_location": "L42", + "_origin": "ast", + "id": "prompt_rating_rich_ui_wiring_\u06f1_fetch_\u062a\u062c\u0645\u06cc\u0639_\u0627\u0645\u062a\u06cc\u0627\u0632_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0648_\u0639\u0628\u0648\u0631_prop", + "community": 42, + "norm_label": "\u06f1. fetch \u062a\u062c\u0645\u06cc\u0639 \u0627\u0645\u062a\u06cc\u0627\u0632 \u062f\u0631 \u0635\u0641\u062d\u0647 \u0648 \u0639\u0628\u0648\u0631 prop" + }, + { + "label": "\u06f2. \u0627\u062a\u0635\u0627\u0644 \u0686\u0627\u0631\u062a \u0628\u0647 \u0642\u0631\u0627\u0631\u062f\u0627\u062f \u062c\u062f\u06cc\u062f (`chart/index.js` + `ProgressAll.js`)", + "file_type": "document", + "source_file": ".claude/prompt/rating-rich-ui-wiring.md", + "source_location": "L50", + "_origin": "ast", + "id": "prompt_rating_rich_ui_wiring_\u06f2_\u0627\u062a\u0635\u0627\u0644_\u0686\u0627\u0631\u062a_\u0628\u0647_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u062c\u062f\u06cc\u062f_chart_index_js_progressall_js", + "community": 42, + "norm_label": "\u06f2. \u0627\u062a\u0635\u0627\u0644 \u0686\u0627\u0631\u062a \u0628\u0647 \u0642\u0631\u0627\u0631\u062f\u0627\u062f \u062c\u062f\u06cc\u062f (`chart/index.js` + `progressall.js`)" + }, + { + "label": "\u06f3. \u0641\u0631\u0645 \u062b\u0628\u062a \u0627\u0645\u062a\u06cc\u0627\u0632 \u0686\u0646\u062f\u0628\u064f\u0639\u062f\u06cc (`Form.js` + `ModalAnswer.js` + `content/index.js`)", + "file_type": "document", + "source_file": ".claude/prompt/rating-rich-ui-wiring.md", + "source_location": "L56", + "_origin": "ast", + "id": "prompt_rating_rich_ui_wiring_\u06f3_\u0641\u0631\u0645_\u062b\u0628\u062a_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0686\u0646\u062f\u0628_\u0639\u062f\u06cc_form_js_modalanswer_js_content_index_js", + "community": 42, + "norm_label": "\u06f3. \u0641\u0631\u0645 \u062b\u0628\u062a \u0627\u0645\u062a\u06cc\u0627\u0632 \u0686\u0646\u062f\u0628\u0639\u062f\u06cc (`form.js` + `modalanswer.js` + `content/index.js`)" + }, + { + "label": "\u06f4. \u0644\u0627\u06cc\u06a9/\u062f\u06cc\u0633\u0644\u0627\u06cc\u06a9 \u0648\u0627\u0642\u0639\u06cc (`ItemUser.js` + `services/response.js`)", + "file_type": "document", + "source_file": ".claude/prompt/rating-rich-ui-wiring.md", + "source_location": "L76", + "_origin": "ast", + "id": "prompt_rating_rich_ui_wiring_\u06f4_\u0644\u0627\u06cc\u06a9_\u062f\u06cc\u0633\u0644\u0627\u06cc\u06a9_\u0648\u0627\u0642\u0639\u06cc_itemuser_js_services_response_js", + "community": 42, + "norm_label": "\u06f4. \u0644\u0627\u06cc\u06a9/\u062f\u06cc\u0633\u0644\u0627\u06cc\u06a9 \u0648\u0627\u0642\u0639\u06cc (`itemuser.js` + `services/response.js`)" + }, + { + "label": "\u06f5. \u062b\u0628\u062a \u067e\u0627\u0633\u062e (`SendAnswer.js`)", + "file_type": "document", + "source_file": ".claude/prompt/rating-rich-ui-wiring.md", + "source_location": "L81", + "_origin": "ast", + "id": "prompt_rating_rich_ui_wiring_\u06f5_\u062b\u0628\u062a_\u067e\u0627\u0633\u062e_sendanswer_js", + "community": 42, + "norm_label": "\u06f5. \u062b\u0628\u062a \u067e\u0627\u0633\u062e (`sendanswer.js`)" + }, + { + "label": "\u06f6. wrapper\u0647\u0627 (`services/response.js`)", + "file_type": "document", + "source_file": ".claude/prompt/rating-rich-ui-wiring.md", + "source_location": "L85", + "_origin": "ast", + "id": "prompt_rating_rich_ui_wiring_\u06f6_wrapper\u0647\u0627_services_response_js", + "community": 42, + "norm_label": "\u06f6. wrapper\u0647\u0627 (`services/response.js`)" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/rating-rich-ui-wiring.md", + "source_location": "L90", + "_origin": "ast", + "id": "prompt_rating_rich_ui_wiring_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 42, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "seo-performance-rendering-audit.md", + "file_type": "document", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_seo_performance_rendering_audit", + "community": 13, + "norm_label": "seo-performance-rendering-audit.md" + }, + { + "label": "\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc \u06a9\u0627\u0645\u0644 Rendering Strategy\u060c SEO\u060c Performance \u0648 \u0627\u0645\u0646\u06cc\u062a (Next.js 15)", + "file_type": "document", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_seo_performance_rendering_audit_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_\u06a9\u0627\u0645\u0644_rendering_strategy_seo_performance_\u0648_\u0627\u0645\u0646\u06cc\u062a_next_js_15", + "community": 13, + "norm_label": "\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc \u06a9\u0627\u0645\u0644 rendering strategy\u060c seo\u060c performance \u0648 \u0627\u0645\u0646\u06cc\u062a (next.js 15)" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_seo_performance_rendering_audit_\u067e\u0631\u0648\u0698\u0647", + "community": 13, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L7", + "_origin": "ast", + "id": "prompt_seo_performance_rendering_audit_\u0632\u0645\u06cc\u0646\u0647", + "community": 13, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L18", + "_origin": "ast", + "id": "prompt_seo_performance_rendering_audit_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 13, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L34", + "_origin": "ast", + "id": "prompt_seo_performance_rendering_audit_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "community": 13, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc" + }, + { + "label": "`lib/req.js` \u2014 \u0645\u0634\u06a9\u0644 \u0627\u0635\u0644\u06cc caching", + "file_type": "document", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L36", + "_origin": "ast", + "id": "prompt_seo_performance_rendering_audit_lib_req_js_\u0645\u0634\u06a9\u0644_\u0627\u0635\u0644\u06cc_caching", + "community": 13, + "norm_label": "`lib/req.js` \u2014 \u0645\u0634\u06a9\u0644 \u0627\u0635\u0644\u06cc caching" + }, + { + "label": "`app/doctor/[slug]/page.js` \u2014 \u062f\u0648 \u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc \u062a\u06a9\u0631\u0627\u0631\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L59", + "_origin": "ast", + "id": "prompt_seo_performance_rendering_audit_app_doctor_slug_page_js_\u062f\u0648_\u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc_\u062a\u06a9\u0631\u0627\u0631\u06cc", + "community": 13, + "norm_label": "`app/doctor/[slug]/page.js` \u2014 \u062f\u0648 \u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc \u062a\u06a9\u0631\u0627\u0631\u06cc" + }, + { + "label": "`middleware.js` \u2014 \u0627\u062c\u0631\u0627 \u0631\u0648\u06cc \u0647\u0645\u0647 \u0645\u0633\u06cc\u0631\u0647\u0627", + "file_type": "document", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L77", + "_origin": "ast", + "id": "prompt_seo_performance_rendering_audit_middleware_js_\u0627\u062c\u0631\u0627_\u0631\u0648\u06cc_\u0647\u0645\u0647_\u0645\u0633\u06cc\u0631\u0647\u0627", + "community": 13, + "norm_label": "`middleware.js` \u2014 \u0627\u062c\u0631\u0627 \u0631\u0648\u06cc \u0647\u0645\u0647 \u0645\u0633\u06cc\u0631\u0647\u0627" + }, + { + "label": "`app/doctors/page.js` \u2014 \u0628\u062f\u0648\u0646 og:images\u060c \u0628\u062f\u0648\u0646 cache", + "file_type": "document", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L91", + "_origin": "ast", + "id": "prompt_seo_performance_rendering_audit_app_doctors_page_js_\u0628\u062f\u0648\u0646_og_images_\u0628\u062f\u0648\u0646_cache", + "community": 13, + "norm_label": "`app/doctors/page.js` \u2014 \u0628\u062f\u0648\u0646 og:images\u060c \u0628\u062f\u0648\u0646 cache" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L110", + "_origin": "ast", + "id": "prompt_seo_performance_rendering_audit_\u0648\u0638\u0627\u06cc\u0641", + "community": 13, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc fetch \u0644\u0627\u06cc\u0647\u200c\u06cc axios \u0628\u0627 `fetch` \u0628\u0648\u0645\u06cc Next.js (\u06cc\u0627 wrapper \u0631\u0648\u06cc \u0622\u0646) \u0628\u0631\u0627\u06cc \u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc\u200c\u0647\u0627\u06cc Server Component", + "file_type": "document", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L112", + "_origin": "ast", + "id": "prompt_seo_performance_rendering_audit_\u06f1_\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc_fetch_\u0644\u0627\u06cc\u0647_\u06cc_axios_\u0628\u0627_fetch_\u0628\u0648\u0645\u06cc_next_js_\u06cc\u0627_wrapper_\u0631\u0648\u06cc_\u0622\u0646_\u0628\u0631\u0627\u06cc_\u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc_\u0647\u0627\u06cc_server_component", + "community": 13, + "norm_label": "\u06f1. \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc fetch \u0644\u0627\u06cc\u0647\u200c\u06cc axios \u0628\u0627 `fetch` \u0628\u0648\u0645\u06cc next.js (\u06cc\u0627 wrapper \u0631\u0648\u06cc \u0627\u0646) \u0628\u0631\u0627\u06cc \u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc\u200c\u0647\u0627\u06cc server component" + }, + { + "label": "\u06f2. \u062d\u0630\u0641 \u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc \u062a\u06a9\u0631\u0627\u0631\u06cc \u062f\u0631 `doctor/[slug]/page.js` (\u0648 \u0627\u0644\u06af\u0648\u06cc \u0645\u0634\u0627\u0628\u0647 \u062f\u0631 `clinic/[slug]`, `blog/[slug]`)", + "file_type": "document", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L130", + "_origin": "ast", + "id": "prompt_seo_performance_rendering_audit_\u06f2_\u062d\u0630\u0641_\u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc_\u062a\u06a9\u0631\u0627\u0631\u06cc_\u062f\u0631_doctor_slug_page_js_\u0648_\u0627\u0644\u06af\u0648\u06cc_\u0645\u0634\u0627\u0628\u0647_\u062f\u0631_clinic_slug_blog_slug", + "community": 13, + "norm_label": "\u06f2. \u062d\u0630\u0641 \u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc \u062a\u06a9\u0631\u0627\u0631\u06cc \u062f\u0631 `doctor/[slug]/page.js` (\u0648 \u0627\u0644\u06af\u0648\u06cc \u0645\u0634\u0627\u0628\u0647 \u062f\u0631 `clinic/[slug]`, `blog/[slug]`)" + }, + { + "label": "\u06f3. \u0628\u0627\u0632\u0628\u06cc\u0646\u06cc `middleware.js` \u2014 \u0645\u062d\u062f\u0648\u062f \u06a9\u0631\u062f\u0646 matcher \u06cc\u0627 \u062d\u0630\u0641 \u0648\u0627\u0628\u0633\u062a\u06af\u06cc \u063a\u06cc\u0631\u0636\u0631\u0648\u0631\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L161", + "_origin": "ast", + "id": "prompt_seo_performance_rendering_audit_\u06f3_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_middleware_js_\u0645\u062d\u062f\u0648\u062f_\u06a9\u0631\u062f\u0646_matcher_\u06cc\u0627_\u062d\u0630\u0641_\u0648\u0627\u0628\u0633\u062a\u06af\u06cc_\u063a\u06cc\u0631\u0636\u0631\u0648\u0631\u06cc", + "community": 13, + "norm_label": "\u06f3. \u0628\u0627\u0632\u0628\u06cc\u0646\u06cc `middleware.js` \u2014 \u0645\u062d\u062f\u0648\u062f \u06a9\u0631\u062f\u0646 matcher \u06cc\u0627 \u062d\u0630\u0641 \u0648\u0627\u0628\u0633\u062a\u06af\u06cc \u063a\u06cc\u0631\u0636\u0631\u0648\u0631\u06cc" + }, + { + "label": "\u06f4. \u0627\u0641\u0632\u0648\u062f\u0646 JSON-LD \u0633\u0631\u0627\u0633\u0631\u06cc \u062f\u0631 `app/layout.js`", + "file_type": "document", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L181", + "_origin": "ast", + "id": "prompt_seo_performance_rendering_audit_\u06f4_\u0627\u0641\u0632\u0648\u062f\u0646_json_ld_\u0633\u0631\u0627\u0633\u0631\u06cc_\u062f\u0631_app_layout_js", + "community": 13, + "norm_label": "\u06f4. \u0627\u0641\u0632\u0648\u062f\u0646 json-ld \u0633\u0631\u0627\u0633\u0631\u06cc \u062f\u0631 `app/layout.js`" + }, + { + "label": "\u06f5. \u062a\u06a9\u0645\u06cc\u0644 og:image/twitter:image \u062f\u0631 \u0647\u0645\u0647 \u0635\u0641\u062d\u0627\u062a", + "file_type": "document", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L219", + "_origin": "ast", + "id": "prompt_seo_performance_rendering_audit_\u06f5_\u062a\u06a9\u0645\u06cc\u0644_og_image_twitter_image_\u062f\u0631_\u0647\u0645\u0647_\u0635\u0641\u062d\u0627\u062a", + "community": 13, + "norm_label": "\u06f5. \u062a\u06a9\u0645\u06cc\u0644 og:image/twitter:image \u062f\u0631 \u0647\u0645\u0647 \u0635\u0641\u062d\u0627\u062a" + }, + { + "label": "\u06f6. \u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 `loading.js` \u0628\u0631\u0627\u06cc \u0645\u0633\u06cc\u0631\u0647\u0627\u06cc \u062f\u0627\u062f\u0647\u200c\u0645\u062d\u0648\u0631", + "file_type": "document", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L232", + "_origin": "ast", + "id": "prompt_seo_performance_rendering_audit_\u06f6_\u0627\u0636\u0627\u0641\u0647_\u06a9\u0631\u062f\u0646_loading_js_\u0628\u0631\u0627\u06cc_\u0645\u0633\u06cc\u0631\u0647\u0627\u06cc_\u062f\u0627\u062f\u0647_\u0645\u062d\u0648\u0631", + "community": 13, + "norm_label": "\u06f6. \u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 `loading.js` \u0628\u0631\u0627\u06cc \u0645\u0633\u06cc\u0631\u0647\u0627\u06cc \u062f\u0627\u062f\u0647\u200c\u0645\u062d\u0648\u0631" + }, + { + "label": "\u06f7. \u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 `error.js` \u062f\u0631 \u0633\u0637\u062d root \u0648 \u0628\u0631\u0627\u06cc \u0645\u0633\u06cc\u0631\u0647\u0627\u06cc \u067e\u0631\u062a\u0642\u0627\u0636\u0627", + "file_type": "document", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L236", + "_origin": "ast", + "id": "prompt_seo_performance_rendering_audit_\u06f7_\u0627\u0636\u0627\u0641\u0647_\u06a9\u0631\u062f\u0646_error_js_\u062f\u0631_\u0633\u0637\u062d_root_\u0648_\u0628\u0631\u0627\u06cc_\u0645\u0633\u06cc\u0631\u0647\u0627\u06cc_\u067e\u0631\u062a\u0642\u0627\u0636\u0627", + "community": 13, + "norm_label": "\u06f7. \u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 `error.js` \u062f\u0631 \u0633\u0637\u062d root \u0648 \u0628\u0631\u0627\u06cc \u0645\u0633\u06cc\u0631\u0647\u0627\u06cc \u067e\u0631\u062a\u0642\u0627\u0636\u0627" + }, + { + "label": "\u06f8. \u0628\u0631\u0631\u0633\u06cc `app/sitemap.js` \u0648 `app/robots.js`", + "file_type": "document", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L252", + "_origin": "ast", + "id": "prompt_seo_performance_rendering_audit_\u06f8_\u0628\u0631\u0631\u0633\u06cc_app_sitemap_js_\u0648_app_robots_js", + "community": 13, + "norm_label": "\u06f8. \u0628\u0631\u0631\u0633\u06cc `app/sitemap.js` \u0648 `app/robots.js`" + }, + { + "label": "\u06f9. \u06af\u0632\u0627\u0631\u0634 \u0646\u0647\u0627\u06cc\u06cc \u0628\u0647\u200c\u0635\u0648\u0631\u062a \u062c\u062f\u0648\u0644", + "file_type": "document", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L259", + "_origin": "ast", + "id": "prompt_seo_performance_rendering_audit_\u06f9_\u06af\u0632\u0627\u0631\u0634_\u0646\u0647\u0627\u06cc\u06cc_\u0628\u0647_\u0635\u0648\u0631\u062a_\u062c\u062f\u0648\u0644", + "community": 13, + "norm_label": "\u06f9. \u06af\u0632\u0627\u0631\u0634 \u0646\u0647\u0627\u06cc\u06cc \u0628\u0647\u200c\u0635\u0648\u0631\u062a \u062c\u062f\u0648\u0644" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L268", + "_origin": "ast", + "id": "prompt_seo_performance_rendering_audit_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 13, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "specialties-doctor-count-wire.md", + "file_type": "document", + "source_file": ".claude/prompt/specialties-doctor-count-wire.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_specialties_doctor_count_wire", + "community": 50, + "norm_label": "specialties-doctor-count-wire.md" + }, + { + "label": "\u0646\u0645\u0627\u06cc\u0634 \u062a\u0639\u062f\u0627\u062f \u067e\u0632\u0634\u06a9\u0627\u0646 \u0647\u0631 \u062a\u062e\u0635\u0635 \u062f\u0631 \u0635\u0641\u062d\u0647 /specialties", + "file_type": "document", + "source_file": ".claude/prompt/specialties-doctor-count-wire.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_specialties_doctor_count_wire_\u0646\u0645\u0627\u06cc\u0634_\u062a\u0639\u062f\u0627\u062f_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0647\u0631_\u062a\u062e\u0635\u0635_\u062f\u0631_\u0635\u0641\u062d\u0647_specialties", + "community": 50, + "norm_label": "\u0646\u0645\u0627\u06cc\u0634 \u062a\u0639\u062f\u0627\u062f \u067e\u0632\u0634\u06a9\u0627\u0646 \u0647\u0631 \u062a\u062e\u0635\u0635 \u062f\u0631 \u0635\u0641\u062d\u0647 /specialties" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/specialties-doctor-count-wire.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_specialties_doctor_count_wire_\u067e\u0631\u0648\u0698\u0647", + "community": 50, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/specialties-doctor-count-wire.md", + "source_location": "L9", + "_origin": "ast", + "id": "prompt_specialties_doctor_count_wire_\u0632\u0645\u06cc\u0646\u0647", + "community": 50, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/specialties-doctor-count-wire.md", + "source_location": "L15", + "_origin": "ast", + "id": "prompt_specialties_doctor_count_wire_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "community": 50, + "norm_label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/specialties-doctor-count-wire.md", + "source_location": "L19", + "_origin": "ast", + "id": "prompt_specialties_doctor_count_wire_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 50, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", + "file_type": "document", + "source_file": ".claude/prompt/specialties-doctor-count-wire.md", + "source_location": "L28", + "_origin": "ast", + "id": "prompt_specialties_doctor_count_wire_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "community": 50, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/specialties-doctor-count-wire.md", + "source_location": "L53", + "_origin": "ast", + "id": "prompt_specialties_doctor_count_wire_\u0648\u0638\u0627\u06cc\u0641", + "community": 50, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. wrapper \u062f\u0631 `services/response.js`", + "file_type": "document", + "source_file": ".claude/prompt/specialties-doctor-count-wire.md", + "source_location": "L55", + "_origin": "ast", + "id": "prompt_specialties_doctor_count_wire_\u06f1_wrapper_\u062f\u0631_services_response_js", + "community": 50, + "norm_label": "\u06f1. wrapper \u062f\u0631 `services/response.js`" + }, + { + "label": "\u06f2. \u067e\u0627\u0633\u200c\u062f\u0627\u062f\u0646 city id \u0627\u0632 \u0635\u0641\u062d\u0647\u200c\u06cc server \u0628\u0647 \u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a client", + "file_type": "document", + "source_file": ".claude/prompt/specialties-doctor-count-wire.md", + "source_location": "L61", + "_origin": "ast", + "id": "prompt_specialties_doctor_count_wire_\u06f2_\u067e\u0627\u0633_\u062f\u0627\u062f\u0646_city_id_\u0627\u0632_\u0635\u0641\u062d\u0647_\u06cc_server_\u0628\u0647_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a_client", + "community": 50, + "norm_label": "\u06f2. \u067e\u0627\u0633\u200c\u062f\u0627\u062f\u0646 city id \u0627\u0632 \u0635\u0641\u062d\u0647\u200c\u06cc server \u0628\u0647 \u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a client" + }, + { + "label": "\u06f3. fetch \u062f\u0631 `components/specialties/index.js`", + "file_type": "document", + "source_file": ".claude/prompt/specialties-doctor-count-wire.md", + "source_location": "L76", + "_origin": "ast", + "id": "prompt_specialties_doctor_count_wire_\u06f3_fetch_\u062f\u0631_components_specialties_index_js", + "community": 50, + "norm_label": "\u06f3. fetch \u062f\u0631 `components/specialties/index.js`" + }, + { + "label": "\u06f4. `ItemSpecialties.js`", + "file_type": "document", + "source_file": ".claude/prompt/specialties-doctor-count-wire.md", + "source_location": "L94", + "_origin": "ast", + "id": "prompt_specialties_doctor_count_wire_\u06f4_itemspecialties_js", + "community": 50, + "norm_label": "\u06f4. `itemspecialties.js`" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/specialties-doctor-count-wire.md", + "source_location": "L97", + "_origin": "ast", + "id": "prompt_specialties_doctor_count_wire_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 50, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "technical-seo-audit-multidomain.md", + "file_type": "document", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_technical_seo_audit_multidomain", + "community": 10, + "norm_label": "technical-seo-audit-multidomain.md" + }, + { + "label": "\u0645\u0645\u06cc\u0632\u06cc \u0648 \u0631\u0641\u0639 \u06a9\u0627\u0645\u0644 Technical SEO \u0628\u0627 \u0645\u062d\u0648\u0631\u06cc\u062a \u0645\u0639\u0645\u0627\u0631\u06cc \u0686\u0646\u062f-\u062f\u0627\u0645\u0646\u0647\u200c\u0627\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_technical_seo_audit_multidomain_\u0645\u0645\u06cc\u0632\u06cc_\u0648_\u0631\u0641\u0639_\u06a9\u0627\u0645\u0644_technical_seo_\u0628\u0627_\u0645\u062d\u0648\u0631\u06cc\u062a_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc", + "community": 10, + "norm_label": "\u0645\u0645\u06cc\u0632\u06cc \u0648 \u0631\u0641\u0639 \u06a9\u0627\u0645\u0644 technical seo \u0628\u0627 \u0645\u062d\u0648\u0631\u06cc\u062a \u0645\u0639\u0645\u0627\u0631\u06cc \u0686\u0646\u062f-\u062f\u0627\u0645\u0646\u0647\u200c\u0627\u06cc" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_technical_seo_audit_multidomain_\u067e\u0631\u0648\u0698\u0647", + "community": 10, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0646\u0642\u0634", + "file_type": "document", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L7", + "_origin": "ast", + "id": "prompt_technical_seo_audit_multidomain_\u0646\u0642\u0634", + "community": 10, + "norm_label": "\u0646\u0642\u0634" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L11", + "_origin": "ast", + "id": "prompt_technical_seo_audit_multidomain_\u0632\u0645\u06cc\u0646\u0647", + "community": 10, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L17", + "_origin": "ast", + "id": "prompt_technical_seo_audit_multidomain_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "community": 10, + "norm_label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L23", + "_origin": "ast", + "id": "prompt_technical_seo_audit_multidomain_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 10, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06cc\u0627\u0641\u062a\u0647\u200c\u0647\u0627\u06cc \u0645\u0645\u06cc\u0632\u06cc \u0627\u0648\u0644\u06cc\u0647 \u2014 \u0627\u0632 \u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", + "file_type": "document", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L42", + "_origin": "ast", + "id": "prompt_technical_seo_audit_multidomain_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627\u06cc_\u0645\u0645\u06cc\u0632\u06cc_\u0627\u0648\u0644\u06cc\u0647_\u0627\u0632_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "community": 10, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06cc\u0627\u0641\u062a\u0647\u200c\u0647\u0627\u06cc \u0645\u0645\u06cc\u0632\u06cc \u0627\u0648\u0644\u06cc\u0647 \u2014 \u0627\u0632 \u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)" + }, + { + "label": "\u06f1. Canonical \u0647\u0645\u0647 \u062f\u0627\u0645\u0646\u0647\u200c\u0647\u0627\u06cc \u0634\u0647\u0631\u06cc \u0631\u0627 \u0646\u0627\u0628\u0648\u062f \u0645\u06cc\u200c\u06a9\u0646\u062f (Critical)", + "file_type": "document", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L44", + "_origin": "ast", + "id": "prompt_technical_seo_audit_multidomain_\u06f1_canonical_\u0647\u0645\u0647_\u062f\u0627\u0645\u0646\u0647_\u0647\u0627\u06cc_\u0634\u0647\u0631\u06cc_\u0631\u0627_\u0646\u0627\u0628\u0648\u062f_\u0645\u06cc_\u06a9\u0646\u062f_critical", + "community": 10, + "norm_label": "\u06f1. canonical \u0647\u0645\u0647 \u062f\u0627\u0645\u0646\u0647\u200c\u0647\u0627\u06cc \u0634\u0647\u0631\u06cc \u0631\u0627 \u0646\u0627\u0628\u0648\u062f \u0645\u06cc\u200c\u06a9\u0646\u062f (critical)" + }, + { + "label": "\u06f2. Sitemap (High)", + "file_type": "document", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L66", + "_origin": "ast", + "id": "prompt_technical_seo_audit_multidomain_\u06f2_sitemap_high", + "community": 10, + "norm_label": "\u06f2. sitemap (high)" + }, + { + "label": "\u06f3. Robots (High)", + "file_type": "document", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L83", + "_origin": "ast", + "id": "prompt_technical_seo_audit_multidomain_\u06f3_robots_high", + "community": 10, + "norm_label": "\u06f3. robots (high)" + }, + { + "label": "\u06f4. Metadata \u0633\u0637\u062d \u0631\u06cc\u0634\u0647 (High)", + "file_type": "document", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L97", + "_origin": "ast", + "id": "prompt_technical_seo_audit_multidomain_\u06f4_metadata_\u0633\u0637\u062d_\u0631\u06cc\u0634\u0647_high", + "community": 10, + "norm_label": "\u06f4. metadata \u0633\u0637\u062d \u0631\u06cc\u0634\u0647 (high)" + }, + { + "label": "\u06f5. \u0635\u0641\u062d\u0627\u062a dynamic \u2014 soft 404 \u0648 metadata \u0646\u0627\u0642\u0635 (High)", + "file_type": "document", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L111", + "_origin": "ast", + "id": "prompt_technical_seo_audit_multidomain_\u06f5_\u0635\u0641\u062d\u0627\u062a_dynamic_soft_404_\u0648_metadata_\u0646\u0627\u0642\u0635_high", + "community": 10, + "norm_label": "\u06f5. \u0635\u0641\u062d\u0627\u062a dynamic \u2014 soft 404 \u0648 metadata \u0646\u0627\u0642\u0635 (high)" + }, + { + "label": "\u06f6. \u0635\u0641\u062d\u0627\u062a \u0644\u06cc\u0633\u062a\u06cc \u0648 \u067e\u0627\u0631\u0627\u0645\u062a\u0631\u06cc (Medium)", + "file_type": "document", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L123", + "_origin": "ast", + "id": "prompt_technical_seo_audit_multidomain_\u06f6_\u0635\u0641\u062d\u0627\u062a_\u0644\u06cc\u0633\u062a\u06cc_\u0648_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u06cc_medium", + "community": 10, + "norm_label": "\u06f6. \u0635\u0641\u062d\u0627\u062a \u0644\u06cc\u0633\u062a\u06cc \u0648 \u067e\u0627\u0631\u0627\u0645\u062a\u0631\u06cc (medium)" + }, + { + "label": "\u06f7. Security headers \u2014 \u0648\u0636\u0639\u06cc\u062a \u062e\u0648\u0628", + "file_type": "document", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L127", + "_origin": "ast", + "id": "prompt_technical_seo_audit_multidomain_\u06f7_security_headers_\u0648\u0636\u0639\u06cc\u062a_\u062e\u0648\u0628", + "community": 10, + "norm_label": "\u06f7. security headers \u2014 \u0648\u0636\u0639\u06cc\u062a \u062e\u0648\u0628" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L131", + "_origin": "ast", + "id": "prompt_technical_seo_audit_multidomain_\u0648\u0638\u0627\u06cc\u0641", + "community": 10, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f0. \u062a\u0635\u0645\u06cc\u0645 \u0627\u0633\u062a\u0631\u0627\u062a\u0698\u06cc \u0686\u0646\u062f-\u062f\u0627\u0645\u0646\u0647\u200c\u0627\u06cc (\u067e\u06cc\u0634\u200c\u0646\u06cc\u0627\u0632 \u0647\u0645\u0647\u200c\u0686\u06cc\u0632)", + "file_type": "document", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L133", + "_origin": "ast", + "id": "prompt_technical_seo_audit_multidomain_\u06f0_\u062a\u0635\u0645\u06cc\u0645_\u0627\u0633\u062a\u0631\u0627\u062a\u0698\u06cc_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632_\u0647\u0645\u0647_\u0686\u06cc\u0632", + "community": 10, + "norm_label": "\u06f0. \u062a\u0635\u0645\u06cc\u0645 \u0627\u0633\u062a\u0631\u0627\u062a\u0698\u06cc \u0686\u0646\u062f-\u062f\u0627\u0645\u0646\u0647\u200c\u0627\u06cc (\u067e\u06cc\u0634\u200c\u0646\u06cc\u0627\u0632 \u0647\u0645\u0647\u200c\u0686\u06cc\u0632)" + }, + { + "label": "\u06f1. `metadataBase` \u0648 canonical per-page", + "file_type": "document", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L142", + "_origin": "ast", + "id": "prompt_technical_seo_audit_multidomain_\u06f1_metadatabase_\u0648_canonical_per_page", + "community": 10, + "norm_label": "\u06f1. `metadatabase` \u0648 canonical per-page" + }, + { + "label": "\u06f2. \u0627\u0635\u0644\u0627\u062d sitemap", + "file_type": "document", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L159", + "_origin": "ast", + "id": "prompt_technical_seo_audit_multidomain_\u06f2_\u0627\u0635\u0644\u0627\u062d_sitemap", + "community": 10, + "norm_label": "\u06f2. \u0627\u0635\u0644\u0627\u062d sitemap" + }, + { + "label": "\u06f3. \u0627\u0635\u0644\u0627\u062d robots", + "file_type": "document", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L167", + "_origin": "ast", + "id": "prompt_technical_seo_audit_multidomain_\u06f3_\u0627\u0635\u0644\u0627\u062d_robots", + "community": 10, + "norm_label": "\u06f3. \u0627\u0635\u0644\u0627\u062d robots" + }, + { + "label": "\u06f4. JSON-LD \u0686\u0646\u062f-\u062f\u0627\u0645\u0646\u0647\u200c\u0627\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L173", + "_origin": "ast", + "id": "prompt_technical_seo_audit_multidomain_\u06f4_json_ld_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc", + "community": 10, + "norm_label": "\u06f4. json-ld \u0686\u0646\u062f-\u062f\u0627\u0645\u0646\u0647\u200c\u0627\u06cc" + }, + { + "label": "\u06f5. Soft 404 \u0648 status codes", + "file_type": "document", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L180", + "_origin": "ast", + "id": "prompt_technical_seo_audit_multidomain_\u06f5_soft_404_\u0648_status_codes", + "community": 10, + "norm_label": "\u06f5. soft 404 \u0648 status codes" + }, + { + "label": "\u06f6. \u0645\u0645\u06cc\u0632\u06cc rendering \u0648 performance", + "file_type": "document", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L185", + "_origin": "ast", + "id": "prompt_technical_seo_audit_multidomain_\u06f6_\u0645\u0645\u06cc\u0632\u06cc_rendering_\u0648_performance", + "community": 10, + "norm_label": "\u06f6. \u0645\u0645\u06cc\u0632\u06cc rendering \u0648 performance" + }, + { + "label": "\u06f7. Pagination \u0648 \u0635\u0641\u062d\u0627\u062a \u067e\u0627\u0631\u0627\u0645\u062a\u0631\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L192", + "_origin": "ast", + "id": "prompt_technical_seo_audit_multidomain_\u06f7_pagination_\u0648_\u0635\u0641\u062d\u0627\u062a_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u06cc", + "community": 10, + "norm_label": "\u06f7. pagination \u0648 \u0635\u0641\u062d\u0627\u062a \u067e\u0627\u0631\u0627\u0645\u062a\u0631\u06cc" + }, + { + "label": "\u06f8. \u06af\u0632\u0627\u0631\u0634 \u0646\u0647\u0627\u06cc\u06cc \u0645\u0645\u06cc\u0632\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L197", + "_origin": "ast", + "id": "prompt_technical_seo_audit_multidomain_\u06f8_\u06af\u0632\u0627\u0631\u0634_\u0646\u0647\u0627\u06cc\u06cc_\u0645\u0645\u06cc\u0632\u06cc", + "community": 10, + "norm_label": "\u06f8. \u06af\u0632\u0627\u0631\u0634 \u0646\u0647\u0627\u06cc\u06cc \u0645\u0645\u06cc\u0632\u06cc" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L201", + "_origin": "ast", + "id": "prompt_technical_seo_audit_multidomain_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 10, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "upgrade-next-16.md", + "file_type": "document", + "source_file": ".claude/prompt/upgrade-next-16.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_upgrade_next_16", + "community": 20, + "norm_label": "upgrade-next-16.md" + }, + { + "label": "\u0627\u0631\u062a\u0642\u0627\u06cc Next.js \u0627\u0632 15 \u0628\u0647 16 (\u0622\u062e\u0631\u06cc\u0646 \u0646\u0633\u062e\u0647) + \u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc \u0627\u0645\u06a9\u0627\u0646\u0627\u062a \u062c\u062f\u06cc\u062f", + "file_type": "document", + "source_file": ".claude/prompt/upgrade-next-16.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_upgrade_next_16_\u0627\u0631\u062a\u0642\u0627\u06cc_next_js_\u0627\u0632_15_\u0628\u0647_16_\u0622\u062e\u0631\u06cc\u0646_\u0646\u0633\u062e\u0647_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0627\u0645\u06a9\u0627\u0646\u0627\u062a_\u062c\u062f\u06cc\u062f", + "community": 20, + "norm_label": "\u0627\u0631\u062a\u0642\u0627\u06cc next.js \u0627\u0632 15 \u0628\u0647 16 (\u0627\u062e\u0631\u06cc\u0646 \u0646\u0633\u062e\u0647) + \u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc \u0627\u0645\u06a9\u0627\u0646\u0627\u062a \u062c\u062f\u06cc\u062f" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/upgrade-next-16.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_upgrade_next_16_\u067e\u0631\u0648\u0698\u0647", + "community": 20, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/upgrade-next-16.md", + "source_location": "L7", + "_origin": "ast", + "id": "prompt_upgrade_next_16_\u0632\u0645\u06cc\u0646\u0647", + "community": 20, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/upgrade-next-16.md", + "source_location": "L13", + "_origin": "ast", + "id": "prompt_upgrade_next_16_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "community": 20, + "norm_label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/upgrade-next-16.md", + "source_location": "L20", + "_origin": "ast", + "id": "prompt_upgrade_next_16_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 20, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/upgrade-next-16.md", + "source_location": "L33", + "_origin": "ast", + "id": "prompt_upgrade_next_16_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "community": 20, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/upgrade-next-16.md", + "source_location": "L81", + "_origin": "ast", + "id": "prompt_upgrade_next_16_\u0648\u0638\u0627\u06cc\u0641", + "community": 20, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. \u0633\u0627\u062e\u062a \u0628\u0631\u0646\u0686", + "file_type": "document", + "source_file": ".claude/prompt/upgrade-next-16.md", + "source_location": "L83", + "_origin": "ast", + "id": "prompt_upgrade_next_16_\u06f1_\u0633\u0627\u062e\u062a_\u0628\u0631\u0646\u0686", + "community": 20, + "norm_label": "\u06f1. \u0633\u0627\u062e\u062a \u0628\u0631\u0646\u0686" + }, + { + "label": "\u06f2. \u0627\u0631\u062a\u0642\u0627\u06cc \u067e\u06a9\u06cc\u062c\u200c\u0647\u0627", + "file_type": "document", + "source_file": ".claude/prompt/upgrade-next-16.md", + "source_location": "L92", + "_origin": "ast", + "id": "prompt_upgrade_next_16_\u06f2_\u0627\u0631\u062a\u0642\u0627\u06cc_\u067e\u06a9\u06cc\u062c_\u0647\u0627", + "community": 20, + "norm_label": "\u06f2. \u0627\u0631\u062a\u0642\u0627\u06cc \u067e\u06a9\u06cc\u062c\u200c\u0647\u0627" + }, + { + "label": "\u06f3. \u062a\u0628\u062f\u06cc\u0644 `middleware.js` \u0628\u0647 `proxy.js`", + "file_type": "document", + "source_file": ".claude/prompt/upgrade-next-16.md", + "source_location": "L108", + "_origin": "ast", + "id": "prompt_upgrade_next_16_\u06f3_\u062a\u0628\u062f\u06cc\u0644_middleware_js_\u0628\u0647_proxy_js", + "community": 20, + "norm_label": "\u06f3. \u062a\u0628\u062f\u06cc\u0644 `middleware.js` \u0628\u0647 `proxy.js`" + }, + { + "label": "\u06f4. \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc `next lint`", + "file_type": "document", + "source_file": ".claude/prompt/upgrade-next-16.md", + "source_location": "L131", + "_origin": "ast", + "id": "prompt_upgrade_next_16_\u06f4_\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc_next_lint", + "community": 20, + "norm_label": "\u06f4. \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc `next lint`" + }, + { + "label": "\u06f5. Turbopack (\u067e\u06cc\u0634\u200c\u0641\u0631\u0636 \u062c\u062f\u06cc\u062f dev \u0648 build)", + "file_type": "document", + "source_file": ".claude/prompt/upgrade-next-16.md", + "source_location": "L159", + "_origin": "ast", + "id": "prompt_upgrade_next_16_\u06f5_turbopack_\u067e\u06cc\u0634_\u0641\u0631\u0636_\u062c\u062f\u06cc\u062f_dev_\u0648_build", + "community": 20, + "norm_label": "\u06f5. turbopack (\u067e\u06cc\u0634\u200c\u0641\u0631\u0636 \u062c\u062f\u06cc\u062f dev \u0648 build)" + }, + { + "label": "\u06f6. \u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc React Compiler", + "file_type": "document", + "source_file": ".claude/prompt/upgrade-next-16.md", + "source_location": "L169", + "_origin": "ast", + "id": "prompt_upgrade_next_16_\u06f6_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_react_compiler", + "community": 20, + "norm_label": "\u06f6. \u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc react compiler" + }, + { + "label": "\u06f7. Cache Components \u2014 \u0627\u0631\u0632\u06cc\u0627\u0628\u06cc \u0645\u062d\u062a\u0627\u0637\u0627\u0646\u0647 (\u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc \u0645\u0634\u0631\u0648\u0637)", + "file_type": "document", + "source_file": ".claude/prompt/upgrade-next-16.md", + "source_location": "L187", + "_origin": "ast", + "id": "prompt_upgrade_next_16_\u06f7_cache_components_\u0627\u0631\u0632\u06cc\u0627\u0628\u06cc_\u0645\u062d\u062a\u0627\u0637\u0627\u0646\u0647_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0645\u0634\u0631\u0648\u0637", + "community": 20, + "norm_label": "\u06f7. cache components \u2014 \u0627\u0631\u0632\u06cc\u0627\u0628\u06cc \u0645\u062d\u062a\u0627\u0637\u0627\u0646\u0647 (\u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc \u0645\u0634\u0631\u0648\u0637)" + }, + { + "label": "\u06f8. \u062a\u0645\u06cc\u0632\u06a9\u0627\u0631\u06cc\u200c\u0647\u0627\u06cc \u06a9\u0627\u0646\u0641\u06cc\u06af \u0646\u0633\u062e\u0647 16", + "file_type": "document", + "source_file": ".claude/prompt/upgrade-next-16.md", + "source_location": "L200", + "_origin": "ast", + "id": "prompt_upgrade_next_16_\u06f8_\u062a\u0645\u06cc\u0632\u06a9\u0627\u0631\u06cc_\u0647\u0627\u06cc_\u06a9\u0627\u0646\u0641\u06cc\u06af_\u0646\u0633\u062e\u0647_16", + "community": 20, + "norm_label": "\u06f8. \u062a\u0645\u06cc\u0632\u06a9\u0627\u0631\u06cc\u200c\u0647\u0627\u06cc \u06a9\u0627\u0646\u0641\u06cc\u06af \u0646\u0633\u062e\u0647 16" + }, + { + "label": "\u06f9. \u062a\u0633\u062a \u0646\u0647\u0627\u06cc\u06cc \u0648 commit", + "file_type": "document", + "source_file": ".claude/prompt/upgrade-next-16.md", + "source_location": "L208", + "_origin": "ast", + "id": "prompt_upgrade_next_16_\u06f9_\u062a\u0633\u062a_\u0646\u0647\u0627\u06cc\u06cc_\u0648_commit", + "community": 20, + "norm_label": "\u06f9. \u062a\u0633\u062a \u0646\u0647\u0627\u06cc\u06cc \u0648 commit" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/upgrade-next-16.md", + "source_location": "L226", + "_origin": "ast", + "id": "prompt_upgrade_next_16_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 20, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "user-profile-no-404.md", + "file_type": "document", + "source_file": ".claude/prompt/user-profile-no-404.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_user_profile_no_404", + "community": 43, + "norm_label": "user-profile-no-404.md" + }, + { + "label": "\u0647\u0645\u200c\u062e\u0648\u0627\u0646\u200c\u06a9\u0631\u062f\u0646 \u0645\u0635\u0631\u0641 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u06a9\u0627\u0631\u0628\u0631 \u0628\u0627 endpoint \u0627\u0635\u0644\u0627\u062d\u200c\u0634\u062f\u0647 (\u0628\u062f\u0648\u0646 404 \u0628\u0631\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631 \u062c\u062f\u06cc\u062f)", + "file_type": "document", + "source_file": ".claude/prompt/user-profile-no-404.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_user_profile_no_404_\u0647\u0645_\u062e\u0648\u0627\u0646_\u06a9\u0631\u062f\u0646_\u0645\u0635\u0631\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0627_endpoint_\u0627\u0635\u0644\u0627\u062d_\u0634\u062f\u0647_\u0628\u062f\u0648\u0646_404_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062c\u062f\u06cc\u062f", + "community": 43, + "norm_label": "\u0647\u0645\u200c\u062e\u0648\u0627\u0646\u200c\u06a9\u0631\u062f\u0646 \u0645\u0635\u0631\u0641 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u06a9\u0627\u0631\u0628\u0631 \u0628\u0627 endpoint \u0627\u0635\u0644\u0627\u062d\u200c\u0634\u062f\u0647 (\u0628\u062f\u0648\u0646 404 \u0628\u0631\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631 \u062c\u062f\u06cc\u062f)" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/user-profile-no-404.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_user_profile_no_404_\u067e\u0631\u0648\u0698\u0647", + "community": 43, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/user-profile-no-404.md", + "source_location": "L11", + "_origin": "ast", + "id": "prompt_user_profile_no_404_\u0632\u0645\u06cc\u0646\u0647", + "community": 43, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/user-profile-no-404.md", + "source_location": "L16", + "_origin": "ast", + "id": "prompt_user_profile_no_404_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "community": 43, + "norm_label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/user-profile-no-404.md", + "source_location": "L22", + "_origin": "ast", + "id": "prompt_user_profile_no_404_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 43, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", + "file_type": "document", + "source_file": ".claude/prompt/user-profile-no-404.md", + "source_location": "L31", + "_origin": "ast", + "id": "prompt_user_profile_no_404_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "community": 43, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)" + }, + { + "label": "`components/appointment/index.js` \u2014 \u0647\u0646\u062f\u0644 \u0648\u06cc\u0698\u0647\u200c\u06cc 404", + "file_type": "document", + "source_file": ".claude/prompt/user-profile-no-404.md", + "source_location": "L33", + "_origin": "ast", + "id": "prompt_user_profile_no_404_components_appointment_index_js_\u0647\u0646\u062f\u0644_\u0648\u06cc\u0698\u0647_\u06cc_404", + "community": 43, + "norm_label": "`components/appointment/index.js` \u2014 \u0647\u0646\u062f\u0644 \u0648\u06cc\u0698\u0647\u200c\u06cc 404" + }, + { + "label": "`SubmitData.js` \u2014 \u0627\u0646\u062a\u062e\u0627\u0628 POST \u06cc\u0627 PATCH \u0628\u0631 \u0627\u0633\u0627\u0633 \u0648\u062c\u0648\u062f `uuid`", + "file_type": "document", + "source_file": ".claude/prompt/user-profile-no-404.md", + "source_location": "L50", + "_origin": "ast", + "id": "prompt_user_profile_no_404_submitdata_js_\u0627\u0646\u062a\u062e\u0627\u0628_post_\u06cc\u0627_patch_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0648\u062c\u0648\u062f_uuid", + "community": 43, + "norm_label": "`submitdata.js` \u2014 \u0627\u0646\u062a\u062e\u0627\u0628 post \u06cc\u0627 patch \u0628\u0631 \u0627\u0633\u0627\u0633 \u0648\u062c\u0648\u062f `uuid`" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/user-profile-no-404.md", + "source_location": "L62", + "_origin": "ast", + "id": "prompt_user_profile_no_404_\u0648\u0638\u0627\u06cc\u0641", + "community": 43, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. \u062a\u0623\u06cc\u06cc\u062f \u062c\u0631\u06cc\u0627\u0646 \u0644\u0648\u062f \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 (appointment + dashboard)", + "file_type": "document", + "source_file": ".claude/prompt/user-profile-no-404.md", + "source_location": "L64", + "_origin": "ast", + "id": "prompt_user_profile_no_404_\u06f1_\u062a\u0623\u06cc\u06cc\u062f_\u062c\u0631\u06cc\u0627\u0646_\u0644\u0648\u062f_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_appointment_dashboard", + "community": 43, + "norm_label": "\u06f1. \u062a\u0627\u06cc\u06cc\u062f \u062c\u0631\u06cc\u0627\u0646 \u0644\u0648\u062f \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 (appointment + dashboard)" + }, + { + "label": "\u06f2. \u0633\u0627\u062f\u0647\u200c\u0633\u0627\u0632\u06cc \u0647\u0646\u062f\u0644 404 \u0645\u0646\u0633\u0648\u062e", + "file_type": "document", + "source_file": ".claude/prompt/user-profile-no-404.md", + "source_location": "L69", + "_origin": "ast", + "id": "prompt_user_profile_no_404_\u06f2_\u0633\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0647\u0646\u062f\u0644_404_\u0645\u0646\u0633\u0648\u062e", + "community": 43, + "norm_label": "\u06f2. \u0633\u0627\u062f\u0647\u200c\u0633\u0627\u0632\u06cc \u0647\u0646\u062f\u0644 404 \u0645\u0646\u0633\u0648\u062e" + }, + { + "label": "\u06f3. \u0633\u0627\u0632\u06af\u0627\u0631\u06cc POST/PATCH \u062f\u0631 `SubmitData.js`", + "file_type": "document", + "source_file": ".claude/prompt/user-profile-no-404.md", + "source_location": "L74", + "_origin": "ast", + "id": "prompt_user_profile_no_404_\u06f3_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_post_patch_\u062f\u0631_submitdata_js", + "community": 43, + "norm_label": "\u06f3. \u0633\u0627\u0632\u06af\u0627\u0631\u06cc post/patch \u062f\u0631 `submitdata.js`" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/user-profile-no-404.md", + "source_location": "L79", + "_origin": "ast", + "id": "prompt_user_profile_no_404_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 43, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "verify-past-slots-disabled.md", + "file_type": "document", + "source_file": ".claude/prompt/verify-past-slots-disabled.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_verify_past_slots_disabled", + "community": 44, + "norm_label": "verify-past-slots-disabled.md" + }, + { + "label": "\u062a\u0623\u06cc\u06cc\u062f \u0648 \u0633\u062e\u062a\u200c\u0633\u0627\u0632\u06cc \u063a\u06cc\u0631\u0641\u0639\u0627\u0644\u200c\u0628\u0648\u062f\u0646 \u0627\u0633\u0644\u0627\u062a\u200c\u0647\u0627\u06cc \u06af\u0630\u0634\u062a\u0647 \u062f\u0631 \u0635\u0641\u062d\u0647\u200c\u06cc \u0646\u0648\u0628\u062a", + "file_type": "document", + "source_file": ".claude/prompt/verify-past-slots-disabled.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_verify_past_slots_disabled_\u062a\u0623\u06cc\u06cc\u062f_\u0648_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a", + "community": 44, + "norm_label": "\u062a\u0627\u06cc\u06cc\u062f \u0648 \u0633\u062e\u062a\u200c\u0633\u0627\u0632\u06cc \u063a\u06cc\u0631\u0641\u0639\u0627\u0644\u200c\u0628\u0648\u062f\u0646 \u0627\u0633\u0644\u0627\u062a\u200c\u0647\u0627\u06cc \u06af\u0630\u0634\u062a\u0647 \u062f\u0631 \u0635\u0641\u062d\u0647\u200c\u06cc \u0646\u0648\u0628\u062a" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/verify-past-slots-disabled.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_verify_past_slots_disabled_\u067e\u0631\u0648\u0698\u0647", + "community": 44, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/verify-past-slots-disabled.md", + "source_location": "L11", + "_origin": "ast", + "id": "prompt_verify_past_slots_disabled_\u0632\u0645\u06cc\u0646\u0647", + "community": 44, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/verify-past-slots-disabled.md", + "source_location": "L15", + "_origin": "ast", + "id": "prompt_verify_past_slots_disabled_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "community": 44, + "norm_label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/verify-past-slots-disabled.md", + "source_location": "L20", + "_origin": "ast", + "id": "prompt_verify_past_slots_disabled_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 44, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", + "file_type": "document", + "source_file": ".claude/prompt/verify-past-slots-disabled.md", + "source_location": "L28", + "_origin": "ast", + "id": "prompt_verify_past_slots_disabled_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "community": 44, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)" + }, + { + "label": "`hours/List.js`", + "file_type": "document", + "source_file": ".claude/prompt/verify-past-slots-disabled.md", + "source_location": "L30", + "_origin": "ast", + "id": "prompt_verify_past_slots_disabled_hours_list_js", + "community": 44, + "norm_label": "`hours/list.js`" + }, + { + "label": "\u0622\u0628\u062c\u06a9\u062a \u0627\u0633\u0644\u0627\u062a (\u0627\u0632 `adaptSlots` / API)", + "file_type": "document", + "source_file": ".claude/prompt/verify-past-slots-disabled.md", + "source_location": "L45", + "_origin": "ast", + "id": "prompt_verify_past_slots_disabled_\u0622\u0628\u062c\u06a9\u062a_\u0627\u0633\u0644\u0627\u062a_\u0627\u0632_adaptslots_api", + "community": 44, + "norm_label": "\u0627\u0628\u062c\u06a9\u062a \u0627\u0633\u0644\u0627\u062a (\u0627\u0632 `adaptslots` / api)" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/verify-past-slots-disabled.md", + "source_location": "L51", + "_origin": "ast", + "id": "prompt_verify_past_slots_disabled_\u0648\u0638\u0627\u06cc\u0641", + "community": 44, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. \u06af\u0627\u0631\u062f \u0632\u0645\u0627\u0646 \u06af\u0630\u0634\u062a\u0647 \u062f\u0631 \u06af\u0631\u06cc\u062f \u0633\u0627\u0639\u062a", + "file_type": "document", + "source_file": ".claude/prompt/verify-past-slots-disabled.md", + "source_location": "L53", + "_origin": "ast", + "id": "prompt_verify_past_slots_disabled_\u06f1_\u06af\u0627\u0631\u062f_\u0632\u0645\u0627\u0646_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u06af\u0631\u06cc\u062f_\u0633\u0627\u0639\u062a", + "community": 44, + "norm_label": "\u06f1. \u06af\u0627\u0631\u062f \u0632\u0645\u0627\u0646 \u06af\u0630\u0634\u062a\u0647 \u062f\u0631 \u06af\u0631\u06cc\u062f \u0633\u0627\u0639\u062a" + }, + { + "label": "\u06f2. (\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc) \u0639\u062f\u0645 \u0627\u0646\u062a\u062e\u0627\u0628 \u0627\u0633\u0644\u0627\u062a \u06af\u0630\u0634\u062a\u0647 \u062f\u0631 SendAppo", + "file_type": "document", + "source_file": ".claude/prompt/verify-past-slots-disabled.md", + "source_location": "L66", + "_origin": "ast", + "id": "prompt_verify_past_slots_disabled_\u06f2_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc_\u0639\u062f\u0645_\u0627\u0646\u062a\u062e\u0627\u0628_\u0627\u0633\u0644\u0627\u062a_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_sendappo", + "community": 44, + "norm_label": "\u06f2. (\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc) \u0639\u062f\u0645 \u0627\u0646\u062a\u062e\u0627\u0628 \u0627\u0633\u0644\u0627\u062a \u06af\u0630\u0634\u062a\u0647 \u062f\u0631 sendappo" + }, + { + "label": "\u06f3. \u062a\u0623\u06cc\u06cc\u062f \u0631\u0641\u062a\u0627\u0631 end-to-end", + "file_type": "document", + "source_file": ".claude/prompt/verify-past-slots-disabled.md", + "source_location": "L70", + "_origin": "ast", + "id": "prompt_verify_past_slots_disabled_\u06f3_\u062a\u0623\u06cc\u06cc\u062f_\u0631\u0641\u062a\u0627\u0631_end_to_end", + "community": 44, + "norm_label": "\u06f3. \u062a\u0627\u06cc\u06cc\u062f \u0631\u0641\u062a\u0627\u0631 end-to-end" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/verify-past-slots-disabled.md", + "source_location": "L74", + "_origin": "ast", + "id": "prompt_verify_past_slots_disabled_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 44, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, + { + "label": "CLAUDE.md", + "file_type": "document", + "source_file": "CLAUDE.md", + "source_location": "L1", + "_origin": "ast", + "id": "claude", + "community": 39, + "norm_label": "claude.md" + }, + { + "label": "CLAUDE.md", + "file_type": "document", + "source_file": "CLAUDE.md", + "source_location": "L1", + "_origin": "ast", + "id": "claude_claude_md", + "community": 39, + "norm_label": "claude.md" + }, + { + "label": "Commands", + "file_type": "document", + "source_file": "CLAUDE.md", + "source_location": "L5", + "_origin": "ast", + "id": "claude_commands", + "community": 39, + "norm_label": "commands" + }, + { + "label": "Environment Variables", + "file_type": "document", + "source_file": "CLAUDE.md", + "source_location": "L16", + "_origin": "ast", + "id": "claude_environment_variables", + "community": 39, + "norm_label": "environment variables" + }, + { + "label": "Architecture Overview", + "file_type": "document", + "source_file": "CLAUDE.md", + "source_location": "L27", + "_origin": "ast", + "id": "claude_architecture_overview", + "community": 39, + "norm_label": "architecture overview" + }, + { + "label": "Multi-Domain System (Core Concept)", + "file_type": "document", + "source_file": "CLAUDE.md", + "source_location": "L31", + "_origin": "ast", + "id": "claude_multi_domain_system_core_concept", + "community": 39, + "norm_label": "multi-domain system (core concept)" + }, + { + "label": "Page Metadata Pattern", + "file_type": "document", + "source_file": "CLAUDE.md", + "source_location": "L41", + "_origin": "ast", + "id": "claude_page_metadata_pattern", + "community": 39, + "norm_label": "page metadata pattern" + }, + { + "label": "Data Fetching", + "file_type": "document", + "source_file": "CLAUDE.md", + "source_location": "L62", + "_origin": "ast", + "id": "claude_data_fetching", + "community": 39, + "norm_label": "data fetching" + }, + { + "label": "Authentication & Authorization", + "file_type": "document", + "source_file": "CLAUDE.md", + "source_location": "L72", + "_origin": "ast", + "id": "claude_authentication_authorization", + "community": 39, + "norm_label": "authentication & authorization" + }, + { + "label": "Styling", + "file_type": "document", + "source_file": "CLAUDE.md", + "source_location": "L82", + "_origin": "ast", + "id": "claude_styling", + "community": 39, + "norm_label": "styling" + }, + { + "label": "Routing Structure", + "file_type": "document", + "source_file": "CLAUDE.md", + "source_location": "L90", + "_origin": "ast", + "id": "claude_routing_structure", + "community": 39, + "norm_label": "routing structure" + }, + { + "label": "Key Data Files", + "file_type": "document", + "source_file": "CLAUDE.md", + "source_location": "L108", + "_origin": "ast", + "id": "claude_key_data_files", + "community": 39, + "norm_label": "key data files" + }, + { + "label": "Doctor & Clinic Slugs", + "file_type": "document", + "source_file": "CLAUDE.md", + "source_location": "L114", + "_origin": "ast", + "id": "claude_doctor_clinic_slugs", + "community": 39, + "norm_label": "doctor & clinic slugs" + }, + { + "label": "JSON-LD Structured Data", + "file_type": "document", + "source_file": "CLAUDE.md", + "source_location": "L118", + "_origin": "ast", + "id": "claude_json_ld_structured_data", + "community": 39, + "norm_label": "json-ld structured data" + }, + { + "label": "README.md", + "file_type": "document", + "source_file": "README.md", + "source_location": "L1", + "_origin": "ast", + "id": "readme", + "community": 63, + "norm_label": "readme.md" + }, + { + "label": "\ud83c\udfe5 \u0646\u0648\u0628\u062a724 (Nobat724) - \u0633\u06cc\u0633\u062a\u0645 \u0646\u0648\u0628\u062a\u200c\u062f\u0647\u06cc \u0622\u0646\u0644\u0627\u06cc\u0646 \u067e\u0632\u0634\u06a9\u06cc", + "file_type": "document", + "source_file": "README.md", + "source_location": "L1", + "_origin": "ast", + "id": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", + "community": 63, + "norm_label": "\ud83c\udfe5 \u0646\u0648\u0628\u062a724 (nobat724) - \u0633\u06cc\u0633\u062a\u0645 \u0646\u0648\u0628\u062a\u200c\u062f\u0647\u06cc \u0627\u0646\u0644\u0627\u06cc\u0646 \u067e\u0632\u0634\u06a9\u06cc" + }, + { + "label": "\ud83d\udccb \u0641\u0647\u0631\u0633\u062a \u0645\u0637\u0627\u0644\u0628", + "file_type": "document", + "source_file": "README.md", + "source_location": "L3", + "_origin": "ast", + "id": "readme_\u0641\u0647\u0631\u0633\u062a_\u0645\u0637\u0627\u0644\u0628", + "community": 63, + "norm_label": "\ud83d\udccb \u0641\u0647\u0631\u0633\u062a \u0645\u0637\u0627\u0644\u0628" + }, + { + "label": "\ud83c\udfaf \u0645\u0639\u0631\u0641\u06cc \u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": "README.md", + "source_location": "L19", + "_origin": "ast", + "id": "readme_\u0645\u0639\u0631\u0641\u06cc_\u067e\u0631\u0648\u0698\u0647", + "community": 63, + "norm_label": "\ud83c\udfaf \u0645\u0639\u0631\u0641\u06cc \u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0648\u06cc\u0698\u06af\u06cc\u200c\u0647\u0627\u06cc \u0627\u0635\u0644\u06cc:", + "file_type": "document", + "source_file": "README.md", + "source_location": "L23", + "_origin": "ast", + "id": "readme_\u0648\u06cc\u0698\u06af\u06cc_\u0647\u0627\u06cc_\u0627\u0635\u0644\u06cc", + "community": 63, + "norm_label": "\u0648\u06cc\u0698\u06af\u06cc\u200c\u0647\u0627\u06cc \u0627\u0635\u0644\u06cc:" + }, + { + "label": "\ud83c\udfd7\ufe0f \u0645\u0639\u0645\u0627\u0631\u06cc \u0648 \u062a\u06a9\u0646\u0648\u0644\u0648\u0698\u06cc", + "file_type": "document", + "source_file": "README.md", + "source_location": "L36", + "_origin": "ast", + "id": "readme_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0648_\u062a\u06a9\u0646\u0648\u0644\u0648\u0698\u06cc", + "community": 75, + "norm_label": "\ud83c\udfd7\ufe0f \u0645\u0639\u0645\u0627\u0631\u06cc \u0648 \u062a\u06a9\u0646\u0648\u0644\u0648\u0698\u06cc" + }, + { + "label": "Frontend Framework", + "file_type": "document", + "source_file": "README.md", + "source_location": "L38", + "_origin": "ast", + "id": "readme_frontend_framework", + "community": 75, + "norm_label": "frontend framework" + }, + { + "label": "UI/UX", + "file_type": "document", + "source_file": "README.md", + "source_location": "L44", + "_origin": "ast", + "id": "readme_ui_ux", + "community": 75, + "norm_label": "ui/ux" + }, + { + "label": "State Management & Data Fetching", + "file_type": "document", + "source_file": "README.md", + "source_location": "L52", + "_origin": "ast", + "id": "readme_state_management_data_fetching", + "community": 75, + "norm_label": "state management & data fetching" + }, + { + "label": "Authentication & Authorization", + "file_type": "document", + "source_file": "README.md", + "source_location": "L58", + "_origin": "ast", + "id": "readme_authentication_authorization", + "community": 75, + "norm_label": "authentication & authorization" + }, + { + "label": "\u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647\u200c\u0647\u0627\u06cc \u062a\u062e\u0635\u0635\u06cc", + "file_type": "document", + "source_file": "README.md", + "source_location": "L64", + "_origin": "ast", + "id": "readme_\u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647_\u0647\u0627\u06cc_\u062a\u062e\u0635\u0635\u06cc", + "community": 75, + "norm_label": "\u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647\u200c\u0647\u0627\u06cc \u062a\u062e\u0635\u0635\u06cc" + }, + { + "label": "Development Tools", + "file_type": "document", + "source_file": "README.md", + "source_location": "L73", + "_origin": "ast", + "id": "readme_development_tools", + "community": 75, + "norm_label": "development tools" + }, + { + "label": "\ud83d\udcc1 \u0633\u0627\u062e\u062a\u0627\u0631 \u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": "README.md", + "source_location": "L81", + "_origin": "ast", + "id": "readme_\u0633\u0627\u062e\u062a\u0627\u0631_\u067e\u0631\u0648\u0698\u0647", + "community": 63, + "norm_label": "\ud83d\udcc1 \u0633\u0627\u062e\u062a\u0627\u0631 \u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u2728 \u0648\u06cc\u0698\u06af\u06cc\u200c\u0647\u0627\u06cc \u06a9\u0644\u06cc\u062f\u06cc", + "file_type": "document", + "source_file": "README.md", + "source_location": "L171", + "_origin": "ast", + "id": "readme_\u0648\u06cc\u0698\u06af\u06cc_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u062f\u06cc", + "community": 93, + "norm_label": "\u2728 \u0648\u06cc\u0698\u06af\u06cc\u200c\u0647\u0627\u06cc \u06a9\u0644\u06cc\u062f\u06cc" + }, + { + "label": "1. Multi-Domain Architecture", + "file_type": "document", + "source_file": "README.md", + "source_location": "L173", + "_origin": "ast", + "id": "readme_1_multi_domain_architecture", + "community": 93, + "norm_label": "1. multi-domain architecture" + }, + { + "label": "2. \u0633\u06cc\u0633\u062a\u0645 \u0627\u062d\u0631\u0627\u0632 \u0647\u0648\u06cc\u062a", + "file_type": "document", + "source_file": "README.md", + "source_location": "L194", + "_origin": "ast", + "id": "readme_2_\u0633\u06cc\u0633\u062a\u0645_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", + "community": 93, + "norm_label": "2. \u0633\u06cc\u0633\u062a\u0645 \u0627\u062d\u0631\u0627\u0632 \u0647\u0648\u06cc\u062a" + }, + { + "label": "3. \u0633\u06cc\u0633\u062a\u0645 \u0631\u0632\u0631\u0648 \u0646\u0648\u0628\u062a", + "file_type": "document", + "source_file": "README.md", + "source_location": "L222", + "_origin": "ast", + "id": "readme_3_\u0633\u06cc\u0633\u062a\u0645_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", + "community": 93, + "norm_label": "3. \u0633\u06cc\u0633\u062a\u0645 \u0631\u0632\u0631\u0648 \u0646\u0648\u0628\u062a" + }, + { + "label": "4. \u067e\u0646\u0644 \u0645\u062f\u06cc\u0631\u06cc\u062a\u06cc", + "file_type": "document", + "source_file": "README.md", + "source_location": "L232", + "_origin": "ast", + "id": "readme_4_\u067e\u0646\u0644_\u0645\u062f\u06cc\u0631\u06cc\u062a\u06cc", + "community": 93, + "norm_label": "4. \u067e\u0646\u0644 \u0645\u062f\u06cc\u0631\u06cc\u062a\u06cc" + }, + { + "label": "\ud83d\ude80 \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": "README.md", + "source_location": "L259", + "_origin": "ast", + "id": "readme_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", + "community": 95, + "norm_label": "\ud83d\ude80 \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u067e\u06cc\u0634\u200c\u0646\u06cc\u0627\u0632\u0647\u0627", + "file_type": "document", + "source_file": "README.md", + "source_location": "L261", + "_origin": "ast", + "id": "readme_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", + "community": 95, + "norm_label": "\u067e\u06cc\u0634\u200c\u0646\u06cc\u0627\u0632\u0647\u0627" + }, + { + "label": "\u0646\u0635\u0628 \u0648 \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc", + "file_type": "document", + "source_file": "README.md", + "source_location": "L267", + "_origin": "ast", + "id": "readme_\u0646\u0635\u0628_\u0648_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc", + "community": 95, + "norm_label": "\u0646\u0635\u0628 \u0648 \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc" + }, + { + "label": "\u0627\u0633\u06a9\u0631\u06cc\u067e\u062a\u200c\u0647\u0627\u06cc \u0645\u0648\u062c\u0648\u062f", + "file_type": "document", + "source_file": "README.md", + "source_location": "L297", + "_origin": "ast", + "id": "readme_\u0627\u0633\u06a9\u0631\u06cc\u067e\u062a_\u0647\u0627\u06cc_\u0645\u0648\u062c\u0648\u062f", + "community": 95, + "norm_label": "\u0627\u0633\u06a9\u0631\u06cc\u067e\u062a\u200c\u0647\u0627\u06cc \u0645\u0648\u062c\u0648\u062f" + }, + { + "label": "\u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0628\u0627 Docker", + "file_type": "document", + "source_file": "README.md", + "source_location": "L308", + "_origin": "ast", + "id": "readme_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0628\u0627_docker", + "community": 95, + "norm_label": "\u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0628\u0627 docker" + }, + { + "label": "\ud83c\udf10 \u0633\u06cc\u0633\u062a\u0645 Multi-Domain", + "file_type": "document", + "source_file": "README.md", + "source_location": "L323", + "_origin": "ast", + "id": "readme_\u0633\u06cc\u0633\u062a\u0645_multi_domain", + "community": 107, + "norm_label": "\ud83c\udf10 \u0633\u06cc\u0633\u062a\u0645 multi-domain" + }, + { + "label": "\u0633\u0627\u062e\u062a\u0627\u0631 \u062f\u0627\u0645\u0646\u0647\u200c\u0647\u0627", + "file_type": "document", + "source_file": "README.md", + "source_location": "L325", + "_origin": "ast", + "id": "readme_\u0633\u0627\u062e\u062a\u0627\u0631_\u062f\u0627\u0645\u0646\u0647_\u0647\u0627", + "community": 107, + "norm_label": "\u0633\u0627\u062e\u062a\u0627\u0631 \u062f\u0627\u0645\u0646\u0647\u200c\u0647\u0627" + }, + { + "label": "\u0641\u0631\u0622\u06cc\u0646\u062f \u062a\u0634\u062e\u06cc\u0635 \u0634\u0647\u0631", + "file_type": "document", + "source_file": "README.md", + "source_location": "L336", + "_origin": "ast", + "id": "readme_\u0641\u0631\u0622\u06cc\u0646\u062f_\u062a\u0634\u062e\u06cc\u0635_\u0634\u0647\u0631", + "community": 107, + "norm_label": "\u0641\u0631\u0627\u06cc\u0646\u062f \u062a\u0634\u062e\u06cc\u0635 \u0634\u0647\u0631" + }, + { + "label": "Metadata \u062f\u0627\u06cc\u0646\u0627\u0645\u06cc\u06a9 \u0628\u0631 \u0627\u0633\u0627\u0633 \u0634\u0647\u0631", + "file_type": "document", + "source_file": "README.md", + "source_location": "L367", + "_origin": "ast", + "id": "readme_metadata_\u062f\u0627\u06cc\u0646\u0627\u0645\u06cc\u06a9_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0634\u0647\u0631", + "community": 107, + "norm_label": "metadata \u062f\u0627\u06cc\u0646\u0627\u0645\u06cc\u06a9 \u0628\u0631 \u0627\u0633\u0627\u0633 \u0634\u0647\u0631" + }, + { + "label": "\ud83d\udd10 \u0627\u062d\u0631\u0627\u0632 \u0647\u0648\u06cc\u062a \u0648 \u0645\u062c\u0648\u0632\u0647\u0627", + "file_type": "document", + "source_file": "README.md", + "source_location": "L384", + "_origin": "ast", + "id": "readme_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_\u0648_\u0645\u062c\u0648\u0632\u0647\u0627", + "community": 105, + "norm_label": "\ud83d\udd10 \u0627\u062d\u0631\u0627\u0632 \u0647\u0648\u06cc\u062a \u0648 \u0645\u062c\u0648\u0632\u0647\u0627" + }, + { + "label": "\u0641\u0631\u0622\u06cc\u0646\u062f \u0648\u0631\u0648\u062f", + "file_type": "document", + "source_file": "README.md", + "source_location": "L386", + "_origin": "ast", + "id": "readme_\u0641\u0631\u0622\u06cc\u0646\u062f_\u0648\u0631\u0648\u062f", + "community": 105, + "norm_label": "\u0641\u0631\u0627\u06cc\u0646\u062f \u0648\u0631\u0648\u062f" + }, + { + "label": "Cookies \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0634\u062f\u0647", + "file_type": "document", + "source_file": "README.md", + "source_location": "L394", + "_origin": "ast", + "id": "readme_cookies_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0634\u062f\u0647", + "community": 105, + "norm_label": "cookies \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0634\u062f\u0647" + }, + { + "label": "\u0645\u062d\u0627\u0641\u0638\u062a \u0627\u0632 \u0645\u0633\u06cc\u0631\u0647\u0627", + "file_type": "document", + "source_file": "README.md", + "source_location": "L401", + "_origin": "ast", + "id": "readme_\u0645\u062d\u0627\u0641\u0638\u062a_\u0627\u0632_\u0645\u0633\u06cc\u0631\u0647\u0627", + "community": 105, + "norm_label": "\u0645\u062d\u0627\u0641\u0638\u062a \u0627\u0632 \u0645\u0633\u06cc\u0631\u0647\u0627" + }, + { + "label": "\ud83d\udccd \u0645\u0633\u06cc\u0631\u0647\u0627 \u0648 \u0635\u0641\u062d\u0627\u062a", + "file_type": "document", + "source_file": "README.md", + "source_location": "L437", + "_origin": "ast", + "id": "readme_\u0645\u0633\u06cc\u0631\u0647\u0627_\u0648_\u0635\u0641\u062d\u0627\u062a", + "community": 96, + "norm_label": "\ud83d\udccd \u0645\u0633\u06cc\u0631\u0647\u0627 \u0648 \u0635\u0641\u062d\u0627\u062a" + }, + { + "label": "\u0635\u0641\u062d\u0627\u062a \u0639\u0645\u0648\u0645\u06cc (Public)", + "file_type": "document", + "source_file": "README.md", + "source_location": "L439", + "_origin": "ast", + "id": "readme_\u0635\u0641\u062d\u0627\u062a_\u0639\u0645\u0648\u0645\u06cc_public", + "community": 96, + "norm_label": "\u0635\u0641\u062d\u0627\u062a \u0639\u0645\u0648\u0645\u06cc (public)" + }, + { + "label": "\u0635\u0641\u062d\u0627\u062a \u0631\u0632\u0631\u0648 \u0646\u0648\u0628\u062a", + "file_type": "document", + "source_file": "README.md", + "source_location": "L454", + "_origin": "ast", + "id": "readme_\u0635\u0641\u062d\u0627\u062a_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", + "community": 96, + "norm_label": "\u0635\u0641\u062d\u0627\u062a \u0631\u0632\u0631\u0648 \u0646\u0648\u0628\u062a" + }, + { + "label": "\u0635\u0641\u062d\u0627\u062a \u0627\u062d\u0631\u0627\u0632 \u0647\u0648\u06cc\u062a", + "file_type": "document", + "source_file": "README.md", + "source_location": "L460", + "_origin": "ast", + "id": "readme_\u0635\u0641\u062d\u0627\u062a_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", + "community": 96, + "norm_label": "\u0635\u0641\u062d\u0627\u062a \u0627\u062d\u0631\u0627\u0632 \u0647\u0648\u06cc\u062a" + }, + { + "label": "\u067e\u0646\u0644 \u0645\u062f\u06cc\u0631\u06cc\u062a\u06cc (Protected)", + "file_type": "document", + "source_file": "README.md", + "source_location": "L467", + "_origin": "ast", + "id": "readme_\u067e\u0646\u0644_\u0645\u062f\u06cc\u0631\u06cc\u062a\u06cc_protected", + "community": 96, + "norm_label": "\u067e\u0646\u0644 \u0645\u062f\u06cc\u0631\u06cc\u062a\u06cc (protected)" + }, + { + "label": "\ud83e\udde9 \u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a\u200c\u0647\u0627\u06cc \u0627\u0635\u0644\u06cc", + "file_type": "document", + "source_file": "README.md", + "source_location": "L478", + "_origin": "ast", + "id": "readme_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a_\u0647\u0627\u06cc_\u0627\u0635\u0644\u06cc", + "community": 122, + "norm_label": "\ud83e\udde9 \u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a\u200c\u0647\u0627\u06cc \u0627\u0635\u0644\u06cc" + }, + { + "label": "Layout Components", + "file_type": "document", + "source_file": "README.md", + "source_location": "L480", + "_origin": "ast", + "id": "readme_layout_components", + "community": 122, + "norm_label": "layout components" + }, + { + "label": "Feature Components", + "file_type": "document", + "source_file": "README.md", + "source_location": "L502", + "_origin": "ast", + "id": "readme_feature_components", + "community": 122, + "norm_label": "feature components" + }, + { + "label": "\ud83d\udd0c API \u0648 \u0633\u0631\u0648\u06cc\u0633\u200c\u0647\u0627", + "file_type": "document", + "source_file": "README.md", + "source_location": "L540", + "_origin": "ast", + "id": "readme_api_\u0648_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627", + "community": 104, + "norm_label": "\ud83d\udd0c api \u0648 \u0633\u0631\u0648\u06cc\u0633\u200c\u0647\u0627" + }, + { + "label": "\u062a\u0646\u0638\u06cc\u0645\u0627\u062a Axios (`services/api.js`)", + "file_type": "document", + "source_file": "README.md", + "source_location": "L542", + "_origin": "ast", + "id": "readme_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_axios_services_api_js", + "community": 104, + "norm_label": "\u062a\u0646\u0638\u06cc\u0645\u0627\u062a axios (`services/api.js`)" + }, + { + "label": "API Endpoints (`services/response.js`)", + "file_type": "document", + "source_file": "README.md", + "source_location": "L562", + "_origin": "ast", + "id": "readme_api_endpoints_services_response_js", + "community": 104, + "norm_label": "api endpoints (`services/response.js`)" + }, + { + "label": "Helper Functions (`helper/index.js`)", + "file_type": "document", + "source_file": "README.md", + "source_location": "L604", + "_origin": "ast", + "id": "readme_helper_functions_helper_index_js", + "community": 104, + "norm_label": "helper functions (`helper/index.js`)" + }, + { + "label": "\ud83c\udfa8 \u0627\u0633\u062a\u0627\u06cc\u0644\u200c\u062f\u0647\u06cc", + "file_type": "document", + "source_file": "README.md", + "source_location": "L632", + "_origin": "ast", + "id": "readme_\u0627\u0633\u062a\u0627\u06cc\u0644_\u062f\u0647\u06cc", + "community": 106, + "norm_label": "\ud83c\udfa8 \u0627\u0633\u062a\u0627\u06cc\u0644\u200c\u062f\u0647\u06cc" + }, + { + "label": "Tailwind CSS", + "file_type": "document", + "source_file": "README.md", + "source_location": "L634", + "_origin": "ast", + "id": "readme_tailwind_css", + "community": 106, + "norm_label": "tailwind css" + }, + { + "label": "Material-UI Theme", + "file_type": "document", + "source_file": "README.md", + "source_location": "L655", + "_origin": "ast", + "id": "readme_material_ui_theme", + "community": 106, + "norm_label": "material-ui theme" + }, + { + "label": "Dark Mode", + "file_type": "document", + "source_file": "README.md", + "source_location": "L671", + "_origin": "ast", + "id": "readme_dark_mode", + "community": 106, + "norm_label": "dark mode" + }, + { + "label": "\ud83d\udc33 Deployment", + "file_type": "document", + "source_file": "README.md", + "source_location": "L692", + "_origin": "ast", + "id": "readme_deployment", + "community": 94, + "norm_label": "\ud83d\udc33 deployment" + }, + { + "label": "\u0645\u062a\u063a\u06cc\u0631\u0647\u0627\u06cc \u0645\u062d\u06cc\u0637\u06cc \u0645\u0648\u0631\u062f \u0646\u06cc\u0627\u0632", + "file_type": "document", + "source_file": "README.md", + "source_location": "L694", + "_origin": "ast", + "id": "readme_\u0645\u062a\u063a\u06cc\u0631\u0647\u0627\u06cc_\u0645\u062d\u06cc\u0637\u06cc_\u0645\u0648\u0631\u062f_\u0646\u06cc\u0627\u0632", + "community": 94, + "norm_label": "\u0645\u062a\u063a\u06cc\u0631\u0647\u0627\u06cc \u0645\u062d\u06cc\u0637\u06cc \u0645\u0648\u0631\u062f \u0646\u06cc\u0627\u0632" + }, + { + "label": "Build Production", + "file_type": "document", + "source_file": "README.md", + "source_location": "L712", + "_origin": "ast", + "id": "readme_build_production", + "community": 94, + "norm_label": "build production" + }, + { + "label": "Docker Deployment", + "file_type": "document", + "source_file": "README.md", + "source_location": "L722", + "_origin": "ast", + "id": "readme_docker_deployment", + "community": 94, + "norm_label": "docker deployment" + }, + { + "label": "Docker Compose", + "file_type": "document", + "source_file": "README.md", + "source_location": "L735", + "_origin": "ast", + "id": "readme_docker_compose", + "community": 94, + "norm_label": "docker compose" + }, + { + "label": "\ud83d\udcdd \u0646\u06a9\u0627\u062a \u062a\u0648\u0633\u0639\u0647", + "file_type": "document", + "source_file": "README.md", + "source_location": "L756", + "_origin": "ast", + "id": "readme_\u0646\u06a9\u0627\u062a_\u062a\u0648\u0633\u0639\u0647", + "community": 87, + "norm_label": "\ud83d\udcdd \u0646\u06a9\u0627\u062a \u062a\u0648\u0633\u0639\u0647" + }, + { + "label": "1. \u0627\u0641\u0632\u0648\u062f\u0646 \u0635\u0641\u062d\u0647 \u062c\u062f\u06cc\u062f", + "file_type": "document", + "source_file": "README.md", + "source_location": "L758", + "_origin": "ast", + "id": "readme_1_\u0627\u0641\u0632\u0648\u062f\u0646_\u0635\u0641\u062d\u0647_\u062c\u062f\u06cc\u062f", + "community": 87, + "norm_label": "1. \u0627\u0641\u0632\u0648\u062f\u0646 \u0635\u0641\u062d\u0647 \u062c\u062f\u06cc\u062f" + }, + { + "label": "2. \u0627\u0641\u0632\u0648\u062f\u0646 API Endpoint \u062c\u062f\u06cc\u062f", + "file_type": "document", + "source_file": "README.md", + "source_location": "L773", + "_origin": "ast", + "id": "readme_2_\u0627\u0641\u0632\u0648\u062f\u0646_api_endpoint_\u062c\u062f\u06cc\u062f", + "community": 87, + "norm_label": "2. \u0627\u0641\u0632\u0648\u062f\u0646 api endpoint \u062c\u062f\u06cc\u062f" + }, + { + "label": "3. \u0627\u0641\u0632\u0648\u062f\u0646 \u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a \u062c\u062f\u06cc\u062f", + "file_type": "document", + "source_file": "README.md", + "source_location": "L784", + "_origin": "ast", + "id": "readme_3_\u0627\u0641\u0632\u0648\u062f\u0646_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a_\u062c\u062f\u06cc\u062f", + "community": 87, + "norm_label": "3. \u0627\u0641\u0632\u0648\u062f\u0646 \u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a \u062c\u062f\u06cc\u062f" + }, + { + "label": "4. \u06a9\u0627\u0631 \u0628\u0627 \u062a\u0627\u0631\u06cc\u062e \u0634\u0645\u0633\u06cc", + "file_type": "document", + "source_file": "README.md", + "source_location": "L797", + "_origin": "ast", + "id": "readme_4_\u06a9\u0627\u0631_\u0628\u0627_\u062a\u0627\u0631\u06cc\u062e_\u0634\u0645\u0633\u06cc", + "community": 87, + "norm_label": "4. \u06a9\u0627\u0631 \u0628\u0627 \u062a\u0627\u0631\u06cc\u062e \u0634\u0645\u0633\u06cc" + }, + { + "label": "5. \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 Context", + "file_type": "document", + "source_file": "README.md", + "source_location": "L811", + "_origin": "ast", + "id": "readme_5_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_context", + "community": 87, + "norm_label": "5. \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 context" + }, + { + "label": "\ud83d\udd27 Troubleshooting", + "file_type": "document", + "source_file": "README.md", + "source_location": "L826", + "_origin": "ast", + "id": "readme_troubleshooting", + "community": 63, + "norm_label": "\ud83d\udd27 troubleshooting" + }, + { + "label": "\u0645\u0634\u06a9\u0644\u0627\u062a \u0631\u0627\u06cc\u062c", + "file_type": "document", + "source_file": "README.md", + "source_location": "L828", + "_origin": "ast", + "id": "readme_\u0645\u0634\u06a9\u0644\u0627\u062a_\u0631\u0627\u06cc\u062c", + "community": 63, + "norm_label": "\u0645\u0634\u06a9\u0644\u0627\u062a \u0631\u0627\u06cc\u062c" + }, + { + "label": "\ud83d\udcda \u0645\u0646\u0627\u0628\u0639 \u0645\u0641\u06cc\u062f", + "file_type": "document", + "source_file": "README.md", + "source_location": "L856", + "_origin": "ast", + "id": "readme_\u0645\u0646\u0627\u0628\u0639_\u0645\u0641\u06cc\u062f", + "community": 63, + "norm_label": "\ud83d\udcda \u0645\u0646\u0627\u0628\u0639 \u0645\u0641\u06cc\u062f" + }, + { + "label": "\ud83d\udc65 \u062a\u06cc\u0645 \u062a\u0648\u0633\u0639\u0647", + "file_type": "document", + "source_file": "README.md", + "source_location": "L866", + "_origin": "ast", + "id": "readme_\u062a\u06cc\u0645_\u062a\u0648\u0633\u0639\u0647", + "community": 63, + "norm_label": "\ud83d\udc65 \u062a\u06cc\u0645 \u062a\u0648\u0633\u0639\u0647" + }, + { + "label": "\ud83d\udcde \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc", + "file_type": "document", + "source_file": "README.md", + "source_location": "L883", + "_origin": "ast", + "id": "readme_\u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc", + "community": 63, + "norm_label": "\ud83d\udcde \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc" + } + ], + "links": [ + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/CustomToastify.js", + "source_location": "L4", + "weight": 1.0, + "source": "app_customtoastify", + "target": "app_customtoastify_customtoastify", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/layout.js", + "source_location": "L6", + "weight": 1.0, + "source": "app_layout", + "target": "app_customtoastify", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/layout.js", + "source_location": "L6", + "weight": 1.0, + "source": "app_layout", + "target": "app_customtoastify_customtoastify", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/layout.js", + "source_location": "L3", + "weight": 1.0, + "source": "app_layout", + "target": "app_providers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/Providers.js", + "source_location": "L8", + "weight": 1.0, + "source": "app_providers", + "target": "app_providers_providers", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/layout.js", + "source_location": "L3", + "weight": 1.0, + "source": "app_layout", + "target": "app_providers_providers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/about-us/page.js", + "source_location": "L19", + "weight": 1.0, + "source": "about_us_page", + "target": "about_us_page_aboutus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/about-us/page.js", + "source_location": "L5", + "weight": 1.0, + "source": "about_us_page", + "target": "about_us_page_generatemetadata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/about-us/page.js", + "source_location": "L6", + "weight": 1.0, + "source": "about_us_page_generatemetadata", + "target": "lib_getstateinfo_getstateinfo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/api/auth/logout/route.js", + "source_location": "L5", + "weight": 1.0, + "source": "logout_route", + "target": "logout_route_post", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/api/auth/logout/route.js", + "source_location": "L23", + "weight": 1.0, + "source": "logout_route_post", + "target": "lib_refreshcookie_clearrefreshcookie" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/api/auth/refresh/route.js", + "source_location": "L5", + "weight": 1.0, + "source": "refresh_route", + "target": "refresh_route_post", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/api/auth/refresh/route.js", + "source_location": "L31", + "weight": 1.0, + "source": "refresh_route_post", + "target": "lib_refreshcookie_clearrefreshcookie" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/api/auth/refresh/route.js", + "source_location": "L24", + "weight": 1.0, + "source": "refresh_route_post", + "target": "lib_refreshcookie_setrefreshcookie" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/api/auth/token/route.js", + "source_location": "L5", + "weight": 1.0, + "source": "token_route", + "target": "token_route_post", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/api/auth/token/route.js", + "source_location": "L36", + "weight": 1.0, + "source": "token_route_post", + "target": "lib_refreshcookie_setrefreshcookie" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/appointment/[doctorId]/page.js", + "source_location": "L9", + "weight": 1.0, + "source": "doctorid_page", + "target": "doctorid_page_appointment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/appointment/[doctorId]/page.js", + "source_location": "L5", + "weight": 1.0, + "source": "doctorid_page", + "target": "doctorid_page_metadata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/appointment/[doctorId]/page.js", + "source_location": "L11", + "weight": 1.0, + "source": "doctorid_page_appointment", + "target": "lib_getstateinfo_getstateinfo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/blog/[slug]/loading.js", + "source_location": "L3", + "weight": 1.0, + "source": "app_blog_slug_loading_js_slug_loading", + "target": "app_blog_slug_loading_js_slug_loading_loading", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/blog/[slug]/page.js", + "source_location": "L24", + "weight": 1.0, + "source": "app_blog_slug_page_js_slug_page", + "target": "app_blog_slug_page_js_slug_page_generatemetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/blog/[slug]/page.js", + "source_location": "L67", + "weight": 1.0, + "source": "app_blog_slug_page_js_slug_page", + "target": "slug_page_blog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/blog/[slug]/page.js", + "source_location": "L14", + "weight": 1.0, + "source": "app_blog_slug_page_js_slug_page", + "target": "slug_page_getblog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "app/blog/[slug]/page.js", + "source_location": "L29", + "weight": 1.0, + "source": "app_blog_slug_page_js_slug_page_generatemetadata", + "target": "slug_page_getblog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "app/blog/[slug]/page.js", + "source_location": "L71", + "weight": 1.0, + "source": "slug_page_blog", + "target": "slug_page_getblog", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/blog/[slug]/page.js", + "source_location": "L39", + "weight": 1.0, + "source": "app_blog_slug_page_js_slug_page_generatemetadata", + "target": "helper_index_imageurl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/blog/[slug]/page.js", + "source_location": "L26", + "weight": 1.0, + "source": "app_blog_slug_page_js_slug_page_generatemetadata", + "target": "lib_getstateinfo_getstateinfo" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/blog/[slug]/page.js", + "source_location": "L88", + "weight": 1.0, + "source": "slug_page_blog", + "target": "helper_index_imageurl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/blog/[slug]/page.js", + "source_location": "L71", + "weight": 1.0, + "source": "slug_page_blog", + "target": "helper_index_normalizeblog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/blog/[slug]/page.js", + "source_location": "L69", + "weight": 1.0, + "source": "slug_page_blog", + "target": "lib_getcanonicalurl_getrequestorigin" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/blog/[slug]/page.js", + "source_location": "L75", + "weight": 1.0, + "source": "slug_page_blog", + "target": "lib_req_fetchreq" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/blog/[slug]/page.js", + "source_location": "L113", + "weight": 1.0, + "source": "slug_page_blog", + "target": "lib_sanitize_safejsonld" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/blogs/loading.js", + "source_location": "L3", + "weight": 1.0, + "source": "blogs_loading", + "target": "blogs_loading_loading", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/blogs/page.js", + "source_location": "L21", + "weight": 1.0, + "source": "blogs_page", + "target": "blogs_page_blogs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/blogs/page.js", + "source_location": "L5", + "weight": 1.0, + "source": "blogs_page", + "target": "blogs_page_generatemetadata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/blogs/page.js", + "source_location": "L6", + "weight": 1.0, + "source": "blogs_page_generatemetadata", + "target": "lib_getstateinfo_getstateinfo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/clinic/[slug]/loading.js", + "source_location": "L3", + "weight": 1.0, + "source": "app_clinic_slug_loading_js_slug_loading", + "target": "app_clinic_slug_loading_js_slug_loading_loading", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/clinic/[slug]/page.js", + "source_location": "L23", + "weight": 1.0, + "source": "app_clinic_slug_page_js_slug_page", + "target": "app_clinic_slug_page_js_slug_page_generatemetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/clinic/[slug]/page.js", + "source_location": "L74", + "weight": 1.0, + "source": "app_clinic_slug_page_js_slug_page", + "target": "slug_page_clinic", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/clinic/[slug]/page.js", + "source_location": "L61", + "weight": 1.0, + "source": "app_clinic_slug_page_js_slug_page", + "target": "slug_page_computeclinicrating", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/clinic/[slug]/page.js", + "source_location": "L13", + "weight": 1.0, + "source": "app_clinic_slug_page_js_slug_page", + "target": "slug_page_getclinic", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "app/clinic/[slug]/page.js", + "source_location": "L28", + "weight": 1.0, + "source": "app_clinic_slug_page_js_slug_page_generatemetadata", + "target": "slug_page_getclinic", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "app/clinic/[slug]/page.js", + "source_location": "L81", + "weight": 1.0, + "source": "slug_page_clinic", + "target": "slug_page_getclinic", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/clinic/[slug]/page.js", + "source_location": "L37", + "weight": 1.0, + "source": "app_clinic_slug_page_js_slug_page_generatemetadata", + "target": "helper_index_imageurl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/clinic/[slug]/page.js", + "source_location": "L25", + "weight": 1.0, + "source": "app_clinic_slug_page_js_slug_page_generatemetadata", + "target": "lib_getstateinfo_getstateinfo" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "app/clinic/[slug]/page.js", + "source_location": "L93", + "weight": 1.0, + "source": "slug_page_clinic", + "target": "slug_page_computeclinicrating", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/clinic/[slug]/page.js", + "source_location": "L114", + "weight": 1.0, + "source": "slug_page_clinic", + "target": "helper_index_imageurl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/clinic/[slug]/page.js", + "source_location": "L76", + "weight": 1.0, + "source": "slug_page_clinic", + "target": "lib_getcanonicalurl_getrequestorigin" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/clinic/[slug]/page.js", + "source_location": "L83", + "weight": 1.0, + "source": "slug_page_clinic", + "target": "lib_req_fetchreq" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/clinic/[slug]/page.js", + "source_location": "L168", + "weight": 1.0, + "source": "slug_page_clinic", + "target": "lib_sanitize_safejsonld" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/clinics/loading.js", + "source_location": "L5", + "weight": 1.0, + "source": "clinics_loading", + "target": "clinics_loading_loading", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/clinics/page.js", + "source_location": "L40", + "weight": 1.0, + "source": "clinics_page", + "target": "clinics_page_clinics", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/clinics/page.js", + "source_location": "L8", + "weight": 1.0, + "source": "clinics_page", + "target": "clinics_page_filter_keys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/clinics/page.js", + "source_location": "L19", + "weight": 1.0, + "source": "clinics_page", + "target": "clinics_page_generatemetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/clinics/page.js", + "source_location": "L11", + "weight": 1.0, + "source": "clinics_page", + "target": "clinics_page_listingrobots", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "app/clinics/page.js", + "source_location": "L34", + "weight": 1.0, + "source": "clinics_page_generatemetadata", + "target": "clinics_page_listingrobots", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/clinics/page.js", + "source_location": "L21", + "weight": 1.0, + "source": "clinics_page_generatemetadata", + "target": "lib_getstateinfo_getstateinfo" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/clinics/page.js", + "source_location": "L60", + "weight": 1.0, + "source": "clinics_page_clinics", + "target": "helper_index_buildclinicparams" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/clinics/page.js", + "source_location": "L42", + "weight": 1.0, + "source": "clinics_page_clinics", + "target": "lib_getstateinfo_getstateinfo" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/clinics/page.js", + "source_location": "L63", + "weight": 1.0, + "source": "clinics_page_clinics", + "target": "lib_req_fetchreq" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/AnimationTextHead.js", + "source_location": "L1", + "weight": 1.0, + "source": "component_animationtexthead", + "target": "component_animationtexthead_animationtexthead", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/ButtonDate.js", + "source_location": "L4", + "weight": 1.0, + "source": "component_buttondate", + "target": "component_buttondate_buttondate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/ButtonDate.js", + "source_location": "L2", + "weight": 1.0, + "source": "component_buttondate", + "target": "component_datepickercontent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/ButtonDate.js", + "source_location": "L2", + "weight": 1.0, + "source": "component_buttondate", + "target": "component_datepickercontent_datepickercontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/ContentText.js", + "source_location": "L1", + "weight": 1.0, + "source": "component_contenttext", + "target": "component_contenttext_contenttext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/CustomTable.js", + "source_location": "L10", + "weight": 1.0, + "source": "component_customtable", + "target": "component_customtable_customtable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/DatePickerContent.js", + "source_location": "L3", + "weight": 1.0, + "source": "component_datepickercontent", + "target": "component_datepickercontent_datepickercontent", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/PopoverDate.js", + "source_location": "L3", + "weight": 1.0, + "source": "component_popoverdate", + "target": "component_datepickercontent", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/PopoverDate.js", + "source_location": "L3", + "weight": 1.0, + "source": "component_popoverdate", + "target": "component_datepickercontent_datepickercontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/DetailProfile.js", + "source_location": "L9", + "weight": 1.0, + "source": "component_detailprofile", + "target": "component_detailprofile_detailprofile", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/DetailProfile.js", + "source_location": "L7", + "weight": 1.0, + "source": "component_detailprofile", + "target": "component_modallogout", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/DetailProfile.js", + "source_location": "L7", + "weight": 1.0, + "source": "component_detailprofile", + "target": "component_modallogout_modallogout", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/DoctorAvatar.js", + "source_location": "L13", + "weight": 1.0, + "source": "component_doctoravatar", + "target": "component_doctoravatar_doctoravatar", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/DoctorAvatar.js", + "source_location": "L4", + "weight": 1.0, + "source": "component_doctoravatar", + "target": "component_doctoravatar_getinitials", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/ItemDoctor.js", + "source_location": "L7", + "weight": 1.0, + "source": "component_itemdoctor", + "target": "component_doctoravatar", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "app/component/DoctorAvatar.js", + "source_location": "L23", + "weight": 1.0, + "source": "component_doctoravatar_doctoravatar", + "target": "component_doctoravatar_getinitials", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/component/DoctorAvatar.js", + "source_location": "L34", + "weight": 1.0, + "source": "component_doctoravatar_doctoravatar", + "target": "helper_index_imageurl" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/ItemDoctor.js", + "source_location": "L7", + "weight": 1.0, + "source": "component_itemdoctor", + "target": "component_doctoravatar_doctoravatar", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/ItemDoctor.js", + "source_location": "L15", + "weight": 1.0, + "source": "component_itemdoctor", + "target": "component_itemdoctor_itemdoctor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/ItemDoctor.js", + "source_location": "L6", + "weight": 1.0, + "source": "component_itemdoctor", + "target": "loading_circular", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/ItemDoctor.js", + "source_location": "L6", + "weight": 1.0, + "source": "component_itemdoctor", + "target": "loading_circular_circularloading", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/ItemDoctor.js", + "source_location": "L4", + "weight": 1.0, + "source": "component_itemdoctor", + "target": "loading_custom", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/ItemDoctor.js", + "source_location": "L4", + "weight": 1.0, + "source": "component_itemdoctor", + "target": "loading_custom_customloading", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/ItemDoctor.js", + "source_location": "L5", + "weight": 1.0, + "source": "component_itemdoctor", + "target": "loading_text", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/ItemDoctor.js", + "source_location": "L5", + "weight": 1.0, + "source": "component_itemdoctor", + "target": "loading_text_textloading", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/LoadingComponent.js", + "source_location": "L4", + "weight": 1.0, + "source": "component_loadingcomponent", + "target": "component_loadingcomponent_loadingcomponent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/Logo.js", + "source_location": "L5", + "weight": 1.0, + "source": "component_logo", + "target": "component_logo_logo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/ModalLogout.js", + "source_location": "L8", + "weight": 1.0, + "source": "component_modallogout", + "target": "component_modallogout_modallogout", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/sidebar/List.js", + "source_location": "L12", + "weight": 1.0, + "source": "sidebar_list", + "target": "component_modallogout", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/sidebar/List.js", + "source_location": "L12", + "weight": 1.0, + "source": "sidebar_list", + "target": "component_modallogout_modallogout", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/Pageguide.js", + "source_location": "L1", + "weight": 1.0, + "source": "component_pageguide", + "target": "component_pageguide_pageguide", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/Pagination.js", + "source_location": "L3", + "weight": 1.0, + "source": "component_pagination", + "target": "component_pagination_pagination", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/PaginationContent.js", + "source_location": "L6", + "weight": 1.0, + "source": "component_paginationcontent", + "target": "component_paginationcontent_paginationcontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/PopoverDate.js", + "source_location": "L5", + "weight": 1.0, + "source": "component_popoverdate", + "target": "component_popoverdate_popoverdate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/ProfressDetail.js", + "source_location": "L4", + "weight": 1.0, + "source": "component_profressdetail", + "target": "component_profressdetail_fallbacklabels", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/ProfressDetail.js", + "source_location": "L12", + "weight": 1.0, + "source": "component_profressdetail", + "target": "component_profressdetail_progressdetail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/component/ProfressDetail.js", + "source_location": "L36", + "weight": 1.0, + "source": "component_profressdetail_progressdetail", + "target": "helper_index_numbertoarstyle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/ProgressChange.js", + "source_location": "L4", + "weight": 1.0, + "source": "component_progresschange", + "target": "component_progresschange_progresschange", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/ScrollToTop.js", + "source_location": "L3", + "weight": 1.0, + "source": "component_scrolltotop", + "target": "component_scrolltotop_scrolltotop", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/SwitchTable.js", + "source_location": "L4", + "weight": 1.0, + "source": "component_switchtable", + "target": "component_switchtable_materialuiswitch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/SwitchTable.js", + "source_location": "L51", + "weight": 1.0, + "source": "component_switchtable", + "target": "component_switchtable_switchtable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/Tabs.js", + "source_location": "L3", + "weight": 1.0, + "source": "component_tabs", + "target": "component_tabs_a11yprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/Tabs.js", + "source_location": "L10", + "weight": 1.0, + "source": "component_tabs", + "target": "component_tabs_tabs", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/date/dateTime/index.js", + "source_location": "L6", + "weight": 1.0, + "source": "datetime_index", + "target": "component_tabs", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/date/dateTime/index.js", + "source_location": "L6", + "weight": 1.0, + "source": "datetime_index", + "target": "component_tabs_tabs", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/layout.js", + "source_location": "L2", + "weight": 1.0, + "source": "app_layout", + "target": "component_themeregistry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/ThemeRegistry.js", + "source_location": "L13", + "weight": 1.0, + "source": "component_themeregistry", + "target": "component_themeregistry_themeregistry", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/ThemeRegistry.js", + "source_location": "L9", + "weight": 1.0, + "source": "component_themeregistry", + "target": "theme_theme", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/ThemeRegistry.js", + "source_location": "L9", + "weight": 1.0, + "source": "component_themeregistry", + "target": "theme_theme_theme", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/layout.js", + "source_location": "L2", + "weight": 1.0, + "source": "app_layout", + "target": "component_themeregistry_themeregistry", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/TimePickerField.js", + "source_location": "L7", + "weight": 1.0, + "source": "component_timepickerfield", + "target": "component_timepickerfield_timepickerfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/TimePickerInput.js", + "source_location": "L6", + "weight": 1.0, + "source": "component_timepickerinput", + "target": "component_timepickerinput_timepickerinput", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/comment/Field.js", + "source_location": "L3", + "weight": 1.0, + "source": "comment_field", + "target": "comment_field_field", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/comment/SendAnswer.js", + "source_location": "L2", + "weight": 1.0, + "source": "comment_sendanswer", + "target": "comment_field", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/comment/SendAnswer.js", + "source_location": "L2", + "weight": 1.0, + "source": "comment_sendanswer", + "target": "comment_field_field", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/comment/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "comment_index", + "target": "comment_itemuser", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/comment/ItemUser.js", + "source_location": "L18", + "weight": 1.0, + "source": "comment_itemuser", + "target": "comment_itemuser_itemuser", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/comment/ItemUser.js", + "source_location": "L12", + "weight": 1.0, + "source": "comment_itemuser", + "target": "comment_replies", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/comment/ItemUser.js", + "source_location": "L12", + "weight": 1.0, + "source": "comment_itemuser", + "target": "comment_replies_replies", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/comment/ItemUser.js", + "source_location": "L13", + "weight": 1.0, + "source": "comment_itemuser", + "target": "comment_sendanswer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/comment/ItemUser.js", + "source_location": "L13", + "weight": 1.0, + "source": "comment_itemuser", + "target": "comment_sendanswer_sendanswer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/comment/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "comment_index", + "target": "comment_itemuser_itemuser", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/component/comment/ItemUser.js", + "source_location": "L67", + "weight": 1.0, + "source": "comment_itemuser_itemuser", + "target": "helper_index_imageurl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/component/comment/ItemUser.js", + "source_location": "L77", + "weight": 1.0, + "source": "comment_itemuser_itemuser", + "target": "helper_index_timeago" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/comment/Replies.js", + "source_location": "L2", + "weight": 1.0, + "source": "comment_replies", + "target": "comment_itemuser_itemuser", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/comment/Replies.js", + "source_location": "L4", + "weight": 1.0, + "source": "comment_replies", + "target": "comment_replies_replies", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/comment/SendAnswer.js", + "source_location": "L7", + "weight": 1.0, + "source": "comment_sendanswer", + "target": "comment_sendanswer_sendanswer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/comment/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "comment_index", + "target": "comment_index_comment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/date/datePicker/ButtonDate.js", + "source_location": "L4", + "weight": 1.0, + "source": "datepicker_buttondate", + "target": "datepicker_buttondate_buttondate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/date/datePicker/Field.js", + "source_location": "L3", + "weight": 1.0, + "source": "datepicker_field", + "target": "datepicker_field_field", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/date/datePicker/date/FirstDatePicker.js", + "source_location": "L4", + "weight": 1.0, + "source": "date_firstdatepicker", + "target": "datepicker_loadingdate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/date/datePicker/date/SecondDatePicker.js", + "source_location": "L4", + "weight": 1.0, + "source": "date_seconddatepicker", + "target": "datepicker_loadingdate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/date/datePicker/LoadingDate.js", + "source_location": "L4", + "weight": 1.0, + "source": "datepicker_loadingdate", + "target": "datepicker_loadingdate_loadingdate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/date/datePicker/date/FirstDatePicker.js", + "source_location": "L4", + "weight": 1.0, + "source": "date_firstdatepicker", + "target": "datepicker_loadingdate_loadingdate", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/date/datePicker/date/SecondDatePicker.js", + "source_location": "L4", + "weight": 1.0, + "source": "date_seconddatepicker", + "target": "datepicker_loadingdate_loadingdate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/date/datePicker/date/FirstDatePicker.js", + "source_location": "L3", + "weight": 1.0, + "source": "date_firstdatepicker", + "target": "date_dataicon", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/date/datePicker/date/FirstDatePicker.js", + "source_location": "L3", + "weight": 1.0, + "source": "date_firstdatepicker", + "target": "date_dataicon_nexticondata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/date/datePicker/date/FirstDatePicker.js", + "source_location": "L3", + "weight": 1.0, + "source": "date_firstdatepicker", + "target": "date_dataicon_previcondata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/date/datePicker/date/FirstDatePicker.js", + "source_location": "L7", + "weight": 1.0, + "source": "date_firstdatepicker", + "target": "date_firstdatepicker_firstdatepicker", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/date/datePicker/date/SecondDatePicker.js", + "source_location": "L3", + "weight": 1.0, + "source": "date_seconddatepicker", + "target": "date_dataicon", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/date/datePicker/date/SecondDatePicker.js", + "source_location": "L3", + "weight": 1.0, + "source": "date_seconddatepicker", + "target": "date_dataicon_nexticondata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/date/datePicker/date/SecondDatePicker.js", + "source_location": "L3", + "weight": 1.0, + "source": "date_seconddatepicker", + "target": "date_dataicon_previcondata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/date/datePicker/date/SecondDatePicker.js", + "source_location": "L7", + "weight": 1.0, + "source": "date_seconddatepicker", + "target": "date_seconddatepicker_seconddatepicker", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/date/datePicker/date/dataIcon.js", + "source_location": "L1", + "weight": 1.0, + "source": "date_dataicon", + "target": "date_dataicon_fixedicondata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/date/datePicker/date/dataIcon.js", + "source_location": "L8", + "weight": 1.0, + "source": "date_dataicon", + "target": "date_dataicon_nexticondata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/date/datePicker/date/dataIcon.js", + "source_location": "L13", + "weight": 1.0, + "source": "date_dataicon", + "target": "date_dataicon_previcondata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/date/datePicker/index.js", + "source_location": "L24", + "weight": 1.0, + "source": "datepicker_index", + "target": "datepicker_index_datepicker", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/date/datePicker/index.js", + "source_location": "L11", + "weight": 1.0, + "source": "datepicker_index", + "target": "datepicker_index_gregorianmonthsof", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/date/dateTime/index.js", + "source_location": "L8", + "weight": 1.0, + "source": "datetime_index", + "target": "datetime_sendappo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/date/dateTime/SendAppo.js", + "source_location": "L5", + "weight": 1.0, + "source": "datetime_sendappo", + "target": "datetime_sendappo_sendappo", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/date/dateTime/index.js", + "source_location": "L8", + "weight": 1.0, + "source": "datetime_index", + "target": "datetime_sendappo_sendappo", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/date/dateTime/hours/index.js", + "source_location": "L1", + "weight": 1.0, + "source": "hours_index", + "target": "hours_list", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/date/dateTime/hours/List.js", + "source_location": "L4", + "weight": 1.0, + "source": "hours_list", + "target": "hours_list_list", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/date/dateTime/hours/index.js", + "source_location": "L1", + "weight": 1.0, + "source": "hours_index", + "target": "hours_list_list", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/date/dateTime/hours/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "hours_index", + "target": "hours_loading", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/date/dateTime/hours/Loading.js", + "source_location": "L3", + "weight": 1.0, + "source": "hours_loading", + "target": "hours_loading_loading", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/date/dateTime/hours/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "hours_index", + "target": "hours_loading_loading", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/date/dateTime/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "datetime_index", + "target": "hours_index", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/date/dateTime/hours/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "hours_index", + "target": "hours_index_hours", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/date/dateTime/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "datetime_index", + "target": "hours_index_hours", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/date/dateTime/index.js", + "source_location": "L14", + "weight": 1.0, + "source": "datetime_index", + "target": "datetime_index_datetime", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/date/dateTime/index.js", + "source_location": "L11", + "weight": 1.0, + "source": "datetime_index", + "target": "datetime_index_listtab", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/date/dateTime/index.js", + "source_location": "L12", + "weight": 1.0, + "source": "datetime_index", + "target": "datetime_index_namehours", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/element/AutoCompleteSelect.js", + "source_location": "L5", + "weight": 1.0, + "source": "element_autocompleteselect", + "target": "element_autocompleteselect_autocompleteselect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/element/AutoSelector.js", + "source_location": "L5", + "weight": 1.0, + "source": "element_autoselector", + "target": "element_autoselector_autoselector", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/element/Field.js", + "source_location": "L5", + "weight": 1.0, + "source": "element_field", + "target": "element_field_convertpersiantoenglish", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/element/Field.js", + "source_location": "L19", + "weight": 1.0, + "source": "element_field", + "target": "element_field_field", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/appointment/detail/Form.js", + "source_location": "L2", + "weight": 1.0, + "source": "detail_form", + "target": "fields_editfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/fields/EditField.js", + "source_location": "L6", + "weight": 1.0, + "source": "fields_editfield", + "target": "fields_editfield_convertpersiantoenglish", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/fields/EditField.js", + "source_location": "L20", + "weight": 1.0, + "source": "fields_editfield", + "target": "fields_editfield_editfield", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/appointment/detail/Form.js", + "source_location": "L2", + "weight": 1.0, + "source": "detail_form", + "target": "fields_editfield_editfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/fields/Field.js", + "source_location": "L3", + "weight": 1.0, + "source": "fields_field", + "target": "fields_field_field", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/fields/FieldIcon.js", + "source_location": "L5", + "weight": 1.0, + "source": "fields_fieldicon", + "target": "fields_fieldicon_fieldicon", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/head/index.js", + "source_location": "L1", + "weight": 1.0, + "source": "app_component_head_index_js_head_index", + "target": "head_index_headpagelist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/loading/Circular.js", + "source_location": "L3", + "weight": 1.0, + "source": "loading_circular", + "target": "loading_circular_circularloading", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/loading/Custom.js", + "source_location": "L3", + "weight": 1.0, + "source": "loading_custom", + "target": "loading_custom_customloading", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/loading/Multiline.js", + "source_location": "L3", + "weight": 1.0, + "source": "loading_multiline", + "target": "loading_multiline_multilineloading", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/loading/Text.js", + "source_location": "L3", + "weight": 1.0, + "source": "loading_text", + "target": "loading_text_textloading", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/modalSearchCity/AddressSelector.js", + "source_location": "L5", + "weight": 1.0, + "source": "modalsearchcity_addressselector", + "target": "modalsearchcity_addressselector_addressselector", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/modalSearchCity/Content.js", + "source_location": "L6", + "weight": 1.0, + "source": "modalsearchcity_content", + "target": "modalsearchcity_addressselector", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/modalSearchCity/Content.js", + "source_location": "L6", + "weight": 1.0, + "source": "modalsearchcity_content", + "target": "modalsearchcity_addressselector_addressselector", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/modalSearchCity/ButtonFilter.js", + "source_location": "L6", + "weight": 1.0, + "source": "modalsearchcity_buttonfilter", + "target": "modalsearchcity_buttonfilter_buttonfilter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/modalSearchCity/Content.js", + "source_location": "L9", + "weight": 1.0, + "source": "modalsearchcity_content", + "target": "modalsearchcity_content_content", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/modalSearchCity/index.js", + "source_location": "L10", + "weight": 1.0, + "source": "modalsearchcity_index", + "target": "modalsearchcity_content", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/component/modalSearchCity/Content.js", + "source_location": "L18", + "weight": 1.0, + "source": "modalsearchcity_content_content", + "target": "lib_getstateinfoclient_getstateinfoclient" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/modalSearchCity/index.js", + "source_location": "L10", + "weight": 1.0, + "source": "modalsearchcity_index", + "target": "modalsearchcity_content_content", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/modalSearchCity/index.js", + "source_location": "L12", + "weight": 1.0, + "source": "modalsearchcity_index", + "target": "modalsearchcity_index_modalsearchcity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/openLocation/Content.js", + "source_location": "L4", + "weight": 1.0, + "source": "openlocation_content", + "target": "openlocation_content_content", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/openLocation/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "openlocation_index", + "target": "openlocation_content", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/openLocation/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "openlocation_index", + "target": "openlocation_content_content", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/openLocation/index.js", + "source_location": "L7", + "weight": 1.0, + "source": "openlocation_index", + "target": "openlocation_index_modalopenlocation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/selectors/DefaultSelect.js", + "source_location": "L5", + "weight": 1.0, + "source": "selectors_defaultselect", + "target": "selectors_defaultselect_defaultselect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/selectors/GroupedSelect.js", + "source_location": "L25", + "weight": 1.0, + "source": "selectors_groupedselect", + "target": "selectors_groupedselect_groupedselect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/selectors/GroupedSelect.js", + "source_location": "L7", + "weight": 1.0, + "source": "selectors_groupedselect", + "target": "selectors_groupedselect_groupspecialtiesbyparent", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "app/component/selectors/GroupedSelect.js", + "source_location": "L32", + "weight": 1.0, + "source": "selectors_groupedselect_groupedselect", + "target": "selectors_groupedselect_groupspecialtiesbyparent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/selectors/MultipleSelect.js", + "source_location": "L7", + "weight": 1.0, + "source": "selectors_multipleselect", + "target": "selectors_multipleselect_multipleselect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/uploadFile/Crop.js", + "source_location": "L6", + "weight": 1.0, + "source": "uploadfile_crop", + "target": "uploadfile_crop_crop", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/uploadFile/Crop.js", + "source_location": "L4", + "weight": 1.0, + "source": "uploadfile_crop", + "target": "uploadfile_cropimg", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/uploadFile/Crop.js", + "source_location": "L4", + "weight": 1.0, + "source": "uploadfile_crop", + "target": "uploadfile_cropimg_cropimage", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/uploadFile/Crop.js", + "source_location": "L4", + "weight": 1.0, + "source": "uploadfile_crop", + "target": "uploadfile_cropimg_dataurltofile", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/uploadFile/ModalUpload.js", + "source_location": "L4", + "weight": 1.0, + "source": "uploadfile_modalupload", + "target": "uploadfile_crop", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "app/component/uploadFile/Crop.js", + "source_location": "L47", + "weight": 1.0, + "source": "uploadfile_crop_crop", + "target": "uploadfile_cropimg_cropimage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "app/component/uploadFile/Crop.js", + "source_location": "L14", + "weight": 1.0, + "source": "uploadfile_crop_crop", + "target": "uploadfile_cropimg_dataurltofile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/uploadFile/ModalUpload.js", + "source_location": "L4", + "weight": 1.0, + "source": "uploadfile_modalupload", + "target": "uploadfile_crop_crop", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/uploadFile/index.js", + "source_location": "L8", + "weight": 1.0, + "source": "uploadfile_index", + "target": "uploadfile_modalupload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/uploadFile/ModalUpload.js", + "source_location": "L6", + "weight": 1.0, + "source": "uploadfile_modalupload", + "target": "uploadfile_modalupload_modalupload", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/component/uploadFile/index.js", + "source_location": "L8", + "weight": 1.0, + "source": "uploadfile_index", + "target": "uploadfile_modalupload_modalupload", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/uploadFile/cropImg.js", + "source_location": "L1", + "weight": 1.0, + "source": "uploadfile_cropimg", + "target": "uploadfile_cropimg_createimage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/uploadFile/cropImg.js", + "source_location": "L54", + "weight": 1.0, + "source": "uploadfile_cropimg", + "target": "uploadfile_cropimg_cropimage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/uploadFile/cropImg.js", + "source_location": "L40", + "weight": 1.0, + "source": "uploadfile_cropimg", + "target": "uploadfile_cropimg_dataurltofile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/uploadFile/cropImg.js", + "source_location": "L10", + "weight": 1.0, + "source": "uploadfile_cropimg", + "target": "uploadfile_cropimg_getcroppedimg", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "app/component/uploadFile/cropImg.js", + "source_location": "L11", + "weight": 1.0, + "source": "uploadfile_cropimg_getcroppedimg", + "target": "uploadfile_cropimg_createimage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "app/component/uploadFile/cropImg.js", + "source_location": "L56", + "weight": 1.0, + "source": "uploadfile_cropimg_cropimage", + "target": "uploadfile_cropimg_getcroppedimg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/component/uploadFile/index.js", + "source_location": "L11", + "weight": 1.0, + "source": "uploadfile_index", + "target": "uploadfile_index_uploadfile", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/contact-us/page.js", + "source_location": "L4", + "weight": 1.0, + "source": "contact_us_page", + "target": "contact_us_page_contactus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/dashboard/not-found.js", + "source_location": "L4", + "weight": 1.0, + "source": "dashboard_not_found", + "target": "dashboard_not_found_notfound", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/dashboard/page.js", + "source_location": "L18", + "weight": 1.0, + "source": "dashboard_page", + "target": "dashboard_page_dashboard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/dashboard/page.js", + "source_location": "L14", + "weight": 1.0, + "source": "dashboard_page", + "target": "dashboard_page_metadata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/dashboard/page.js", + "source_location": "L23", + "weight": 1.0, + "source": "dashboard_page_dashboard", + "target": "lib_ability_defineabilitiesfor" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/dashboard/page.js", + "source_location": "L21", + "weight": 1.0, + "source": "dashboard_page_dashboard", + "target": "lib_auth_getuser" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/dashboard/page.js", + "source_location": "L20", + "weight": 1.0, + "source": "dashboard_page_dashboard", + "target": "lib_getstateinfo_getstateinfo" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/dashboard/page.js", + "source_location": "L52", + "weight": 1.0, + "source": "dashboard_page_dashboard", + "target": "lib_money_rialtotoman" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/dashboard/page.js", + "source_location": "L66", + "weight": 1.0, + "source": "dashboard_page_dashboard", + "target": "lib_representationadapters_buildpatientuser" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/dashboard/page.js", + "source_location": "L41", + "weight": 1.0, + "source": "dashboard_page_dashboard", + "target": "lib_req_fetchreq" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/dashboard/page.js", + "source_location": "L34", + "weight": 1.0, + "source": "dashboard_page_dashboard", + "target": "lib_sanitize_safejsonparse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/dashboard/page.js", + "source_location": "L25", + "weight": 1.0, + "source": "dashboard_page_dashboard", + "target": "lib_servertoken_getserveraccesstoken" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/dashboard/page.js", + "source_location": "L28", + "weight": 1.0, + "source": "dashboard_page_dashboard", + "target": "utils_index_removetoken" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/doctor/[slug]/error.js", + "source_location": "L3", + "weight": 1.0, + "source": "slug_error", + "target": "slug_error_error", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/doctor/[slug]/loading.js", + "source_location": "L5", + "weight": 1.0, + "source": "app_doctor_slug_loading_js_slug_loading", + "target": "app_doctor_slug_loading_js_slug_loading_loading", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/doctor/[slug]/page.js", + "source_location": "L36", + "weight": 1.0, + "source": "app_doctor_slug_page_js_slug_page", + "target": "app_doctor_slug_page_js_slug_page_generatemetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/doctor/[slug]/page.js", + "source_location": "L79", + "weight": 1.0, + "source": "app_doctor_slug_page_js_slug_page", + "target": "slug_page_doctor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/doctor/[slug]/page.js", + "source_location": "L13", + "weight": 1.0, + "source": "app_doctor_slug_page_js_slug_page", + "target": "slug_page_getdoctor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/doctor/[slug]/page.js", + "source_location": "L23", + "weight": 1.0, + "source": "app_doctor_slug_page_js_slug_page", + "target": "slug_page_getdoctoraddresses", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "app/doctor/[slug]/page.js", + "source_location": "L41", + "weight": 1.0, + "source": "app_doctor_slug_page_js_slug_page_generatemetadata", + "target": "slug_page_getdoctor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "app/doctor/[slug]/page.js", + "source_location": "L85", + "weight": 1.0, + "source": "slug_page_doctor", + "target": "slug_page_getdoctor", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "app/doctor/[slug]/page.js", + "source_location": "L103", + "weight": 1.0, + "source": "slug_page_doctor", + "target": "slug_page_getdoctoraddresses", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/doctor/[slug]/page.js", + "source_location": "L56", + "weight": 1.0, + "source": "app_doctor_slug_page_js_slug_page_generatemetadata", + "target": "helper_index_imageurl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/doctor/[slug]/page.js", + "source_location": "L38", + "weight": 1.0, + "source": "app_doctor_slug_page_js_slug_page_generatemetadata", + "target": "lib_getstateinfo_getstateinfo" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/doctor/[slug]/page.js", + "source_location": "L117", + "weight": 1.0, + "source": "slug_page_doctor", + "target": "helper_index_imageurl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/doctor/[slug]/page.js", + "source_location": "L81", + "weight": 1.0, + "source": "slug_page_doctor", + "target": "lib_getcanonicalurl_getrequestorigin" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/doctor/[slug]/page.js", + "source_location": "L183", + "weight": 1.0, + "source": "slug_page_doctor", + "target": "lib_sanitize_safejsonld" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/doctors/loading.js", + "source_location": "L5", + "weight": 1.0, + "source": "doctors_loading", + "target": "doctors_loading_loading", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/doctors/page.js", + "source_location": "L40", + "weight": 1.0, + "source": "doctors_page", + "target": "doctors_page_doctors", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/doctors/page.js", + "source_location": "L8", + "weight": 1.0, + "source": "doctors_page", + "target": "doctors_page_filter_keys", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/doctors/page.js", + "source_location": "L19", + "weight": 1.0, + "source": "doctors_page", + "target": "doctors_page_generatemetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/doctors/page.js", + "source_location": "L11", + "weight": 1.0, + "source": "doctors_page", + "target": "doctors_page_listingrobots", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "app/doctors/page.js", + "source_location": "L34", + "weight": 1.0, + "source": "doctors_page_generatemetadata", + "target": "doctors_page_listingrobots", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/doctors/page.js", + "source_location": "L21", + "weight": 1.0, + "source": "doctors_page_generatemetadata", + "target": "lib_getstateinfo_getstateinfo" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/doctors/page.js", + "source_location": "L60", + "weight": 1.0, + "source": "doctors_page_doctors", + "target": "helper_index_builddoctorparams" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/doctors/page.js", + "source_location": "L42", + "weight": 1.0, + "source": "doctors_page_doctors", + "target": "lib_getstateinfo_getstateinfo" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/doctors/page.js", + "source_location": "L62", + "weight": 1.0, + "source": "doctors_page_doctors", + "target": "lib_req_fetchreq" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/error.js", + "source_location": "L3", + "weight": 1.0, + "source": "app_error", + "target": "app_error_error", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/layout.js", + "source_location": "L18", + "weight": 1.0, + "source": "app_layout", + "target": "app_layout_generatemetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/layout.js", + "source_location": "L82", + "weight": 1.0, + "source": "app_layout", + "target": "app_layout_rootlayout", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/layout.js", + "source_location": "L13", + "weight": 1.0, + "source": "app_layout", + "target": "app_layout_viewport", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/layout.js", + "source_location": "L22", + "weight": 1.0, + "source": "app_layout_generatemetadata", + "target": "lib_getcanonicalurl_buildcanonicalurl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/layout.js", + "source_location": "L24", + "weight": 1.0, + "source": "app_layout_generatemetadata", + "target": "lib_getcanonicalurl_getcanonicalurl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/layout.js", + "source_location": "L19", + "weight": 1.0, + "source": "app_layout_generatemetadata", + "target": "lib_getstateinfo_getstateinfo" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/layout.js", + "source_location": "L85", + "weight": 1.0, + "source": "app_layout_rootlayout", + "target": "lib_getcanonicalurl_getrequestorigin" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/layout.js", + "source_location": "L83", + "weight": 1.0, + "source": "app_layout_rootlayout", + "target": "lib_getstateinfo_getstateinfo" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/layout.js", + "source_location": "L126", + "weight": 1.0, + "source": "app_layout_rootlayout", + "target": "lib_sanitize_safejsonld" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/login-verify/page.js", + "source_location": "L7", + "weight": 1.0, + "source": "login_verify_page", + "target": "login_verify_page_loginverify", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/login-verify/page.js", + "source_location": "L3", + "weight": 1.0, + "source": "login_verify_page", + "target": "login_verify_page_metadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/login/page.js", + "source_location": "L10", + "weight": 1.0, + "source": "login_page", + "target": "login_page_login", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/login/page.js", + "source_location": "L6", + "weight": 1.0, + "source": "login_page", + "target": "login_page_metadata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/login/page.js", + "source_location": "L12", + "weight": 1.0, + "source": "login_page_login", + "target": "lib_ability_defineabilitiesfor" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/login/page.js", + "source_location": "L11", + "weight": 1.0, + "source": "login_page_login", + "target": "lib_auth_getuser" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/not-found.js", + "source_location": "L4", + "weight": 1.0, + "source": "app_not_found", + "target": "app_not_found_notfound", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/page.js", + "source_location": "L4", + "weight": 1.0, + "source": "app_page", + "target": "app_page_home", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/payment/[uuid]/page.js", + "source_location": "L10", + "weight": 1.0, + "source": "uuid_page", + "target": "uuid_page_paymentdetailspage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/payment/layout.js", + "source_location": "L1", + "weight": 1.0, + "source": "payment_layout", + "target": "payment_layout_metadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/payment/layout.js", + "source_location": "L5", + "weight": 1.0, + "source": "payment_layout", + "target": "payment_layout_paymentlayout", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/payment/result/page.js", + "source_location": "L32", + "weight": 1.0, + "source": "result_page", + "target": "result_page_paymentresultpage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/payment/result/page.js", + "source_location": "L7", + "weight": 1.0, + "source": "result_page", + "target": "result_page_paymentresultredirect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/robots.js", + "source_location": "L4", + "weight": 1.0, + "source": "app_robots", + "target": "app_robots_getcurrentdomain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/robots.js", + "source_location": "L13", + "weight": 1.0, + "source": "app_robots", + "target": "app_robots_robots", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/robots.js", + "source_location": "L2", + "weight": 1.0, + "source": "app_robots", + "target": "utils_sitemap", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/robots.js", + "source_location": "L2", + "weight": 1.0, + "source": "app_robots", + "target": "utils_sitemap_getbaseurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "app/robots.js", + "source_location": "L14", + "weight": 1.0, + "source": "app_robots_robots", + "target": "app_robots_getcurrentdomain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "app/robots.js", + "source_location": "L15", + "weight": 1.0, + "source": "app_robots_robots", + "target": "utils_sitemap_getbaseurl" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/sitemap.js", + "source_location": "L84", + "weight": 1.0, + "source": "app_sitemap", + "target": "app_sitemap_cityfilterparams", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/sitemap.js", + "source_location": "L56", + "weight": 1.0, + "source": "app_sitemap", + "target": "app_sitemap_fetchallpages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/sitemap.js", + "source_location": "L124", + "weight": 1.0, + "source": "app_sitemap", + "target": "app_sitemap_getblogurls", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/sitemap.js", + "source_location": "L33", + "weight": 1.0, + "source": "app_sitemap", + "target": "app_sitemap_getcityscope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/sitemap.js", + "source_location": "L108", + "weight": 1.0, + "source": "app_sitemap", + "target": "app_sitemap_getclinicurls", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/sitemap.js", + "source_location": "L23", + "weight": 1.0, + "source": "app_sitemap", + "target": "app_sitemap_getcurrentdomain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/sitemap.js", + "source_location": "L92", + "weight": 1.0, + "source": "app_sitemap", + "target": "app_sitemap_getdoctorurls", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/sitemap.js", + "source_location": "L44", + "weight": 1.0, + "source": "app_sitemap", + "target": "app_sitemap_getstaticpages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/sitemap.js", + "source_location": "L140", + "weight": 1.0, + "source": "app_sitemap", + "target": "app_sitemap_sitemap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/sitemap.js", + "source_location": "L12", + "weight": 1.0, + "source": "app_sitemap", + "target": "app_sitemap_tosafedate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/sitemap.js", + "source_location": "L18", + "weight": 1.0, + "source": "app_sitemap", + "target": "app_sitemap_withlastmodified", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/sitemap.js", + "source_location": "L2", + "weight": 1.0, + "source": "app_sitemap", + "target": "utils_sitemap", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "app/sitemap.js", + "source_location": "L2", + "weight": 1.0, + "source": "app_sitemap", + "target": "utils_sitemap_getbaseurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "app/sitemap.js", + "source_location": "L19", + "weight": 1.0, + "source": "app_sitemap_withlastmodified", + "target": "app_sitemap_tosafedate", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "app/sitemap.js", + "source_location": "L142", + "weight": 1.0, + "source": "app_sitemap_sitemap", + "target": "app_sitemap_getcurrentdomain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/sitemap.js", + "source_location": "L40", + "weight": 1.0, + "source": "app_sitemap_getcityscope", + "target": "lib_rootcity_isrootcity" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "app/sitemap.js", + "source_location": "L144", + "weight": 1.0, + "source": "app_sitemap_sitemap", + "target": "app_sitemap_getcityscope", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "app/sitemap.js", + "source_location": "L153", + "weight": 1.0, + "source": "app_sitemap_sitemap", + "target": "app_sitemap_getstaticpages", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "app/sitemap.js", + "source_location": "L125", + "weight": 1.0, + "source": "app_sitemap_getblogurls", + "target": "app_sitemap_fetchallpages", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "app/sitemap.js", + "source_location": "L109", + "weight": 1.0, + "source": "app_sitemap_getclinicurls", + "target": "app_sitemap_fetchallpages", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "app/sitemap.js", + "source_location": "L93", + "weight": 1.0, + "source": "app_sitemap_getdoctorurls", + "target": "app_sitemap_fetchallpages", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "app/sitemap.js", + "source_location": "L109", + "weight": 1.0, + "source": "app_sitemap_getclinicurls", + "target": "app_sitemap_cityfilterparams", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "app/sitemap.js", + "source_location": "L93", + "weight": 1.0, + "source": "app_sitemap_getdoctorurls", + "target": "app_sitemap_cityfilterparams", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "app/sitemap.js", + "source_location": "L147", + "weight": 1.0, + "source": "app_sitemap_sitemap", + "target": "app_sitemap_getdoctorurls", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "app/sitemap.js", + "source_location": "L148", + "weight": 1.0, + "source": "app_sitemap_sitemap", + "target": "app_sitemap_getclinicurls", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "app/sitemap.js", + "source_location": "L150", + "weight": 1.0, + "source": "app_sitemap_sitemap", + "target": "app_sitemap_getblogurls", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "app/sitemap.js", + "source_location": "L143", + "weight": 1.0, + "source": "app_sitemap_sitemap", + "target": "utils_sitemap_getbaseurl" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/specialties/page.js", + "source_location": "L5", + "weight": 1.0, + "source": "specialties_page", + "target": "specialties_page_generatemetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/specialties/page.js", + "source_location": "L22", + "weight": 1.0, + "source": "specialties_page", + "target": "specialties_page_specialties", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/specialties/page.js", + "source_location": "L6", + "weight": 1.0, + "source": "specialties_page_generatemetadata", + "target": "lib_getstateinfo_getstateinfo" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "app/specialties/page.js", + "source_location": "L23", + "weight": 1.0, + "source": "specialties_page_specialties", + "target": "lib_getstateinfo_getstateinfo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app/theme/theme.js", + "source_location": "L4", + "weight": 1.0, + "source": "theme_theme", + "target": "theme_theme_theme", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/aboutUs/Head.js", + "source_location": "L4", + "weight": 1.0, + "source": "aboutus_head", + "target": "aboutus_head_head", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/aboutUs/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "aboutus_index", + "target": "aboutus_head", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/aboutUs/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "aboutus_index", + "target": "aboutus_head_head", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/aboutUs/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "aboutus_index", + "target": "aboutus_services", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/aboutUs/Services.js", + "source_location": "L5", + "weight": 1.0, + "source": "aboutus_services", + "target": "aboutus_services_ourservices", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/aboutUs/Services.js", + "source_location": "L14", + "weight": 1.0, + "source": "aboutus_services", + "target": "aboutus_services_services", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/aboutUs/Services.js", + "source_location": "L3", + "weight": 1.0, + "source": "aboutus_services", + "target": "icons_tickorangea", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/aboutUs/Services.js", + "source_location": "L3", + "weight": 1.0, + "source": "aboutus_services", + "target": "icons_tickorangea_tickorangea", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/aboutUs/Services.js", + "source_location": "L2", + "weight": 1.0, + "source": "aboutus_services", + "target": "icons_underlinelg", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/aboutUs/Services.js", + "source_location": "L2", + "weight": 1.0, + "source": "aboutus_services", + "target": "icons_underlinelg_underlinelg", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/aboutUs/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "aboutus_index", + "target": "aboutus_services_services", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/aboutUs/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "aboutus_index", + "target": "aboutus_index_aboutuspage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "components/aboutUs/index.js", + "source_location": "L6", + "weight": 1.0, + "source": "aboutus_index_aboutuspage", + "target": "lib_getstateinfo_getstateinfo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/appointment/Container.js", + "source_location": "L14", + "weight": 1.0, + "source": "appointment_container", + "target": "appointment_container_container", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/appointment/Container.js", + "source_location": "L4", + "weight": 1.0, + "source": "appointment_container", + "target": "appointment_content", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/appointment/Container.js", + "source_location": "L4", + "weight": 1.0, + "source": "appointment_container", + "target": "appointment_content_content", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/appointment/Container.js", + "source_location": "L1", + "weight": 1.0, + "source": "appointment_container", + "target": "date_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/appointment/Container.js", + "source_location": "L1", + "weight": 1.0, + "source": "appointment_container", + "target": "date_index_date", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/appointment/index.js", + "source_location": "L6", + "weight": 1.0, + "source": "appointment_index", + "target": "appointment_container", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/appointment/index.js", + "source_location": "L6", + "weight": 1.0, + "source": "appointment_index", + "target": "appointment_container_container", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/appointment/Content.js", + "source_location": "L4", + "weight": 1.0, + "source": "appointment_content", + "target": "appointment_content_content", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/appointment/Content.js", + "source_location": "L2", + "weight": 1.0, + "source": "appointment_content", + "target": "location_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/appointment/Content.js", + "source_location": "L2", + "weight": 1.0, + "source": "appointment_content", + "target": "location_index_location", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/appointment/date/Time/index.js", + "source_location": "L1", + "weight": 1.0, + "source": "time_index", + "target": "time_selectdatepicker", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/appointment/date/Time/SelectDatePicker.js", + "source_location": "L3", + "weight": 1.0, + "source": "time_selectdatepicker", + "target": "time_selectdatepicker_selectdatepicker", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/appointment/date/Time/index.js", + "source_location": "L1", + "weight": 1.0, + "source": "time_index", + "target": "time_selectdatepicker_selectdatepicker", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/appointment/date/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "date_index", + "target": "time_index", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/appointment/date/Time/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "time_index", + "target": "time_index_time", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/appointment/date/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "date_index", + "target": "time_index_time", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/appointment/date/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "date_index", + "target": "hour_index", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/appointment/date/hour/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "hour_index", + "target": "hour_index_hour", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/appointment/date/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "date_index", + "target": "hour_index_hour", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/appointment/date/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "date_index", + "target": "date_index_date", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/appointment/detail/Content.js", + "source_location": "L1", + "weight": 1.0, + "source": "detail_content", + "target": "detail_content_content", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/appointment/detail/Form.js", + "source_location": "L1", + "weight": 1.0, + "source": "detail_form", + "target": "detail_content", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/appointment/detail/Form.js", + "source_location": "L1", + "weight": 1.0, + "source": "detail_form", + "target": "detail_content_content", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/appointment/detail/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "components_appointment_detail_index_js_detail_index", + "target": "detail_form", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/appointment/detail/Form.js", + "source_location": "L5", + "weight": 1.0, + "source": "detail_form", + "target": "detail_form_form", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/appointment/detail/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "components_appointment_detail_index_js_detail_index", + "target": "detail_form_form", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/appointment/detail/index.js", + "source_location": "L7", + "weight": 1.0, + "source": "components_appointment_detail_index_js_detail_index", + "target": "detail_submitdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/appointment/detail/SubmitData.js", + "source_location": "L10", + "weight": 1.0, + "source": "detail_submitdata", + "target": "detail_submitdata_submitdata", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/appointment/detail/SubmitData.js", + "source_location": "L2", + "weight": 1.0, + "source": "detail_submitdata", + "target": "paying_buttonfixed", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/appointment/detail/SubmitData.js", + "source_location": "L2", + "weight": 1.0, + "source": "detail_submitdata", + "target": "paying_buttonfixed_buttonfixed", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/appointment/detail/index.js", + "source_location": "L7", + "weight": 1.0, + "source": "components_appointment_detail_index_js_detail_index", + "target": "detail_submitdata_submitdata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "components/appointment/detail/SubmitData.js", + "source_location": "L12", + "weight": 1.0, + "source": "detail_submitdata_submitdata", + "target": "context_provinceprovider_useprovince" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/appointment/detail/index.js", + "source_location": "L9", + "weight": 1.0, + "source": "components_appointment_detail_index_js_detail_index", + "target": "components_appointment_detail_index_js_detail_index_detail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/appointment/failedPay/index.js", + "source_location": "L7", + "weight": 1.0, + "source": "failedpay_index", + "target": "failedpay_index_failedpay", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/appointment/index.js", + "source_location": "L45", + "weight": 1.0, + "source": "appointment_index", + "target": "appointment_index_appointmentpage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/appointment/index.js", + "source_location": "L20", + "weight": 1.0, + "source": "appointment_index", + "target": "appointment_index_buildprofiledata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/appointment/index.js", + "source_location": "L9", + "weight": 1.0, + "source": "appointment_index", + "target": "appointment_index_defaultdata", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/appointment/information/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "components_appointment_information_index_js_information_index", + "target": "information_detail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/appointment/information/Detail.js", + "source_location": "L11", + "weight": 1.0, + "source": "information_detail", + "target": "information_detail_detail", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/appointment/information/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "components_appointment_information_index_js_information_index", + "target": "information_detail_detail", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/appointment/information/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "components_appointment_information_index_js_information_index", + "target": "information_head", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/appointment/information/Head.js", + "source_location": "L3", + "weight": 1.0, + "source": "information_head", + "target": "information_head_head", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/appointment/information/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "components_appointment_information_index_js_information_index", + "target": "information_head_head", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/appointment/information/index.js", + "source_location": "L6", + "weight": 1.0, + "source": "components_appointment_information_index_js_information_index", + "target": "components_appointment_information_index_js_information_index_information", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/appointment/location/Address.js", + "source_location": "L1", + "weight": 1.0, + "source": "location_address", + "target": "location_address_address", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/appointment/location/index.js", + "source_location": "L1", + "weight": 1.0, + "source": "location_index", + "target": "location_address", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/appointment/location/index.js", + "source_location": "L1", + "weight": 1.0, + "source": "location_index", + "target": "location_address_address", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/appointment/location/Head.js", + "source_location": "L3", + "weight": 1.0, + "source": "location_head", + "target": "location_head_head", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/appointment/location/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "location_index", + "target": "location_head", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/appointment/location/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "location_index", + "target": "location_head_head", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/appointment/location/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "location_index", + "target": "location_index_location", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/appointment/paying/ButtonFixed.js", + "source_location": "L3", + "weight": 1.0, + "source": "paying_buttonfixed", + "target": "paying_buttonfixed_buttonfixed", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/appointment/paying/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "paying_index", + "target": "paying_buttonfixed", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/appointment/paying/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "paying_index", + "target": "paying_buttonfixed_buttonfixed", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/appointment/paying/index.js", + "source_location": "L11", + "weight": 1.0, + "source": "paying_index", + "target": "paying_index_paying", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "components/appointment/paying/index.js", + "source_location": "L48", + "weight": 1.0, + "source": "paying_index_paying", + "target": "lib_money_formattoman" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/appointment/successPay/index.js", + "source_location": "L6", + "weight": 1.0, + "source": "successpay_index", + "target": "successpay_index_successpay", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/blog/detail/index.js", + "source_location": "L1", + "weight": 1.0, + "source": "components_blog_detail_index_js_detail_index", + "target": "detail_caption", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/blog/detail/Caption.js", + "source_location": "L6", + "weight": 1.0, + "source": "detail_caption", + "target": "detail_caption_caption", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/blog/detail/index.js", + "source_location": "L1", + "weight": 1.0, + "source": "components_blog_detail_index_js_detail_index", + "target": "detail_caption_caption", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "components/blog/detail/Caption.js", + "source_location": "L7", + "weight": 1.0, + "source": "detail_caption_caption", + "target": "helper_index_imageurl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "components/blog/detail/Caption.js", + "source_location": "L24", + "weight": 1.0, + "source": "detail_caption_caption", + "target": "lib_sanitize_sanitizehtml" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/blog/detail/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "components_blog_detail_index_js_detail_index", + "target": "detail_socialmedia", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/blog/detail/SocialMedia.js", + "source_location": "L8", + "weight": 1.0, + "source": "detail_socialmedia", + "target": "detail_socialmedia_socialmedia", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/blog/detail/SocialMedia.js", + "source_location": "L6", + "weight": 1.0, + "source": "detail_socialmedia", + "target": "detail_socialmedia_socials", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/blog/detail/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "components_blog_detail_index_js_detail_index", + "target": "detail_socialmedia_socialmedia", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/blog/detail/commentUser/AddComment.js", + "source_location": "L4", + "weight": 1.0, + "source": "commentuser_addcomment", + "target": "commentuser_addcomment_addcomment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/blog/detail/commentUser/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "commentuser_index", + "target": "commentuser_addcomment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/blog/detail/commentUser/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "commentuser_index", + "target": "commentuser_addcomment_addcomment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/blog/detail/commentUser/index.js", + "source_location": "L7", + "weight": 1.0, + "source": "commentuser_index", + "target": "commentuser_index_commentuser", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/blog/detail/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "components_blog_detail_index_js_detail_index", + "target": "commentuser_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/blog/detail/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "components_blog_detail_index_js_detail_index", + "target": "commentuser_index_commentuser", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/blog/detail/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "components_blog_detail_index_js_detail_index", + "target": "components_blog_detail_index_js_detail_index_detail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/blog/head/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "components_blog_head_index_js_head_index", + "target": "components_blog_head_index_js_head_index_head", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "components/blog/head/index.js", + "source_location": "L6", + "weight": 1.0, + "source": "components_blog_head_index_js_head_index_head", + "target": "helper_index_converttimestamptojalali" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/blog/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "blog_index", + "target": "blog_index_blogpage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/blog/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "blog_index", + "target": "relatedcontent_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/blog/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "blog_index", + "target": "relatedcontent_index_relatedcontent", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/blog/relatedContent/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "relatedcontent_index", + "target": "relatedcontent_item", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/blog/relatedContent/Item.js", + "source_location": "L7", + "weight": 1.0, + "source": "relatedcontent_item", + "target": "relatedcontent_item_item", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/blog/relatedContent/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "relatedcontent_index", + "target": "relatedcontent_item_item", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "components/blog/relatedContent/Item.js", + "source_location": "L11", + "weight": 1.0, + "source": "relatedcontent_item_item", + "target": "helper_index_converttimestamptojalali" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "components/blog/relatedContent/Item.js", + "source_location": "L9", + "weight": 1.0, + "source": "relatedcontent_item_item", + "target": "helper_index_imageurl" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/blog/relatedContent/index.js", + "source_location": "L6", + "weight": 1.0, + "source": "relatedcontent_index", + "target": "relatedcontent_index_relatedcontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/blogs/Head.js", + "source_location": "L5", + "weight": 1.0, + "source": "blogs_head", + "target": "blogs_head_head", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/blogs/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "blogs_index", + "target": "blogs_head", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/blogs/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "blogs_index", + "target": "blogs_head_head", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/blogs/index.js", + "source_location": "L10", + "weight": 1.0, + "source": "blogs_index", + "target": "blogs_index_blogspage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/blogs/index.js", + "source_location": "L6", + "weight": 1.0, + "source": "blogs_index", + "target": "latestarticles_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/blogs/index.js", + "source_location": "L6", + "weight": 1.0, + "source": "blogs_index", + "target": "latestarticles_index_latestarticles", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/blogs/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "blogs_index", + "target": "title_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/blogs/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "blogs_index", + "target": "title_index_title", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/blogs/latestArticles/Article.js", + "source_location": "L7", + "weight": 1.0, + "source": "latestarticles_article", + "target": "latestarticles_article_article", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/blogs/latestArticles/index.js", + "source_location": "L1", + "weight": 1.0, + "source": "latestarticles_index", + "target": "latestarticles_article", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "components/blogs/latestArticles/Article.js", + "source_location": "L11", + "weight": 1.0, + "source": "latestarticles_article_article", + "target": "helper_index_converttimestamptojalali" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "components/blogs/latestArticles/Article.js", + "source_location": "L9", + "weight": 1.0, + "source": "latestarticles_article_article", + "target": "helper_index_imageurl" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/blogs/latestArticles/index.js", + "source_location": "L1", + "weight": 1.0, + "source": "latestarticles_index", + "target": "latestarticles_article_article", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/blogs/latestArticles/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "latestarticles_index", + "target": "latestarticles_index_latestarticles", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/blogs/title/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "title_index", + "target": "title_itemtitle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/blogs/title/ItemTitle.js", + "source_location": "L3", + "weight": 1.0, + "source": "title_itemtitle", + "target": "title_itemtitle_itemtitle", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/blogs/title/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "title_index", + "target": "title_itemtitle_itemtitle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/blogs/title/index.js", + "source_location": "L6", + "weight": 1.0, + "source": "title_index", + "target": "title_index_title", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/about/ContentDetail.js", + "source_location": "L4", + "weight": 1.0, + "source": "about_contentdetail", + "target": "about_contentdetail_contentdetail", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/about/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "about_index", + "target": "about_contentdetail", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/about/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "about_index", + "target": "about_contentdetail_contentdetail", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/about/index.js", + "source_location": "L1", + "weight": 1.0, + "source": "about_index", + "target": "about_listbime", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/about/ListBime.js", + "source_location": "L8", + "weight": 1.0, + "source": "about_listbime", + "target": "about_listbime_listbime", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/about/index.js", + "source_location": "L1", + "weight": 1.0, + "source": "about_index", + "target": "about_listbime_listbime", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/about/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "about_index", + "target": "about_services", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/about/Services.js", + "source_location": "L4", + "weight": 1.0, + "source": "about_services", + "target": "about_services_services", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/about/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "about_index", + "target": "about_services_services", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/about/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "about_index", + "target": "about_specialties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/about/Specialties.js", + "source_location": "L4", + "weight": 1.0, + "source": "about_specialties", + "target": "about_specialties_specialties", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/about/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "about_index", + "target": "about_specialties_specialties", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/about/index.js", + "source_location": "L6", + "weight": 1.0, + "source": "about_index", + "target": "about_textdetail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/about/TextDetail.js", + "source_location": "L6", + "weight": 1.0, + "source": "about_textdetail", + "target": "about_textdetail_textdetail", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/about/index.js", + "source_location": "L6", + "weight": 1.0, + "source": "about_index", + "target": "about_textdetail_textdetail", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "components/clinic/components/about/TextDetail.js", + "source_location": "L24", + "weight": 1.0, + "source": "about_textdetail_textdetail", + "target": "lib_sanitize_sanitizehtml" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/about/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "about_index", + "target": "images_images", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/about/images/Images.js", + "source_location": "L7", + "weight": 1.0, + "source": "images_images", + "target": "images_images_images", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/about/images/Images.js", + "source_location": "L1", + "weight": 1.0, + "source": "images_images", + "target": "images_list", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/about/images/Images.js", + "source_location": "L1", + "weight": 1.0, + "source": "images_images", + "target": "images_list_list", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/about/images/Images.js", + "source_location": "L2", + "weight": 1.0, + "source": "images_images", + "target": "images_slider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/about/images/Images.js", + "source_location": "L2", + "weight": 1.0, + "source": "images_images", + "target": "images_slider_slider", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/about/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "about_index", + "target": "images_images_images", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "components/clinic/components/about/images/Images.js", + "source_location": "L25", + "weight": 1.0, + "source": "images_images_images", + "target": "helper_index_imageurl" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/about/images/Img.js", + "source_location": "L5", + "weight": 1.0, + "source": "images_img", + "target": "images_img_img", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/about/images/List.js", + "source_location": "L5", + "weight": 1.0, + "source": "images_list", + "target": "images_list_list", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/about/images/Slider.js", + "source_location": "L5", + "weight": 1.0, + "source": "images_slider", + "target": "images_slider_slider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/about/index.js", + "source_location": "L8", + "weight": 1.0, + "source": "about_index", + "target": "about_index_about", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinic/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "clinic_index", + "target": "about_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinic/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "clinic_index", + "target": "about_index_about", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/contact/ContentDetail.js", + "source_location": "L3", + "weight": 1.0, + "source": "contact_contentdetail", + "target": "contact_contentdetail_contentdetail", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/contact/Detail.js", + "source_location": "L1", + "weight": 1.0, + "source": "contact_detail", + "target": "contact_contentdetail", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/contact/Detail.js", + "source_location": "L1", + "weight": 1.0, + "source": "contact_detail", + "target": "contact_contentdetail_contentdetail", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/contact/Detail.js", + "source_location": "L3", + "weight": 1.0, + "source": "contact_detail", + "target": "contact_detail_detail", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/contact/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "contact_index", + "target": "contact_detail", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/contact/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "contact_index", + "target": "contact_detail_detail", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinic/index.js", + "source_location": "L6", + "weight": 1.0, + "source": "clinic_index", + "target": "contact_index", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/contact/index.js", + "source_location": "L10", + "weight": 1.0, + "source": "contact_index", + "target": "contact_index_contact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinic/index.js", + "source_location": "L6", + "weight": 1.0, + "source": "clinic_index", + "target": "contact_index_contact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/contact/modal/Content.js", + "source_location": "L12", + "weight": 1.0, + "source": "components_clinic_components_contact_modal_content_js_modal_content", + "target": "components_clinic_components_contact_modal_content_js_modal_content_content", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/contact/modal/Content.js", + "source_location": "L4", + "weight": 1.0, + "source": "components_clinic_components_contact_modal_content_js_modal_content", + "target": "modal_content_maps", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/contact/modal/index.js", + "source_location": "L7", + "weight": 1.0, + "source": "components_clinic_components_contact_modal_index_js_modal_index", + "target": "modal_index_modalopenlocation", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/doctors/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "components_clinic_components_doctors_index_js_doctors_index", + "target": "doctors_list", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/doctors/List.js", + "source_location": "L8", + "weight": 1.0, + "source": "doctors_list", + "target": "doctors_list_list", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/doctors/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "components_clinic_components_doctors_index_js_doctors_index", + "target": "doctors_list_list", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/doctors/head/index.js", + "source_location": "L11", + "weight": 1.0, + "source": "components_clinic_components_doctors_head_index_js_head_index", + "target": "components_clinic_components_doctors_head_index_js_head_index_head", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/doctors/head/modal/ButtonApply.js", + "source_location": "L4", + "weight": 1.0, + "source": "components_clinic_components_doctors_head_modal_buttonapply_js_modal_buttonapply", + "target": "components_clinic_components_doctors_head_modal_buttonapply_js_modal_buttonapply_buttonapply", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/doctors/head/modal/Content.js", + "source_location": "L4", + "weight": 1.0, + "source": "components_clinic_components_doctors_head_modal_content_js_modal_content", + "target": "components_clinic_components_doctors_head_modal_content_js_modal_content_content", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/doctors/head/modal/DeleteAllButton.js", + "source_location": "L7", + "weight": 1.0, + "source": "components_clinic_components_doctors_head_modal_deleteallbutton_js_modal_deleteallbutton", + "target": "components_clinic_components_doctors_head_modal_deleteallbutton_js_modal_deleteallbutton_deleteallbutton", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/doctors/head/modal/FilterModal.js", + "source_location": "L11", + "weight": 1.0, + "source": "components_clinic_components_doctors_head_modal_filtermodal_js_modal_filtermodal", + "target": "components_clinic_components_doctors_head_modal_filtermodal_js_modal_filtermodal_filtermodal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/doctors/head/modal/form/CateSelector.js", + "source_location": "L5", + "weight": 1.0, + "source": "components_clinic_components_doctors_head_modal_form_cateselector_js_form_cateselector", + "target": "components_clinic_components_doctors_head_modal_form_cateselector_js_form_cateselector_cateselector", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/doctors/head/modal/form/RadioContent.js", + "source_location": "L3", + "weight": 1.0, + "source": "components_clinic_components_doctors_head_modal_form_radiocontent_js_form_radiocontent", + "target": "components_clinic_components_doctors_head_modal_form_radiocontent_js_form_radiocontent_radiocontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/doctors/head/modal/form/Radios.js", + "source_location": "L3", + "weight": 1.0, + "source": "components_clinic_components_doctors_head_modal_form_radios_js_form_radios", + "target": "components_clinic_components_doctors_head_modal_form_radios_js_form_radios_radios", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/doctors/head/modal/form/SwitchContent.js", + "source_location": "L3", + "weight": 1.0, + "source": "components_clinic_components_doctors_head_modal_form_switchcontent_js_form_switchcontent", + "target": "components_clinic_components_doctors_head_modal_form_switchcontent_js_form_switchcontent_switchcontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/doctors/head/modal/form/index.js", + "source_location": "L7", + "weight": 1.0, + "source": "components_clinic_components_doctors_head_modal_form_index_js_form_index", + "target": "components_clinic_components_doctors_head_modal_form_index_js_form_index_degree", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/doctors/head/modal/form/index.js", + "source_location": "L9", + "weight": 1.0, + "source": "components_clinic_components_doctors_head_modal_form_index_js_form_index", + "target": "components_clinic_components_doctors_head_modal_form_index_js_form_index_form", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/doctors/head/modal/form/index.js", + "source_location": "L6", + "weight": 1.0, + "source": "components_clinic_components_doctors_head_modal_form_index_js_form_index", + "target": "components_clinic_components_doctors_head_modal_form_index_js_form_index_gender", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "components/clinic/components/doctors/head/modal/form/index.js", + "source_location": "L10", + "weight": 1.0, + "source": "components_clinic_components_doctors_head_modal_form_index_js_form_index_form", + "target": "helper_index_filterlist" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/doctors/head/search/AutoComplete.js", + "source_location": "L4", + "weight": 1.0, + "source": "components_clinic_components_doctors_head_search_autocomplete_js_search_autocomplete", + "target": "components_clinic_components_doctors_head_search_autocomplete_js_search_autocomplete_autocomplete", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/doctors/head/search/SearchField.js", + "source_location": "L8", + "weight": 1.0, + "source": "components_clinic_components_doctors_head_search_searchfield_js_search_searchfield", + "target": "components_clinic_components_doctors_head_search_searchfield_js_search_searchfield_searchfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/doctors/head/search/SendReq.js", + "source_location": "L6", + "weight": 1.0, + "source": "components_clinic_components_doctors_head_search_sendreq_js_search_sendreq", + "target": "components_clinic_components_doctors_head_search_sendreq_js_search_sendreq_sendreq", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/doctors/head/search/index.js", + "source_location": "L8", + "weight": 1.0, + "source": "components_clinic_components_doctors_head_search_index_js_search_index", + "target": "components_clinic_components_doctors_head_search_index_js_search_index_searchbar", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/doctors/head/sortlist/FilterBtn.js", + "source_location": "L5", + "weight": 1.0, + "source": "components_clinic_components_doctors_head_sortlist_filterbtn_js_sortlist_filterbtn", + "target": "components_clinic_components_doctors_head_sortlist_filterbtn_js_sortlist_filterbtn_filterbtn", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/doctors/head/sortlist/SelectSort.js", + "source_location": "L6", + "weight": 1.0, + "source": "components_clinic_components_doctors_head_sortlist_selectsort_js_sortlist_selectsort", + "target": "components_clinic_components_doctors_head_sortlist_selectsort_js_sortlist_selectsort_listsort", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/doctors/head/sortlist/SelectSort.js", + "source_location": "L12", + "weight": 1.0, + "source": "components_clinic_components_doctors_head_sortlist_selectsort_js_sortlist_selectsort", + "target": "components_clinic_components_doctors_head_sortlist_selectsort_js_sortlist_selectsort_selectsort", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/doctors/head/sortlist/index.js", + "source_location": "L7", + "weight": 1.0, + "source": "components_clinic_components_doctors_head_sortlist_index_js_sortlist_index", + "target": "components_clinic_components_doctors_head_sortlist_index_js_sortlist_index_sortlist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/components/doctors/index.js", + "source_location": "L7", + "weight": 1.0, + "source": "components_clinic_components_doctors_index_js_doctors_index", + "target": "doctors_index_doctors", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinic/index.js", + "source_location": "L7", + "weight": 1.0, + "source": "clinic_index", + "target": "doctors_index_doctors", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/index.js", + "source_location": "L12", + "weight": 1.0, + "source": "clinic_index", + "target": "clinic_index_clinicpage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinic/index.js", + "source_location": "L10", + "weight": 1.0, + "source": "clinic_index", + "target": "clinic_index_listtab", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinics/head/AutoSearch.js", + "source_location": "L4", + "weight": 1.0, + "source": "head_autosearch", + "target": "head_autosearch_autosearch", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinics/head/SearchBar.js", + "source_location": "L3", + "weight": 1.0, + "source": "head_searchbar", + "target": "head_autosearch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinics/head/SearchBar.js", + "source_location": "L3", + "weight": 1.0, + "source": "head_searchbar", + "target": "head_autosearch_autosearch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinics/head/FilterButton.js", + "source_location": "L6", + "weight": 1.0, + "source": "head_filterbutton", + "target": "head_filterbutton_filterbutton", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinics/head/SearchBar.js", + "source_location": "L5", + "weight": 1.0, + "source": "head_searchbar", + "target": "head_filterbutton", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinics/head/SearchBar.js", + "source_location": "L5", + "weight": 1.0, + "source": "head_searchbar", + "target": "head_filterbutton_filterbutton", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinics/index.js", + "source_location": "L6", + "weight": 1.0, + "source": "clinics_index", + "target": "head_searchbar", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinics/head/SearchBar.js", + "source_location": "L6", + "weight": 1.0, + "source": "head_searchbar", + "target": "filter_buttonfilter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinics/head/SearchBar.js", + "source_location": "L6", + "weight": 1.0, + "source": "head_searchbar", + "target": "filter_buttonfilter_buttonfilter", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinics/head/SearchBar.js", + "source_location": "L7", + "weight": 1.0, + "source": "head_searchbar", + "target": "filter_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinics/head/SearchBar.js", + "source_location": "L7", + "weight": 1.0, + "source": "head_searchbar", + "target": "filter_index_modalsearchcity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinics/head/SearchBar.js", + "source_location": "L13", + "weight": 1.0, + "source": "head_searchbar", + "target": "head_searchbar_searchbar", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinics/index.js", + "source_location": "L6", + "weight": 1.0, + "source": "clinics_index", + "target": "head_searchbar_searchbar", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinics/head/filter/AutoComplete.js", + "source_location": "L5", + "weight": 1.0, + "source": "filter_autocomplete", + "target": "filter_autocomplete_autocomplete", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinics/head/filter/Content.js", + "source_location": "L6", + "weight": 1.0, + "source": "filter_content", + "target": "filter_autocomplete", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinics/head/filter/Content.js", + "source_location": "L6", + "weight": 1.0, + "source": "filter_content", + "target": "filter_autocomplete_autocomplete", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinics/head/filter/ButtonFilter.js", + "source_location": "L6", + "weight": 1.0, + "source": "filter_buttonfilter", + "target": "filter_buttonfilter_buttonfilter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinics/head/filter/Content.js", + "source_location": "L9", + "weight": 1.0, + "source": "filter_content", + "target": "filter_content_content", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinics/head/filter/index.js", + "source_location": "L10", + "weight": 1.0, + "source": "filter_index", + "target": "filter_content", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinics/head/filter/index.js", + "source_location": "L10", + "weight": 1.0, + "source": "filter_index", + "target": "filter_content_content", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinics/head/filter/index.js", + "source_location": "L13", + "weight": 1.0, + "source": "filter_index", + "target": "filter_index_modalsearchcity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinics/head/modal/index.js", + "source_location": "L14", + "weight": 1.0, + "source": "components_clinics_head_modal_index_js_modal_index", + "target": "components_clinics_head_modal_index_js_modal_index_modalsearchcity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinics/index.js", + "source_location": "L16", + "weight": 1.0, + "source": "clinics_index", + "target": "clinics_index_clinicspage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "components/clinics/index.js", + "source_location": "L21", + "weight": 1.0, + "source": "clinics_index_clinicspage", + "target": "lib_rootcity_isrootcity" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinics/list/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "components_clinics_list_index_js_list_index", + "target": "list_itemclinic", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinics/list/ItemClinic.js", + "source_location": "L11", + "weight": 1.0, + "source": "list_itemclinic", + "target": "list_itemclinic_itemclinic", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/clinics/list/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "components_clinics_list_index_js_list_index", + "target": "list_itemclinic_itemclinic", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "components/clinics/list/ItemClinic.js", + "source_location": "L30", + "weight": 1.0, + "source": "list_itemclinic_itemclinic", + "target": "helper_index_imageurl" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/clinics/list/index.js", + "source_location": "L9", + "weight": 1.0, + "source": "components_clinics_list_index_js_list_index", + "target": "components_clinics_list_index_js_list_index_list", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/common/InlineJalaliMonth.js", + "source_location": "L23", + "weight": 1.0, + "source": "common_inlinejalalimonth", + "target": "common_inlinejalalimonth_builddays", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/common/InlineJalaliMonth.js", + "source_location": "L36", + "weight": 1.0, + "source": "common_inlinejalalimonth", + "target": "common_inlinejalalimonth_inlinejalalimonth", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/common/InlineJalaliMonth.js", + "source_location": "L8", + "weight": 1.0, + "source": "common_inlinejalalimonth", + "target": "common_inlinejalalimonth_months", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/common/InlineJalaliMonth.js", + "source_location": "L7", + "weight": 1.0, + "source": "common_inlinejalalimonth", + "target": "common_inlinejalalimonth_weekdays", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "components/common/InlineJalaliMonth.js", + "source_location": "L46", + "weight": 1.0, + "source": "common_inlinejalalimonth_inlinejalalimonth", + "target": "common_inlinejalalimonth_builddays", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/common/JalaliDatePicker.js", + "source_location": "L41", + "weight": 1.0, + "source": "common_jalalidatepicker", + "target": "common_jalalidatepicker_jalalidatepicker", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/common/JalaliDatePicker.js", + "source_location": "L12", + "weight": 1.0, + "source": "common_jalalidatepicker", + "target": "common_jalalidatepicker_months", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/common/JalaliDatePicker.js", + "source_location": "L31", + "weight": 1.0, + "source": "common_jalalidatepicker", + "target": "common_jalalidatepicker_parsevalue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/common/JalaliDatePicker.js", + "source_location": "L11", + "weight": 1.0, + "source": "common_jalalidatepicker", + "target": "common_jalalidatepicker_weekdays", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/contactUs/Connect.js", + "source_location": "L6", + "weight": 1.0, + "source": "contactus_connect", + "target": "contactus_connect_connect", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/contactUs/Connect.js", + "source_location": "L3", + "weight": 1.0, + "source": "contactus_connect", + "target": "contactus_fieldlabel", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/contactUs/Connect.js", + "source_location": "L3", + "weight": 1.0, + "source": "contactus_connect", + "target": "contactus_fieldlabel_fieldlabel", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/contactUs/Connect.js", + "source_location": "L1", + "weight": 1.0, + "source": "contactus_connect", + "target": "icons_arrowleftc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/contactUs/Connect.js", + "source_location": "L1", + "weight": 1.0, + "source": "contactus_connect", + "target": "icons_arrowleftc_arrowleftc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/contactUs/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "contactus_index", + "target": "contactus_connect", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/contactUs/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "contactus_index", + "target": "contactus_connect_connect", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/contactUs/call/Links.js", + "source_location": "L6", + "weight": 1.0, + "source": "call_links", + "target": "contactus_contentcontact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/contactUs/ContentContact.js", + "source_location": "L1", + "weight": 1.0, + "source": "contactus_contentcontact", + "target": "contactus_contentcontact_contentcontact", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/contactUs/call/Links.js", + "source_location": "L6", + "weight": 1.0, + "source": "call_links", + "target": "contactus_contentcontact_contentcontact", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/contactUs/FieldLabel.js", + "source_location": "L1", + "weight": 1.0, + "source": "contactus_fieldlabel", + "target": "contactus_fieldlabel_fieldlabel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/contactUs/call/Call.js", + "source_location": "L3", + "weight": 1.0, + "source": "call_call", + "target": "call_call_call", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/contactUs/call/Call.js", + "source_location": "L1", + "weight": 1.0, + "source": "call_call", + "target": "call_links", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/contactUs/call/Call.js", + "source_location": "L1", + "weight": 1.0, + "source": "call_call", + "target": "call_links_links", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/contactUs/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "contactus_index", + "target": "call_call", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/contactUs/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "contactus_index", + "target": "call_call_call", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/contactUs/call/Links.js", + "source_location": "L8", + "weight": 1.0, + "source": "call_links", + "target": "call_links_links", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/contactUs/call/Links.js", + "source_location": "L3", + "weight": 1.0, + "source": "call_links", + "target": "icons_callc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/contactUs/call/Links.js", + "source_location": "L3", + "weight": 1.0, + "source": "call_links", + "target": "icons_callc_callc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/contactUs/call/Links.js", + "source_location": "L4", + "weight": 1.0, + "source": "call_links", + "target": "icons_emailc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/contactUs/call/Links.js", + "source_location": "L4", + "weight": 1.0, + "source": "call_links", + "target": "icons_emailc_emailc", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/contactUs/call/Links.js", + "source_location": "L5", + "weight": 1.0, + "source": "call_links", + "target": "icons_whatsappc", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/contactUs/call/Links.js", + "source_location": "L5", + "weight": 1.0, + "source": "call_links", + "target": "icons_whatsappc_whatsappc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/contactUs/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "contactus_index", + "target": "contactus_index_contactuspage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "components/contactUs/index.js", + "source_location": "L6", + "weight": 1.0, + "source": "contactus_index_contactuspage", + "target": "lib_getstateinfo_getstateinfo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/Content.js", + "source_location": "L8", + "weight": 1.0, + "source": "dashboard_content", + "target": "dashboard_content_content", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/Content.js", + "source_location": "L6", + "weight": 1.0, + "source": "dashboard_content", + "target": "useraccount_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/Content.js", + "source_location": "L6", + "weight": 1.0, + "source": "dashboard_content", + "target": "useraccount_index_useraccountpage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "dashboard_index", + "target": "dashboard_index_dashboardpage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/index.js", + "source_location": "L1", + "weight": 1.0, + "source": "dashboard_index", + "target": "layout_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/index.js", + "source_location": "L1", + "weight": 1.0, + "source": "dashboard_index", + "target": "layout_index_layout", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/Head.js", + "source_location": "L9", + "weight": 1.0, + "source": "useraccount_head", + "target": "useraccount_head_head", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "useraccount_index", + "target": "useraccount_head", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "useraccount_index", + "target": "useraccount_head_head", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "useraccount_index", + "target": "useraccount_notfounddashboard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/NotfoundDashboard.js", + "source_location": "L5", + "weight": 1.0, + "source": "useraccount_notfounddashboard", + "target": "useraccount_notfounddashboard_notfounddashboard", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "useraccount_index", + "target": "useraccount_notfounddashboard_notfounddashboard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/components/AddBtn.js", + "source_location": "L5", + "weight": 1.0, + "source": "components_addbtn", + "target": "components_addbtn_addbtn", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/components/Head.js", + "source_location": "L1", + "weight": 1.0, + "source": "components_head", + "target": "components_head_head", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/components/UpdateBtn.js", + "source_location": "L4", + "weight": 1.0, + "source": "components_updatebtn", + "target": "components_updatebtn_updatebtn", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/components/modal/ModalDeleteItem.js", + "source_location": "L7", + "weight": 1.0, + "source": "modal_modaldeleteitem", + "target": "modal_modaldeleteitem_modaldeleteitem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/components/modal/ModalEditItem.js", + "source_location": "L7", + "weight": 1.0, + "source": "modal_modaledititem", + "target": "modal_modaledititem_modaledititem", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/content/HeadTab.js", + "source_location": "L4", + "weight": 1.0, + "source": "content_headtab", + "target": "content_headtab_headtab", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/content/HeadTab.js", + "source_location": "L2", + "weight": 1.0, + "source": "content_headtab", + "target": "isturnsdetails_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/content/HeadTab.js", + "source_location": "L2", + "weight": 1.0, + "source": "content_headtab", + "target": "isturnsdetails_index_isturnsdetails", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "detailuser_index", + "target": "content_headtab", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "detailuser_index", + "target": "content_headtab_headtab", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/allergies/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "allergies_index", + "target": "allergies_itemallergie", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/allergies/ItemAllergie.js", + "source_location": "L8", + "weight": 1.0, + "source": "allergies_itemallergie", + "target": "allergies_itemallergie_itemallergie", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/allergies/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "allergies_index", + "target": "allergies_itemallergie_itemallergie", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/allergies/index.js", + "source_location": "L7", + "weight": 1.0, + "source": "allergies_index", + "target": "allergies_index_allergies", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/allergies/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "allergies_index", + "target": "modal_index_modaladdalergie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/index.js", + "source_location": "L10", + "weight": 1.0, + "source": "detailuser_index", + "target": "allergies_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/index.js", + "source_location": "L10", + "weight": 1.0, + "source": "detailuser_index", + "target": "allergies_index_allergies", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/allergies/modal/Content.js", + "source_location": "L11", + "weight": 1.0, + "source": "components_dashboard_useraccount_detailuser_allergies_modal_content_js_modal_content", + "target": "components_dashboard_useraccount_detailuser_allergies_modal_content_js_modal_content_content", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/allergies/modal/Content.js", + "source_location": "L5", + "weight": 1.0, + "source": "components_dashboard_useraccount_detailuser_allergies_modal_content_js_modal_content", + "target": "components_dashboard_useraccount_detailuser_allergies_modal_content_js_modal_content_listintensity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/allergies/modal/index.js", + "source_location": "L9", + "weight": 1.0, + "source": "components_dashboard_useraccount_detailuser_allergies_modal_index_js_modal_index", + "target": "modal_index_modaladdalergie", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/index.js", + "source_location": "L9", + "weight": 1.0, + "source": "detailuser_index", + "target": "disease_index", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/disease/index.js", + "source_location": "L7", + "weight": 1.0, + "source": "disease_index", + "target": "disease_index_disease", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/index.js", + "source_location": "L9", + "weight": 1.0, + "source": "detailuser_index", + "target": "disease_index_disease", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/familyHistory/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "familyhistory_index", + "target": "familyhistory_itemhistory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/familyHistory/ItemHistory.js", + "source_location": "L8", + "weight": 1.0, + "source": "familyhistory_itemhistory", + "target": "familyhistory_itemhistory_itemhistory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/familyHistory/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "familyhistory_index", + "target": "familyhistory_itemhistory_itemhistory", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/index.js", + "source_location": "L12", + "weight": 1.0, + "source": "detailuser_index", + "target": "familyhistory_index", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/familyHistory/index.js", + "source_location": "L7", + "weight": 1.0, + "source": "familyhistory_index", + "target": "familyhistory_index_familyhistory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/familyHistory/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "familyhistory_index", + "target": "modal_index_modaladdhistory", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/index.js", + "source_location": "L12", + "weight": 1.0, + "source": "detailuser_index", + "target": "familyhistory_index_familyhistory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/familyHistory/modal/Content.js", + "source_location": "L4", + "weight": 1.0, + "source": "components_dashboard_useraccount_detailuser_familyhistory_modal_content_js_modal_content", + "target": "components_dashboard_useraccount_detailuser_familyhistory_modal_content_js_modal_content_content", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/familyHistory/modal/index.js", + "source_location": "L9", + "weight": 1.0, + "source": "components_dashboard_useraccount_detailuser_familyhistory_modal_index_js_modal_index", + "target": "modal_index_modaladdhistory", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/function.js", + "source_location": "L1", + "weight": 1.0, + "source": "detailuser_function", + "target": "detailuser_function_setnewdata", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "detailuser_index", + "target": "detailuser_function", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "detailuser_index", + "target": "detailuser_function_setnewdata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/index.js", + "source_location": "L49", + "weight": 1.0, + "source": "detailuser_index_detailuser", + "target": "detailuser_function_setnewdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/index.js", + "source_location": "L18", + "weight": 1.0, + "source": "detailuser_index", + "target": "detailuser_index_detailuser", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/index.js", + "source_location": "L7", + "weight": 1.0, + "source": "detailuser_index", + "target": "medications_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/index.js", + "source_location": "L7", + "weight": 1.0, + "source": "detailuser_index", + "target": "medications_index_medications", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/index.js", + "source_location": "L13", + "weight": 1.0, + "source": "detailuser_index", + "target": "relatives_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/index.js", + "source_location": "L13", + "weight": 1.0, + "source": "detailuser_index", + "target": "relatives_index_relatives", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/index.js", + "source_location": "L11", + "weight": 1.0, + "source": "detailuser_index", + "target": "surgeries_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/index.js", + "source_location": "L11", + "weight": 1.0, + "source": "detailuser_index", + "target": "surgeries_index_surgeries", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "useraccount_index", + "target": "detailuser_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "useraccount_index", + "target": "detailuser_index_detailuser", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/information/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "components_dashboard_useraccount_detailuser_information_index_js_information_index", + "target": "information_buttonsenddata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/information/ButtonSendData.js", + "source_location": "L12", + "weight": 1.0, + "source": "information_buttonsenddata", + "target": "information_buttonsenddata_buttonsenddata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/information/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "components_dashboard_useraccount_detailuser_information_index_js_information_index", + "target": "information_buttonsenddata_buttonsenddata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/information/component/AutoSelector.js", + "source_location": "L5", + "weight": 1.0, + "source": "component_autoselector", + "target": "component_autoselector_autoselector", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/information/component/Field.js", + "source_location": "L5", + "weight": 1.0, + "source": "component_field", + "target": "component_field_field", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/information/form/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "components_dashboard_useraccount_detailuser_information_form_index_js_form_index", + "target": "component_field", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/information/form/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "components_dashboard_useraccount_detailuser_information_form_index_js_form_index", + "target": "component_field_field", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/information/form/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "components_dashboard_useraccount_detailuser_information_form_index_js_form_index", + "target": "form_content", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/information/form/Content.js", + "source_location": "L1", + "weight": 1.0, + "source": "form_content", + "target": "form_content_content", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/information/form/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "components_dashboard_useraccount_detailuser_information_form_index_js_form_index", + "target": "form_content_content", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/information/form/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "components_dashboard_useraccount_detailuser_information_form_index_js_form_index", + "target": "form_datebirthday", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/information/form/DateBirthday.js", + "source_location": "L6", + "weight": 1.0, + "source": "form_datebirthday", + "target": "form_datebirthday_datebirthday", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/information/form/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "components_dashboard_useraccount_detailuser_information_form_index_js_form_index", + "target": "form_datebirthday_datebirthday", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/information/index.js", + "source_location": "L6", + "weight": 1.0, + "source": "components_dashboard_useraccount_detailuser_information_index_js_information_index", + "target": "form_disease", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/information/form/disease.js", + "source_location": "L1", + "weight": 1.0, + "source": "form_disease", + "target": "form_disease_disease", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/information/index.js", + "source_location": "L6", + "weight": 1.0, + "source": "components_dashboard_useraccount_detailuser_information_index_js_information_index", + "target": "form_disease_disease", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/information/form/index.js", + "source_location": "L9", + "weight": 1.0, + "source": "components_dashboard_useraccount_detailuser_information_form_index_js_form_index", + "target": "components_dashboard_useraccount_detailuser_information_form_index_js_form_index_form", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/information/form/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "components_dashboard_useraccount_detailuser_information_form_index_js_form_index", + "target": "form_listselector", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/information/form/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "components_dashboard_useraccount_detailuser_information_form_index_js_form_index", + "target": "form_listselector_blood_group", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/information/form/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "components_dashboard_useraccount_detailuser_information_form_index_js_form_index", + "target": "form_listselector_gender", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/information/form/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "components_dashboard_useraccount_detailuser_information_form_index_js_form_index", + "target": "form_listselector_job", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/information/form/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "components_dashboard_useraccount_detailuser_information_form_index_js_form_index", + "target": "form_listselector_marital_status", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "components/dashboard/userAccount/detailUser/information/form/index.js", + "source_location": "L16", + "weight": 1.0, + "source": "components_dashboard_useraccount_detailuser_information_form_index_js_form_index_form", + "target": "helper_index_getparseduserinfo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/information/form/listSelector.js", + "source_location": "L6", + "weight": 1.0, + "source": "form_listselector", + "target": "form_listselector_blood_group", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/information/form/listSelector.js", + "source_location": "L1", + "weight": 1.0, + "source": "form_listselector", + "target": "form_listselector_gender", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/information/form/listSelector.js", + "source_location": "L22", + "weight": 1.0, + "source": "form_listselector", + "target": "form_listselector_job", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/information/form/listSelector.js", + "source_location": "L17", + "weight": 1.0, + "source": "form_listselector", + "target": "form_listselector_marital_status", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/information/index.js", + "source_location": "L9", + "weight": 1.0, + "source": "components_dashboard_useraccount_detailuser_information_index_js_information_index", + "target": "components_dashboard_useraccount_detailuser_information_index_js_information_index_information", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/medications/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "medications_index", + "target": "medications_itemmedication", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/medications/ItemMedication.js", + "source_location": "L8", + "weight": 1.0, + "source": "medications_itemmedication", + "target": "medications_itemmedication_itemmedication", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/medications/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "medications_index", + "target": "medications_itemmedication_itemmedication", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/medications/index.js", + "source_location": "L7", + "weight": 1.0, + "source": "medications_index", + "target": "medications_index_medications", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/medications/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "medications_index", + "target": "modal_index_modaladdmedications", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/medications/modal/Content.js", + "source_location": "L4", + "weight": 1.0, + "source": "components_dashboard_useraccount_detailuser_medications_modal_content_js_modal_content", + "target": "components_dashboard_useraccount_detailuser_medications_modal_content_js_modal_content_content", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/medications/modal/index.js", + "source_location": "L9", + "weight": 1.0, + "source": "components_dashboard_useraccount_detailuser_medications_modal_index_js_modal_index", + "target": "modal_index_modaladdmedications", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/relatives/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "relatives_index", + "target": "relatives_itemrelatives", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/relatives/ItemRelatives.js", + "source_location": "L8", + "weight": 1.0, + "source": "relatives_itemrelatives", + "target": "relatives_itemrelatives_itemrelatives", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/relatives/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "relatives_index", + "target": "relatives_itemrelatives_itemrelatives", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/relatives/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "relatives_index", + "target": "modal_index_modaladdrelatives", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/relatives/index.js", + "source_location": "L7", + "weight": 1.0, + "source": "relatives_index", + "target": "relatives_index_relatives", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/relatives/modal/Content.js", + "source_location": "L4", + "weight": 1.0, + "source": "components_dashboard_useraccount_detailuser_relatives_modal_content_js_modal_content", + "target": "components_dashboard_useraccount_detailuser_relatives_modal_content_js_modal_content_content", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/relatives/modal/index.js", + "source_location": "L9", + "weight": 1.0, + "source": "components_dashboard_useraccount_detailuser_relatives_modal_index_js_modal_index", + "target": "modal_index_modaladdrelatives", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/surgeries/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "surgeries_index", + "target": "surgeries_itemsurgeries", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/surgeries/ItemSurgeries.js", + "source_location": "L8", + "weight": 1.0, + "source": "surgeries_itemsurgeries", + "target": "surgeries_itemsurgeries_itemsurgeries", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/surgeries/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "surgeries_index", + "target": "surgeries_itemsurgeries_itemsurgeries", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/surgeries/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "surgeries_index", + "target": "modal_index_modaladdsurgeries", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/surgeries/index.js", + "source_location": "L7", + "weight": 1.0, + "source": "surgeries_index", + "target": "surgeries_index_surgeries", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/surgeries/modal/Content.js", + "source_location": "L10", + "weight": 1.0, + "source": "components_dashboard_useraccount_detailuser_surgeries_modal_content_js_modal_content", + "target": "components_dashboard_useraccount_detailuser_surgeries_modal_content_js_modal_content_content", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/surgeries/modal/Content.js", + "source_location": "L4", + "weight": 1.0, + "source": "components_dashboard_useraccount_detailuser_surgeries_modal_content_js_modal_content", + "target": "components_dashboard_useraccount_detailuser_surgeries_modal_content_js_modal_content_listintensity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/detailUser/surgeries/modal/index.js", + "source_location": "L9", + "weight": 1.0, + "source": "components_dashboard_useraccount_detailuser_surgeries_modal_index_js_modal_index", + "target": "modal_index_modaladdsurgeries", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/index.js", + "source_location": "L8", + "weight": 1.0, + "source": "useraccount_index", + "target": "messages_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/index.js", + "source_location": "L8", + "weight": 1.0, + "source": "useraccount_index", + "target": "messages_index_messages", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/index.js", + "source_location": "L9", + "weight": 1.0, + "source": "useraccount_index", + "target": "transactions_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/index.js", + "source_location": "L9", + "weight": 1.0, + "source": "useraccount_index", + "target": "transactions_index_transactions", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/index.js", + "source_location": "L10", + "weight": 1.0, + "source": "useraccount_index", + "target": "turns_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/index.js", + "source_location": "L10", + "weight": 1.0, + "source": "useraccount_index", + "target": "turns_index_turns", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/index.js", + "source_location": "L14", + "weight": 1.0, + "source": "useraccount_index", + "target": "useraccount_index_listtab", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/index.js", + "source_location": "L23", + "weight": 1.0, + "source": "useraccount_index", + "target": "useraccount_index_useraccountpage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/comments/Comment.js", + "source_location": "L10", + "weight": 1.0, + "source": "comments_comment", + "target": "comments_comment_comment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/comments/index.js", + "source_location": "L1", + "weight": 1.0, + "source": "components_dashboard_useraccount_sidebars_comments_index_js_comments_index", + "target": "comments_comment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/comments/index.js", + "source_location": "L1", + "weight": 1.0, + "source": "components_dashboard_useraccount_sidebars_comments_index_js_comments_index", + "target": "comments_comment_comment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/comments/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "components_dashboard_useraccount_sidebars_comments_index_js_comments_index", + "target": "components_dashboard_useraccount_sidebars_comments_index_js_comments_index_comments", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/comments/modal/index.js", + "source_location": "L7", + "weight": 1.0, + "source": "components_dashboard_useraccount_sidebars_comments_modal_index_js_modal_index", + "target": "components_dashboard_useraccount_sidebars_comments_modal_index_js_modal_index_modaldeletecomment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/messages/index.js", + "source_location": "L1", + "weight": 1.0, + "source": "messages_index", + "target": "messages_message", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/messages/Message.js", + "source_location": "L7", + "weight": 1.0, + "source": "messages_message", + "target": "messages_message_message", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/messages/index.js", + "source_location": "L1", + "weight": 1.0, + "source": "messages_index", + "target": "messages_message_message", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/messages/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "messages_index", + "target": "messages_index_messages", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/transactions/Card.js", + "source_location": "L20", + "weight": 1.0, + "source": "transactions_card", + "target": "transactions_card_card", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/transactions/Card.js", + "source_location": "L6", + "weight": 1.0, + "source": "transactions_card", + "target": "transactions_card_payment_status", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/transactions/Card.js", + "source_location": "L14", + "weight": 1.0, + "source": "transactions_card", + "target": "transactions_card_type_labels", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/transactions/List.js", + "source_location": "L4", + "weight": 1.0, + "source": "transactions_list", + "target": "transactions_card", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "components/dashboard/userAccount/sidebars/transactions/Card.js", + "source_location": "L55", + "weight": 1.0, + "source": "transactions_card_card", + "target": "helper_index_converttimestamptojalali" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "components/dashboard/userAccount/sidebars/transactions/Card.js", + "source_location": "L66", + "weight": 1.0, + "source": "transactions_card_card", + "target": "lib_money_formattoman" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/transactions/List.js", + "source_location": "L4", + "weight": 1.0, + "source": "transactions_list", + "target": "transactions_card_card", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/transactions/Head.js", + "source_location": "L5", + "weight": 1.0, + "source": "transactions_head", + "target": "transactions_head_head", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/transactions/Head.js", + "source_location": "L3", + "weight": 1.0, + "source": "transactions_head", + "target": "transactions_head_listtab", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/transactions/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "transactions_index", + "target": "transactions_head", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/transactions/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "transactions_index", + "target": "transactions_head_head", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/transactions/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "transactions_index", + "target": "transactions_list", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/transactions/List.js", + "source_location": "L27", + "weight": 1.0, + "source": "transactions_list", + "target": "transactions_list_list", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/transactions/List.js", + "source_location": "L13", + "weight": 1.0, + "source": "transactions_list", + "target": "transactions_list_payment_status", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/transactions/List.js", + "source_location": "L21", + "weight": 1.0, + "source": "transactions_list", + "target": "transactions_list_type_labels", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/transactions/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "transactions_index", + "target": "transactions_list_list", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/transactions/index.js", + "source_location": "L10", + "weight": 1.0, + "source": "transactions_index", + "target": "transactions_index_transactions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/turns/Card.js", + "source_location": "L18", + "weight": 1.0, + "source": "turns_card", + "target": "turns_card_card", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/turns/Card.js", + "source_location": "L8", + "weight": 1.0, + "source": "turns_card", + "target": "turns_card_status_labels", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/turns/List.js", + "source_location": "L5", + "weight": 1.0, + "source": "turns_list", + "target": "turns_card", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "components/dashboard/userAccount/sidebars/turns/Card.js", + "source_location": "L44", + "weight": 1.0, + "source": "turns_card_card", + "target": "helper_index_converttimestamptojalali" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "components/dashboard/userAccount/sidebars/turns/Card.js", + "source_location": "L54", + "weight": 1.0, + "source": "turns_card_card", + "target": "helper_index_converttimestamptotime" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/turns/List.js", + "source_location": "L5", + "weight": 1.0, + "source": "turns_list", + "target": "turns_card_card", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/turns/Head.js", + "source_location": "L12", + "weight": 1.0, + "source": "turns_head", + "target": "turns_head_head", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/turns/Head.js", + "source_location": "L3", + "weight": 1.0, + "source": "turns_head", + "target": "turns_head_listtab", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/turns/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "turns_index", + "target": "turns_head", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/turns/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "turns_index", + "target": "turns_head_head", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/turns/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "turns_index", + "target": "turns_list", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/turns/List.js", + "source_location": "L22", + "weight": 1.0, + "source": "turns_list", + "target": "turns_list_list", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/turns/List.js", + "source_location": "L12", + "weight": 1.0, + "source": "turns_list", + "target": "turns_list_status_labels", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/turns/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "turns_index", + "target": "turns_list_list", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/turns/index.js", + "source_location": "L8", + "weight": 1.0, + "source": "turns_index", + "target": "isturnsdetails_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/turns/index.js", + "source_location": "L8", + "weight": 1.0, + "source": "turns_index", + "target": "isturnsdetails_index_isturnsdetails", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/turns/index.js", + "source_location": "L10", + "weight": 1.0, + "source": "turns_index", + "target": "turns_index_turns", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/ButtonData.js", + "source_location": "L7", + "weight": 1.0, + "source": "isturnsdetails_buttondata", + "target": "isturnsdetails_buttondata_buttondata", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/DetailSm.js", + "source_location": "L4", + "weight": 1.0, + "source": "isturnsdetails_detailsm", + "target": "isturnsdetails_buttondata", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/Head.js", + "source_location": "L3", + "weight": 1.0, + "source": "isturnsdetails_head", + "target": "isturnsdetails_buttondata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/DetailSm.js", + "source_location": "L4", + "weight": 1.0, + "source": "isturnsdetails_detailsm", + "target": "isturnsdetails_buttondata_buttondata", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/Head.js", + "source_location": "L3", + "weight": 1.0, + "source": "isturnsdetails_head", + "target": "isturnsdetails_buttondata_buttondata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/DetailLg.js", + "source_location": "L14", + "weight": 1.0, + "source": "isturnsdetails_detaillg", + "target": "isturnsdetails_detaillg_detaillg", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/index.js", + "source_location": "L1", + "weight": 1.0, + "source": "isturnsdetails_index", + "target": "isturnsdetails_detaillg", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/DetailLg.js", + "source_location": "L76", + "weight": 1.0, + "source": "isturnsdetails_detaillg_detaillg", + "target": "helper_index_converttimestamptojalali" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/DetailLg.js", + "source_location": "L87", + "weight": 1.0, + "source": "isturnsdetails_detaillg_detaillg", + "target": "helper_index_converttimestamptotime" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/index.js", + "source_location": "L1", + "weight": 1.0, + "source": "isturnsdetails_index", + "target": "isturnsdetails_detaillg_detaillg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/DetailSm.js", + "source_location": "L10", + "weight": 1.0, + "source": "isturnsdetails_detailsm", + "target": "isturnsdetails_detailsm_detailsm", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "isturnsdetails_index", + "target": "isturnsdetails_detailsm", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/DetailSm.js", + "source_location": "L73", + "weight": 1.0, + "source": "isturnsdetails_detailsm_detailsm", + "target": "helper_index_converttimestamptojalali" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/DetailSm.js", + "source_location": "L84", + "weight": 1.0, + "source": "isturnsdetails_detailsm_detailsm", + "target": "helper_index_converttimestamptotime" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "isturnsdetails_index", + "target": "isturnsdetails_detailsm_detailsm", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/Head.js", + "source_location": "L6", + "weight": 1.0, + "source": "isturnsdetails_head", + "target": "isturnsdetails_head_head", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "isturnsdetails_index", + "target": "isturnsdetails_head", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "isturnsdetails_index", + "target": "isturnsdetails_head_head", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "isturnsdetails_index", + "target": "isturnsdetails_index_isturnsdetails", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/dashboard/userAccount/sidebars/turns/isTurnsDetails/modal/index.js", + "source_location": "L6", + "weight": 1.0, + "source": "components_dashboard_useraccount_sidebars_turns_isturnsdetails_modal_index_js_modal_index", + "target": "components_dashboard_useraccount_sidebars_turns_isturnsdetails_modal_index_js_modal_index_modaldeletecomment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/appointmentList/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "appointmentlist_index", + "target": "appointmentlist_itemappointment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctor/appointmentList/ItemAppointment.js", + "source_location": "L9", + "weight": 1.0, + "source": "appointmentlist_itemappointment", + "target": "appointmentlist_itemappointment_itemappointment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/appointmentList/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "appointmentlist_index", + "target": "appointmentlist_itemappointment_itemappointment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctor/appointmentList/index.js", + "source_location": "L8", + "weight": 1.0, + "source": "appointmentlist_index", + "target": "appointmentlist_index_appointmentlist", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "doctor_index", + "target": "appointmentlist_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "doctor_index", + "target": "appointmentlist_index_appointmentlist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctor/appointmentList/modal/index.js", + "source_location": "L7", + "weight": 1.0, + "source": "components_doctor_appointmentlist_modal_index_js_modal_index", + "target": "modal_index_modaldatepicker", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/index.js", + "source_location": "L1", + "weight": 1.0, + "source": "detaildoctor_index", + "target": "detaildoctor_link", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/Link.js", + "source_location": "L11", + "weight": 1.0, + "source": "detaildoctor_link", + "target": "detaildoctor_link_link", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/Link.js", + "source_location": "L5", + "weight": 1.0, + "source": "detaildoctor_link", + "target": "detaildoctor_link_listlink", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/index.js", + "source_location": "L1", + "weight": 1.0, + "source": "detaildoctor_index", + "target": "detaildoctor_link_link", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/List.js", + "source_location": "L25", + "weight": 1.0, + "source": "detaildoctor_list", + "target": "detaildoctor_list_getvazirembedcss", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/List.js", + "source_location": "L57", + "weight": 1.0, + "source": "detaildoctor_list", + "target": "detaildoctor_list_list", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/List.js", + "source_location": "L16", + "weight": 1.0, + "source": "detaildoctor_list", + "target": "detaildoctor_list_vazir_weights", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/List.js", + "source_location": "L42", + "weight": 1.0, + "source": "detaildoctor_list", + "target": "detaildoctor_list_waitforimages", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/Share.js", + "source_location": "L8", + "weight": 1.0, + "source": "detaildoctor_share", + "target": "detaildoctor_list", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/Share.js", + "source_location": "L8", + "weight": 1.0, + "source": "detaildoctor_share", + "target": "detaildoctor_list_list", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "detaildoctor_index", + "target": "detaildoctor_share", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/Share.js", + "source_location": "L17", + "weight": 1.0, + "source": "detaildoctor_share", + "target": "detaildoctor_share_share", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/Share.js", + "source_location": "L12", + "weight": 1.0, + "source": "detaildoctor_share", + "target": "detaildoctor_share_variants", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/Share.js", + "source_location": "L9", + "weight": 1.0, + "source": "detaildoctor_share", + "target": "poster_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/Share.js", + "source_location": "L9", + "weight": 1.0, + "source": "detaildoctor_share", + "target": "poster_index_poster", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/Share.js", + "source_location": "L10", + "weight": 1.0, + "source": "detaildoctor_share", + "target": "poster_posterlight", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/Share.js", + "source_location": "L10", + "weight": 1.0, + "source": "detaildoctor_share", + "target": "poster_posterlight_posterlight", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "doctor_index", + "target": "detaildoctor_share", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "detaildoctor_index", + "target": "detaildoctor_share_share", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "doctor_index", + "target": "detaildoctor_share_share", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "detaildoctor_index", + "target": "detaildoctor_title", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/Title.js", + "source_location": "L14", + "weight": 1.0, + "source": "detaildoctor_title", + "target": "detaildoctor_title_social_icons", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/Title.js", + "source_location": "L22", + "weight": 1.0, + "source": "detaildoctor_title", + "target": "detaildoctor_title_title", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "detaildoctor_index", + "target": "detaildoctor_title_title", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/cards/AboutDcotor.js", + "source_location": "L8", + "weight": 1.0, + "source": "cards_aboutdcotor", + "target": "cards_aboutdcotor_aboutdcotor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "detaildoctor_index", + "target": "cards_aboutdcotor", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "detaildoctor_index", + "target": "cards_aboutdcotor_aboutdcotor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/cards/comments/chart/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "chart_index", + "target": "chart_progressall", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/cards/comments/chart/ProgressAll.js", + "source_location": "L5", + "weight": 1.0, + "source": "chart_progressall", + "target": "chart_progressall_progressall", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/cards/comments/chart/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "chart_index", + "target": "chart_progressall_progressall", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "components/doctor/detailDoctor/cards/comments/chart/ProgressAll.js", + "source_location": "L31", + "weight": 1.0, + "source": "chart_progressall_progressall", + "target": "helper_index_numbertoarstyle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/cards/comments/chart/index.js", + "source_location": "L9", + "weight": 1.0, + "source": "chart_index", + "target": "chart_index_chart", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/cards/comments/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "components_doctor_detaildoctor_cards_comments_index_js_comments_index", + "target": "chart_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/cards/comments/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "components_doctor_detaildoctor_cards_comments_index_js_comments_index", + "target": "chart_index_chart", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/cards/comments/index.js", + "source_location": "L7", + "weight": 1.0, + "source": "components_doctor_detaildoctor_cards_comments_index_js_comments_index", + "target": "components_doctor_detaildoctor_cards_comments_index_js_comments_index_comments", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/cards/comments/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "components_doctor_detaildoctor_cards_comments_index_js_comments_index", + "target": "modal_modalanswer", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/cards/comments/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "components_doctor_detaildoctor_cards_comments_index_js_comments_index", + "target": "modal_modalanswer_modalanswer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/cards/comments/modal/BtnNewComment.js", + "source_location": "L4", + "weight": 1.0, + "source": "modal_btnnewcomment", + "target": "modal_btnnewcomment_btnnewcomment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/cards/comments/modal/ModalAnswer.js", + "source_location": "L7", + "weight": 1.0, + "source": "modal_modalanswer", + "target": "modal_btnnewcomment", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/cards/comments/modal/ModalAnswer.js", + "source_location": "L7", + "weight": 1.0, + "source": "modal_modalanswer", + "target": "modal_btnnewcomment_btnnewcomment", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/cards/comments/modal/ModalAnswer.js", + "source_location": "L8", + "weight": 1.0, + "source": "modal_modalanswer", + "target": "content_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/cards/comments/modal/ModalAnswer.js", + "source_location": "L8", + "weight": 1.0, + "source": "modal_modalanswer", + "target": "content_index_content", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/cards/comments/modal/ModalAnswer.js", + "source_location": "L12", + "weight": 1.0, + "source": "modal_modalanswer", + "target": "modal_modalanswer_modalanswer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/cards/comments/modal/content/Form.js", + "source_location": "L8", + "weight": 1.0, + "source": "content_form", + "target": "content_form_form", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/cards/comments/modal/content/index.js", + "source_location": "L1", + "weight": 1.0, + "source": "content_index", + "target": "content_form", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/cards/comments/modal/content/index.js", + "source_location": "L1", + "weight": 1.0, + "source": "content_index", + "target": "content_form_form", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/cards/comments/modal/content/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "content_index", + "target": "content_rates", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/cards/comments/modal/content/Rates.js", + "source_location": "L4", + "weight": 1.0, + "source": "content_rates", + "target": "content_rates_rates", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/cards/comments/modal/content/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "content_index", + "target": "content_rates_rates", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/cards/comments/modal/content/index.js", + "source_location": "L6", + "weight": 1.0, + "source": "content_index", + "target": "content_index_content", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/cards/locations/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "locations_index", + "target": "locations_item", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/cards/locations/Item.js", + "source_location": "L10", + "weight": 1.0, + "source": "locations_item", + "target": "locations_item_item", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/cards/locations/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "locations_index", + "target": "locations_item_item", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/index.js", + "source_location": "L6", + "weight": 1.0, + "source": "detaildoctor_index", + "target": "locations_index", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/cards/locations/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "locations_index", + "target": "locations_index_locations", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/index.js", + "source_location": "L6", + "weight": 1.0, + "source": "detaildoctor_index", + "target": "locations_index_locations", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctor/detailDoctor/index.js", + "source_location": "L8", + "weight": 1.0, + "source": "detaildoctor_index", + "target": "detaildoctor_index_detaildoctor", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "doctor_index", + "target": "detaildoctor_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "doctor_index", + "target": "detaildoctor_index_detaildoctor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctor/index.js", + "source_location": "L7", + "weight": 1.0, + "source": "doctor_index", + "target": "doctor_index_doctorpage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctor/poster/PosterLight.js", + "source_location": "L14", + "weight": 1.0, + "source": "poster_posterlight", + "target": "poster_posterlight_posterlight", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/poster/PosterLight.js", + "source_location": "L4", + "weight": 1.0, + "source": "poster_posterlight", + "target": "poster_qrimg", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/poster/PosterLight.js", + "source_location": "L4", + "weight": 1.0, + "source": "poster_posterlight", + "target": "poster_qrimg_qrimg", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/poster/PosterLight.js", + "source_location": "L5", + "weight": 1.0, + "source": "poster_posterlight", + "target": "poster_sitelogo", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/poster/PosterLight.js", + "source_location": "L5", + "weight": 1.0, + "source": "poster_posterlight", + "target": "poster_sitelogo_sitelogo", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/poster/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "poster_index", + "target": "poster_qrimg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctor/poster/QrImg.js", + "source_location": "L5", + "weight": 1.0, + "source": "poster_qrimg", + "target": "poster_qrimg_qrimg", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/poster/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "poster_index", + "target": "poster_qrimg_qrimg", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/poster/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "poster_index", + "target": "poster_sitelogo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctor/poster/SiteLogo.js", + "source_location": "L1", + "weight": 1.0, + "source": "poster_sitelogo", + "target": "poster_sitelogo_sitelogo", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctor/poster/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "poster_index", + "target": "poster_sitelogo_sitelogo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctor/poster/index.js", + "source_location": "L34", + "weight": 1.0, + "source": "poster_index", + "target": "poster_index_poster", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctor/poster/index.js", + "source_location": "L23", + "weight": 1.0, + "source": "poster_index", + "target": "poster_index_sectiontitle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctor/poster/index.js", + "source_location": "L19", + "weight": 1.0, + "source": "poster_index", + "target": "poster_index_sitelogo", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctors/head/index.js", + "source_location": "L8", + "weight": 1.0, + "source": "components_doctors_head_index_js_head_index", + "target": "head_filterlocate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctors/head/FilterLocate.js", + "source_location": "L6", + "weight": 1.0, + "source": "head_filterlocate", + "target": "head_filterlocate_filterlocate", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctors/head/FilterLocate.js", + "source_location": "L1", + "weight": 1.0, + "source": "head_filterlocate", + "target": "icons_locationd", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctors/head/FilterLocate.js", + "source_location": "L1", + "weight": 1.0, + "source": "head_filterlocate", + "target": "icons_locationd_locationd", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctors/head/index.js", + "source_location": "L8", + "weight": 1.0, + "source": "components_doctors_head_index_js_head_index", + "target": "head_filterlocate_filterlocate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctors/head/index.js", + "source_location": "L10", + "weight": 1.0, + "source": "components_doctors_head_index_js_head_index", + "target": "components_doctors_head_index_js_head_index_head", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctors/index.js", + "source_location": "L12", + "weight": 1.0, + "source": "components_doctors_index_js_doctors_index", + "target": "doctors_index_doctorspage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctors/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "components_doctors_index_js_doctors_index", + "target": "listdoctors_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctors/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "components_doctors_index_js_doctors_index", + "target": "listdoctors_index_listdoctors", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "components/doctors/index.js", + "source_location": "L23", + "weight": 1.0, + "source": "doctors_index_doctorspage", + "target": "lib_rootcity_isrootcity" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctors/listDoctors/index.js", + "source_location": "L8", + "weight": 1.0, + "source": "listdoctors_index", + "target": "listdoctors_index_listdoctors", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctors/modal/ButtonApply.js", + "source_location": "L3", + "weight": 1.0, + "source": "components_doctors_modal_buttonapply_js_modal_buttonapply", + "target": "components_doctors_modal_buttonapply_js_modal_buttonapply_buttonapply", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctors/modal/Content.js", + "source_location": "L4", + "weight": 1.0, + "source": "components_doctors_modal_content_js_modal_content", + "target": "components_doctors_modal_content_js_modal_content_content", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctors/modal/DeleteAllButton.js", + "source_location": "L7", + "weight": 1.0, + "source": "components_doctors_modal_deleteallbutton_js_modal_deleteallbutton", + "target": "components_doctors_modal_deleteallbutton_js_modal_deleteallbutton_deleteallbutton", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctors/modal/FilterModal.js", + "source_location": "L10", + "weight": 1.0, + "source": "components_doctors_modal_filtermodal_js_modal_filtermodal", + "target": "components_doctors_modal_filtermodal_js_modal_filtermodal_filtermodal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctors/modal/form/CateSelector.js", + "source_location": "L5", + "weight": 1.0, + "source": "components_doctors_modal_form_cateselector_js_form_cateselector", + "target": "components_doctors_modal_form_cateselector_js_form_cateselector_cateselector", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctors/modal/form/RadioContent.js", + "source_location": "L3", + "weight": 1.0, + "source": "components_doctors_modal_form_radiocontent_js_form_radiocontent", + "target": "components_doctors_modal_form_radiocontent_js_form_radiocontent_radiocontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctors/modal/form/Radios.js", + "source_location": "L3", + "weight": 1.0, + "source": "components_doctors_modal_form_radios_js_form_radios", + "target": "components_doctors_modal_form_radios_js_form_radios_radios", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctors/modal/form/SwitchContent.js", + "source_location": "L3", + "weight": 1.0, + "source": "components_doctors_modal_form_switchcontent_js_form_switchcontent", + "target": "components_doctors_modal_form_switchcontent_js_form_switchcontent_switchcontent", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctors/modal/form/index.js", + "source_location": "L7", + "weight": 1.0, + "source": "components_doctors_modal_form_index_js_form_index", + "target": "components_doctors_modal_form_index_js_form_index_degree", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctors/modal/form/index.js", + "source_location": "L9", + "weight": 1.0, + "source": "components_doctors_modal_form_index_js_form_index", + "target": "components_doctors_modal_form_index_js_form_index_form", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctors/modal/form/index.js", + "source_location": "L6", + "weight": 1.0, + "source": "components_doctors_modal_form_index_js_form_index", + "target": "components_doctors_modal_form_index_js_form_index_gender", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "components/doctors/modal/form/index.js", + "source_location": "L10", + "weight": 1.0, + "source": "components_doctors_modal_form_index_js_form_index_form", + "target": "helper_index_filterlist" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctors/search/AutoComplete.js", + "source_location": "L4", + "weight": 1.0, + "source": "components_doctors_search_autocomplete_js_search_autocomplete", + "target": "components_doctors_search_autocomplete_js_search_autocomplete_autocomplete", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctors/search/SearchField.js", + "source_location": "L8", + "weight": 1.0, + "source": "components_doctors_search_searchfield_js_search_searchfield", + "target": "components_doctors_search_searchfield_js_search_searchfield_searchfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctors/search/SendReq.js", + "source_location": "L6", + "weight": 1.0, + "source": "components_doctors_search_sendreq_js_search_sendreq", + "target": "components_doctors_search_sendreq_js_search_sendreq_sendreq", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctors/search/index.js", + "source_location": "L8", + "weight": 1.0, + "source": "components_doctors_search_index_js_search_index", + "target": "components_doctors_search_index_js_search_index_searchbar", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctors/sortlist/FilterBtn.js", + "source_location": "L5", + "weight": 1.0, + "source": "components_doctors_sortlist_filterbtn_js_sortlist_filterbtn", + "target": "components_doctors_sortlist_filterbtn_js_sortlist_filterbtn_filterbtn", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctors/sortlist/SelectSort.js", + "source_location": "L8", + "weight": 1.0, + "source": "components_doctors_sortlist_selectsort_js_sortlist_selectsort", + "target": "components_doctors_sortlist_selectsort_js_sortlist_selectsort_listsort", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctors/sortlist/SelectSort.js", + "source_location": "L14", + "weight": 1.0, + "source": "components_doctors_sortlist_selectsort_js_sortlist_selectsort", + "target": "components_doctors_sortlist_selectsort_js_sortlist_selectsort_selectsort", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctors/sortlist/SelectSort.js", + "source_location": "L2", + "weight": 1.0, + "source": "components_doctors_sortlist_selectsort_js_sortlist_selectsort", + "target": "icons_arrowbottomd", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctors/sortlist/SelectSort.js", + "source_location": "L2", + "weight": 1.0, + "source": "components_doctors_sortlist_selectsort_js_sortlist_selectsort", + "target": "icons_arrowbottomd_arrowbottomd", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctors/sortlist/SelectSort.js", + "source_location": "L3", + "weight": 1.0, + "source": "components_doctors_sortlist_selectsort_js_sortlist_selectsort", + "target": "icons_sortd", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/doctors/sortlist/SelectSort.js", + "source_location": "L3", + "weight": 1.0, + "source": "components_doctors_sortlist_selectsort_js_sortlist_selectsort", + "target": "icons_sortd_sortd", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/doctors/sortlist/index.js", + "source_location": "L7", + "weight": 1.0, + "source": "components_doctors_sortlist_index_js_sortlist_index", + "target": "components_doctors_sortlist_index_js_sortlist_index_sortlist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/home/FrequentSearches.js", + "source_location": "L5", + "weight": 1.0, + "source": "home_frequentsearches", + "target": "home_frequentsearches_frequentsearches", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/home/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "home_index", + "target": "home_frequentsearches", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/home/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "home_index", + "target": "home_frequentsearches_frequentsearches", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/home/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "home_index", + "target": "home_textheader", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/home/TextHeader.js", + "source_location": "L5", + "weight": 1.0, + "source": "home_textheader", + "target": "home_textheader_textheader", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/home/TextHeader.js", + "source_location": "L2", + "weight": 1.0, + "source": "home_textheader", + "target": "icons_atext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/home/TextHeader.js", + "source_location": "L2", + "weight": 1.0, + "source": "home_textheader", + "target": "icons_atext_atext", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/home/TextHeader.js", + "source_location": "L3", + "weight": 1.0, + "source": "home_textheader", + "target": "icons_btext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/home/TextHeader.js", + "source_location": "L3", + "weight": 1.0, + "source": "home_textheader", + "target": "icons_btext_btext", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/home/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "home_index", + "target": "home_textheader_textheader", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "components/home/TextHeader.js", + "source_location": "L6", + "weight": 1.0, + "source": "home_textheader_textheader", + "target": "lib_getstateinfo_getstateinfo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/home/index.js", + "source_location": "L7", + "weight": 1.0, + "source": "home_index", + "target": "home_index_homepage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/home/search/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "components_home_search_index_js_search_index", + "target": "search_fields", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/home/search/Fields.js", + "source_location": "L7", + "weight": 1.0, + "source": "search_fields", + "target": "modal_buttonfilter", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/home/search/Fields.js", + "source_location": "L7", + "weight": 1.0, + "source": "search_fields", + "target": "modal_buttonfilter_buttonfilter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/home/search/Fields.js", + "source_location": "L11", + "weight": 1.0, + "source": "search_fields", + "target": "search_fields_fields", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/home/search/Fields.js", + "source_location": "L5", + "weight": 1.0, + "source": "search_fields", + "target": "search_redirectlink", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/home/search/Fields.js", + "source_location": "L5", + "weight": 1.0, + "source": "search_fields", + "target": "search_redirectlink_redirectlink", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/home/search/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "components_home_search_index_js_search_index", + "target": "search_fields_fields", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/home/search/FilterText.js", + "source_location": "L3", + "weight": 1.0, + "source": "search_filtertext", + "target": "search_filtertext_filtertext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/home/search/RedirectLink.js", + "source_location": "L10", + "weight": 1.0, + "source": "search_redirectlink", + "target": "search_redirectlink_redirectlink", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/home/search/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "components_home_search_index_js_search_index", + "target": "components_home_search_index_js_search_index_searchbar", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "components/home/search/index.js", + "source_location": "L6", + "weight": 1.0, + "source": "components_home_search_index_js_search_index_searchbar", + "target": "lib_getstateinfo_getstateinfo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/home/search/modal/AutoComplete.js", + "source_location": "L5", + "weight": 1.0, + "source": "modal_autocomplete", + "target": "modal_autocomplete_autocomplete", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/home/search/modal/ButtonFilter.js", + "source_location": "L6", + "weight": 1.0, + "source": "modal_buttonfilter", + "target": "modal_buttonfilter_buttonfilter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/home/search/modal/Content.js", + "source_location": "L8", + "weight": 1.0, + "source": "components_home_search_modal_content_js_modal_content", + "target": "components_home_search_modal_content_js_modal_content_content", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/home/search/modal/index.js", + "source_location": "L13", + "weight": 1.0, + "source": "components_home_search_modal_index_js_modal_index", + "target": "components_home_search_modal_index_js_modal_index_modalsearchcity", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "components/home/search/modal/index.js", + "source_location": "L24", + "weight": 1.0, + "source": "components_home_search_modal_index_js_modal_index_modalsearchcity", + "target": "helper_index_addlabeltolist" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/AText.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_atext", + "target": "icons_atext_atext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/AddCircleBlueA.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_addcirclebluea", + "target": "icons_addcirclebluea_addcirclebluea", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/AddLocationP.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_addlocationp", + "target": "icons_addlocationp_addlocationp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/AddTimeP.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_addtimep", + "target": "icons_addtimep_addtimep", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/AddressPoster.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_addressposter", + "target": "icons_addressposter_addressposter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/Aparat.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_aparat", + "target": "icons_aparat_aparat", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ArrowBottomD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_arrowbottomd", + "target": "icons_arrowbottomd_arrowbottomd", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ArrowBottomGrayD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_arrowbottomgrayd", + "target": "icons_arrowbottomgrayd_arrowbottomgrayd", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ArrowBottomH.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_arrowbottomh", + "target": "icons_arrowbottomh_arrowbottomh", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ArrowBottomHD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_arrowbottomhd", + "target": "icons_arrowbottomhd_arrowbottomhd", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ArrowBottomP.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_arrowbottomp", + "target": "icons_arrowbottomp_arrowbottomp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ArrowDownF.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_arrowdownf", + "target": "icons_arrowdownf_arrowdownf", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ArrowDownP.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_arrowdownp", + "target": "icons_arrowdownp_arrowdownp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ArrowLeftB.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_arrowleftb", + "target": "icons_arrowleftb_arrowleftb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ArrowLeftBlueA.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_arrowleftbluea", + "target": "icons_arrowleftbluea_arrowleftbluea", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ArrowLeftBlueD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_arrowleftblued", + "target": "icons_arrowleftblued_arrowleftblued", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ArrowLeftBlueP.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_arrowleftbluep", + "target": "icons_arrowleftbluep_arrowleftbluep", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ArrowLeftButtonP.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_arrowleftbuttonp", + "target": "icons_arrowleftbuttonp_arrowleftbuttonp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ArrowLeftC.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_arrowleftc", + "target": "icons_arrowleftc_arrowleftc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ArrowLeftCardD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_arrowleftcardd", + "target": "icons_arrowleftcardd_arrowleftcardd", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ArrowLeftD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_arrowleftd", + "target": "icons_arrowleftd_arrowleftd", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ArrowLeftList.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_arrowleftlist", + "target": "icons_arrowleftlist_arrowleftlist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ArrowLeftM.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_arrowleftm", + "target": "icons_arrowleftm_arrowleftm", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ArrowLeftOrangeA.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_arrowleftorangea", + "target": "icons_arrowleftorangea_arrowleftorangea", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ArrowLeftOrangeS.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_arrowleftoranges", + "target": "icons_arrowleftoranges_arrowleftoranges", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ArrowLeftP.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_arrowleftp", + "target": "icons_arrowleftp_arrowleftp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ArrowLeftPA.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_arrowleftpa", + "target": "icons_arrowleftpa_arrowleftpa", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ArrowLeftPH.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_arrowleftph", + "target": "icons_arrowleftph_arrowleftph", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ArrowLeftPU.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_arrowleftpu", + "target": "icons_arrowleftpu_arrowleftpu", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ArrowLeftSideBar.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_arrowleftsidebar", + "target": "icons_arrowleftsidebar_arrowleftsidebar", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ArrowLeftWD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_arrowleftwd", + "target": "icons_arrowleftwd_arrowleftwd", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ArrowLeftWhiteD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_arrowleftwhited", + "target": "icons_arrowleftwhited_arrowleftwhited", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ArrowRightD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_arrowrightd", + "target": "icons_arrowrightd_arrowrightd", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ArrowRightP.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_arrowrightp", + "target": "icons_arrowrightp_arrowrightp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ArrowRightPH.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_arrowrightph", + "target": "icons_arrowrightph_arrowrightph", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ArrowRightS.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_arrowrights", + "target": "icons_arrowrights_arrowrights", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/register/verificationPage/index.js", + "source_location": "L8", + "weight": 1.0, + "source": "verificationpage_index", + "target": "icons_arrowrights", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/register/verificationPage/index.js", + "source_location": "L8", + "weight": 1.0, + "source": "verificationpage_index", + "target": "icons_arrowrights_arrowrights", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ArrowUpComment.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_arrowupcomment", + "target": "icons_arrowupcomment_arrowupcomment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/BText.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_btext", + "target": "icons_btext_btext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/BoldDisLikeComment.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_bolddislikecomment", + "target": "icons_bolddislikecomment_bolddislikecomment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/BoldLikeComment.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_boldlikecomment", + "target": "icons_boldlikecomment_boldlikecomment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/BottomSelect.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_bottomselect", + "target": "icons_bottomselect_bottomselect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/CalendarA.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_calendara", + "target": "icons_calendara_calendara", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/CalendarAdD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_calendaradd", + "target": "icons_calendaradd_calendaradd", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/footer/index.js", + "source_location": "L13", + "weight": 1.0, + "source": "footer_index", + "target": "icons_calendaraddf", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/CalendarAddF.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_calendaraddf", + "target": "icons_calendaraddf_calendaraddf", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/footer/index.js", + "source_location": "L13", + "weight": 1.0, + "source": "footer_index", + "target": "icons_calendaraddf_calendaraddf", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/CalendarD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_calendard", + "target": "icons_calendard_calendard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/CalendarEdit.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_calendaredit", + "target": "icons_calendaredit_calendaredit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/CalendarP.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_calendarp", + "target": "icons_calendarp_calendarp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/CalendarPD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_calendarpd", + "target": "icons_calendarpd_calendarpd", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/CalendarTick.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_calendartick", + "target": "icons_calendartick_calendartick", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/CalendarTickGreenP.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_calendartickgreenp", + "target": "icons_calendartickgreenp_calendartickgreenp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/CallC.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_callc", + "target": "icons_callc_callc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/CallD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_calld", + "target": "icons_calld_calld", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/CalndarD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_calndard", + "target": "icons_calndard_calndard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/CardD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_cardd", + "target": "icons_cardd_cardd", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/CardDA.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_cardda", + "target": "icons_cardda_cardda", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/CardOrangeP.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_cardorangep", + "target": "icons_cardorangep_cardorangep", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/CardTickD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_cardtickd", + "target": "icons_cardtickd_cardtickd", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/CategoryP.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_categoryp", + "target": "icons_categoryp_categoryp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/CircleOrangeSm.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_circleorangesm", + "target": "icons_circleorangesm_circleorangesm", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ClipBoard.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_clipboard", + "target": "icons_clipboard_clipboard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ClockA.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_clocka", + "target": "icons_clocka_clocka", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ClockClinic.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_clockclinic", + "target": "icons_clockclinic_clockclinic", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ClockD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_clockd", + "target": "icons_clockd_clockd", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ClockField.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_clockfield", + "target": "icons_clockfield_clockfield", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ClockP.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_clockp", + "target": "icons_clockp_clockp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ClockTurn.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_clockturn", + "target": "icons_clockturn_clockturn", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/CloseModalD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_closemodald", + "target": "icons_closemodald_closemodald", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/CloseOrangeModal.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_closeorangemodal", + "target": "icons_closeorangemodal_closeorangemodal", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/CopyBlueD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_copyblued", + "target": "icons_copyblued_copyblued", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/DisLikeComment.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_dislikecomment", + "target": "icons_dislikecomment_dislikecomment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/DoubleArrowLeftP.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_doublearrowleftp", + "target": "icons_doublearrowleftp_doublearrowleftp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/DownloadBlue.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_downloadblue", + "target": "icons_downloadblue_downloadblue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/DownloadD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_downloadd", + "target": "icons_downloadd_downloadd", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/EditB.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_editb", + "target": "icons_editb_editb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/EditGrayA.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_editgraya", + "target": "icons_editgraya_editgraya", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/EditLogin.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_editlogin", + "target": "icons_editlogin_editlogin", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/register/verificationPage/index.js", + "source_location": "L7", + "weight": 1.0, + "source": "verificationpage_index", + "target": "icons_editlogin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/register/verificationPage/index.js", + "source_location": "L7", + "weight": 1.0, + "source": "verificationpage_index", + "target": "icons_editlogin_editlogin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/EditOrangeA.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_editorangea", + "target": "icons_editorangea_editorangea", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/EditOrangeAD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_editorangead", + "target": "icons_editorangead_editorangead", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/EditTurnsD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_editturnsd", + "target": "icons_editturnsd_editturnsd", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/EmailC.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_emailc", + "target": "icons_emailc_emailc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ExportP.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_exportp", + "target": "icons_exportp_exportp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/GreenCalendarTurn.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_greencalendarturn", + "target": "icons_greencalendarturn_greencalendarturn", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/IconMultipleSelect.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_iconmultipleselect", + "target": "icons_iconmultipleselect_iconmultipleselect", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/InfoCircleRedA.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_infocirclereda", + "target": "icons_infocirclereda_infocirclereda", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/footer/index.js", + "source_location": "L11", + "weight": 1.0, + "source": "footer_index", + "target": "icons_instagram", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/Instagram.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_instagram", + "target": "icons_instagram_instagram", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/footer/index.js", + "source_location": "L11", + "weight": 1.0, + "source": "footer_index", + "target": "icons_instagram_instagram", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/LikeComment.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_likecomment", + "target": "icons_likecomment_likecomment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/LikeD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_liked", + "target": "icons_liked_liked", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/LikeDI.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_likedi", + "target": "icons_likedi_likedi", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/footer/index.js", + "source_location": "L8", + "weight": 1.0, + "source": "footer_index", + "target": "icons_linkedin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/Linkedin.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_linkedin", + "target": "icons_linkedin_linkedin", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/footer/index.js", + "source_location": "L8", + "weight": 1.0, + "source": "footer_index", + "target": "icons_linkedin_linkedin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/LinkedinB.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_linkedinb", + "target": "icons_linkedinb_linkedinb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/LinkedingBlueD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_linkedingblued", + "target": "icons_linkedingblued_linkedingblued", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/Location.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_location", + "target": "icons_location_location", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/LocationA.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_locationa", + "target": "icons_locationa_locationa", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/LocationAdd.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_locationadd", + "target": "icons_locationadd_locationadd", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/LocationClinic.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_locationclinic", + "target": "icons_locationclinic_locationclinic", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/LocationD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_locationd", + "target": "icons_locationd_locationd", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/footer/index.js", + "source_location": "L12", + "weight": 1.0, + "source": "footer_index", + "target": "icons_locationf", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/LocationF.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_locationf", + "target": "icons_locationf_locationf", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/footer/index.js", + "source_location": "L12", + "weight": 1.0, + "source": "footer_index", + "target": "icons_locationf_locationf", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/LocationP.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_locationp", + "target": "icons_locationp_locationp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/LocationTurn.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_locationturn", + "target": "icons_locationturn_locationturn", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/LogoPanel.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_logopanel", + "target": "icons_logopanel_logopanel", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/LogoPanelHead.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_logopanelhead", + "target": "icons_logopanelhead_logopanelhead", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/LogoutD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_logoutd", + "target": "icons_logoutd_logoutd", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/LogoutOrangeP.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_logoutorangep", + "target": "icons_logoutorangep_logoutorangep", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/LogoutP.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_logoutp", + "target": "icons_logoutp_logoutp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/MenuS.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_menus", + "target": "icons_menus_menus", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/MessageD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_messaged", + "target": "icons_messaged_messaged", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/MessageNotifD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_messagenotifd", + "target": "icons_messagenotifd_messagenotifd", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/MoonP.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_moonp", + "target": "icons_moonp_moonp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/NotFoundCover.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_notfoundcover", + "target": "icons_notfoundcover_notfoundcover", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/NotificationD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_notificationd", + "target": "icons_notificationd_notificationd", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/NotificationP.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_notificationp", + "target": "icons_notificationp_notificationp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/NumberNotFound.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_numbernotfound", + "target": "icons_numbernotfound_numbernotfound", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/notFound/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "notfound_index", + "target": "icons_numbernotfound", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/notFound/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "notfound_index", + "target": "icons_numbernotfound_numbernotfound", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/PeopleBlueP.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_peoplebluep", + "target": "icons_peoplebluep_peoplebluep", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/PlusB.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_plusb", + "target": "icons_plusb_plusb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/PlusBlueP.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_plusbluep", + "target": "icons_plusbluep_plusbluep", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/PointD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_pointd", + "target": "icons_pointd_pointd", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ProfileAddP.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_profileaddp", + "target": "icons_profileaddp_profileaddp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ProfileCircleP.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_profilecirclep", + "target": "icons_profilecirclep_profilecirclep", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ProfileD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_profiled", + "target": "icons_profiled_profiled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ProfileP.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_profilep", + "target": "icons_profilep_profilep", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ProfilePA.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_profilepa", + "target": "icons_profilepa_profilepa", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/RedoA.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_redoa", + "target": "icons_redoa_redoa", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/RefreshA.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_refresha", + "target": "icons_refresha_refresha", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/RetryLogin.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_retrylogin", + "target": "icons_retrylogin_retrylogin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/RoutingC.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_routingc", + "target": "icons_routingc_routingc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/RoutingWhiteC.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_routingwhitec", + "target": "icons_routingwhitec_routingwhitec", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/Search.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_search", + "target": "icons_search_search", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/SearchD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_searchd", + "target": "icons_searchd_searchd", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/SearchHeaderP.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_searchheaderp", + "target": "icons_searchheaderp_searchheaderp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/SettingD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_settingd", + "target": "icons_settingd_settingd", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/SettingP.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_settingp", + "target": "icons_settingp_settingp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/SettingPA.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_settingpa", + "target": "icons_settingpa_settingpa", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/ShareDI.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_sharedi", + "target": "icons_sharedi_sharedi", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/SortD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_sortd", + "target": "icons_sortd_sortd", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/StarDI.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_stardi", + "target": "icons_stardi_stardi", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/footer/index.js", + "source_location": "L14", + "weight": 1.0, + "source": "footer_index", + "target": "icons_stethoscopef", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/StethoscopeF.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_stethoscopef", + "target": "icons_stethoscopef_stethoscopef", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/footer/index.js", + "source_location": "L14", + "weight": 1.0, + "source": "footer_index", + "target": "icons_stethoscopef_stethoscopef", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/Sun.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_sun", + "target": "icons_sun_sun", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/TelefonPoster.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_telefonposter", + "target": "icons_telefonposter_telefonposter", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/footer/index.js", + "source_location": "L9", + "weight": 1.0, + "source": "footer_index", + "target": "icons_telegram", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/Telegram.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_telegram", + "target": "icons_telegram_telegram", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/footer/index.js", + "source_location": "L9", + "weight": 1.0, + "source": "footer_index", + "target": "icons_telegram_telegram", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/TelegramB.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_telegramb", + "target": "icons_telegramb_telegramb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/TelegramBlueD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_telegramblued", + "target": "icons_telegramblued_telegramblued", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/TickAlert.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_tickalert", + "target": "icons_tickalert_tickalert", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/TickCircle.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_tickcircle", + "target": "icons_tickcircle_tickcircle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/TickCircleGreenA.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_tickcirclegreena", + "target": "icons_tickcirclegreena_tickcirclegreena", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/TickCircleOrange.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_tickcircleorange", + "target": "icons_tickcircleorange_tickcircleorange", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/TickOrangeA.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_tickorangea", + "target": "icons_tickorangea_tickorangea", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/TicketD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_ticketd", + "target": "icons_ticketd_ticketd", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/TrashB.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_trashb", + "target": "icons_trashb_trashb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/TrashOrangeD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_trashoranged", + "target": "icons_trashoranged_trashoranged", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/Underline.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_underline", + "target": "icons_underline_underline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/UnderlineLG.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_underlinelg", + "target": "icons_underlinelg_underlinelg", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/UpdateList.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_updatelist", + "target": "icons_updatelist_updatelist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/UserEdit.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_useredit", + "target": "icons_useredit_useredit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/UserLogin.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_userlogin", + "target": "icons_userlogin_userlogin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/WarnP.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_warnp", + "target": "icons_warnp_warnp", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/footer/index.js", + "source_location": "L10", + "weight": 1.0, + "source": "footer_index", + "target": "icons_whatsapp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/Whatsapp.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_whatsapp", + "target": "icons_whatsapp_whatsapp", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/footer/index.js", + "source_location": "L10", + "weight": 1.0, + "source": "footer_index", + "target": "icons_whatsapp_whatsapp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/WhatsappB.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_whatsappb", + "target": "icons_whatsappb_whatsappb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/WhatsappBlueD.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_whatsappblued", + "target": "icons_whatsappblued_whatsappblued", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/WhatsappC.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_whatsappc", + "target": "icons_whatsappc_whatsappc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/icons/Youtube.js", + "source_location": "L1", + "weight": 1.0, + "source": "icons_youtube", + "target": "icons_youtube_youtube", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/StLayout.js", + "source_location": "L2", + "weight": 1.0, + "source": "layout_stlayout", + "target": "footer_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/StLayout.js", + "source_location": "L2", + "weight": 1.0, + "source": "layout_stlayout", + "target": "footer_index_footer", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/StLayout.js", + "source_location": "L3", + "weight": 1.0, + "source": "layout_stlayout", + "target": "header_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/StLayout.js", + "source_location": "L3", + "weight": 1.0, + "source": "layout_stlayout", + "target": "header_index_header", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/layout/StLayout.js", + "source_location": "L6", + "weight": 1.0, + "source": "layout_stlayout", + "target": "layout_stlayout_stlayout", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "components/layout/StLayout.js", + "source_location": "L7", + "weight": 1.0, + "source": "layout_stlayout_stlayout", + "target": "lib_getstateinfo_getstateinfo" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/footer/index.js", + "source_location": "L15", + "weight": 1.0, + "source": "footer_index", + "target": "footer_logonamad", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/layout/footer/LogoNamad.js", + "source_location": "L9", + "weight": 1.0, + "source": "footer_logonamad", + "target": "footer_logonamad_logonamad", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/layout/footer/LogoNamad.js", + "source_location": "L3", + "weight": 1.0, + "source": "footer_logonamad", + "target": "footer_logonamad_namads", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/footer/index.js", + "source_location": "L15", + "weight": 1.0, + "source": "footer_index", + "target": "footer_logonamad_logonamad", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/layout/footer/index.js", + "source_location": "L30", + "weight": 1.0, + "source": "footer_index", + "target": "footer_index_buildsocialurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/layout/footer/index.js", + "source_location": "L46", + "weight": 1.0, + "source": "footer_index", + "target": "footer_index_footer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/layout/footer/index.js", + "source_location": "L20", + "weight": 1.0, + "source": "footer_index", + "target": "footer_index_head", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/footer/index.js", + "source_location": "L16", + "weight": 1.0, + "source": "footer_index", + "target": "menu_headmenu", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/footer/index.js", + "source_location": "L16", + "weight": 1.0, + "source": "footer_index", + "target": "menu_headmenu_headmenu", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/footer/index.js", + "source_location": "L17", + "weight": 1.0, + "source": "footer_index", + "target": "menu_listmenu", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/footer/index.js", + "source_location": "L17", + "weight": 1.0, + "source": "footer_index", + "target": "menu_listmenu_listmenu", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/index.js", + "source_location": "L1", + "weight": 1.0, + "source": "layout_index", + "target": "footer_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/index.js", + "source_location": "L1", + "weight": 1.0, + "source": "layout_index", + "target": "footer_index_footer", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/layout/footer/menu/HeadMenu.js", + "source_location": "L4", + "weight": 1.0, + "source": "menu_headmenu", + "target": "menu_headmenu_headmenu", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/layout/footer/menu/ListMenu.js", + "source_location": "L4", + "weight": 1.0, + "source": "menu_listmenu", + "target": "menu_listmenu_listmenu", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/header/Content.js", + "source_location": "L9", + "weight": 1.0, + "source": "header_content", + "target": "col_bggray", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/header/Content.js", + "source_location": "L9", + "weight": 1.0, + "source": "header_content", + "target": "col_bggray_bggray", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/header/Content.js", + "source_location": "L8", + "weight": 1.0, + "source": "header_content", + "target": "col_buttonmenu", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/header/Content.js", + "source_location": "L8", + "weight": 1.0, + "source": "header_content", + "target": "col_buttonmenu_buttonmenu", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/header/Content.js", + "source_location": "L7", + "weight": 1.0, + "source": "header_content", + "target": "col_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/header/Content.js", + "source_location": "L7", + "weight": 1.0, + "source": "header_content", + "target": "col_index_col", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/layout/header/Content.js", + "source_location": "L15", + "weight": 1.0, + "source": "header_content", + "target": "header_content_content", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/header/Content.js", + "source_location": "L6", + "weight": 1.0, + "source": "header_content", + "target": "list_row", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/header/Content.js", + "source_location": "L6", + "weight": 1.0, + "source": "header_content", + "target": "list_row_row", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/header/Content.js", + "source_location": "L13", + "weight": 1.0, + "source": "header_content", + "target": "profile_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/header/Content.js", + "source_location": "L13", + "weight": 1.0, + "source": "header_content", + "target": "profile_index_profileuser", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/header/index.js", + "source_location": "L1", + "weight": 1.0, + "source": "header_index", + "target": "header_content", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/header/index.js", + "source_location": "L1", + "weight": 1.0, + "source": "header_index", + "target": "header_content_content", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/layout/header/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "header_index", + "target": "header_index_header", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "layout_index", + "target": "header_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "layout_index", + "target": "header_index_header", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/layout/header/list/Row.js", + "source_location": "L4", + "weight": 1.0, + "source": "list_row", + "target": "list_row_row", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/layout/header/list/col/BgGray.js", + "source_location": "L1", + "weight": 1.0, + "source": "col_bggray", + "target": "col_bggray_bggray", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/layout/header/list/col/ButtonMenu.js", + "source_location": "L3", + "weight": 1.0, + "source": "col_buttonmenu", + "target": "col_buttonmenu_buttonmenu", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/layout/header/list/col/index.js", + "source_location": "L6", + "weight": 1.0, + "source": "col_index", + "target": "col_index_col", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/layout/header/profile/index.js", + "source_location": "L7", + "weight": 1.0, + "source": "profile_index", + "target": "profile_index_profileuser", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/layout/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "layout_index", + "target": "layout_index_layout", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "layout_index", + "target": "sidebar_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "layout_index", + "target": "sidebar_index_sidebar", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/layout/sidebar/Cards.js", + "source_location": "L4", + "weight": 1.0, + "source": "sidebar_cards", + "target": "sidebar_cards_cards", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/sidebar/index.js", + "source_location": "L1", + "weight": 1.0, + "source": "sidebar_index", + "target": "sidebar_cards", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/sidebar/index.js", + "source_location": "L1", + "weight": 1.0, + "source": "sidebar_index", + "target": "sidebar_cards_cards", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/layout/sidebar/Head.js", + "source_location": "L9", + "weight": 1.0, + "source": "sidebar_head", + "target": "sidebar_head_head", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/sidebar/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "sidebar_index", + "target": "sidebar_head", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "components/layout/sidebar/Head.js", + "source_location": "L54", + "weight": 1.0, + "source": "sidebar_head_head", + "target": "helper_index_imageurl" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/sidebar/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "sidebar_index", + "target": "sidebar_head_head", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/sidebar/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "sidebar_index", + "target": "sidebar_list", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/layout/sidebar/List.js", + "source_location": "L14", + "weight": 1.0, + "source": "sidebar_list", + "target": "sidebar_list_list", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/layout/sidebar/index.js", + "source_location": "L3", + "weight": 1.0, + "source": "sidebar_index", + "target": "sidebar_list_list", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/layout/sidebar/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "sidebar_index", + "target": "sidebar_index_sidebar", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/loginVerify/index.js", + "source_location": "L1", + "weight": 1.0, + "source": "loginverify_index", + "target": "loginverify_index_loginverifypage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/notFound/index.js", + "source_location": "L6", + "weight": 1.0, + "source": "notfound_index", + "target": "notfound_index_notfoundpage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/register/ContentLogin.js", + "source_location": "L4", + "weight": 1.0, + "source": "register_contentlogin", + "target": "register_contentlogin_contentlogin", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "components/register/ContentLogin.js", + "source_location": "L5", + "weight": 1.0, + "source": "register_contentlogin_contentlogin", + "target": "lib_getstateinfo_getstateinfo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/register/ContentVerify.js", + "source_location": "L8", + "weight": 1.0, + "source": "register_contentverify", + "target": "register_contentverify_contentverify", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/register/index.js", + "source_location": "L6", + "weight": 1.0, + "source": "register_index", + "target": "register_layoutregister", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/register/LayoutRegister.js", + "source_location": "L4", + "weight": 1.0, + "source": "register_layoutregister", + "target": "register_layoutregister_about", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/register/LayoutRegister.js", + "source_location": "L6", + "weight": 1.0, + "source": "register_layoutregister", + "target": "register_layoutregister_layoutregister", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/register/index.js", + "source_location": "L6", + "weight": 1.0, + "source": "register_index", + "target": "register_layoutregister_layoutregister", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/register/LogInPage.js", + "source_location": "L9", + "weight": 1.0, + "source": "register_loginpage", + "target": "register_loginpage_loginpage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/register/element/OTPForm.js", + "source_location": "L1", + "weight": 1.0, + "source": "element_otpform", + "target": "element_otpform_otpform", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/register/verificationPage/index.js", + "source_location": "L6", + "weight": 1.0, + "source": "verificationpage_index", + "target": "element_otpform", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/register/verificationPage/index.js", + "source_location": "L6", + "weight": 1.0, + "source": "verificationpage_index", + "target": "element_otpform_otpform", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/register/index.js", + "source_location": "L8", + "weight": 1.0, + "source": "register_index", + "target": "register_index_registerpage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/register/verificationPage/index.js", + "source_location": "L9", + "weight": 1.0, + "source": "verificationpage_index", + "target": "verificationpage_recode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/register/verificationPage/Recode.js", + "source_location": "L9", + "weight": 1.0, + "source": "verificationpage_recode", + "target": "verificationpage_recode_recode", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/register/verificationPage/index.js", + "source_location": "L9", + "weight": 1.0, + "source": "verificationpage_index", + "target": "verificationpage_recode_recode", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/register/verificationPage/index.js", + "source_location": "L10", + "weight": 1.0, + "source": "verificationpage_index", + "target": "verificationpage_sendreq", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/register/verificationPage/SendReq.js", + "source_location": "L8", + "weight": 1.0, + "source": "verificationpage_sendreq", + "target": "verificationpage_sendreq_sendreq", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/register/verificationPage/index.js", + "source_location": "L10", + "weight": 1.0, + "source": "verificationpage_index", + "target": "verificationpage_sendreq_sendreq", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/register/verificationPage/index.js", + "source_location": "L12", + "weight": 1.0, + "source": "verificationpage_index", + "target": "verificationpage_index_verificationpage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/searchHead/smSearch/AutoCompleteSearch.js", + "source_location": "L3", + "weight": 1.0, + "source": "smsearch_autocompletesearch", + "target": "smsearch_autocompletesearch_autocompletesearch", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/searchHead/smSearch/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "smsearch_index", + "target": "smsearch_autocompletesearch", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/searchHead/smSearch/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "smsearch_index", + "target": "smsearch_autocompletesearch_autocompletesearch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/searchHead/smSearch/index.js", + "source_location": "L6", + "weight": 1.0, + "source": "smsearch_index", + "target": "smsearch_index_smsearch", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/specialties/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "specialties_index", + "target": "smsearch_index", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/specialties/index.js", + "source_location": "L5", + "weight": 1.0, + "source": "specialties_index", + "target": "smsearch_index_smsearch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/specialties/index.js", + "source_location": "L11", + "weight": 1.0, + "source": "specialties_index", + "target": "specialties_index_specialtiespage", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/specialties/list/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "components_specialties_list_index_js_list_index", + "target": "list_itemspecialties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/specialties/list/ItemSpecialties.js", + "source_location": "L3", + "weight": 1.0, + "source": "list_itemspecialties", + "target": "list_itemspecialties_itemspecialties", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "components/specialties/list/index.js", + "source_location": "L2", + "weight": 1.0, + "source": "components_specialties_list_index_js_list_index", + "target": "list_itemspecialties_itemspecialties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "components/specialties/list/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "components_specialties_list_index_js_list_index", + "target": "components_specialties_list_index_js_list_index_list", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "constans/index.js", + "source_location": "L25", + "weight": 1.0, + "source": "constans_index", + "target": "constans_index_footerl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "constans/index.js", + "source_location": "L18", + "weight": 1.0, + "source": "constans_index", + "target": "constans_index_footerr", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "constans/index.js", + "source_location": "L10", + "weight": 1.0, + "source": "constans_index", + "target": "constans_index_frequentsearches", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "constans/index.js", + "source_location": "L1", + "weight": 1.0, + "source": "constans_index", + "target": "constans_index_listnav", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "context/ProvinceProvider.js", + "source_location": "L7", + "weight": 1.0, + "source": "context_provinceprovider", + "target": "context_provinceprovider_provincecontext", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "context/ProvinceProvider.js", + "source_location": "L9", + "weight": 1.0, + "source": "context_provinceprovider", + "target": "context_provinceprovider_provinceprovider", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "context/ProvinceProvider.js", + "source_location": "L30", + "weight": 1.0, + "source": "context_provinceprovider", + "target": "context_provinceprovider_useprovince", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "context/ProvinceProvider.js", + "source_location": "L15", + "weight": 1.0, + "source": "context_provinceprovider_provinceprovider", + "target": "lib_rootcity_isrootcity" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "context/ProvinceProvider.test.jsx", + "source_location": "L6", + "weight": 1.0, + "source": "context_provinceprovider_test_probe", + "target": "context_provinceprovider_useprovince" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "context/ProvinceProvider.test.jsx", + "source_location": "L5", + "weight": 1.0, + "source": "context_provinceprovider_test", + "target": "context_provinceprovider_test_probe", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "context/ProvinceProvider.test.jsx", + "source_location": "L10", + "weight": 1.0, + "source": "context_provinceprovider_test", + "target": "context_provinceprovider_test_sethostname", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "eslint.config.mjs", + "source_location": "L3", + "weight": 1.0, + "source": "eslint_config", + "target": "eslint_config_eslintconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L326", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_addlabeltolist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L135", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_alert", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L622", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_buildclinicparams", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L507", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_builddoctorparams", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L291", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_changedatetype", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L706", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_changenumtodefault", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L75", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_checkallvalues", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L95", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_checktimes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L209", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_cleardoctorclinicparams", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L200", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_clearfilterparams", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L60", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_converttimestamptojalali", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L688", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_converttimestamptopersiandatesimple", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L66", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_converttimestamptotime", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L49", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_converttojalali", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L310", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_datetotimestamp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L320", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_degreeval", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L215", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_filterlist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L154", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_formatphonenumber", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L232", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_getcleannumbervalue", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L254", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_getparseduserinfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L264", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_handletimeexpirestoken", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L72", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_handletwolength", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L245", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_hasdatachanged", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L39", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_imageurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L13", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_isactiveurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L683", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_isuserloggedin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L716", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_isvalidirannationalcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L17", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_normalizeblog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L11", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_numbertoarstyle", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L383", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_queryforclinicdoctorfilter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L586", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_queryforclinicsfilter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L466", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_queryfordoctorsclinicreq", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L334", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_queryfordoctorsfilter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L422", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_queryfordoctorsreq", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L276", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_removeadditionalkeysdashboard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L304", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_removetokenhead", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L194", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_searchonlist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L658", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_timeago", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L103", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_uploadimage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "helper/index.js", + "source_location": "L171", + "weight": 1.0, + "source": "helper_index", + "target": "helper_index_validatephonenumber", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "hooks/useCanonicalUrl.js", + "source_location": "L10", + "weight": 1.0, + "source": "hooks_usecanonicalurl", + "target": "hooks_usecanonicalurl_usecanonicalurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "hooks/useCanonicalUrl.js", + "source_location": "L27", + "weight": 1.0, + "source": "hooks_usecanonicalurl", + "target": "hooks_usecanonicalurl_usecanonicalurlinjection", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "hooks/useCanonicalUrl.js", + "source_location": "L28", + "weight": 1.0, + "source": "hooks_usecanonicalurl_usecanonicalurlinjection", + "target": "hooks_usecanonicalurl_usecanonicalurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "jsconfig.json", + "source_location": "L2", + "weight": 1.0, + "source": "jsconfig", + "target": "jsconfig_compileroptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "jsconfig.json", + "source_location": "L3", + "weight": 1.0, + "source": "jsconfig_compileroptions", + "target": "jsconfig_compileroptions_paths", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "jsconfig.json", + "source_location": "L4", + "weight": 1.0, + "source": "jsconfig_compileroptions_paths", + "target": "jsconfig_paths", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "lib/ability.js", + "source_location": "L3", + "weight": 1.0, + "source": "lib_ability", + "target": "lib_ability_defineabilitiesfor", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "lib/appointmentSlots.js", + "source_location": "L3", + "weight": 1.0, + "source": "lib_appointmentslots", + "target": "lib_appointmentslots_adaptslots", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "lib/appointmentSlots.js", + "source_location": "L19", + "weight": 1.0, + "source": "lib_appointmentslots", + "target": "lib_appointmentslots_hasavailable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "lib/auth.js", + "source_location": "L3", + "weight": 1.0, + "source": "lib_auth", + "target": "lib_auth_getuser", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "lib/getCanonicalUrl.js", + "source_location": "L15", + "weight": 1.0, + "source": "lib_getcanonicalurl", + "target": "lib_getcanonicalurl_buildcanonicalpath", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "lib/getCanonicalUrl.js", + "source_location": "L22", + "weight": 1.0, + "source": "lib_getcanonicalurl", + "target": "lib_getcanonicalurl_buildcanonicalurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "lib/getCanonicalUrl.js", + "source_location": "L40", + "weight": 1.0, + "source": "lib_getcanonicalurl", + "target": "lib_getcanonicalurl_buildmaincanonicalurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "lib/getCanonicalUrl.js", + "source_location": "L44", + "weight": 1.0, + "source": "lib_getcanonicalurl", + "target": "lib_getcanonicalurl_getcanonicalurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "lib/getCanonicalUrl.js", + "source_location": "L31", + "weight": 1.0, + "source": "lib_getcanonicalurl", + "target": "lib_getcanonicalurl_getrequestorigin", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "lib/getCanonicalUrl.js", + "source_location": "L11", + "weight": 1.0, + "source": "lib_getcanonicalurl", + "target": "lib_getcanonicalurl_normalizehost", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "lib/getCanonicalUrl.js", + "source_location": "L23", + "weight": 1.0, + "source": "lib_getcanonicalurl_buildcanonicalurl", + "target": "lib_getcanonicalurl_normalizehost", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "lib/getCanonicalUrl.js", + "source_location": "L27", + "weight": 1.0, + "source": "lib_getcanonicalurl_buildcanonicalurl", + "target": "lib_getcanonicalurl_buildcanonicalpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "lib/getCanonicalUrl.js", + "source_location": "L41", + "weight": 1.0, + "source": "lib_getcanonicalurl_buildmaincanonicalurl", + "target": "lib_getcanonicalurl_buildcanonicalpath", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "lib/getCanonicalUrl.js", + "source_location": "L34", + "weight": 1.0, + "source": "lib_getcanonicalurl_getrequestorigin", + "target": "lib_getcanonicalurl_buildcanonicalurl", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "utils/sitemap.js", + "source_location": "L4", + "weight": 1.0, + "source": "utils_sitemap_getbaseurl", + "target": "lib_getcanonicalurl_buildcanonicalurl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "lib/getCanonicalUrl.js", + "source_location": "L51", + "weight": 1.0, + "source": "lib_getcanonicalurl_getcanonicalurl", + "target": "lib_getcanonicalurl_buildmaincanonicalurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "lib/getStateInfo.js", + "source_location": "L10", + "weight": 1.0, + "source": "lib_getstateinfo", + "target": "lib_getstateinfo_getstateinfo", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "lib/getStateInfo.js", + "source_location": "L26", + "weight": 1.0, + "source": "lib_getstateinfo_getstateinfo", + "target": "lib_rootcity_isrootcity" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "lib/getStateInfo.test.js", + "source_location": "L3", + "weight": 1.0, + "source": "lib_getstateinfo_test", + "target": "lib_getstateinfo_test_hostref", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "lib/getStateInfoClient.js", + "source_location": "L5", + "weight": 1.0, + "source": "lib_getstateinfoclient", + "target": "lib_getstateinfoclient_getstateinfoclient", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "lib/money.js", + "source_location": "L8", + "weight": 1.0, + "source": "lib_money", + "target": "lib_money_formattoman", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "lib/money.js", + "source_location": "L4", + "weight": 1.0, + "source": "lib_money", + "target": "lib_money_rialtotoman", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "lib/money.js", + "source_location": "L5", + "weight": 1.0, + "source": "lib_money", + "target": "lib_money_tomantorial", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "lib/money.js", + "source_location": "L8", + "weight": 1.0, + "source": "lib_money_formattoman", + "target": "lib_money_rialtotoman", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "lib/multiDomainClient.test.js", + "source_location": "L10", + "weight": 1.0, + "source": "lib_multidomainclient_test", + "target": "lib_multidomainclient_test_setlocation", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "lib/refreshCookie.js", + "source_location": "L25", + "weight": 1.0, + "source": "lib_refreshcookie", + "target": "lib_refreshcookie_clearrefreshcookie", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "lib/refreshCookie.js", + "source_location": "L3", + "weight": 1.0, + "source": "lib_refreshcookie", + "target": "lib_refreshcookie_cookiedomain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "lib/refreshCookie.js", + "source_location": "L14", + "weight": 1.0, + "source": "lib_refreshcookie", + "target": "lib_refreshcookie_setrefreshcookie", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "lib/refreshCookie.js", + "source_location": "L32", + "weight": 1.0, + "source": "lib_refreshcookie_clearrefreshcookie", + "target": "lib_refreshcookie_cookiedomain", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "lib/refreshCookie.js", + "source_location": "L21", + "weight": 1.0, + "source": "lib_refreshcookie_setrefreshcookie", + "target": "lib_refreshcookie_cookiedomain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "lib/representationAdapters.js", + "source_location": "L1", + "weight": 1.0, + "source": "lib_representationadapters", + "target": "lib_representationadapters_buildpatientuser", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "lib/req.js", + "source_location": "L4", + "weight": 1.0, + "source": "lib_req", + "target": "lib_req_axiosinstance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "lib/req.js", + "source_location": "L10", + "weight": 1.0, + "source": "lib_req", + "target": "lib_req_fetchreq", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "lib/rootCity.js", + "source_location": "L5", + "weight": 1.0, + "source": "lib_rootcity", + "target": "lib_rootcity_isrootcity", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "lib/sanitize.js", + "source_location": "L18", + "weight": 1.0, + "source": "lib_sanitize", + "target": "lib_sanitize_safejsonld", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "lib/sanitize.js", + "source_location": "L22", + "weight": 1.0, + "source": "lib_sanitize", + "target": "lib_sanitize_safejsonparse", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "lib/sanitize.js", + "source_location": "L3", + "weight": 1.0, + "source": "lib_sanitize", + "target": "lib_sanitize_sanitizehtml", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "lib/serverToken.js", + "source_location": "L4", + "weight": 1.0, + "source": "lib_servertoken", + "target": "lib_servertoken_getserveraccesstoken", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "lib/tokenStore.js", + "source_location": "L11", + "weight": 1.0, + "source": "lib_tokenstore", + "target": "lib_tokenstore_clearaccesstoken", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "lib/tokenStore.js", + "source_location": "L3", + "weight": 1.0, + "source": "lib_tokenstore", + "target": "lib_tokenstore_getaccesstoken", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "lib/tokenStore.js", + "source_location": "L7", + "weight": 1.0, + "source": "lib_tokenstore", + "target": "lib_tokenstore_setaccesstoken", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "services/api.js", + "source_location": "L46", + "weight": 1.0, + "source": "services_api_handlesessionexpired", + "target": "lib_tokenstore_clearaccesstoken" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "utils/index.js", + "source_location": "L8", + "weight": 1.0, + "source": "utils_index_removetoken", + "target": "lib_tokenstore_clearaccesstoken" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "mui/index.js", + "source_location": "L1", + "weight": 1.0, + "source": "mui_index", + "target": "mui_index_styledefault", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "mui/index.js", + "source_location": "L13", + "weight": 1.0, + "source": "mui_index", + "target": "mui_index_styletextselectright", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "next.config.js", + "source_location": "L2", + "weight": 1.0, + "source": "next_config", + "target": "next_config_nextconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L17", + "weight": 1.0, + "source": "package", + "target": "package_dependencies", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L63", + "weight": 1.0, + "source": "package", + "target": "package_devdependencies", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L5", + "weight": 1.0, + "source": "package", + "target": "package_engines", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L2", + "weight": 1.0, + "source": "package", + "target": "package_name", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L4", + "weight": 1.0, + "source": "package", + "target": "package_private", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L8", + "weight": 1.0, + "source": "package", + "target": "package_scripts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L3", + "weight": 1.0, + "source": "package", + "target": "package_version", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L6", + "weight": 1.0, + "source": "package_engines", + "target": "package_engines_node", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L10", + "weight": 1.0, + "source": "package_scripts", + "target": "package_scripts_build", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L9", + "weight": 1.0, + "source": "package_scripts", + "target": "package_scripts_dev", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L12", + "weight": 1.0, + "source": "package_scripts", + "target": "package_scripts_lint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L11", + "weight": 1.0, + "source": "package_scripts", + "target": "package_scripts_start", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L13", + "weight": 1.0, + "source": "package_scripts", + "target": "package_scripts_test", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L15", + "weight": 1.0, + "source": "package_scripts", + "target": "package_scripts_test_cov", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L14", + "weight": 1.0, + "source": "package_scripts", + "target": "package_scripts_test_watch", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L30", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_aos", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L31", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_axios", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L18", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_casl_ability", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L19", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_casl_react", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L32", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_date_fns", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L33", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_dayjs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L20", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_emotion_cache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L21", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_emotion_react", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L22", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_emotion_styled", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L35", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_html2canvas", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L34", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_html_to_image", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L36", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_i", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L37", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_isomorphic_dompurify", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L38", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_jalaali_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L39", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_jalali_moment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L40", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_js_cookie", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L41", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_jspdf", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L23", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_maptiler_sdk", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L42", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_moment_jalaali", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L24", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_mui_icons_material", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L25", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_mui_material", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L26", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_mui_styled_engine", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L27", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_mui_x_charts", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L28", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_mui_x_date_pickers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L43", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_next", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L44", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_next_themes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L29", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_next_third_parties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L45", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_npm", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L46", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_postcss", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L47", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_qrcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L48", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_qrcode_react", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L49", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_react", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L50", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_react_dom", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L51", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_react_easy_crop", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L52", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_react_google_map_picker", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L53", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_react_images_uploading", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L54", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_react_toastify", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L55", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_sharp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L56", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_styled_components", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L57", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_stylis", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L58", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_stylis_plugin_rtl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L59", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_swiper", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L60", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_tailwindcss", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L61", + "weight": 1.0, + "source": "package_dependencies", + "target": "package_dependencies_uninstall", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L70", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_babel_plugin_react_compiler", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L71", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_cross_env", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L72", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_eslint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L73", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_eslint_config_next", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L64", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_eslint_eslintrc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L74", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_jsdom", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L75", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_prettier", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L65", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_testing_library_dom", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L66", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_testing_library_jest_dom", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L67", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_testing_library_react", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L68", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_testing_library_user_event", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L76", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_typescript", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L69", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_vitejs_plugin_react", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L77", + "weight": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_vitest", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "postcss.config.mjs", + "source_location": "L2", + "weight": 1.0, + "source": "postcss_config", + "target": "postcss_config_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "proxy.js", + "source_location": "L12", + "weight": 1.0, + "source": "proxy", + "target": "proxy_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "proxy.js", + "source_location": "L3", + "weight": 1.0, + "source": "proxy", + "target": "proxy_proxy", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "services/api.js", + "source_location": "L19", + "weight": 1.0, + "source": "services_api", + "target": "services_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "services/api.js", + "source_location": "L6", + "weight": 1.0, + "source": "services_api", + "target": "services_api_extracterrormessage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "services/api.js", + "source_location": "L45", + "weight": 1.0, + "source": "services_api", + "target": "services_api_handlesessionexpired", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "services/api.js", + "source_location": "L28", + "weight": 1.0, + "source": "services_api", + "target": "services_api_refreshaccesstoken", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "services/response.js", + "source_location": "L2", + "weight": 1.0, + "source": "services_response", + "target": "services_api", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "services/response.js", + "source_location": "L2", + "weight": 1.0, + "source": "services_response", + "target": "services_api_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "services/clinicApi.js", + "source_location": "L2", + "weight": 1.0, + "source": "services_clinicapi", + "target": "services_clinicapi_getclinicdoctors", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "services/response.js", + "source_location": "L4", + "weight": 1.0, + "source": "services_response", + "target": "services_response_request", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test/utils.jsx", + "source_location": "L3", + "weight": 1.0, + "source": "test_utils", + "target": "test_utils_renderui", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "utils/index.js", + "source_location": "L4", + "weight": 1.0, + "source": "utils_index", + "target": "utils_index_removetoken", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "utils/sitemap.js", + "source_location": "L3", + "weight": 1.0, + "source": "utils_sitemap", + "target": "utils_sitemap_getbaseurl", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/adapt-backend-audit-api.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_adapt_backend_audit_api", + "target": "prompt_adapt_backend_audit_api_\u062a\u0637\u0628\u06cc\u0642_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0628\u0627_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_api_\u0628\u0631\u0646\u0686_backend_audit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/adapt-backend-audit-api.md", + "source_location": "L15", + "weight": 1.0, + "source": "prompt_adapt_backend_audit_api_\u062a\u0637\u0628\u06cc\u0642_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0628\u0627_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_api_\u0628\u0631\u0646\u0686_backend_audit", + "target": "prompt_adapt_backend_audit_api_\u062c\u062f\u0648\u0644_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_api_\u0645\u0631\u062a\u0628\u0637_\u0628\u0627_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/adapt-backend-audit-api.md", + "source_location": "L11", + "weight": 1.0, + "source": "prompt_adapt_backend_audit_api_\u062a\u0637\u0628\u06cc\u0642_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0628\u0627_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_api_\u0628\u0631\u0646\u0686_backend_audit", + "target": "prompt_adapt_backend_audit_api_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/adapt-backend-audit-api.md", + "source_location": "L24", + "weight": 1.0, + "source": "prompt_adapt_backend_audit_api_\u062a\u0637\u0628\u06cc\u0642_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0628\u0627_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_api_\u0628\u0631\u0646\u0686_backend_audit", + "target": "prompt_adapt_backend_audit_api_\u0645\u0634\u06a9\u0644_\u0627\u0635\u0644\u06cc_rotation_\u062a\u0648\u06a9\u0646_refresh_post_oauth_token_refresh", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/adapt-backend-audit-api.md", + "source_location": "L111", + "weight": 1.0, + "source": "prompt_adapt_backend_audit_api_\u062a\u0637\u0628\u06cc\u0642_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0628\u0627_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_api_\u0628\u0631\u0646\u0686_backend_audit", + "target": "prompt_adapt_backend_audit_api_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/adapt-backend-audit-api.md", + "source_location": "L94", + "weight": 1.0, + "source": "prompt_adapt_backend_audit_api_\u062a\u0637\u0628\u06cc\u0642_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0628\u0627_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_api_\u0628\u0631\u0646\u0686_backend_audit", + "target": "prompt_adapt_backend_audit_api_\u0648\u0638\u06cc\u0641\u0647_\u06f2_\u0635\u0641\u062d\u0647_\u0628\u0646\u062f\u06cc_\u0646\u0638\u0631\u0627\u062a_get_api_v1_comments_uuid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/adapt-backend-audit-api.md", + "source_location": "L7", + "weight": 1.0, + "source": "prompt_adapt_backend_audit_api_\u062a\u0637\u0628\u06cc\u0642_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0628\u0627_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_api_\u0628\u0631\u0646\u0686_backend_audit", + "target": "prompt_adapt_backend_audit_api_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/adapt-backend-audit-api.md", + "source_location": "L26", + "weight": 1.0, + "source": "prompt_adapt_backend_audit_api_\u0645\u0634\u06a9\u0644_\u0627\u0635\u0644\u06cc_rotation_\u062a\u0648\u06a9\u0646_refresh_post_oauth_token_refresh", + "target": "prompt_adapt_backend_audit_api_\u0631\u0641\u062a\u0627\u0631_\u062c\u062f\u06cc\u062f_backend", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/adapt-backend-audit-api.md", + "source_location": "L37", + "weight": 1.0, + "source": "prompt_adapt_backend_audit_api_\u0645\u0634\u06a9\u0644_\u0627\u0635\u0644\u06cc_rotation_\u062a\u0648\u06a9\u0646_refresh_post_oauth_token_refresh", + "target": "prompt_adapt_backend_audit_api_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_nobat724_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_lib_servertoken_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/adapt-backend-audit-api.md", + "source_location": "L61", + "weight": 1.0, + "source": "prompt_adapt_backend_audit_api_\u0645\u0634\u06a9\u0644_\u0627\u0635\u0644\u06cc_rotation_\u062a\u0648\u06a9\u0646_refresh_post_oauth_token_refresh", + "target": "prompt_adapt_backend_audit_api_\u0648\u0638\u06cc\u0641\u0647_\u06f1_\u062d\u0644_rotation_\u06cc\u06a9\u06cc_\u0627\u0632_\u062f\u0648_\u0645\u0633\u06cc\u0631_\u0645\u0633\u06cc\u0631_a_\u062a\u0648\u0635\u06cc\u0647_\u0645\u06cc_\u0634\u0648\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/adapt-backend-audit-api.md", + "source_location": "L55", + "weight": 1.0, + "source": "prompt_adapt_backend_audit_api_\u0645\u0634\u06a9\u0644_\u0627\u0635\u0644\u06cc_rotation_\u062a\u0648\u06a9\u0646_refresh_post_oauth_token_refresh", + "target": "prompt_adapt_backend_audit_api_\u0686\u0631\u0627_\u0645\u06cc_\u0634\u06a9\u0646\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/adapt-backend-audit-api.md", + "source_location": "L103", + "weight": 1.0, + "source": "prompt_adapt_backend_audit_api_\u0648\u0638\u06cc\u0641\u0647_\u06f2_\u0635\u0641\u062d\u0647_\u0628\u0646\u062f\u06cc_\u0646\u0638\u0631\u0627\u062a_get_api_v1_comments_uuid", + "target": "prompt_adapt_backend_audit_api_\u062a\u063a\u06cc\u06cc\u0631", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/adapt-backend-audit-api.md", + "source_location": "L96", + "weight": 1.0, + "source": "prompt_adapt_backend_audit_api_\u0648\u0638\u06cc\u0641\u0647_\u06f2_\u0635\u0641\u062d\u0647_\u0628\u0646\u062f\u06cc_\u0646\u0638\u0631\u0627\u062a_get_api_v1_comments_uuid", + "target": "prompt_adapt_backend_audit_api_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_app_doctor_slug_page_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/adapt-backend-audit-api.md", + "source_location": "L106", + "weight": 1.0, + "source": "prompt_adapt_backend_audit_api_\u0648\u0638\u06cc\u0641\u0647_\u06f2_\u0635\u0641\u062d\u0647_\u0628\u0646\u062f\u06cc_\u0646\u0638\u0631\u0627\u062a_get_api_v1_comments_uuid", + "target": "prompt_adapt_backend_audit_api_\u0648\u0638\u06cc\u0641\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_appointment_calendar_disabled_dates", + "target": "prompt_appointment_calendar_disabled_dates_\u0646\u0645\u0627\u06cc\u0634_\u0631\u0648\u0632\u0647\u0627\u06cc_\u062a\u0639\u0637\u06cc\u0644_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0627\u0646\u062a\u062e\u0627\u0628_\u0631\u0648\u06cc_\u062a\u0642\u0648\u06cc\u0645_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a_\u0627\u062d\u062a\u0631\u0627\u0645_\u0628\u0647_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", + "source_location": "L11", + "weight": 1.0, + "source": "prompt_appointment_calendar_disabled_dates_\u0646\u0645\u0627\u06cc\u0634_\u0631\u0648\u0632\u0647\u0627\u06cc_\u062a\u0639\u0637\u06cc\u0644_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0627\u0646\u062a\u062e\u0627\u0628_\u0631\u0648\u06cc_\u062a\u0642\u0648\u06cc\u0645_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a_\u0627\u062d\u062a\u0631\u0627\u0645_\u0628\u0647_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648", + "target": "prompt_appointment_calendar_disabled_dates_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", + "source_location": "L19", + "weight": 1.0, + "source": "prompt_appointment_calendar_disabled_dates_\u0646\u0645\u0627\u06cc\u0634_\u0631\u0648\u0632\u0647\u0627\u06cc_\u062a\u0639\u0637\u06cc\u0644_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0627\u0646\u062a\u062e\u0627\u0628_\u0631\u0648\u06cc_\u062a\u0642\u0648\u06cc\u0645_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a_\u0627\u062d\u062a\u0631\u0627\u0645_\u0628\u0647_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648", + "target": "prompt_appointment_calendar_disabled_dates_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", + "source_location": "L71", + "weight": 1.0, + "source": "prompt_appointment_calendar_disabled_dates_\u0646\u0645\u0627\u06cc\u0634_\u0631\u0648\u0632\u0647\u0627\u06cc_\u062a\u0639\u0637\u06cc\u0644_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0627\u0646\u062a\u062e\u0627\u0628_\u0631\u0648\u06cc_\u062a\u0642\u0648\u06cc\u0645_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a_\u0627\u062d\u062a\u0631\u0627\u0645_\u0628\u0647_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648", + "target": "prompt_appointment_calendar_disabled_dates_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_endpoint_\u062c\u062f\u06cc\u062f_backend_\u0645\u0631\u062c\u0639", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", + "source_location": "L15", + "weight": 1.0, + "source": "prompt_appointment_calendar_disabled_dates_\u0646\u0645\u0627\u06cc\u0634_\u0631\u0648\u0632\u0647\u0627\u06cc_\u062a\u0639\u0637\u06cc\u0644_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0627\u0646\u062a\u062e\u0627\u0628_\u0631\u0648\u06cc_\u062a\u0642\u0648\u06cc\u0645_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a_\u0627\u062d\u062a\u0631\u0627\u0645_\u0628\u0647_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648", + "target": "prompt_appointment_calendar_disabled_dates_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", + "source_location": "L124", + "weight": 1.0, + "source": "prompt_appointment_calendar_disabled_dates_\u0646\u0645\u0627\u06cc\u0634_\u0631\u0648\u0632\u0647\u0627\u06cc_\u062a\u0639\u0637\u06cc\u0644_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0627\u0646\u062a\u062e\u0627\u0628_\u0631\u0648\u06cc_\u062a\u0642\u0648\u06cc\u0645_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a_\u0627\u062d\u062a\u0631\u0627\u0645_\u0628\u0647_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648", + "target": "prompt_appointment_calendar_disabled_dates_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", + "source_location": "L30", + "weight": 1.0, + "source": "prompt_appointment_calendar_disabled_dates_\u0646\u0645\u0627\u06cc\u0634_\u0631\u0648\u0632\u0647\u0627\u06cc_\u062a\u0639\u0637\u06cc\u0644_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0627\u0646\u062a\u062e\u0627\u0628_\u0631\u0648\u06cc_\u062a\u0642\u0648\u06cc\u0645_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a_\u0627\u062d\u062a\u0631\u0627\u0645_\u0628\u0647_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648", + "target": "prompt_appointment_calendar_disabled_dates_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", + "source_location": "L92", + "weight": 1.0, + "source": "prompt_appointment_calendar_disabled_dates_\u0646\u0645\u0627\u06cc\u0634_\u0631\u0648\u0632\u0647\u0627\u06cc_\u062a\u0639\u0637\u06cc\u0644_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0627\u0646\u062a\u062e\u0627\u0628_\u0631\u0648\u06cc_\u062a\u0642\u0648\u06cc\u0645_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a_\u0627\u062d\u062a\u0631\u0627\u0645_\u0628\u0647_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648", + "target": "prompt_appointment_calendar_disabled_dates_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_appointment_calendar_disabled_dates_\u0646\u0645\u0627\u06cc\u0634_\u0631\u0648\u0632\u0647\u0627\u06cc_\u062a\u0639\u0637\u06cc\u0644_\u063a\u06cc\u0631\u0642\u0627\u0628\u0644_\u0627\u0646\u062a\u062e\u0627\u0628_\u0631\u0648\u06cc_\u062a\u0642\u0648\u06cc\u0645_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a_\u0627\u062d\u062a\u0631\u0627\u0645_\u0628\u0647_\u0628\u0627\u0632\u0647_\u06cc_\u0631\u0632\u0631\u0648", + "target": "prompt_appointment_calendar_disabled_dates_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", + "source_location": "L32", + "weight": 1.0, + "source": "prompt_appointment_calendar_disabled_dates_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_appointment_calendar_disabled_dates_app_appointment_doctorid_page_js_disableddates_\u062e\u0627\u0644\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", + "source_location": "L46", + "weight": 1.0, + "source": "prompt_appointment_calendar_disabled_dates_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_appointment_calendar_disabled_dates_app_component_date_datepicker_index_js_\u0645\u0635\u0631\u0641_disableddates", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", + "source_location": "L64", + "weight": 1.0, + "source": "prompt_appointment_calendar_disabled_dates_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_appointment_calendar_disabled_dates_services_response_js_\u062a\u0648\u0627\u0628\u0639_slot_\u0645\u0648\u062c\u0648\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", + "source_location": "L96", + "weight": 1.0, + "source": "prompt_appointment_calendar_disabled_dates_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_appointment_calendar_disabled_dates_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_getmonthavailability_\u0628\u0647_services_response_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", + "source_location": "L107", + "weight": 1.0, + "source": "prompt_appointment_calendar_disabled_dates_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_appointment_calendar_disabled_dates_\u06f2_\u0644\u0648\u062f_\u062f\u0627\u062f\u0647_\u06cc_\u062f\u0631_\u062f\u0633\u062a\u0631\u0633_\u0628\u0648\u062f\u0646_\u062f\u0631_datepicker_\u0648_disable_\u06a9\u0631\u062f\u0646_\u0631\u0648\u0632\u0647\u0627", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", + "source_location": "L116", + "weight": 1.0, + "source": "prompt_appointment_calendar_disabled_dates_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_appointment_calendar_disabled_dates_\u06f3_\u0647\u0646\u062f\u0644_\u0646\u0627\u0648\u0628\u0631\u06cc_\u0645\u0627\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/appointment-calendar-disabled-dates.md", + "source_location": "L120", + "weight": 1.0, + "source": "prompt_appointment_calendar_disabled_dates_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_appointment_calendar_disabled_dates_\u06f4_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc_\u0648\u0644\u06cc_\u062a\u0648\u0635\u06cc\u0647_\u0634\u062f\u0647_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0636\u0639\u06cc\u062a_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u062e\u0627\u0645\u0648\u0634", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/appointment-detail-fields-fix.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_appointment_detail_fields_fix", + "target": "prompt_appointment_detail_fields_fix_\u0627\u0635\u0644\u0627\u062d_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u062c\u0632\u0626\u06cc\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0631_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/appointment-detail-fields-fix.md", + "source_location": "L9", + "weight": 1.0, + "source": "prompt_appointment_detail_fields_fix_\u0627\u0635\u0644\u0627\u062d_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u062c\u0632\u0626\u06cc\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0631_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", + "target": "prompt_appointment_detail_fields_fix_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/appointment-detail-fields-fix.md", + "source_location": "L28", + "weight": 1.0, + "source": "prompt_appointment_detail_fields_fix_\u0627\u0635\u0644\u0627\u062d_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u062c\u0632\u0626\u06cc\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0631_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", + "target": "prompt_appointment_detail_fields_fix_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/appointment-detail-fields-fix.md", + "source_location": "L15", + "weight": 1.0, + "source": "prompt_appointment_detail_fields_fix_\u0627\u0635\u0644\u0627\u062d_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u062c\u0632\u0626\u06cc\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0631_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", + "target": "prompt_appointment_detail_fields_fix_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/appointment-detail-fields-fix.md", + "source_location": "L57", + "weight": 1.0, + "source": "prompt_appointment_detail_fields_fix_\u0627\u0635\u0644\u0627\u062d_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u062c\u0632\u0626\u06cc\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0631_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", + "target": "prompt_appointment_detail_fields_fix_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/appointment-detail-fields-fix.md", + "source_location": "L35", + "weight": 1.0, + "source": "prompt_appointment_detail_fields_fix_\u0627\u0635\u0644\u0627\u062d_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u062c\u0632\u0626\u06cc\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0631_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", + "target": "prompt_appointment_detail_fields_fix_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_\u0647\u0631_\u062f\u0648_\u0641\u0627\u06cc\u0644_\u0645\u0634\u0627\u0628\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/appointment-detail-fields-fix.md", + "source_location": "L45", + "weight": 1.0, + "source": "prompt_appointment_detail_fields_fix_\u0627\u0635\u0644\u0627\u062d_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u062c\u0632\u0626\u06cc\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0631_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", + "target": "prompt_appointment_detail_fields_fix_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/appointment-detail-fields-fix.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_appointment_detail_fields_fix_\u0627\u0635\u0644\u0627\u062d_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u062c\u0632\u0626\u06cc\u0627\u062a_\u0646\u0648\u0628\u062a_\u062f\u0631_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", + "target": "prompt_appointment_detail_fields_fix_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/appointment-detail-fields-fix.md", + "source_location": "L47", + "weight": 1.0, + "source": "prompt_appointment_detail_fields_fix_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_appointment_detail_fields_fix_\u06f1_\u0627\u0635\u0644\u0627\u062d_detaillg_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/appointment-detail-fields-fix.md", + "source_location": "L54", + "weight": 1.0, + "source": "prompt_appointment_detail_fields_fix_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_appointment_detail_fields_fix_\u06f2_\u0627\u0635\u0644\u0627\u062d_detailsm_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/appointment-required-account-fields.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_appointment_required_account_fields", + "target": "prompt_appointment_required_account_fields_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/appointment-required-account-fields.md", + "source_location": "L9", + "weight": 1.0, + "source": "prompt_appointment_required_account_fields_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc", + "target": "prompt_appointment_required_account_fields_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/appointment-required-account-fields.md", + "source_location": "L22", + "weight": 1.0, + "source": "prompt_appointment_required_account_fields_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc", + "target": "prompt_appointment_required_account_fields_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/appointment-required-account-fields.md", + "source_location": "L13", + "weight": 1.0, + "source": "prompt_appointment_required_account_fields_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc", + "target": "prompt_appointment_required_account_fields_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/appointment-required-account-fields.md", + "source_location": "L109", + "weight": 1.0, + "source": "prompt_appointment_required_account_fields_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc", + "target": "prompt_appointment_required_account_fields_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/appointment-required-account-fields.md", + "source_location": "L30", + "weight": 1.0, + "source": "prompt_appointment_required_account_fields_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc", + "target": "prompt_appointment_required_account_fields_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/appointment-required-account-fields.md", + "source_location": "L67", + "weight": 1.0, + "source": "prompt_appointment_required_account_fields_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc", + "target": "prompt_appointment_required_account_fields_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/appointment-required-account-fields.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_appointment_required_account_fields_\u0627\u062c\u0628\u0627\u0631\u06cc_\u06a9\u0631\u062f\u0646_\u0641\u06cc\u0644\u062f\u0647\u0627\u06cc_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc", + "target": "prompt_appointment_required_account_fields_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/appointment-required-account-fields.md", + "source_location": "L69", + "weight": 1.0, + "source": "prompt_appointment_required_account_fields_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_appointment_required_account_fields_\u06f1_\u062a\u0627\u0628\u0639_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_\u0627\u062c\u0628\u0627\u0631\u06cc_\u062f\u0631_submitdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/appointment-required-account-fields.md", + "source_location": "L103", + "weight": 1.0, + "source": "prompt_appointment_required_account_fields_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_appointment_required_account_fields_\u06f2_\u0647\u0645\u0627\u0647\u0646\u06af\u06cc_\u0634\u06a9\u0644_\u062f\u0627\u062f\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/birthday-picker-year-month-day.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_birthday_picker_year_month_day", + "target": "prompt_birthday_picker_year_month_day_\u0627\u0646\u062a\u062e\u0627\u0628_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0645\u0631\u062d\u0644\u0647_\u0627\u06cc_\u0633\u0627\u0644_\u0645\u0627\u0647_\u0631\u0648\u0632", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/birthday-picker-year-month-day.md", + "source_location": "L9", + "weight": 1.0, + "source": "prompt_birthday_picker_year_month_day_\u0627\u0646\u062a\u062e\u0627\u0628_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0645\u0631\u062d\u0644\u0647_\u0627\u06cc_\u0633\u0627\u0644_\u0645\u0627\u0647_\u0631\u0648\u0632", + "target": "prompt_birthday_picker_year_month_day_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/birthday-picker-year-month-day.md", + "source_location": "L19", + "weight": 1.0, + "source": "prompt_birthday_picker_year_month_day_\u0627\u0646\u062a\u062e\u0627\u0628_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0645\u0631\u062d\u0644\u0647_\u0627\u06cc_\u0633\u0627\u0644_\u0645\u0627\u0647_\u0631\u0648\u0632", + "target": "prompt_birthday_picker_year_month_day_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/birthday-picker-year-month-day.md", + "source_location": "L15", + "weight": 1.0, + "source": "prompt_birthday_picker_year_month_day_\u0627\u0646\u062a\u062e\u0627\u0628_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0645\u0631\u062d\u0644\u0647_\u0627\u06cc_\u0633\u0627\u0644_\u0645\u0627\u0647_\u0631\u0648\u0632", + "target": "prompt_birthday_picker_year_month_day_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/birthday-picker-year-month-day.md", + "source_location": "L100", + "weight": 1.0, + "source": "prompt_birthday_picker_year_month_day_\u0627\u0646\u062a\u062e\u0627\u0628_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0645\u0631\u062d\u0644\u0647_\u0627\u06cc_\u0633\u0627\u0644_\u0645\u0627\u0647_\u0631\u0648\u0632", + "target": "prompt_birthday_picker_year_month_day_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/birthday-picker-year-month-day.md", + "source_location": "L29", + "weight": 1.0, + "source": "prompt_birthday_picker_year_month_day_\u0627\u0646\u062a\u062e\u0627\u0628_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0645\u0631\u062d\u0644\u0647_\u0627\u06cc_\u0633\u0627\u0644_\u0645\u0627\u0647_\u0631\u0648\u0632", + "target": "prompt_birthday_picker_year_month_day_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/birthday-picker-year-month-day.md", + "source_location": "L55", + "weight": 1.0, + "source": "prompt_birthday_picker_year_month_day_\u0627\u0646\u062a\u062e\u0627\u0628_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0645\u0631\u062d\u0644\u0647_\u0627\u06cc_\u0633\u0627\u0644_\u0645\u0627\u0647_\u0631\u0648\u0632", + "target": "prompt_birthday_picker_year_month_day_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/birthday-picker-year-month-day.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_birthday_picker_year_month_day_\u0627\u0646\u062a\u062e\u0627\u0628_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0645\u0631\u062d\u0644\u0647_\u0627\u06cc_\u0633\u0627\u0644_\u0645\u0627\u0647_\u0631\u0648\u0632", + "target": "prompt_birthday_picker_year_month_day_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/birthday-picker-year-month-day.md", + "source_location": "L57", + "weight": 1.0, + "source": "prompt_birthday_picker_year_month_day_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_birthday_picker_year_month_day_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_\u062d\u0627\u0644\u062a_\u0645\u0631\u062d\u0644\u0647_\u0627\u06cc_\u0628\u0647_jalalidatepicker", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/birthday-picker-year-month-day.md", + "source_location": "L87", + "weight": 1.0, + "source": "prompt_birthday_picker_year_month_day_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_birthday_picker_year_month_day_\u06f2_\u0641\u0639\u0627\u0644_\u06a9\u0631\u062f\u0646_\u062f\u0631_datebirthday_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/booking-lock-patient-flow.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_booking_lock_patient_flow", + "target": "prompt_booking_lock_patient_flow_\u0641\u0644\u0648\u06cc_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0642\u0641\u0644_\u0648\u0627\u0642\u0639\u06cc_\u06f1\u06f5\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0641\u0631\u0645_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u0634\u062e\u0635_\u062f\u06cc\u06af\u0631_\u0648_ux_\u0648\u0636\u0639\u06cc\u062a_\u0645\u062d\u0648\u0631", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/booking-lock-patient-flow.md", + "source_location": "L11", + "weight": 1.0, + "source": "prompt_booking_lock_patient_flow_\u0641\u0644\u0648\u06cc_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0642\u0641\u0644_\u0648\u0627\u0642\u0639\u06cc_\u06f1\u06f5\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0641\u0631\u0645_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u0634\u062e\u0635_\u062f\u06cc\u06af\u0631_\u0648_ux_\u0648\u0636\u0639\u06cc\u062a_\u0645\u062d\u0648\u0631", + "target": "prompt_booking_lock_patient_flow_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/booking-lock-patient-flow.md", + "source_location": "L25", + "weight": 1.0, + "source": "prompt_booking_lock_patient_flow_\u0641\u0644\u0648\u06cc_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0642\u0641\u0644_\u0648\u0627\u0642\u0639\u06cc_\u06f1\u06f5\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0641\u0631\u0645_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u0634\u062e\u0635_\u062f\u06cc\u06af\u0631_\u0648_ux_\u0648\u0636\u0639\u06cc\u062a_\u0645\u062d\u0648\u0631", + "target": "prompt_booking_lock_patient_flow_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/booking-lock-patient-flow.md", + "source_location": "L81", + "weight": 1.0, + "source": "prompt_booking_lock_patient_flow_\u0641\u0644\u0648\u06cc_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0642\u0641\u0644_\u0648\u0627\u0642\u0639\u06cc_\u06f1\u06f5\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0641\u0631\u0645_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u0634\u062e\u0635_\u062f\u06cc\u06af\u0631_\u0648_ux_\u0648\u0636\u0639\u06cc\u062a_\u0645\u062d\u0648\u0631", + "target": "prompt_booking_lock_patient_flow_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_backend_\u0628\u0639\u062f_\u0627\u0632_\u0627\u062c\u0631\u0627\u06cc_\u067e\u0631\u0627\u0645\u067e\u062a_\u0647\u0645\u062a\u0627", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/booking-lock-patient-flow.md", + "source_location": "L19", + "weight": 1.0, + "source": "prompt_booking_lock_patient_flow_\u0641\u0644\u0648\u06cc_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0642\u0641\u0644_\u0648\u0627\u0642\u0639\u06cc_\u06f1\u06f5\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0641\u0631\u0645_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u0634\u062e\u0635_\u062f\u06cc\u06af\u0631_\u0648_ux_\u0648\u0636\u0639\u06cc\u062a_\u0645\u062d\u0648\u0631", + "target": "prompt_booking_lock_patient_flow_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/booking-lock-patient-flow.md", + "source_location": "L153", + "weight": 1.0, + "source": "prompt_booking_lock_patient_flow_\u0641\u0644\u0648\u06cc_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0642\u0641\u0644_\u0648\u0627\u0642\u0639\u06cc_\u06f1\u06f5\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0641\u0631\u0645_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u0634\u062e\u0635_\u062f\u06cc\u06af\u0631_\u0648_ux_\u0648\u0636\u0639\u06cc\u062a_\u0645\u062d\u0648\u0631", + "target": "prompt_booking_lock_patient_flow_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/booking-lock-patient-flow.md", + "source_location": "L36", + "weight": 1.0, + "source": "prompt_booking_lock_patient_flow_\u0641\u0644\u0648\u06cc_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0642\u0641\u0644_\u0648\u0627\u0642\u0639\u06cc_\u06f1\u06f5\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0641\u0631\u0645_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u0634\u062e\u0635_\u062f\u06cc\u06af\u0631_\u0648_ux_\u0648\u0636\u0639\u06cc\u062a_\u0645\u062d\u0648\u0631", + "target": "prompt_booking_lock_patient_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/booking-lock-patient-flow.md", + "source_location": "L97", + "weight": 1.0, + "source": "prompt_booking_lock_patient_flow_\u0641\u0644\u0648\u06cc_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0642\u0641\u0644_\u0648\u0627\u0642\u0639\u06cc_\u06f1\u06f5\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0641\u0631\u0645_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u0634\u062e\u0635_\u062f\u06cc\u06af\u0631_\u0648_ux_\u0648\u0636\u0639\u06cc\u062a_\u0645\u062d\u0648\u0631", + "target": "prompt_booking_lock_patient_flow_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/booking-lock-patient-flow.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_booking_lock_patient_flow_\u0641\u0644\u0648\u06cc_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0642\u0641\u0644_\u0648\u0627\u0642\u0639\u06cc_\u06f1\u06f5\u062f\u0642\u06cc\u0642\u0647_\u0627\u06cc_\u0641\u0631\u0645_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u0634\u062e\u0635_\u062f\u06cc\u06af\u0631_\u0648_ux_\u0648\u0636\u0639\u06cc\u062a_\u0645\u062d\u0648\u0631", + "target": "prompt_booking_lock_patient_flow_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/booking-lock-patient-flow.md", + "source_location": "L38", + "weight": 1.0, + "source": "prompt_booking_lock_patient_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_booking_lock_patient_flow_detail_index_js_\u062f\u06a9\u0645\u0647_\u06cc_mock_\u0628\u0631\u0627\u06cc_\u0641\u0631\u062f_\u062f\u06cc\u06af\u0631", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/booking-lock-patient-flow.md", + "source_location": "L70", + "weight": 1.0, + "source": "prompt_booking_lock_patient_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_booking_lock_patient_flow_paying_index_js_\u062a\u0627\u06cc\u0645\u0631_\u0645\u062d\u0644\u06cc_\u06f6\u06f0\u06f0_\u062b\u0627\u0646\u06cc\u0647_\u0642\u0644\u0627\u0628\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/booking-lock-patient-flow.md", + "source_location": "L56", + "weight": 1.0, + "source": "prompt_booking_lock_patient_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_booking_lock_patient_flow_submitdata_js_\u0628\u062f\u0646\u0647_\u06cc_\u0646\u0648\u0628\u062a_\u0628\u062f\u0648\u0646_\u0628\u06cc\u0645\u0627\u0631", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/booking-lock-patient-flow.md", + "source_location": "L99", + "weight": 1.0, + "source": "prompt_booking_lock_patient_flow_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_booking_lock_patient_flow_\u06f1_\u0641\u0631\u0645_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u0634\u062e\u0635_\u062f\u06cc\u06af\u0631_detail_index_js_form_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/booking-lock-patient-flow.md", + "source_location": "L106", + "weight": 1.0, + "source": "prompt_booking_lock_patient_flow_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_booking_lock_patient_flow_\u06f2_\u0627\u0631\u0633\u0627\u0644_patient_\u0648_for_self_\u062f\u0631_submitdata_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/booking-lock-patient-flow.md", + "source_location": "L132", + "weight": 1.0, + "source": "prompt_booking_lock_patient_flow_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_booking_lock_patient_flow_\u06f3_\u062a\u0627\u06cc\u0645\u0631_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0631_\u0645\u0628\u0646\u0627\u06cc_expires_at_paying_index_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/booking-lock-patient-flow.md", + "source_location": "L148", + "weight": 1.0, + "source": "prompt_booking_lock_patient_flow_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_booking_lock_patient_flow_\u06f4_ux_\u0646\u0647\u0627\u06cc\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/booking-send-representation.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_booking_send_representation", + "target": "prompt_booking_send_representation_\u0627\u0631\u0633\u0627\u0644_city_id_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u062c\u0627\u0631\u06cc_\u0647\u0646\u06af\u0627\u0645_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/booking-send-representation.md", + "source_location": "L7", + "weight": 1.0, + "source": "prompt_booking_send_representation_\u0627\u0631\u0633\u0627\u0644_city_id_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u062c\u0627\u0631\u06cc_\u0647\u0646\u06af\u0627\u0645_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", + "target": "prompt_booking_send_representation_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/booking-send-representation.md", + "source_location": "L17", + "weight": 1.0, + "source": "prompt_booking_send_representation_\u0627\u0631\u0633\u0627\u0644_city_id_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u062c\u0627\u0631\u06cc_\u0647\u0646\u06af\u0627\u0645_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", + "target": "prompt_booking_send_representation_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/booking-send-representation.md", + "source_location": "L13", + "weight": 1.0, + "source": "prompt_booking_send_representation_\u0627\u0631\u0633\u0627\u0644_city_id_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u062c\u0627\u0631\u06cc_\u0647\u0646\u06af\u0627\u0645_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", + "target": "prompt_booking_send_representation_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/booking-send-representation.md", + "source_location": "L73", + "weight": 1.0, + "source": "prompt_booking_send_representation_\u0627\u0631\u0633\u0627\u0644_city_id_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u062c\u0627\u0631\u06cc_\u0647\u0646\u06af\u0627\u0645_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", + "target": "prompt_booking_send_representation_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/booking-send-representation.md", + "source_location": "L27", + "weight": 1.0, + "source": "prompt_booking_send_representation_\u0627\u0631\u0633\u0627\u0644_city_id_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u062c\u0627\u0631\u06cc_\u0647\u0646\u06af\u0627\u0645_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", + "target": "prompt_booking_send_representation_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/booking-send-representation.md", + "source_location": "L46", + "weight": 1.0, + "source": "prompt_booking_send_representation_\u0627\u0631\u0633\u0627\u0644_city_id_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u062c\u0627\u0631\u06cc_\u0647\u0646\u06af\u0627\u0645_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", + "target": "prompt_booking_send_representation_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/booking-send-representation.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_booking_send_representation_\u0627\u0631\u0633\u0627\u0644_city_id_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u062c\u0627\u0631\u06cc_\u0647\u0646\u06af\u0627\u0645_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", + "target": "prompt_booking_send_representation_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/booking-send-representation.md", + "source_location": "L48", + "weight": 1.0, + "source": "prompt_booking_send_representation_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_booking_send_representation_\u06f1_\u062f\u0631_\u062f\u0633\u062a\u0631\u0633_\u0642\u0631\u0627\u0631_\u062f\u0627\u062f\u0646_city_id_\u062f\u0631_\u06a9\u0644\u0627\u06cc\u0646\u062a", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/booking-send-representation.md", + "source_location": "L52", + "weight": 1.0, + "source": "prompt_booking_send_representation_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_booking_send_representation_\u06f2_\u0627\u0641\u0632\u0648\u062f\u0646_city_id_\u0628\u0647_payload_\u0631\u0632\u0631\u0648", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/city-seo-optimization.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_city_seo_optimization", + "target": "prompt_city_seo_optimization_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u062a\u06a9_\u062a\u06a9_\u0634\u0647\u0631\u0647\u0627_\u062f\u0631_city_json_\u0633\u0637\u062d_\u062d\u0631\u0641\u0647_\u0627\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/city-seo-optimization.md", + "source_location": "L11", + "weight": 1.0, + "source": "prompt_city_seo_optimization_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u062a\u06a9_\u062a\u06a9_\u0634\u0647\u0631\u0647\u0627_\u062f\u0631_city_json_\u0633\u0637\u062d_\u062d\u0631\u0641\u0647_\u0627\u06cc", + "target": "prompt_city_seo_optimization_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/city-seo-optimization.md", + "source_location": "L26", + "weight": 1.0, + "source": "prompt_city_seo_optimization_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u062a\u06a9_\u062a\u06a9_\u0634\u0647\u0631\u0647\u0627_\u062f\u0631_city_json_\u0633\u0637\u062d_\u062d\u0631\u0641\u0647_\u0627\u06cc", + "target": "prompt_city_seo_optimization_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/city-seo-optimization.md", + "source_location": "L61", + "weight": 1.0, + "source": "prompt_city_seo_optimization_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u062a\u06a9_\u062a\u06a9_\u0634\u0647\u0631\u0647\u0627_\u062f\u0631_city_json_\u0633\u0637\u062d_\u062d\u0631\u0641\u0647_\u0627\u06cc", + "target": "prompt_city_seo_optimization_\u0641\u0647\u0631\u0633\u062a_\u06f3\u06f4_\u0631\u06a9\u0648\u0631\u062f_\u0647\u0645\u0647_\u0628\u0627\u06cc\u062f_\u067e\u0631\u062f\u0627\u0632\u0634_\u0634\u0648\u0646\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/city-seo-optimization.md", + "source_location": "L17", + "weight": 1.0, + "source": "prompt_city_seo_optimization_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u062a\u06a9_\u062a\u06a9_\u0634\u0647\u0631\u0647\u0627_\u062f\u0631_city_json_\u0633\u0637\u062d_\u062d\u0631\u0641\u0647_\u0627\u06cc", + "target": "prompt_city_seo_optimization_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/city-seo-optimization.md", + "source_location": "L7", + "weight": 1.0, + "source": "prompt_city_seo_optimization_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u062a\u06a9_\u062a\u06a9_\u0634\u0647\u0631\u0647\u0627_\u062f\u0631_city_json_\u0633\u0637\u062d_\u062d\u0631\u0641\u0647_\u0627\u06cc", + "target": "prompt_city_seo_optimization_\u0646\u0642\u0634", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/city-seo-optimization.md", + "source_location": "L160", + "weight": 1.0, + "source": "prompt_city_seo_optimization_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u062a\u06a9_\u062a\u06a9_\u0634\u0647\u0631\u0647\u0627_\u062f\u0631_city_json_\u0633\u0637\u062d_\u062d\u0631\u0641\u0647_\u0627\u06cc", + "target": "prompt_city_seo_optimization_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/city-seo-optimization.md", + "source_location": "L33", + "weight": 1.0, + "source": "prompt_city_seo_optimization_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u062a\u06a9_\u062a\u06a9_\u0634\u0647\u0631\u0647\u0627_\u062f\u0631_city_json_\u0633\u0637\u062d_\u062d\u0631\u0641\u0647_\u0627\u06cc", + "target": "prompt_city_seo_optimization_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/city-seo-optimization.md", + "source_location": "L100", + "weight": 1.0, + "source": "prompt_city_seo_optimization_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u062a\u06a9_\u062a\u06a9_\u0634\u0647\u0631\u0647\u0627_\u062f\u0631_city_json_\u0633\u0637\u062d_\u062d\u0631\u0641\u0647_\u0627\u06cc", + "target": "prompt_city_seo_optimization_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/city-seo-optimization.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_city_seo_optimization_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_seo_\u062a\u06a9_\u062a\u06a9_\u0634\u0647\u0631\u0647\u0627_\u062f\u0631_city_json_\u0633\u0637\u062d_\u062d\u0631\u0641\u0647_\u0627\u06cc", + "target": "prompt_city_seo_optimization_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/city-seo-optimization.md", + "source_location": "L102", + "weight": 1.0, + "source": "prompt_city_seo_optimization_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_city_seo_optimization_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_\u0641\u06cc\u0644\u062f_title_\u06cc\u06a9\u062a\u0627_\u0628\u0647_\u0647\u0631_\u0631\u06a9\u0648\u0631\u062f_\u0645\u0647\u0645_\u062a\u0631\u06cc\u0646", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/city-seo-optimization.md", + "source_location": "L119", + "weight": 1.0, + "source": "prompt_city_seo_optimization_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_city_seo_optimization_\u06f2_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_description_\u0645\u062a\u0627_\u062f\u06cc\u0633\u06a9\u0631\u06cc\u067e\u0634\u0646", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/city-seo-optimization.md", + "source_location": "L134", + "weight": 1.0, + "source": "prompt_city_seo_optimization_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_city_seo_optimization_\u06f3_\u0628\u0647\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_keywords", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/city-seo-optimization.md", + "source_location": "L140", + "weight": 1.0, + "source": "prompt_city_seo_optimization_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_city_seo_optimization_\u06f4_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_slogan_\u06cc\u06a9\u062a\u0627", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/city-seo-optimization.md", + "source_location": "L145", + "weight": 1.0, + "source": "prompt_city_seo_optimization_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_city_seo_optimization_\u06f5_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_footer_description_\u06cc\u06a9\u062a\u0627", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/city-seo-optimization.md", + "source_location": "L150", + "weight": 1.0, + "source": "prompt_city_seo_optimization_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_city_seo_optimization_\u06f6_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc_\u0627\u06af\u0631_\u06a9\u0627\u0631\u0628\u0631_\u062e\u0648\u0627\u0633\u062a_\u0628\u0647\u0628\u0648\u062f_\u0641\u0646\u06cc_\u062f\u0631_layout_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/city-seo-optimization.md", + "source_location": "L156", + "weight": 1.0, + "source": "prompt_city_seo_optimization_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_city_seo_optimization_\u06f7_\u0631\u06a9\u0648\u0631\u062f_\u0628\u0631\u0646\u062f_\u0627\u0635\u0644\u06cc_id_600", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_clinic_seo_schema_knowledge_panel", + "target": "prompt_clinic_seo_schema_knowledge_panel_schema_org_\u06a9\u0627\u0645\u0644_\u0648_knowledge_panel_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", + "source_location": "L7", + "weight": 1.0, + "source": "prompt_clinic_seo_schema_knowledge_panel_schema_org_\u06a9\u0627\u0645\u0644_\u0648_knowledge_panel_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", + "target": "prompt_clinic_seo_schema_knowledge_panel_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", + "source_location": "L38", + "weight": 1.0, + "source": "prompt_clinic_seo_schema_knowledge_panel_schema_org_\u06a9\u0627\u0645\u0644_\u0648_knowledge_panel_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", + "target": "prompt_clinic_seo_schema_knowledge_panel_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", + "source_location": "L13", + "weight": 1.0, + "source": "prompt_clinic_seo_schema_knowledge_panel_schema_org_\u06a9\u0627\u0645\u0644_\u0648_knowledge_panel_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", + "target": "prompt_clinic_seo_schema_knowledge_panel_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", + "source_location": "L250", + "weight": 1.0, + "source": "prompt_clinic_seo_schema_knowledge_panel_schema_org_\u06a9\u0627\u0645\u0644_\u0648_knowledge_panel_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", + "target": "prompt_clinic_seo_schema_knowledge_panel_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", + "source_location": "L46", + "weight": 1.0, + "source": "prompt_clinic_seo_schema_knowledge_panel_schema_org_\u06a9\u0627\u0645\u0644_\u0648_knowledge_panel_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", + "target": "prompt_clinic_seo_schema_knowledge_panel_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_api_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", + "source_location": "L85", + "weight": 1.0, + "source": "prompt_clinic_seo_schema_knowledge_panel_schema_org_\u06a9\u0627\u0645\u0644_\u0648_knowledge_panel_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", + "target": "prompt_clinic_seo_schema_knowledge_panel_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_clinic_seo_schema_knowledge_panel_schema_org_\u06a9\u0627\u0645\u0644_\u0648_knowledge_panel_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", + "target": "prompt_clinic_seo_schema_knowledge_panel_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", + "source_location": "L87", + "weight": 1.0, + "source": "prompt_clinic_seo_schema_knowledge_panel_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_clinic_seo_schema_knowledge_panel_\u06f1_\u0628\u0647\u0628\u0648\u062f_generatemetadata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", + "source_location": "L114", + "weight": 1.0, + "source": "prompt_clinic_seo_schema_knowledge_panel_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_clinic_seo_schema_knowledge_panel_\u06f2_\u062a\u0627\u0628\u0639_\u06a9\u0645\u06a9\u06cc_computeclinicrating", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", + "source_location": "L133", + "weight": 1.0, + "source": "prompt_clinic_seo_schema_knowledge_panel_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_clinic_seo_schema_knowledge_panel_\u06f3_\u0633\u0627\u062e\u062a_json_ld_\u06a9\u0627\u0645\u0644", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/clinic-seo-schema-knowledge-panel.md", + "source_location": "L217", + "weight": 1.0, + "source": "prompt_clinic_seo_schema_knowledge_panel_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_clinic_seo_schema_knowledge_panel_\u06f4_\u0628\u0647_\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc_breadcrumb", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_connect_panel_dashboard_to_api", + "target": "prompt_connect_panel_dashboard_to_api_\u0627\u062a\u0635\u0627\u0644_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0648_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_api_\u0648\u0627\u0642\u0639\u06cc_\u062d\u0630\u0641_\u062f\u0627\u062f\u0647_\u0647\u0627\u06cc_mock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", + "source_location": "L7", + "weight": 1.0, + "source": "prompt_connect_panel_dashboard_to_api_\u0627\u062a\u0635\u0627\u0644_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0648_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_api_\u0648\u0627\u0642\u0639\u06cc_\u062d\u0630\u0641_\u062f\u0627\u062f\u0647_\u0647\u0627\u06cc_mock", + "target": "prompt_connect_panel_dashboard_to_api_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", + "source_location": "L22", + "weight": 1.0, + "source": "prompt_connect_panel_dashboard_to_api_\u0627\u062a\u0635\u0627\u0644_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0648_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_api_\u0648\u0627\u0642\u0639\u06cc_\u062d\u0630\u0641_\u062f\u0627\u062f\u0647_\u0647\u0627\u06cc_mock", + "target": "prompt_connect_panel_dashboard_to_api_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", + "source_location": "L16", + "weight": 1.0, + "source": "prompt_connect_panel_dashboard_to_api_\u0627\u062a\u0635\u0627\u0644_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0648_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_api_\u0648\u0627\u0642\u0639\u06cc_\u062d\u0630\u0641_\u062f\u0627\u062f\u0647_\u0647\u0627\u06cc_mock", + "target": "prompt_connect_panel_dashboard_to_api_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", + "source_location": "L154", + "weight": 1.0, + "source": "prompt_connect_panel_dashboard_to_api_\u0627\u062a\u0635\u0627\u0644_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0648_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_api_\u0648\u0627\u0642\u0639\u06cc_\u062d\u0630\u0641_\u062f\u0627\u062f\u0647_\u0647\u0627\u06cc_mock", + "target": "prompt_connect_panel_dashboard_to_api_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", + "source_location": "L40", + "weight": 1.0, + "source": "prompt_connect_panel_dashboard_to_api_\u0627\u062a\u0635\u0627\u0644_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0648_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_api_\u0648\u0627\u0642\u0639\u06cc_\u062d\u0630\u0641_\u062f\u0627\u062f\u0647_\u0647\u0627\u06cc_mock", + "target": "prompt_connect_panel_dashboard_to_api_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", + "source_location": "L101", + "weight": 1.0, + "source": "prompt_connect_panel_dashboard_to_api_\u0627\u062a\u0635\u0627\u0644_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0648_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_api_\u0648\u0627\u0642\u0639\u06cc_\u062d\u0630\u0641_\u062f\u0627\u062f\u0647_\u0647\u0627\u06cc_mock", + "target": "prompt_connect_panel_dashboard_to_api_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_connect_panel_dashboard_to_api_\u0627\u062a\u0635\u0627\u0644_\u067e\u0646\u0644_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647_\u0648_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_api_\u0648\u0627\u0642\u0639\u06cc_\u062d\u0630\u0641_\u062f\u0627\u062f\u0647_\u0647\u0627\u06cc_mock", + "target": "prompt_connect_panel_dashboard_to_api_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", + "source_location": "L76", + "weight": 1.0, + "source": "prompt_connect_panel_dashboard_to_api_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "target": "prompt_connect_panel_dashboard_to_api_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u06a9\u0627\u0645\u0644\u0627_mock", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", + "source_location": "L88", + "weight": 1.0, + "source": "prompt_connect_panel_dashboard_to_api_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "target": "prompt_connect_panel_dashboard_to_api_\u0644\u0627\u06cc\u0647_\u06cc_api_\u0645\u0648\u062c\u0648\u062f_\u062f\u0631_services_response_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", + "source_location": "L42", + "weight": 1.0, + "source": "prompt_connect_panel_dashboard_to_api_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "target": "prompt_connect_panel_dashboard_to_api_\u067e\u0646\u0644_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u0645\u0648\u062c\u0648\u062f_\u0627\u0633\u062a_\u0648\u0644\u06cc_\u0646\u0627\u062f\u06cc\u062f\u0647_\u06af\u0631\u0641\u062a\u0647_\u0645\u06cc_\u0634\u0648\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", + "source_location": "L105", + "weight": 1.0, + "source": "prompt_connect_panel_dashboard_to_api_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_connect_panel_dashboard_to_api_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_\u062a\u0648\u0627\u0628\u0639_representation_dashboard_\u0628\u0647_services_response_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", + "source_location": "L124", + "weight": 1.0, + "source": "prompt_connect_panel_dashboard_to_api_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_connect_panel_dashboard_to_api_\u06f2_\u0648\u0635\u0644_\u06a9\u0631\u062f\u0646_header_\u0648_userdetail_\u067e\u0646\u0644_\u0628\u0647_representationinfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", + "source_location": "L131", + "weight": 1.0, + "source": "prompt_connect_panel_dashboard_to_api_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_connect_panel_dashboard_to_api_\u06f3_\u0635\u0641\u062d\u0647_\u06cc_dashboard_\u067e\u0646\u0644_\u0628\u0627_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", + "source_location": "L139", + "weight": 1.0, + "source": "prompt_connect_panel_dashboard_to_api_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_connect_panel_dashboard_to_api_\u06f4_\u0635\u0641\u062d\u0627\u062a_turns_\u0648_user_account_\u0648_add_doctor_\u067e\u0646\u0644", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/connect-panel-dashboard-to-api.md", + "source_location": "L145", + "weight": 1.0, + "source": "prompt_connect_panel_dashboard_to_api_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_connect_panel_dashboard_to_api_\u06f5_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u0628\u06cc\u0645\u0627\u0631_\u0628\u0627_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/currency-toman-display-front.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_currency_toman_display_front", + "target": "prompt_currency_toman_display_front_\u0648\u0627\u062d\u062f_\u067e\u0648\u0644_\u062a\u0648\u0645\u0627\u0646_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0646\u0645\u0627\u06cc\u0634_\u06f1\u06f0_\u0648\u0631\u0648\u062f\u06cc_\u06f1\u06f0_api_\u0631\u06cc\u0627\u0644_\u0645\u06cc_\u0645\u0627\u0646\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/currency-toman-display-front.md", + "source_location": "L7", + "weight": 1.0, + "source": "prompt_currency_toman_display_front_\u0648\u0627\u062d\u062f_\u067e\u0648\u0644_\u062a\u0648\u0645\u0627\u0646_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0646\u0645\u0627\u06cc\u0634_\u06f1\u06f0_\u0648\u0631\u0648\u062f\u06cc_\u06f1\u06f0_api_\u0631\u06cc\u0627\u0644_\u0645\u06cc_\u0645\u0627\u0646\u062f", + "target": "prompt_currency_toman_display_front_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/currency-toman-display-front.md", + "source_location": "L17", + "weight": 1.0, + "source": "prompt_currency_toman_display_front_\u0648\u0627\u062d\u062f_\u067e\u0648\u0644_\u062a\u0648\u0645\u0627\u0646_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0646\u0645\u0627\u06cc\u0634_\u06f1\u06f0_\u0648\u0631\u0648\u062f\u06cc_\u06f1\u06f0_api_\u0631\u06cc\u0627\u0644_\u0645\u06cc_\u0645\u0627\u0646\u062f", + "target": "prompt_currency_toman_display_front_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/currency-toman-display-front.md", + "source_location": "L13", + "weight": 1.0, + "source": "prompt_currency_toman_display_front_\u0648\u0627\u062d\u062f_\u067e\u0648\u0644_\u062a\u0648\u0645\u0627\u0646_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0646\u0645\u0627\u06cc\u0634_\u06f1\u06f0_\u0648\u0631\u0648\u062f\u06cc_\u06f1\u06f0_api_\u0631\u06cc\u0627\u0644_\u0645\u06cc_\u0645\u0627\u0646\u062f", + "target": "prompt_currency_toman_display_front_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/currency-toman-display-front.md", + "source_location": "L87", + "weight": 1.0, + "source": "prompt_currency_toman_display_front_\u0648\u0627\u062d\u062f_\u067e\u0648\u0644_\u062a\u0648\u0645\u0627\u0646_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0646\u0645\u0627\u06cc\u0634_\u06f1\u06f0_\u0648\u0631\u0648\u062f\u06cc_\u06f1\u06f0_api_\u0631\u06cc\u0627\u0644_\u0645\u06cc_\u0645\u0627\u0646\u062f", + "target": "prompt_currency_toman_display_front_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/currency-toman-display-front.md", + "source_location": "L31", + "weight": 1.0, + "source": "prompt_currency_toman_display_front_\u0648\u0627\u062d\u062f_\u067e\u0648\u0644_\u062a\u0648\u0645\u0627\u0646_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0646\u0645\u0627\u06cc\u0634_\u06f1\u06f0_\u0648\u0631\u0648\u062f\u06cc_\u06f1\u06f0_api_\u0631\u06cc\u0627\u0644_\u0645\u06cc_\u0645\u0627\u0646\u062f", + "target": "prompt_currency_toman_display_front_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/currency-toman-display-front.md", + "source_location": "L55", + "weight": 1.0, + "source": "prompt_currency_toman_display_front_\u0648\u0627\u062d\u062f_\u067e\u0648\u0644_\u062a\u0648\u0645\u0627\u0646_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0646\u0645\u0627\u06cc\u0634_\u06f1\u06f0_\u0648\u0631\u0648\u062f\u06cc_\u06f1\u06f0_api_\u0631\u06cc\u0627\u0644_\u0645\u06cc_\u0645\u0627\u0646\u062f", + "target": "prompt_currency_toman_display_front_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/currency-toman-display-front.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_currency_toman_display_front_\u0648\u0627\u062d\u062f_\u067e\u0648\u0644_\u062a\u0648\u0645\u0627\u0646_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0646\u0645\u0627\u06cc\u0634_\u06f1\u06f0_\u0648\u0631\u0648\u062f\u06cc_\u06f1\u06f0_api_\u0631\u06cc\u0627\u0644_\u0645\u06cc_\u0645\u0627\u0646\u062f", + "target": "prompt_currency_toman_display_front_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/currency-toman-display-front.md", + "source_location": "L45", + "weight": 1.0, + "source": "prompt_currency_toman_display_front_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "target": "prompt_currency_toman_display_front_app_dashboard_page_js_\u062a\u0628\u062f\u06cc\u0644_\u062f\u0633\u062a\u06cc_\u0646\u0627\u0647\u0645\u0627\u0647\u0646\u06af", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/currency-toman-display-front.md", + "source_location": "L50", + "weight": 1.0, + "source": "prompt_currency_toman_display_front_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "target": "prompt_currency_toman_display_front_app_payment_uuid_page_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/currency-toman-display-front.md", + "source_location": "L33", + "weight": 1.0, + "source": "prompt_currency_toman_display_front_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "target": "prompt_currency_toman_display_front_components_appointment_paying_index_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/currency-toman-display-front.md", + "source_location": "L57", + "weight": 1.0, + "source": "prompt_currency_toman_display_front_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_currency_toman_display_front_\u06f1_helper_\u0645\u0631\u06a9\u0632\u06cc_lib_money_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/currency-toman-display-front.md", + "source_location": "L67", + "weight": 1.0, + "source": "prompt_currency_toman_display_front_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_currency_toman_display_front_\u06f2_paying_index_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/currency-toman-display-front.md", + "source_location": "L73", + "weight": 1.0, + "source": "prompt_currency_toman_display_front_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_currency_toman_display_front_\u06f3_\u062a\u0631\u0627\u06a9\u0646\u0634_\u0647\u0627_\u0648_\u0645\u0648\u062c\u0648\u062f\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/currency-toman-display-front.md", + "source_location": "L79", + "weight": 1.0, + "source": "prompt_currency_toman_display_front_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_currency_toman_display_front_\u06f4_\u0635\u0641\u062d\u0647_\u0646\u062a\u06cc\u062c\u0647_\u067e\u0631\u062f\u0627\u062e\u062a", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/currency-toman-display-front.md", + "source_location": "L83", + "weight": 1.0, + "source": "prompt_currency_toman_display_front_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_currency_toman_display_front_\u06f5_\u062c\u0633\u062a\u062c\u0648\u06cc_\u0628\u0627\u0642\u06cc_\u0645\u0627\u0646\u062f\u0647_\u0631\u06cc\u0627\u0644", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/dashboard-tabs-real-data.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_dashboard_tabs_real_data", + "target": "prompt_dashboard_tabs_real_data_\u0627\u062a\u0635\u0627\u0644_\u062f\u0642\u06cc\u0642_\u0647\u0645\u0647_\u06cc_\u062a\u0628_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_backend", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/dashboard-tabs-real-data.md", + "source_location": "L7", + "weight": 1.0, + "source": "prompt_dashboard_tabs_real_data_\u0627\u062a\u0635\u0627\u0644_\u062f\u0642\u06cc\u0642_\u0647\u0645\u0647_\u06cc_\u062a\u0628_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_backend", + "target": "prompt_dashboard_tabs_real_data_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/dashboard-tabs-real-data.md", + "source_location": "L29", + "weight": 1.0, + "source": "prompt_dashboard_tabs_real_data_\u0627\u062a\u0635\u0627\u0644_\u062f\u0642\u06cc\u0642_\u0647\u0645\u0647_\u06cc_\u062a\u0628_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_backend", + "target": "prompt_dashboard_tabs_real_data_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/dashboard-tabs-real-data.md", + "source_location": "L23", + "weight": 1.0, + "source": "prompt_dashboard_tabs_real_data_\u0627\u062a\u0635\u0627\u0644_\u062f\u0642\u06cc\u0642_\u0647\u0645\u0647_\u06cc_\u062a\u0628_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_backend", + "target": "prompt_dashboard_tabs_real_data_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/dashboard-tabs-real-data.md", + "source_location": "L132", + "weight": 1.0, + "source": "prompt_dashboard_tabs_real_data_\u0627\u062a\u0635\u0627\u0644_\u062f\u0642\u06cc\u0642_\u0647\u0645\u0647_\u06cc_\u062a\u0628_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_backend", + "target": "prompt_dashboard_tabs_real_data_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/dashboard-tabs-real-data.md", + "source_location": "L44", + "weight": 1.0, + "source": "prompt_dashboard_tabs_real_data_\u0627\u062a\u0635\u0627\u0644_\u062f\u0642\u06cc\u0642_\u0647\u0645\u0647_\u06cc_\u062a\u0628_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_backend", + "target": "prompt_dashboard_tabs_real_data_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/dashboard-tabs-real-data.md", + "source_location": "L86", + "weight": 1.0, + "source": "prompt_dashboard_tabs_real_data_\u0627\u062a\u0635\u0627\u0644_\u062f\u0642\u06cc\u0642_\u0647\u0645\u0647_\u06cc_\u062a\u0628_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_backend", + "target": "prompt_dashboard_tabs_real_data_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/dashboard-tabs-real-data.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_dashboard_tabs_real_data_\u0627\u062a\u0635\u0627\u0644_\u062f\u0642\u06cc\u0642_\u0647\u0645\u0647_\u06cc_\u062a\u0628_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0647_\u062f\u0627\u062f\u0647_\u06cc_\u0648\u0627\u0642\u0639\u06cc_backend", + "target": "prompt_dashboard_tabs_real_data_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/dashboard-tabs-real-data.md", + "source_location": "L76", + "weight": 1.0, + "source": "prompt_dashboard_tabs_real_data_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_dashboard_tabs_real_data_\u0630\u062e\u06cc\u0631\u0647_\u062f\u0631_detailuser_index_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/dashboard-tabs-real-data.md", + "source_location": "L60", + "weight": 1.0, + "source": "prompt_dashboard_tabs_real_data_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_dashboard_tabs_real_data_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_backend_\u0627\u0632_user_profile_md_\u0648_entity_toarray", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/dashboard-tabs-real-data.md", + "source_location": "L46", + "weight": 1.0, + "source": "prompt_dashboard_tabs_real_data_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_dashboard_tabs_real_data_\u0645\u067e\u06cc\u0646\u06af_\u063a\u0644\u0637_\u0628\u06cc\u0645\u0647_\u062f\u0631_information_index_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/dashboard-tabs-real-data.md", + "source_location": "L88", + "weight": 1.0, + "source": "prompt_dashboard_tabs_real_data_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_dashboard_tabs_real_data_\u06f1_\u0645\u067e\u06cc\u0646\u06af_\u062f\u0631\u0633\u062a_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0647\u0646\u06af\u0627\u0645_\u0644\u0648\u062f_information_index_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/dashboard-tabs-real-data.md", + "source_location": "L115", + "weight": 1.0, + "source": "prompt_dashboard_tabs_real_data_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_dashboard_tabs_real_data_\u06f2_\u062a\u0623\u06cc\u06cc\u062f_\u0630\u062e\u06cc\u0631\u0647_\u0633\u0648\u0627\u0628\u0642_\u067e\u0632\u0634\u06a9\u06cc_other", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/dashboard-tabs-real-data.md", + "source_location": "L121", + "weight": 1.0, + "source": "prompt_dashboard_tabs_real_data_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_dashboard_tabs_real_data_\u06f3_\u062a\u0623\u06cc\u06cc\u062f_\u062a\u0628_\u0647\u0627\u06cc_\u0646\u0648\u0628\u062a_\u0647\u0627_\u0648_\u062a\u0631\u0627\u06a9\u0646\u0634_\u0647\u0627", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/dashboard-tabs-real-data.md", + "source_location": "L127", + "weight": 1.0, + "source": "prompt_dashboard_tabs_real_data_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_dashboard_tabs_real_data_\u06f4_\u062a\u0628_\u0647\u0627\u06cc_\u0646\u0638\u0631\u0627\u062a_\u0648_\u067e\u06cc\u0627\u0645_\u0647\u0627_\u0628\u062f\u0648\u0646_backend", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/doctor-poster-redesign.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_doctor_poster_redesign", + "target": "prompt_doctor_poster_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u062d\u0631\u0641\u0647_\u0627\u06cc_\u067e\u0648\u0633\u062a\u0631_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc_\u067e\u0632\u0634\u06a9_\u062f\u0627\u0646\u0644\u0648\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/doctor-poster-redesign.md", + "source_location": "L91", + "weight": 1.0, + "source": "prompt_doctor_poster_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u062d\u0631\u0641\u0647_\u0627\u06cc_\u067e\u0648\u0633\u062a\u0631_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc_\u067e\u0632\u0634\u06a9_\u062f\u0627\u0646\u0644\u0648\u062f", + "target": "prompt_doctor_poster_redesign_\u062f\u0627\u062f\u0647_\u0647\u0627\u06cc_\u062f\u0631_\u062f\u0633\u062a\u0631\u0633", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/doctor-poster-redesign.md", + "source_location": "L11", + "weight": 1.0, + "source": "prompt_doctor_poster_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u062d\u0631\u0641\u0647_\u0627\u06cc_\u067e\u0648\u0633\u062a\u0631_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc_\u067e\u0632\u0634\u06a9_\u062f\u0627\u0646\u0644\u0648\u062f", + "target": "prompt_doctor_poster_redesign_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/doctor-poster-redesign.md", + "source_location": "L24", + "weight": 1.0, + "source": "prompt_doctor_poster_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u062d\u0631\u0641\u0647_\u0627\u06cc_\u067e\u0648\u0633\u062a\u0631_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc_\u067e\u0632\u0634\u06a9_\u062f\u0627\u0646\u0644\u0648\u062f", + "target": "prompt_doctor_poster_redesign_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/doctor-poster-redesign.md", + "source_location": "L7", + "weight": 1.0, + "source": "prompt_doctor_poster_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u062d\u0631\u0641\u0647_\u0627\u06cc_\u067e\u0648\u0633\u062a\u0631_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc_\u067e\u0632\u0634\u06a9_\u062f\u0627\u0646\u0644\u0648\u062f", + "target": "prompt_doctor_poster_redesign_\u0646\u0642\u0634", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/doctor-poster-redesign.md", + "source_location": "L160", + "weight": 1.0, + "source": "prompt_doctor_poster_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u062d\u0631\u0641\u0647_\u0627\u06cc_\u067e\u0648\u0633\u062a\u0631_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc_\u067e\u0632\u0634\u06a9_\u062f\u0627\u0646\u0644\u0648\u062f", + "target": "prompt_doctor_poster_redesign_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/doctor-poster-redesign.md", + "source_location": "L17", + "weight": 1.0, + "source": "prompt_doctor_poster_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u062d\u0631\u0641\u0647_\u0627\u06cc_\u067e\u0648\u0633\u062a\u0631_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc_\u067e\u0632\u0634\u06a9_\u062f\u0627\u0646\u0644\u0648\u062f", + "target": "prompt_doctor_poster_redesign_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/doctor-poster-redesign.md", + "source_location": "L41", + "weight": 1.0, + "source": "prompt_doctor_poster_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u062d\u0631\u0641\u0647_\u0627\u06cc_\u067e\u0648\u0633\u062a\u0631_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc_\u067e\u0632\u0634\u06a9_\u062f\u0627\u0646\u0644\u0648\u062f", + "target": "prompt_doctor_poster_redesign_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/doctor-poster-redesign.md", + "source_location": "L97", + "weight": 1.0, + "source": "prompt_doctor_poster_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u062d\u0631\u0641\u0647_\u0627\u06cc_\u067e\u0648\u0633\u062a\u0631_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc_\u067e\u0632\u0634\u06a9_\u062f\u0627\u0646\u0644\u0648\u062f", + "target": "prompt_doctor_poster_redesign_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/doctor-poster-redesign.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_doctor_poster_redesign_\u0628\u0627\u0632\u0637\u0631\u0627\u062d\u06cc_\u062d\u0631\u0641\u0647_\u0627\u06cc_\u067e\u0648\u0633\u062a\u0631_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc_\u067e\u0632\u0634\u06a9_\u062f\u0627\u0646\u0644\u0648\u062f", + "target": "prompt_doctor_poster_redesign_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/doctor-poster-redesign.md", + "source_location": "L99", + "weight": 1.0, + "source": "prompt_doctor_poster_redesign_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_doctor_poster_redesign_\u06f1_\u06a9\u0627\u0646\u0648\u0627\u0633_\u062b\u0627\u0628\u062a_\u0648_\u0628\u0627\u06a9\u06cc\u0641\u06cc\u062a", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/doctor-poster-redesign.md", + "source_location": "L106", + "weight": 1.0, + "source": "prompt_doctor_poster_redesign_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_doctor_poster_redesign_\u06f2_\u0633\u06cc\u0633\u062a\u0645_\u0628\u0635\u0631\u06cc_\u0628\u0647_\u0639\u0646\u0648\u0627\u0646_ui_ux", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/doctor-poster-redesign.md", + "source_location": "L116", + "weight": 1.0, + "source": "prompt_doctor_poster_redesign_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_doctor_poster_redesign_\u06f3_\u0647\u062f\u0631_\u0628\u0631\u0646\u062f_\u0644\u0648\u06af\u0648_\u0627\u0644\u0632\u0627\u0645_\u06a9\u0627\u0631\u0628\u0631", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/doctor-poster-redesign.md", + "source_location": "L139", + "weight": 1.0, + "source": "prompt_doctor_poster_redesign_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_doctor_poster_redesign_\u06f4_\u0628\u062f\u0646\u0647_\u0628\u062e\u0634_\u0647\u0627\u06cc_\u0627\u0637\u0644\u0627\u0639\u0627\u062a\u06cc_\u0628\u0627_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0633\u0631\u0631\u06cc\u0632", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/doctor-poster-redesign.md", + "source_location": "L147", + "weight": 1.0, + "source": "prompt_doctor_poster_redesign_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_doctor_poster_redesign_\u06f5_\u0641\u0648\u062a\u0631_qr_cta_\u0648\u0627\u062a\u0631\u0645\u0627\u0631\u06a9_\u0644\u0648\u06af\u0648", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/doctor-poster-redesign.md", + "source_location": "L154", + "weight": 1.0, + "source": "prompt_doctor_poster_redesign_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_doctor_poster_redesign_\u06f6_\u062d\u0641\u0638_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u0628\u0627_\u067e\u0627\u06cc\u067e_\u0644\u0627\u06cc\u0646_\u062f\u0627\u0646\u0644\u0648\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_doctor_seo_schema_knowledge_panel", + "target": "prompt_doctor_seo_schema_knowledge_panel_seo_\u067e\u06cc\u0634\u0631\u0641\u062a\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_schema_\u06a9\u0627\u0645\u0644_sitelinks_knowledge_panel_local_seo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", + "source_location": "L9", + "weight": 1.0, + "source": "prompt_doctor_seo_schema_knowledge_panel_seo_\u067e\u06cc\u0634\u0631\u0641\u062a\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_schema_\u06a9\u0627\u0645\u0644_sitelinks_knowledge_panel_local_seo", + "target": "prompt_doctor_seo_schema_knowledge_panel_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", + "source_location": "L25", + "weight": 1.0, + "source": "prompt_doctor_seo_schema_knowledge_panel_seo_\u067e\u06cc\u0634\u0631\u0641\u062a\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_schema_\u06a9\u0627\u0645\u0644_sitelinks_knowledge_panel_local_seo", + "target": "prompt_doctor_seo_schema_knowledge_panel_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", + "source_location": "L17", + "weight": 1.0, + "source": "prompt_doctor_seo_schema_knowledge_panel_seo_\u067e\u06cc\u0634\u0631\u0641\u062a\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_schema_\u06a9\u0627\u0645\u0644_sitelinks_knowledge_panel_local_seo", + "target": "prompt_doctor_seo_schema_knowledge_panel_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", + "source_location": "L251", + "weight": 1.0, + "source": "prompt_doctor_seo_schema_knowledge_panel_seo_\u067e\u06cc\u0634\u0631\u0641\u062a\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_schema_\u06a9\u0627\u0645\u0644_sitelinks_knowledge_panel_local_seo", + "target": "prompt_doctor_seo_schema_knowledge_panel_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", + "source_location": "L36", + "weight": 1.0, + "source": "prompt_doctor_seo_schema_knowledge_panel_seo_\u067e\u06cc\u0634\u0631\u0641\u062a\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_schema_\u06a9\u0627\u0645\u0644_sitelinks_knowledge_panel_local_seo", + "target": "prompt_doctor_seo_schema_knowledge_panel_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", + "source_location": "L85", + "weight": 1.0, + "source": "prompt_doctor_seo_schema_knowledge_panel_seo_\u067e\u06cc\u0634\u0631\u0641\u062a\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_schema_\u06a9\u0627\u0645\u0644_sitelinks_knowledge_panel_local_seo", + "target": "prompt_doctor_seo_schema_knowledge_panel_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_doctor_seo_schema_knowledge_panel_seo_\u067e\u06cc\u0634\u0631\u0641\u062a\u0647_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_schema_\u06a9\u0627\u0645\u0644_sitelinks_knowledge_panel_local_seo", + "target": "prompt_doctor_seo_schema_knowledge_panel_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", + "source_location": "L38", + "weight": 1.0, + "source": "prompt_doctor_seo_schema_knowledge_panel_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "target": "prompt_doctor_seo_schema_knowledge_panel_app_doctor_slug_page_js_schema_\u0641\u0639\u0644\u06cc_\u0646\u0627\u0642\u0635", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", + "source_location": "L64", + "weight": 1.0, + "source": "prompt_doctor_seo_schema_knowledge_panel_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "target": "prompt_doctor_seo_schema_knowledge_panel_app_sitemap_js_\u0641\u0639\u0644\u0627_\u06cc\u06a9_\u0641\u0627\u06cc\u0644_\u0648\u0627\u062d\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", + "source_location": "L87", + "weight": 1.0, + "source": "prompt_doctor_seo_schema_knowledge_panel_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_doctor_seo_schema_knowledge_panel_\u06f1_schema_org_\u06a9\u0627\u0645\u0644_\u0628\u0631\u0627\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", + "source_location": "L170", + "weight": 1.0, + "source": "prompt_doctor_seo_schema_knowledge_panel_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_doctor_seo_schema_knowledge_panel_\u06f2_sitemap_\u062a\u0641\u06a9\u06cc\u06a9_\u0634\u062f\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", + "source_location": "L219", + "weight": 1.0, + "source": "prompt_doctor_seo_schema_knowledge_panel_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_doctor_seo_schema_knowledge_panel_\u06f3_\u0628\u0647_\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc_robots_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/doctor-seo-schema-knowledge-panel.md", + "source_location": "L232", + "weight": 1.0, + "source": "prompt_doctor_seo_schema_knowledge_panel_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_doctor_seo_schema_knowledge_panel_\u06f4_\u06a9\u0627\u0631\u062a_\u0634\u0628\u06a9\u0647_\u0647\u0627\u06cc_\u0627\u062c\u062a\u0645\u0627\u0639\u06cc_\u062f\u0631_ui_\u0645\u0634\u0631\u0648\u0637_\u0628\u0647_\u0648\u062c\u0648\u062f_\u0641\u06cc\u0644\u062f_backend", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_fix_appointment_booking_flow", + "target": "prompt_fix_appointment_booking_flow_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_\u0635\u0641\u062d\u0647_\u06cc_\u06af\u0631\u0641\u062a\u0646_\u0646\u0648\u0628\u062a_appointment_doctorid_\u0628\u0631\u0627\u06cc_\u0647\u0645_\u062e\u0648\u0627\u0646\u06cc_\u0628\u0627_api_\u0648\u0627\u0642\u0639\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L7", + "weight": 1.0, + "source": "prompt_fix_appointment_booking_flow_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_\u0635\u0641\u062d\u0647_\u06cc_\u06af\u0631\u0641\u062a\u0646_\u0646\u0648\u0628\u062a_appointment_doctorid_\u0628\u0631\u0627\u06cc_\u0647\u0645_\u062e\u0648\u0627\u0646\u06cc_\u0628\u0627_api_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_fix_appointment_booking_flow_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L88", + "weight": 1.0, + "source": "prompt_fix_appointment_booking_flow_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_\u0635\u0641\u062d\u0647_\u06cc_\u06af\u0631\u0641\u062a\u0646_\u0646\u0648\u0628\u062a_appointment_doctorid_\u0628\u0631\u0627\u06cc_\u0647\u0645_\u062e\u0648\u0627\u0646\u06cc_\u0628\u0627_api_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_fix_appointment_booking_flow_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L23", + "weight": 1.0, + "source": "prompt_fix_appointment_booking_flow_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_\u0635\u0641\u062d\u0647_\u06cc_\u06af\u0631\u0641\u062a\u0646_\u0646\u0648\u0628\u062a_appointment_doctorid_\u0628\u0631\u0627\u06cc_\u0647\u0645_\u062e\u0648\u0627\u0646\u06cc_\u0628\u0627_api_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_fix_appointment_booking_flow_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0648\u0627\u0642\u0639\u06cc_backend_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u0628\u0627_curl_\u0631\u0648\u06cc_https_clinic_pro_ddev_site", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L17", + "weight": 1.0, + "source": "prompt_fix_appointment_booking_flow_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_\u0635\u0641\u062d\u0647_\u06cc_\u06af\u0631\u0641\u062a\u0646_\u0646\u0648\u0628\u062a_appointment_doctorid_\u0628\u0631\u0627\u06cc_\u0647\u0645_\u062e\u0648\u0627\u0646\u06cc_\u0628\u0627_api_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_fix_appointment_booking_flow_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L278", + "weight": 1.0, + "source": "prompt_fix_appointment_booking_flow_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_\u0635\u0641\u062d\u0647_\u06cc_\u06af\u0631\u0641\u062a\u0646_\u0646\u0648\u0628\u062a_appointment_doctorid_\u0628\u0631\u0627\u06cc_\u0647\u0645_\u062e\u0648\u0627\u0646\u06cc_\u0628\u0627_api_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_fix_appointment_booking_flow_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L103", + "weight": 1.0, + "source": "prompt_fix_appointment_booking_flow_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_\u0635\u0641\u062d\u0647_\u06cc_\u06af\u0631\u0641\u062a\u0646_\u0646\u0648\u0628\u062a_appointment_doctorid_\u0628\u0631\u0627\u06cc_\u0647\u0645_\u062e\u0648\u0627\u0646\u06cc_\u0628\u0627_api_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_fix_appointment_booking_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_\u0645\u0634\u06a9\u0644_\u062f\u0627\u0631", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L195", + "weight": 1.0, + "source": "prompt_fix_appointment_booking_flow_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_\u0635\u0641\u062d\u0647_\u06cc_\u06af\u0631\u0641\u062a\u0646_\u0646\u0648\u0628\u062a_appointment_doctorid_\u0628\u0631\u0627\u06cc_\u0647\u0645_\u062e\u0648\u0627\u0646\u06cc_\u0628\u0627_api_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_fix_appointment_booking_flow_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_fix_appointment_booking_flow_\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc_\u0635\u0641\u062d\u0647_\u06cc_\u06af\u0631\u0641\u062a\u0646_\u0646\u0648\u0628\u062a_appointment_doctorid_\u0628\u0631\u0627\u06cc_\u0647\u0645_\u062e\u0648\u0627\u0646\u06cc_\u0628\u0627_api_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_fix_appointment_booking_flow_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L25", + "weight": 1.0, + "source": "prompt_fix_appointment_booking_flow_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0648\u0627\u0642\u0639\u06cc_backend_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u0628\u0627_curl_\u0631\u0648\u06cc_https_clinic_pro_ddev_site", + "target": "prompt_fix_appointment_booking_flow_\u06f1_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627_get_api_v1_appointment_slots_doctor_uuid_uuid_date_y_m_d_public", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L52", + "weight": 1.0, + "source": "prompt_fix_appointment_booking_flow_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0648\u0627\u0642\u0639\u06cc_backend_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u0628\u0627_curl_\u0631\u0648\u06cc_https_clinic_pro_ddev_site", + "target": "prompt_fix_appointment_booking_flow_\u06f2_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a_post_api_v1_appointment_auth", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L63", + "weight": 1.0, + "source": "prompt_fix_appointment_booking_flow_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0648\u0627\u0642\u0639\u06cc_backend_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u0628\u0627_curl_\u0631\u0648\u06cc_https_clinic_pro_ddev_site", + "target": "prompt_fix_appointment_booking_flow_\u06f3_\u067e\u0631\u062f\u0627\u062e\u062a_post_api_v1_payment_appointment_auth_\u0628\u0627\u06cc\u062f_\u0645\u0627\u0644\u06a9_\u0646\u0648\u0628\u062a_\u0628\u0627\u0634\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L74", + "weight": 1.0, + "source": "prompt_fix_appointment_booking_flow_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0648\u0627\u0642\u0639\u06cc_backend_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u0628\u0627_curl_\u0631\u0648\u06cc_https_clinic_pro_ddev_site", + "target": "prompt_fix_appointment_booking_flow_\u06f4_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_get_api_v1_user_profile_uuid_auth", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L78", + "weight": 1.0, + "source": "prompt_fix_appointment_booking_flow_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0648\u0627\u0642\u0639\u06cc_backend_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u0628\u0627_curl_\u0631\u0648\u06cc_https_clinic_pro_ddev_site", + "target": "prompt_fix_appointment_booking_flow_\u06f5_interceptor_\u0645\u0647\u0645_services_api_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L105", + "weight": 1.0, + "source": "prompt_fix_appointment_booking_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_\u0645\u0634\u06a9\u0644_\u062f\u0627\u0631", + "target": "prompt_fix_appointment_booking_flow_app_appointment_doctorid_page_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L144", + "weight": 1.0, + "source": "prompt_fix_appointment_booking_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_\u0645\u0634\u06a9\u0644_\u062f\u0627\u0631", + "target": "prompt_fix_appointment_booking_flow_app_component_date_datetime_hours_list_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L131", + "weight": 1.0, + "source": "prompt_fix_appointment_booking_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_\u0645\u0634\u06a9\u0644_\u062f\u0627\u0631", + "target": "prompt_fix_appointment_booking_flow_app_component_date_datetime_index_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L153", + "weight": 1.0, + "source": "prompt_fix_appointment_booking_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_\u0645\u0634\u06a9\u0644_\u062f\u0627\u0631", + "target": "prompt_fix_appointment_booking_flow_components_appointment_detail_submitdata_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L186", + "weight": 1.0, + "source": "prompt_fix_appointment_booking_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_\u0645\u0634\u06a9\u0644_\u062f\u0627\u0631", + "target": "prompt_fix_appointment_booking_flow_components_appointment_index_js_\u062e\u0648\u0627\u0646\u062f\u0646_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L171", + "weight": 1.0, + "source": "prompt_fix_appointment_booking_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_\u0645\u0634\u06a9\u0644_\u062f\u0627\u0631", + "target": "prompt_fix_appointment_booking_flow_components_appointment_paying_index_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L119", + "weight": 1.0, + "source": "prompt_fix_appointment_booking_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc_\u0645\u0634\u06a9\u0644_\u062f\u0627\u0631", + "target": "prompt_fix_appointment_booking_flow_services_response_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L199", + "weight": 1.0, + "source": "prompt_fix_appointment_booking_flow_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_appointment_booking_flow_\u06f1_\u0627\u0635\u0644\u0627\u062d_\u0644\u0627\u06cc\u0647_\u06cc_request_\u062f\u0631_services_response_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L219", + "weight": 1.0, + "source": "prompt_fix_appointment_booking_flow_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_appointment_booking_flow_\u06f2_\u0627\u0635\u0644\u0627\u062d_app_appointment_doctorid_page_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L225", + "weight": 1.0, + "source": "prompt_fix_appointment_booking_flow_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_appointment_booking_flow_\u06f3_\u0645\u067e_\u06a9\u0631\u062f\u0646_\u0633\u0627\u062e\u062a\u0627\u0631_\u0648\u0627\u0642\u0639\u06cc_\u0627\u0633\u0644\u0627\u062a_\u0628\u0647_ui_datetime_index_js_hours_list_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L233", + "weight": 1.0, + "source": "prompt_fix_appointment_booking_flow_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_appointment_booking_flow_\u06f4_\u0627\u0635\u0644\u0627\u062d_\u0633\u0627\u062e\u062a_\u0646\u0648\u0628\u062a_components_appointment_detail_submitdata_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L252", + "weight": 1.0, + "source": "prompt_fix_appointment_booking_flow_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_appointment_booking_flow_\u06f5_\u0627\u0635\u0644\u0627\u062d_\u067e\u0631\u062f\u0627\u062e\u062a_components_appointment_paying_index_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-booking-flow.md", + "source_location": "L274", + "weight": 1.0, + "source": "prompt_fix_appointment_booking_flow_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_appointment_booking_flow_\u06f6_\u0627\u0635\u0644\u0627\u062d_\u062e\u0648\u0627\u0646\u062f\u0646_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_components_appointment_index_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-payment-flow.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_fix_appointment_payment_flow", + "target": "prompt_fix_appointment_payment_flow_\u0631\u0641\u0639_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u062f\u0631_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-payment-flow.md", + "source_location": "L9", + "weight": 1.0, + "source": "prompt_fix_appointment_payment_flow_\u0631\u0641\u0639_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u062f\u0631_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646", + "target": "prompt_fix_appointment_payment_flow_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-payment-flow.md", + "source_location": "L22", + "weight": 1.0, + "source": "prompt_fix_appointment_payment_flow_\u0631\u0641\u0639_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u062f\u0631_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646", + "target": "prompt_fix_appointment_payment_flow_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-payment-flow.md", + "source_location": "L15", + "weight": 1.0, + "source": "prompt_fix_appointment_payment_flow_\u0631\u0641\u0639_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u062f\u0631_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646", + "target": "prompt_fix_appointment_payment_flow_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-payment-flow.md", + "source_location": "L120", + "weight": 1.0, + "source": "prompt_fix_appointment_payment_flow_\u0631\u0641\u0639_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u062f\u0631_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646", + "target": "prompt_fix_appointment_payment_flow_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-payment-flow.md", + "source_location": "L32", + "weight": 1.0, + "source": "prompt_fix_appointment_payment_flow_\u0631\u0641\u0639_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u062f\u0631_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646", + "target": "prompt_fix_appointment_payment_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-payment-flow.md", + "source_location": "L66", + "weight": 1.0, + "source": "prompt_fix_appointment_payment_flow_\u0631\u0641\u0639_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u062f\u0631_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646", + "target": "prompt_fix_appointment_payment_flow_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-payment-flow.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_fix_appointment_payment_flow_\u0631\u0641\u0639_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0648_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u062f\u0631_\u0646\u0648\u0628\u062a_\u06af\u06cc\u0631\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646", + "target": "prompt_fix_appointment_payment_flow_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-payment-flow.md", + "source_location": "L34", + "weight": 1.0, + "source": "prompt_fix_appointment_payment_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_fix_appointment_payment_flow_\u0628\u0627\u06af_\u06f1_submitdata_\u062e\u0648\u0627\u0646\u062f\u0646_\u0646\u062a\u06cc\u062c\u0647_\u06cc_\u0646\u0648\u0628\u062a", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-payment-flow.md", + "source_location": "L45", + "weight": 1.0, + "source": "prompt_fix_appointment_payment_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_fix_appointment_payment_flow_\u0628\u0627\u06af_\u06f2_paying_frontend_address_\u0648_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-payment-flow.md", + "source_location": "L57", + "weight": 1.0, + "source": "prompt_fix_appointment_payment_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_fix_appointment_payment_flow_\u0628\u0627\u06af_\u06f3_payment_uuid_page_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-payment-flow.md", + "source_location": "L68", + "weight": 1.0, + "source": "prompt_fix_appointment_payment_flow_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_appointment_payment_flow_\u06f1_\u0631\u0641\u0639_double_nest_\u062f\u0631_submitdata_\u0634\u0645\u0627\u0631\u0646\u062f\u0647_appointmentid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-payment-flow.md", + "source_location": "L81", + "weight": 1.0, + "source": "prompt_fix_appointment_payment_flow_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_appointment_payment_flow_\u06f2_\u0627\u0635\u0644\u0627\u062d_frontend_address_\u0648_redirect_url_\u062f\u0631_paying", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-payment-flow.md", + "source_location": "L98", + "weight": 1.0, + "source": "prompt_fix_appointment_payment_flow_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_appointment_payment_flow_\u06f3_\u062a\u0623\u06cc\u06cc\u062f_getpaymentconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-payment-flow.md", + "source_location": "L101", + "weight": 1.0, + "source": "prompt_fix_appointment_payment_flow_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_appointment_payment_flow_\u06f4_\u0627\u0635\u0644\u0627\u062d_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u062a\u06cc\u062c\u0647_app_payment_uuid_page_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-payment-flow.md", + "source_location": "L111", + "weight": 1.0, + "source": "prompt_fix_appointment_payment_flow_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_appointment_payment_flow_\u06f5_\u0635\u0641\u062d\u0647_\u06cc_\u0648\u0627\u0633\u0637_\u0646\u062a\u06cc\u062c\u0647_\u0627\u06af\u0631_\u06af\u0632\u06cc\u0646\u0647_\u0627\u0644\u0641_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-appointment-payment-flow.md", + "source_location": "L117", + "weight": 1.0, + "source": "prompt_fix_appointment_payment_flow_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_appointment_payment_flow_\u06f6_\u062a\u062b\u0628\u06cc\u062a_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u062d\u0633\u0627\u0628_\u06a9\u0627\u0631\u0628\u0631\u06cc_\u0627\u0646\u062c\u0627\u0645_\u0634\u062f\u0647_\u062a\u0623\u06cc\u06cc\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_fix_dashboard_uuid_and_lists", + "target": "prompt_fix_dashboard_uuid_and_lists_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u06a9\u0648\u06a9\u06cc_uuid_\u0627\u0634\u062a\u0628\u0627\u0647_url_\u063a\u0644\u0637_\u0646\u0648\u0628\u062a_\u0647\u0627_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627_\u0648_crash_\u0647\u062f\u0631", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", + "source_location": "L19", + "weight": 1.0, + "source": "prompt_fix_dashboard_uuid_and_lists_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u06a9\u0648\u06a9\u06cc_uuid_\u0627\u0634\u062a\u0628\u0627\u0647_url_\u063a\u0644\u0637_\u0646\u0648\u0628\u062a_\u0647\u0627_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627_\u0648_crash_\u0647\u062f\u0631", + "target": "prompt_fix_dashboard_uuid_and_lists_\u0631\u06cc\u0634\u0647_\u06cc_\u0627\u0635\u0644\u06cc_\u06a9\u0648\u06a9\u06cc_uuid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", + "source_location": "L10", + "weight": 1.0, + "source": "prompt_fix_dashboard_uuid_and_lists_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u06a9\u0648\u06a9\u06cc_uuid_\u0627\u0634\u062a\u0628\u0627\u0647_url_\u063a\u0644\u0637_\u0646\u0648\u0628\u062a_\u0647\u0627_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627_\u0648_crash_\u0647\u062f\u0631", + "target": "prompt_fix_dashboard_uuid_and_lists_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", + "source_location": "L28", + "weight": 1.0, + "source": "prompt_fix_dashboard_uuid_and_lists_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u06a9\u0648\u06a9\u06cc_uuid_\u0627\u0634\u062a\u0628\u0627\u0647_url_\u063a\u0644\u0637_\u0646\u0648\u0628\u062a_\u0647\u0627_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627_\u0648_crash_\u0647\u062f\u0631", + "target": "prompt_fix_dashboard_uuid_and_lists_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", + "source_location": "L128", + "weight": 1.0, + "source": "prompt_fix_dashboard_uuid_and_lists_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u06a9\u0648\u06a9\u06cc_uuid_\u0627\u0634\u062a\u0628\u0627\u0647_url_\u063a\u0644\u0637_\u0646\u0648\u0628\u062a_\u0647\u0627_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627_\u0648_crash_\u0647\u062f\u0631", + "target": "prompt_fix_dashboard_uuid_and_lists_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", + "source_location": "L39", + "weight": 1.0, + "source": "prompt_fix_dashboard_uuid_and_lists_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u06a9\u0648\u06a9\u06cc_uuid_\u0627\u0634\u062a\u0628\u0627\u0647_url_\u063a\u0644\u0637_\u0646\u0648\u0628\u062a_\u0647\u0627_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627_\u0648_crash_\u0647\u062f\u0631", + "target": "prompt_fix_dashboard_uuid_and_lists_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", + "source_location": "L63", + "weight": 1.0, + "source": "prompt_fix_dashboard_uuid_and_lists_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u06a9\u0648\u06a9\u06cc_uuid_\u0627\u0634\u062a\u0628\u0627\u0647_url_\u063a\u0644\u0637_\u0646\u0648\u0628\u062a_\u0647\u0627_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627_\u0648_crash_\u0647\u062f\u0631", + "target": "prompt_fix_dashboard_uuid_and_lists_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_fix_dashboard_uuid_and_lists_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u06a9\u0627\u0631\u0628\u0631_\u06a9\u0648\u06a9\u06cc_uuid_\u0627\u0634\u062a\u0628\u0627\u0647_url_\u063a\u0644\u0637_\u0646\u0648\u0628\u062a_\u0647\u0627_\u067e\u0631\u062f\u0627\u062e\u062a_\u0647\u0627_\u0648_crash_\u0647\u062f\u0631", + "target": "prompt_fix_dashboard_uuid_and_lists_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", + "source_location": "L48", + "weight": 1.0, + "source": "prompt_fix_dashboard_uuid_and_lists_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_fix_dashboard_uuid_and_lists_app_dashboard_page_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", + "source_location": "L55", + "weight": 1.0, + "source": "prompt_fix_dashboard_uuid_and_lists_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_fix_dashboard_uuid_and_lists_head_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", + "source_location": "L41", + "weight": 1.0, + "source": "prompt_fix_dashboard_uuid_and_lists_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_fix_dashboard_uuid_and_lists_services_response_js_url\u0647\u0627\u06cc_\u0646\u0627\u0645\u0648\u062c\u0648\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", + "source_location": "L65", + "weight": 1.0, + "source": "prompt_fix_dashboard_uuid_and_lists_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_dashboard_uuid_and_lists_\u06f1_\u06a9\u0648\u06a9\u06cc_uuid_uuid_\u06a9\u0627\u0631\u0628\u0631_sendreq_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", + "source_location": "L85", + "weight": 1.0, + "source": "prompt_fix_dashboard_uuid_and_lists_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_dashboard_uuid_and_lists_\u06f2_\u06af\u0627\u0631\u062f_null_\u062f\u0631_head_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", + "source_location": "L95", + "weight": 1.0, + "source": "prompt_fix_dashboard_uuid_and_lists_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_dashboard_uuid_and_lists_\u06f3_\u0627\u0635\u0644\u0627\u062d_url\u0647\u0627_\u062f\u0631_services_response_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", + "source_location": "L104", + "weight": 1.0, + "source": "prompt_fix_dashboard_uuid_and_lists_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_dashboard_uuid_and_lists_\u06f4_\u0628\u0647_\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc_caller\u0647\u0627_turns_transactions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-dashboard-uuid-and-lists.md", + "source_location": "L124", + "weight": 1.0, + "source": "prompt_fix_dashboard_uuid_and_lists_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_dashboard_uuid_and_lists_\u06f5_\u062f\u0631_\u0635\u0648\u0631\u062a_\u0644\u0632\u0648\u0645_app_dashboard_page_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_fix_doctor_free_turn_disabled", + "target": "prompt_fix_doctor_free_turn_disabled_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0648\u0628\u062a_\u0622\u0632\u0627\u062f_\u0648_\u062f\u06a9\u0645\u0647_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0627_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", + "source_location": "L7", + "weight": 1.0, + "source": "prompt_fix_doctor_free_turn_disabled_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0648\u0628\u062a_\u0622\u0632\u0627\u062f_\u0648_\u062f\u06a9\u0645\u0647_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0627_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644", + "target": "prompt_fix_doctor_free_turn_disabled_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", + "source_location": "L21", + "weight": 1.0, + "source": "prompt_fix_doctor_free_turn_disabled_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0648\u0628\u062a_\u0622\u0632\u0627\u062f_\u0648_\u062f\u06a9\u0645\u0647_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0627_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644", + "target": "prompt_fix_doctor_free_turn_disabled_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", + "source_location": "L15", + "weight": 1.0, + "source": "prompt_fix_doctor_free_turn_disabled_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0648\u0628\u062a_\u0622\u0632\u0627\u062f_\u0648_\u062f\u06a9\u0645\u0647_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0627_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644", + "target": "prompt_fix_doctor_free_turn_disabled_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", + "source_location": "L166", + "weight": 1.0, + "source": "prompt_fix_doctor_free_turn_disabled_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0648\u0628\u062a_\u0622\u0632\u0627\u062f_\u0648_\u062f\u06a9\u0645\u0647_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0627_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644", + "target": "prompt_fix_doctor_free_turn_disabled_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", + "source_location": "L29", + "weight": 1.0, + "source": "prompt_fix_doctor_free_turn_disabled_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0648\u0628\u062a_\u0622\u0632\u0627\u062f_\u0648_\u062f\u06a9\u0645\u0647_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0627_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644", + "target": "prompt_fix_doctor_free_turn_disabled_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", + "source_location": "L92", + "weight": 1.0, + "source": "prompt_fix_doctor_free_turn_disabled_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0648\u0628\u062a_\u0622\u0632\u0627\u062f_\u0648_\u062f\u06a9\u0645\u0647_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0627_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644", + "target": "prompt_fix_doctor_free_turn_disabled_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_fix_doctor_free_turn_disabled_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0646\u0648\u0628\u062a_\u0622\u0632\u0627\u062f_\u0648_\u062f\u06a9\u0645\u0647_\u0646\u0648\u0628\u062a_\u0628\u0631\u0627\u06cc_\u067e\u0632\u0634\u06a9_\u0628\u0627_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644", + "target": "prompt_fix_doctor_free_turn_disabled_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", + "source_location": "L31", + "weight": 1.0, + "source": "prompt_fix_doctor_free_turn_disabled_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "target": "prompt_fix_doctor_free_turn_disabled_app_component_itemdoctor_js_\u062d\u0648\u0627\u0644\u06cc_\u062e\u0637_\u06f8\u06f4", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", + "source_location": "L76", + "weight": 1.0, + "source": "prompt_fix_doctor_free_turn_disabled_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "target": "prompt_fix_doctor_free_turn_disabled_components_doctor_appointmentlist_index_js_\u0646\u0648\u0627\u0631_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062e\u0637_\u06f1\u06f6_\u06f3\u06f4", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", + "source_location": "L47", + "weight": 1.0, + "source": "prompt_fix_doctor_free_turn_disabled_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "target": "prompt_fix_doctor_free_turn_disabled_components_doctor_appointmentlist_itemappointment_js_\u062e\u0637_\u06f3\u06f6_\u06f5\u06f8", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", + "source_location": "L94", + "weight": 1.0, + "source": "prompt_fix_doctor_free_turn_disabled_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_doctor_free_turn_disabled_\u06f1_\u06a9\u0627\u0631\u062a_\u0644\u06cc\u0633\u062a_app_component_itemdoctor_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", + "source_location": "L105", + "weight": 1.0, + "source": "prompt_fix_doctor_free_turn_disabled_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_doctor_free_turn_disabled_\u06f2_\u0628\u0627\u06a9\u0633_\u062f\u0633\u06a9\u062a\u0627\u067e_components_doctor_appointmentlist_itemappointment_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctor-free-turn-disabled.md", + "source_location": "L139", + "weight": 1.0, + "source": "prompt_fix_doctor_free_turn_disabled_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_doctor_free_turn_disabled_\u06f3_\u0646\u0648\u0627\u0631_\u0645\u0648\u0628\u0627\u06cc\u0644_components_doctor_appointmentlist_index_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_fix_doctor_poster_download_image", + "target": "prompt_fix_doctor_poster_download_image_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644_\u0639\u06a9\u0633_\u0646\u0627\u062f\u0631\u0633\u062a_\u062f\u0631_\u067e\u0648\u0633\u062a\u0631_\u062f\u0627\u0646\u0644\u0648\u062f\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", + "source_location": "L7", + "weight": 1.0, + "source": "prompt_fix_doctor_poster_download_image_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644_\u0639\u06a9\u0633_\u0646\u0627\u062f\u0631\u0633\u062a_\u062f\u0631_\u067e\u0648\u0633\u062a\u0631_\u062f\u0627\u0646\u0644\u0648\u062f\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc", + "target": "prompt_fix_doctor_poster_download_image_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", + "source_location": "L24", + "weight": 1.0, + "source": "prompt_fix_doctor_poster_download_image_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644_\u0639\u06a9\u0633_\u0646\u0627\u062f\u0631\u0633\u062a_\u062f\u0631_\u067e\u0648\u0633\u062a\u0631_\u062f\u0627\u0646\u0644\u0648\u062f\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc", + "target": "prompt_fix_doctor_poster_download_image_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", + "source_location": "L14", + "weight": 1.0, + "source": "prompt_fix_doctor_poster_download_image_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644_\u0639\u06a9\u0633_\u0646\u0627\u062f\u0631\u0633\u062a_\u062f\u0631_\u067e\u0648\u0633\u062a\u0631_\u062f\u0627\u0646\u0644\u0648\u062f\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc", + "target": "prompt_fix_doctor_poster_download_image_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", + "source_location": "L163", + "weight": 1.0, + "source": "prompt_fix_doctor_poster_download_image_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644_\u0639\u06a9\u0633_\u0646\u0627\u062f\u0631\u0633\u062a_\u062f\u0631_\u067e\u0648\u0633\u062a\u0631_\u062f\u0627\u0646\u0644\u0648\u062f\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc", + "target": "prompt_fix_doctor_poster_download_image_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", + "source_location": "L35", + "weight": 1.0, + "source": "prompt_fix_doctor_poster_download_image_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644_\u0639\u06a9\u0633_\u0646\u0627\u062f\u0631\u0633\u062a_\u062f\u0631_\u067e\u0648\u0633\u062a\u0631_\u062f\u0627\u0646\u0644\u0648\u062f\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc", + "target": "prompt_fix_doctor_poster_download_image_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", + "source_location": "L89", + "weight": 1.0, + "source": "prompt_fix_doctor_poster_download_image_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644_\u0639\u06a9\u0633_\u0646\u0627\u062f\u0631\u0633\u062a_\u062f\u0631_\u067e\u0648\u0633\u062a\u0631_\u062f\u0627\u0646\u0644\u0648\u062f\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc", + "target": "prompt_fix_doctor_poster_download_image_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_fix_doctor_poster_download_image_\u0631\u0641\u0639_\u0645\u0634\u06a9\u0644_\u0639\u06a9\u0633_\u0646\u0627\u062f\u0631\u0633\u062a_\u062f\u0631_\u067e\u0648\u0633\u062a\u0631_\u062f\u0627\u0646\u0644\u0648\u062f\u06cc_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0627\u0634\u062a\u0631\u0627\u06a9_\u06af\u0630\u0627\u0631\u06cc", + "target": "prompt_fix_doctor_poster_download_image_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", + "source_location": "L37", + "weight": 1.0, + "source": "prompt_fix_doctor_poster_download_image_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "target": "prompt_fix_doctor_poster_download_image_components_doctor_detaildoctor_list_js_\u0628\u062e\u0634_\u062f\u0627\u0646\u0644\u0648\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", + "source_location": "L56", + "weight": 1.0, + "source": "prompt_fix_doctor_poster_download_image_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "target": "prompt_fix_doctor_poster_download_image_components_doctor_poster_imageprofile_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", + "source_location": "L77", + "weight": 1.0, + "source": "prompt_fix_doctor_poster_download_image_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "target": "prompt_fix_doctor_poster_download_image_components_doctor_poster_qrimg_js_\u062e\u0644\u0627\u0635\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", + "source_location": "L91", + "weight": 1.0, + "source": "prompt_fix_doctor_poster_download_image_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_doctor_poster_download_image_\u06f1_\u0645\u0646\u062a\u0638\u0631_\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc_\u06a9\u0627\u0645\u0644_\u0647\u0645\u0647_\u06cc_img_\u0647\u0627_\u0628\u0645\u0627\u0646_\u0642\u0628\u0644_\u0627\u0632_html2canvas", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", + "source_location": "L128", + "weight": 1.0, + "source": "prompt_fix_doctor_poster_download_image_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_doctor_poster_download_image_\u06f2_\u0627\u0637\u0645\u06cc\u0646\u0627\u0646_\u0627\u0632_\u0622\u0645\u0627\u062f\u0647_\u0628\u0648\u062f\u0646_qr_\u0642\u0628\u0644_\u0627\u0632_\u062f\u0627\u0646\u0644\u0648\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", + "source_location": "L137", + "weight": 1.0, + "source": "prompt_fix_doctor_poster_download_image_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_doctor_poster_download_image_\u06f3_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u0639\u06a9\u0633_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u0628\u0627_html2canvas", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctor-poster-download-image.md", + "source_location": "L158", + "weight": 1.0, + "source": "prompt_fix_doctor_poster_download_image_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_doctor_poster_download_image_\u06f4_ux_\u062f\u06a9\u0645\u0647_\u06cc_\u062f\u0627\u0646\u0644\u0648\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctors-filter-performance.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_fix_doctors_filter_performance", + "target": "prompt_fix_doctors_filter_performance_\u0641\u06cc\u06a9\u0633_\u06a9\u0646\u062f\u06cc_\u0648_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u0641\u06cc\u0644\u062a\u0631_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9\u0627\u0646", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctors-filter-performance.md", + "source_location": "L7", + "weight": 1.0, + "source": "prompt_fix_doctors_filter_performance_\u0641\u06cc\u06a9\u0633_\u06a9\u0646\u062f\u06cc_\u0648_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u0641\u06cc\u0644\u062a\u0631_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9\u0627\u0646", + "target": "prompt_fix_doctors_filter_performance_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctors-filter-performance.md", + "source_location": "L14", + "weight": 1.0, + "source": "prompt_fix_doctors_filter_performance_\u0641\u06cc\u06a9\u0633_\u06a9\u0646\u062f\u06cc_\u0648_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u0641\u06cc\u0644\u062a\u0631_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9\u0627\u0646", + "target": "prompt_fix_doctors_filter_performance_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctors-filter-performance.md", + "source_location": "L190", + "weight": 1.0, + "source": "prompt_fix_doctors_filter_performance_\u0641\u06cc\u06a9\u0633_\u06a9\u0646\u062f\u06cc_\u0648_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u0641\u06cc\u0644\u062a\u0631_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9\u0627\u0646", + "target": "prompt_fix_doctors_filter_performance_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctors-filter-performance.md", + "source_location": "L27", + "weight": 1.0, + "source": "prompt_fix_doctors_filter_performance_\u0641\u06cc\u06a9\u0633_\u06a9\u0646\u062f\u06cc_\u0648_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u0641\u06cc\u0644\u062a\u0631_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9\u0627\u0646", + "target": "prompt_fix_doctors_filter_performance_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctors-filter-performance.md", + "source_location": "L100", + "weight": 1.0, + "source": "prompt_fix_doctors_filter_performance_\u0641\u06cc\u06a9\u0633_\u06a9\u0646\u062f\u06cc_\u0648_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u0641\u06cc\u0644\u062a\u0631_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9\u0627\u0646", + "target": "prompt_fix_doctors_filter_performance_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctors-filter-performance.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_fix_doctors_filter_performance_\u0641\u06cc\u06a9\u0633_\u06a9\u0646\u062f\u06cc_\u0648_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u0641\u06cc\u0644\u062a\u0631_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9\u0627\u0646", + "target": "prompt_fix_doctors_filter_performance_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctors-filter-performance.md", + "source_location": "L29", + "weight": 1.0, + "source": "prompt_fix_doctors_filter_performance_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "target": "prompt_fix_doctors_filter_performance_\u0628\u0627\u06af_\u06f1_\u0645\u0648\u062f\u0627\u0644_\u0634\u0647\u0631_\u0627\u0633\u062a\u0627\u0646_\u062f\u06cc\u0631_\u0628\u0633\u062a\u0647_\u0645\u06cc_\u0634\u0648\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctors-filter-performance.md", + "source_location": "L54", + "weight": 1.0, + "source": "prompt_fix_doctors_filter_performance_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "target": "prompt_fix_doctors_filter_performance_\u0628\u0627\u06af_\u06f2_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u06a9\u0627\u0631_\u0646\u0645\u06cc_\u06a9\u0646\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctors-filter-performance.md", + "source_location": "L96", + "weight": 1.0, + "source": "prompt_fix_doctors_filter_performance_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "target": "prompt_fix_doctors_filter_performance_\u0628\u0627\u06af_\u06f3_\u06a9\u0646\u062f\u06cc_\u06a9\u0644\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctors-filter-performance.md", + "source_location": "L102", + "weight": 1.0, + "source": "prompt_fix_doctors_filter_performance_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_doctors_filter_performance_\u06f1_\u0641\u06cc\u06a9\u0633_\u0628\u0633\u062a\u0646_\u0633\u0631\u06cc\u0639_\u0645\u0648\u062f\u0627\u0644_\u0634\u0647\u0631_\u0627\u0633\u062a\u0627\u0646", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctors-filter-performance.md", + "source_location": "L123", + "weight": 1.0, + "source": "prompt_fix_doctors_filter_performance_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_doctors_filter_performance_\u06f2_\u0641\u06cc\u06a9\u0633_\u0628\u0633\u062a\u0646_\u0633\u0631\u06cc\u0639_\u0645\u0648\u062f\u0627\u0644_\u0641\u06cc\u0644\u062a\u0631", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctors-filter-performance.md", + "source_location": "L136", + "weight": 1.0, + "source": "prompt_fix_doctors_filter_performance_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_doctors_filter_performance_\u06f3_\u0641\u06cc\u06a9\u0633_crash_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0646\u06af\u0627\u0645_clear", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctors-filter-performance.md", + "source_location": "L161", + "weight": 1.0, + "source": "prompt_fix_doctors_filter_performance_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_doctors_filter_performance_\u06f4_\u0641\u06cc\u06a9\u0633_type_mismatch_\u062f\u0631_filterlist", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-doctors-filter-performance.md", + "source_location": "L174", + "weight": 1.0, + "source": "prompt_fix_doctors_filter_performance_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_doctors_filter_performance_\u06f5_\u0628\u0631\u0631\u0633\u06cc_\u06a9\u0646\u062f\u06cc_\u06a9\u0644\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-header-logged-state.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_fix_header_logged_state", + "target": "prompt_fix_header_logged_state_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0631\u0648\u062f_\u062b\u0628\u062a_\u0646\u0627\u0645_\u062f\u0631_\u0647\u062f\u0631_\u0628\u0627_\u0648\u062c\u0648\u062f_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0648\u062f\u0646_\u06a9\u0627\u0631\u0628\u0631", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-header-logged-state.md", + "source_location": "L7", + "weight": 1.0, + "source": "prompt_fix_header_logged_state_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0631\u0648\u062f_\u062b\u0628\u062a_\u0646\u0627\u0645_\u062f\u0631_\u0647\u062f\u0631_\u0628\u0627_\u0648\u062c\u0648\u062f_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0648\u062f\u0646_\u06a9\u0627\u0631\u0628\u0631", + "target": "prompt_fix_header_logged_state_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-header-logged-state.md", + "source_location": "L17", + "weight": 1.0, + "source": "prompt_fix_header_logged_state_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0631\u0648\u062f_\u062b\u0628\u062a_\u0646\u0627\u0645_\u062f\u0631_\u0647\u062f\u0631_\u0628\u0627_\u0648\u062c\u0648\u062f_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0648\u062f\u0646_\u06a9\u0627\u0631\u0628\u0631", + "target": "prompt_fix_header_logged_state_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-header-logged-state.md", + "source_location": "L13", + "weight": 1.0, + "source": "prompt_fix_header_logged_state_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0631\u0648\u062f_\u062b\u0628\u062a_\u0646\u0627\u0645_\u062f\u0631_\u0647\u062f\u0631_\u0628\u0627_\u0648\u062c\u0648\u062f_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0648\u062f\u0646_\u06a9\u0627\u0631\u0628\u0631", + "target": "prompt_fix_header_logged_state_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-header-logged-state.md", + "source_location": "L107", + "weight": 1.0, + "source": "prompt_fix_header_logged_state_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0631\u0648\u062f_\u062b\u0628\u062a_\u0646\u0627\u0645_\u062f\u0631_\u0647\u062f\u0631_\u0628\u0627_\u0648\u062c\u0648\u062f_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0648\u062f\u0646_\u06a9\u0627\u0631\u0628\u0631", + "target": "prompt_fix_header_logged_state_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-header-logged-state.md", + "source_location": "L28", + "weight": 1.0, + "source": "prompt_fix_header_logged_state_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0631\u0648\u062f_\u062b\u0628\u062a_\u0646\u0627\u0645_\u062f\u0631_\u0647\u062f\u0631_\u0628\u0627_\u0648\u062c\u0648\u062f_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0648\u062f\u0646_\u06a9\u0627\u0631\u0628\u0631", + "target": "prompt_fix_header_logged_state_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-header-logged-state.md", + "source_location": "L64", + "weight": 1.0, + "source": "prompt_fix_header_logged_state_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0631\u0648\u062f_\u062b\u0628\u062a_\u0646\u0627\u0645_\u062f\u0631_\u0647\u062f\u0631_\u0628\u0627_\u0648\u062c\u0648\u062f_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0648\u062f\u0646_\u06a9\u0627\u0631\u0628\u0631", + "target": "prompt_fix_header_logged_state_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-header-logged-state.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_fix_header_logged_state_\u0631\u0641\u0639_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0631\u0648\u062f_\u062b\u0628\u062a_\u0646\u0627\u0645_\u062f\u0631_\u0647\u062f\u0631_\u0628\u0627_\u0648\u062c\u0648\u062f_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0648\u062f\u0646_\u06a9\u0627\u0631\u0628\u0631", + "target": "prompt_fix_header_logged_state_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-header-logged-state.md", + "source_location": "L30", + "weight": 1.0, + "source": "prompt_fix_header_logged_state_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_fix_header_logged_state_header_content_js_\u062a\u0635\u0645\u06cc\u0645_\u0641\u0642\u0637_\u0628\u0631_\u0627\u0633\u0627\u0633_prop_\u0633\u0631\u0648\u0631", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-header-logged-state.md", + "source_location": "L47", + "weight": 1.0, + "source": "prompt_fix_header_logged_state_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_fix_header_logged_state_stlayout_js_\u0645\u0642\u062f\u0627\u0631_\u0627\u0648\u0644\u06cc\u0647_\u0627\u0632_\u06a9\u0648\u06a9\u06cc_\u0633\u0631\u0648\u0631", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-header-logged-state.md", + "source_location": "L58", + "weight": 1.0, + "source": "prompt_fix_header_logged_state_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_fix_header_logged_state_\u06a9\u0648\u06a9\u06cc_\u0647\u0627_\u0633\u0645\u062a_\u06a9\u0644\u0627\u06cc\u0646\u062a_\u0633\u062a_\u0645\u06cc_\u0634\u0648\u0646\u062f_sendreq_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-header-logged-state.md", + "source_location": "L66", + "weight": 1.0, + "source": "prompt_fix_header_logged_state_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_header_logged_state_\u06f1_\u062a\u0634\u062e\u06cc\u0635_\u0632\u0646\u062f\u0647_\u06cc_\u0644\u0627\u06af\u06cc\u0646_\u062f\u0631_header_content_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-header-logged-state.md", + "source_location": "L89", + "weight": 1.0, + "source": "prompt_fix_header_logged_state_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_header_logged_state_\u06f2_\u0648\u0627\u06a9\u0646\u0634_\u0628\u0647_\u062a\u063a\u06cc\u06cc\u0631_\u0645\u0633\u06cc\u0631_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc_\u0648\u0644\u06cc_\u062a\u0648\u0635\u06cc\u0647_\u0634\u062f\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-header-logged-state.md", + "source_location": "L103", + "weight": 1.0, + "source": "prompt_fix_header_logged_state_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_header_logged_state_\u06f3_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_logout", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_fix_login_bugs", + "target": "prompt_fix_login_bugs_\u0641\u06cc\u06a9\u0633_\u062f\u0648_\u0628\u0627\u06af_\u062f\u0631_\u0641\u0644\u0648_login", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L11", + "weight": 1.0, + "source": "prompt_fix_login_bugs_\u0641\u06cc\u06a9\u0633_\u062f\u0648_\u0628\u0627\u06af_\u062f\u0631_\u0641\u0644\u0648_login", + "target": "prompt_fix_login_bugs_\u0628\u0627\u06af_\u06f1_\u0634\u0645\u0627\u0631\u0647_\u0645\u0648\u0628\u0627\u06cc\u0644_\u0628\u0627_09_\u0627\u0636\u0627\u0641\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L37", + "weight": 1.0, + "source": "prompt_fix_login_bugs_\u0641\u06cc\u06a9\u0633_\u062f\u0648_\u0628\u0627\u06af_\u062f\u0631_\u0641\u0644\u0648_login", + "target": "prompt_fix_login_bugs_\u0628\u0627\u06af_\u06f2_redirect_\u0628\u0647_login_\u0628\u0639\u062f_\u0627\u0632_refresh_\u0635\u0641\u062d\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L7", + "weight": 1.0, + "source": "prompt_fix_login_bugs_\u0641\u06cc\u06a9\u0633_\u062f\u0648_\u0628\u0627\u06af_\u062f\u0631_\u0641\u0644\u0648_login", + "target": "prompt_fix_login_bugs_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L149", + "weight": 1.0, + "source": "prompt_fix_login_bugs_\u0641\u06cc\u06a9\u0633_\u062f\u0648_\u0628\u0627\u06af_\u062f\u0631_\u0641\u0644\u0648_login", + "target": "prompt_fix_login_bugs_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_fix_login_bugs_\u0641\u06cc\u06a9\u0633_\u062f\u0648_\u0628\u0627\u06af_\u062f\u0631_\u0641\u0644\u0648_login", + "target": "prompt_fix_login_bugs_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L17", + "weight": 1.0, + "source": "prompt_fix_login_bugs_\u0628\u0627\u06af_\u06f1_\u0634\u0645\u0627\u0631\u0647_\u0645\u0648\u0628\u0627\u06cc\u0644_\u0628\u0627_09_\u0627\u0636\u0627\u0641\u06cc", + "target": "prompt_fix_login_bugs_\u0639\u0644\u062a", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L27", + "weight": 1.0, + "source": "prompt_fix_login_bugs_\u0628\u0627\u06af_\u06f1_\u0634\u0645\u0627\u0631\u0647_\u0645\u0648\u0628\u0627\u06cc\u0644_\u0628\u0627_09_\u0627\u0636\u0627\u0641\u06cc", + "target": "prompt_fix_login_bugs_\u0641\u06cc\u06a9\u0633", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L13", + "weight": 1.0, + "source": "prompt_fix_login_bugs_\u0628\u0627\u06af_\u06f1_\u0634\u0645\u0627\u0631\u0647_\u0645\u0648\u0628\u0627\u06cc\u0644_\u0628\u0627_09_\u0627\u0636\u0627\u0641\u06cc", + "target": "prompt_fix_login_bugs_\u0645\u0634\u06a9\u0644", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L43", + "weight": 1.0, + "source": "prompt_fix_login_bugs_\u0628\u0627\u06af_\u06f2_redirect_\u0628\u0647_login_\u0628\u0639\u062f_\u0627\u0632_refresh_\u0635\u0641\u062d\u0647", + "target": "prompt_fix_login_bugs_\u0639\u0644\u062a_\u0627\u062d\u062a\u0645\u0627\u0644\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L65", + "weight": 1.0, + "source": "prompt_fix_login_bugs_\u0628\u0627\u06af_\u06f2_redirect_\u0628\u0647_login_\u0628\u0639\u062f_\u0627\u0632_refresh_\u0635\u0641\u062d\u0647", + "target": "prompt_fix_login_bugs_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L39", + "weight": 1.0, + "source": "prompt_fix_login_bugs_\u0628\u0627\u06af_\u06f2_redirect_\u0628\u0647_login_\u0628\u0639\u062f_\u0627\u0632_refresh_\u0635\u0641\u062d\u0647", + "target": "prompt_fix_login_bugs_\u0645\u0634\u06a9\u0644_39", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L77", + "weight": 1.0, + "source": "prompt_fix_login_bugs_\u0628\u0627\u06af_\u06f2_redirect_\u0628\u0647_login_\u0628\u0639\u062f_\u0627\u0632_refresh_\u0635\u0641\u062d\u0647", + "target": "prompt_fix_login_bugs_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L106", + "weight": 1.0, + "source": "prompt_fix_login_bugs_\u0628\u0627\u06af_\u06f2_redirect_\u0628\u0647_login_\u0628\u0639\u062f_\u0627\u0632_refresh_\u0635\u0641\u062d\u0647", + "target": "prompt_fix_login_bugs_\u0648\u0638\u0627\u06cc\u0641_\u0628\u0631\u0627\u06cc_\u062f\u06cc\u0628\u0627\u06af_\u0648_\u0641\u06cc\u06a9\u0633", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L108", + "weight": 1.0, + "source": "prompt_fix_login_bugs_\u0648\u0638\u0627\u06cc\u0641_\u0628\u0631\u0627\u06cc_\u062f\u06cc\u0628\u0627\u06af_\u0648_\u0641\u06cc\u06a9\u0633", + "target": "prompt_fix_login_bugs_\u06f1_\u0641\u06cc\u06a9\u0633_\u0628\u0627\u06af_\u06f1_\u0642\u0637\u0639\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L119", + "weight": 1.0, + "source": "prompt_fix_login_bugs_\u0648\u0638\u0627\u06cc\u0641_\u0628\u0631\u0627\u06cc_\u062f\u06cc\u0628\u0627\u06af_\u0648_\u0641\u06cc\u06a9\u0633", + "target": "prompt_fix_login_bugs_\u06f2_\u0628\u0631\u0631\u0633\u06cc_userinfo_cookie", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L129", + "weight": 1.0, + "source": "prompt_fix_login_bugs_\u0648\u0638\u0627\u06cc\u0641_\u0628\u0631\u0627\u06cc_\u062f\u06cc\u0628\u0627\u06af_\u0648_\u0641\u06cc\u06a9\u0633", + "target": "prompt_fix_login_bugs_\u06f3_\u0628\u0631\u0631\u0633\u06cc_endpoint_oauth_token_refresh", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-login-bugs.md", + "source_location": "L139", + "weight": 1.0, + "source": "prompt_fix_login_bugs_\u0648\u0638\u0627\u06cc\u0641_\u0628\u0631\u0627\u06cc_\u062f\u06cc\u0628\u0627\u06af_\u0648_\u0641\u06cc\u06a9\u0633", + "target": "prompt_fix_login_bugs_\u06f4_redirect_\u0628\u0639\u062f_\u0627\u0632_login", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-login-session-userinfo.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_fix_login_session_userinfo", + "target": "prompt_fix_login_session_userinfo_\u0631\u0641\u0639_\u0645\u0627\u0646\u062f\u0646_\u0635\u0641\u062d\u0647_\u06cc_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0639\u062f_\u0627\u0632_\u0648\u0627\u0631\u062f_\u06a9\u0631\u062f\u0646_\u06a9\u062f_otp_\u0646\u0634\u0633\u062a_\u0633\u0627\u062e\u062a\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-login-session-userinfo.md", + "source_location": "L7", + "weight": 1.0, + "source": "prompt_fix_login_session_userinfo_\u0631\u0641\u0639_\u0645\u0627\u0646\u062f\u0646_\u0635\u0641\u062d\u0647_\u06cc_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0639\u062f_\u0627\u0632_\u0648\u0627\u0631\u062f_\u06a9\u0631\u062f\u0646_\u06a9\u062f_otp_\u0646\u0634\u0633\u062a_\u0633\u0627\u062e\u062a\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", + "target": "prompt_fix_login_session_userinfo_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-login-session-userinfo.md", + "source_location": "L19", + "weight": 1.0, + "source": "prompt_fix_login_session_userinfo_\u0631\u0641\u0639_\u0645\u0627\u0646\u062f\u0646_\u0635\u0641\u062d\u0647_\u06cc_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0639\u062f_\u0627\u0632_\u0648\u0627\u0631\u062f_\u06a9\u0631\u062f\u0646_\u06a9\u062f_otp_\u0646\u0634\u0633\u062a_\u0633\u0627\u062e\u062a\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", + "target": "prompt_fix_login_session_userinfo_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-login-session-userinfo.md", + "source_location": "L15", + "weight": 1.0, + "source": "prompt_fix_login_session_userinfo_\u0631\u0641\u0639_\u0645\u0627\u0646\u062f\u0646_\u0635\u0641\u062d\u0647_\u06cc_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0639\u062f_\u0627\u0632_\u0648\u0627\u0631\u062f_\u06a9\u0631\u062f\u0646_\u06a9\u062f_otp_\u0646\u0634\u0633\u062a_\u0633\u0627\u062e\u062a\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", + "target": "prompt_fix_login_session_userinfo_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-login-session-userinfo.md", + "source_location": "L124", + "weight": 1.0, + "source": "prompt_fix_login_session_userinfo_\u0631\u0641\u0639_\u0645\u0627\u0646\u062f\u0646_\u0635\u0641\u062d\u0647_\u06cc_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0639\u062f_\u0627\u0632_\u0648\u0627\u0631\u062f_\u06a9\u0631\u062f\u0646_\u06a9\u062f_otp_\u0646\u0634\u0633\u062a_\u0633\u0627\u062e\u062a\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", + "target": "prompt_fix_login_session_userinfo_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-login-session-userinfo.md", + "source_location": "L29", + "weight": 1.0, + "source": "prompt_fix_login_session_userinfo_\u0631\u0641\u0639_\u0645\u0627\u0646\u062f\u0646_\u0635\u0641\u062d\u0647_\u06cc_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0639\u062f_\u0627\u0632_\u0648\u0627\u0631\u062f_\u06a9\u0631\u062f\u0646_\u06a9\u062f_otp_\u0646\u0634\u0633\u062a_\u0633\u0627\u062e\u062a\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", + "target": "prompt_fix_login_session_userinfo_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-login-session-userinfo.md", + "source_location": "L76", + "weight": 1.0, + "source": "prompt_fix_login_session_userinfo_\u0631\u0641\u0639_\u0645\u0627\u0646\u062f\u0646_\u0635\u0641\u062d\u0647_\u06cc_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0639\u062f_\u0627\u0632_\u0648\u0627\u0631\u062f_\u06a9\u0631\u062f\u0646_\u06a9\u062f_otp_\u0646\u0634\u0633\u062a_\u0633\u0627\u062e\u062a\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", + "target": "prompt_fix_login_session_userinfo_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-login-session-userinfo.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_fix_login_session_userinfo_\u0631\u0641\u0639_\u0645\u0627\u0646\u062f\u0646_\u0635\u0641\u062d\u0647_\u06cc_\u0644\u0627\u06af\u06cc\u0646_\u0628\u0639\u062f_\u0627\u0632_\u0648\u0627\u0631\u062f_\u06a9\u0631\u062f\u0646_\u06a9\u062f_otp_\u0646\u0634\u0633\u062a_\u0633\u0627\u062e\u062a\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", + "target": "prompt_fix_login_session_userinfo_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-login-session-userinfo.md", + "source_location": "L31", + "weight": 1.0, + "source": "prompt_fix_login_session_userinfo_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_fix_login_session_userinfo_sendreq_js_getinfo_\u0628\u0627\u06af_\u062f\u0627\u0631", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-login-session-userinfo.md", + "source_location": "L56", + "weight": 1.0, + "source": "prompt_fix_login_session_userinfo_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_fix_login_session_userinfo_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0648\u0627\u0642\u0639\u06cc_get_oauth_userinfo_\u0627\u0632_clinicpro_docs_api_auth_md", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-login-session-userinfo.md", + "source_location": "L78", + "weight": 1.0, + "source": "prompt_fix_login_session_userinfo_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_login_session_userinfo_\u06f1_\u062e\u0648\u0627\u0646\u062f\u0646_\u06a9\u0627\u0631\u0628\u0631_\u0627\u0632_res_data_\u0648_\u0633\u062a_\u06a9\u0631\u062f\u0646_\u06a9\u0648\u06a9\u06cc_\u0628\u0627_\u0634\u06cc\u0621_\u06a9\u0627\u0631\u0628\u0631", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-login-session-userinfo.md", + "source_location": "L110", + "weight": 1.0, + "source": "prompt_fix_login_session_userinfo_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_login_session_userinfo_\u06f2_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u0645\u0635\u0631\u0641_\u06a9\u0646\u0646\u062f\u0647_\u0647\u0627\u06cc_username", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-login-session-userinfo.md", + "source_location": "L120", + "weight": 1.0, + "source": "prompt_fix_login_session_userinfo_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_login_session_userinfo_\u06f3_\u062a\u0623\u06cc\u06cc\u062f_\u0639\u062f\u0645_\u0645\u0627\u0646\u062f\u0646_\u0628\u06cc_\u0635\u062f\u0627", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_fix_my_appointments_status_filter", + "target": "prompt_fix_my_appointments_status_filter_\u0631\u0641\u0639_\u0641\u06cc\u0644\u062a\u0631_\u0648\u0636\u0639\u06cc\u062a_\u062f\u0631_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0645\u0646_\u0646\u0648\u0628\u062a_\u062b\u0628\u062a_\u0634\u062f\u0647_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0627\u062f\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", + "source_location": "L9", + "weight": 1.0, + "source": "prompt_fix_my_appointments_status_filter_\u0631\u0641\u0639_\u0641\u06cc\u0644\u062a\u0631_\u0648\u0636\u0639\u06cc\u062a_\u062f\u0631_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0645\u0646_\u0646\u0648\u0628\u062a_\u062b\u0628\u062a_\u0634\u062f\u0647_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0627\u062f\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", + "target": "prompt_fix_my_appointments_status_filter_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", + "source_location": "L27", + "weight": 1.0, + "source": "prompt_fix_my_appointments_status_filter_\u0631\u0641\u0639_\u0641\u06cc\u0644\u062a\u0631_\u0648\u0636\u0639\u06cc\u062a_\u062f\u0631_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0645\u0646_\u0646\u0648\u0628\u062a_\u062b\u0628\u062a_\u0634\u062f\u0647_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0627\u062f\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", + "target": "prompt_fix_my_appointments_status_filter_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", + "source_location": "L17", + "weight": 1.0, + "source": "prompt_fix_my_appointments_status_filter_\u0631\u0641\u0639_\u0641\u06cc\u0644\u062a\u0631_\u0648\u0636\u0639\u06cc\u062a_\u062f\u0631_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0645\u0646_\u0646\u0648\u0628\u062a_\u062b\u0628\u062a_\u0634\u062f\u0647_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0627\u062f\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", + "target": "prompt_fix_my_appointments_status_filter_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", + "source_location": "L87", + "weight": 1.0, + "source": "prompt_fix_my_appointments_status_filter_\u0631\u0641\u0639_\u0641\u06cc\u0644\u062a\u0631_\u0648\u0636\u0639\u06cc\u062a_\u062f\u0631_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0645\u0646_\u0646\u0648\u0628\u062a_\u062b\u0628\u062a_\u0634\u062f\u0647_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0627\u062f\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", + "target": "prompt_fix_my_appointments_status_filter_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", + "source_location": "L35", + "weight": 1.0, + "source": "prompt_fix_my_appointments_status_filter_\u0631\u0641\u0639_\u0641\u06cc\u0644\u062a\u0631_\u0648\u0636\u0639\u06cc\u062a_\u062f\u0631_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0645\u0646_\u0646\u0648\u0628\u062a_\u062b\u0628\u062a_\u0634\u062f\u0647_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0627\u062f\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", + "target": "prompt_fix_my_appointments_status_filter_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", + "source_location": "L64", + "weight": 1.0, + "source": "prompt_fix_my_appointments_status_filter_\u0631\u0641\u0639_\u0641\u06cc\u0644\u062a\u0631_\u0648\u0636\u0639\u06cc\u062a_\u062f\u0631_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0645\u0646_\u0646\u0648\u0628\u062a_\u062b\u0628\u062a_\u0634\u062f\u0647_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0627\u062f\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", + "target": "prompt_fix_my_appointments_status_filter_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_fix_my_appointments_status_filter_\u0631\u0641\u0639_\u0641\u06cc\u0644\u062a\u0631_\u0648\u0636\u0639\u06cc\u062a_\u062f\u0631_\u0646\u0648\u0628\u062a_\u0647\u0627\u06cc_\u0645\u0646_\u0646\u0648\u0628\u062a_\u062b\u0628\u062a_\u0634\u062f\u0647_\u0646\u0645\u0627\u06cc\u0634_\u062f\u0627\u062f\u0647_\u0646\u0645\u06cc_\u0634\u0648\u062f", + "target": "prompt_fix_my_appointments_status_filter_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", + "source_location": "L66", + "weight": 1.0, + "source": "prompt_fix_my_appointments_status_filter_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_my_appointments_status_filter_\u06f1_\u0627\u0635\u0644\u0627\u062d_\u0646\u06af\u0627\u0634\u062a_\u062a\u0628_\u0647\u0627_\u062f\u0631_head_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-my-appointments-status-filter.md", + "source_location": "L83", + "weight": 1.0, + "source": "prompt_fix_my_appointments_status_filter_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_my_appointments_status_filter_\u06f2_\u062a\u0623\u06cc\u06cc\u062f_\u062c\u0631\u06cc\u0627\u0646", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-payment-gateway-flow.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_fix_payment_gateway_flow", + "target": "prompt_fix_payment_gateway_flow_\u0627\u0635\u0644\u0627\u062d_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0627\u0646\u062a\u062e\u0627\u0628_\u0641\u0642\u0637_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0628\u06a9_\u0627\u0646\u062f_\u0628\u0627\u0632\u06af\u0634\u062a_\u0628\u0647_\u062f\u0627\u0645\u0646\u0647_\u0645\u0628\u062f\u0623", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-payment-gateway-flow.md", + "source_location": "L9", + "weight": 1.0, + "source": "prompt_fix_payment_gateway_flow_\u0627\u0635\u0644\u0627\u062d_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0627\u0646\u062a\u062e\u0627\u0628_\u0641\u0642\u0637_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0628\u06a9_\u0627\u0646\u062f_\u0628\u0627\u0632\u06af\u0634\u062a_\u0628\u0647_\u062f\u0627\u0645\u0646\u0647_\u0645\u0628\u062f\u0623", + "target": "prompt_fix_payment_gateway_flow_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-payment-gateway-flow.md", + "source_location": "L30", + "weight": 1.0, + "source": "prompt_fix_payment_gateway_flow_\u0627\u0635\u0644\u0627\u062d_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0627\u0646\u062a\u062e\u0627\u0628_\u0641\u0642\u0637_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0628\u06a9_\u0627\u0646\u062f_\u0628\u0627\u0632\u06af\u0634\u062a_\u0628\u0647_\u062f\u0627\u0645\u0646\u0647_\u0645\u0628\u062f\u0623", + "target": "prompt_fix_payment_gateway_flow_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-payment-gateway-flow.md", + "source_location": "L21", + "weight": 1.0, + "source": "prompt_fix_payment_gateway_flow_\u0627\u0635\u0644\u0627\u062d_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0627\u0646\u062a\u062e\u0627\u0628_\u0641\u0642\u0637_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0628\u06a9_\u0627\u0646\u062f_\u0628\u0627\u0632\u06af\u0634\u062a_\u0628\u0647_\u062f\u0627\u0645\u0646\u0647_\u0645\u0628\u062f\u0623", + "target": "prompt_fix_payment_gateway_flow_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-payment-gateway-flow.md", + "source_location": "L154", + "weight": 1.0, + "source": "prompt_fix_payment_gateway_flow_\u0627\u0635\u0644\u0627\u062d_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0627\u0646\u062a\u062e\u0627\u0628_\u0641\u0642\u0637_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0628\u06a9_\u0627\u0646\u062f_\u0628\u0627\u0632\u06af\u0634\u062a_\u0628\u0647_\u062f\u0627\u0645\u0646\u0647_\u0645\u0628\u062f\u0623", + "target": "prompt_fix_payment_gateway_flow_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-payment-gateway-flow.md", + "source_location": "L53", + "weight": 1.0, + "source": "prompt_fix_payment_gateway_flow_\u0627\u0635\u0644\u0627\u062d_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0627\u0646\u062a\u062e\u0627\u0628_\u0641\u0642\u0637_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0628\u06a9_\u0627\u0646\u062f_\u0628\u0627\u0632\u06af\u0634\u062a_\u0628\u0647_\u062f\u0627\u0645\u0646\u0647_\u0645\u0628\u062f\u0623", + "target": "prompt_fix_payment_gateway_flow_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-payment-gateway-flow.md", + "source_location": "L93", + "weight": 1.0, + "source": "prompt_fix_payment_gateway_flow_\u0627\u0635\u0644\u0627\u062d_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0627\u0646\u062a\u062e\u0627\u0628_\u0641\u0642\u0637_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0628\u06a9_\u0627\u0646\u062f_\u0628\u0627\u0632\u06af\u0634\u062a_\u0628\u0647_\u062f\u0627\u0645\u0646\u0647_\u0645\u0628\u062f\u0623", + "target": "prompt_fix_payment_gateway_flow_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-payment-gateway-flow.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_fix_payment_gateway_flow_\u0627\u0635\u0644\u0627\u062d_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0627\u0646\u062a\u062e\u0627\u0628_\u0641\u0642\u0637_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0628\u06a9_\u0627\u0646\u062f_\u0628\u0627\u0632\u06af\u0634\u062a_\u0628\u0647_\u062f\u0627\u0645\u0646\u0647_\u0645\u0628\u062f\u0623", + "target": "prompt_fix_payment_gateway_flow_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-payment-gateway-flow.md", + "source_location": "L95", + "weight": 1.0, + "source": "prompt_fix_payment_gateway_flow_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_payment_gateway_flow_\u06f1_\u062e\u0648\u0627\u0646\u062f\u0646_gateways_\u0627\u0632_config_\u0648_\u0646\u06af\u0647_\u062f\u0627\u0631\u06cc_\u062f\u0631_state", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-payment-gateway-flow.md", + "source_location": "L116", + "weight": 1.0, + "source": "prompt_fix_payment_gateway_flow_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_payment_gateway_flow_\u06f2_\u067e\u0631_\u06a9\u0631\u062f\u0646_select_\u0627\u0632_gateways_\u0641\u0639\u0627\u0644", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-payment-gateway-flow.md", + "source_location": "L135", + "weight": 1.0, + "source": "prompt_fix_payment_gateway_flow_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_payment_gateway_flow_\u06f3_\u0627\u0631\u0633\u0627\u0644_\u062f\u0631\u06af\u0627\u0647_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u062f\u0647_\u0648_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u062f\u06a9\u0645\u0647_\u062f\u0631_\u0646\u0628\u0648\u062f_\u062f\u0631\u06af\u0627\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_fix_token_storage_xss_headers", + "target": "prompt_fix_token_storage_xss_headers_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u0627\u0645\u0646\u06cc\u062a\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0630\u062e\u06cc\u0631\u0647_\u06cc_\u062a\u0648\u06a9\u0646_xss_\u0647\u062f\u0631\u0647\u0627_client_secret", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", + "source_location": "L9", + "weight": 1.0, + "source": "prompt_fix_token_storage_xss_headers_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u0627\u0645\u0646\u06cc\u062a\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0630\u062e\u06cc\u0631\u0647_\u06cc_\u062a\u0648\u06a9\u0646_xss_\u0647\u062f\u0631\u0647\u0627_client_secret", + "target": "prompt_fix_token_storage_xss_headers_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", + "source_location": "L22", + "weight": 1.0, + "source": "prompt_fix_token_storage_xss_headers_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u0627\u0645\u0646\u06cc\u062a\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0630\u062e\u06cc\u0631\u0647_\u06cc_\u062a\u0648\u06a9\u0646_xss_\u0647\u062f\u0631\u0647\u0627_client_secret", + "target": "prompt_fix_token_storage_xss_headers_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", + "source_location": "L18", + "weight": 1.0, + "source": "prompt_fix_token_storage_xss_headers_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u0627\u0645\u0646\u06cc\u062a\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0630\u062e\u06cc\u0631\u0647_\u06cc_\u062a\u0648\u06a9\u0646_xss_\u0647\u062f\u0631\u0647\u0627_client_secret", + "target": "prompt_fix_token_storage_xss_headers_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", + "source_location": "L166", + "weight": 1.0, + "source": "prompt_fix_token_storage_xss_headers_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u0627\u0645\u0646\u06cc\u062a\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0630\u062e\u06cc\u0631\u0647_\u06cc_\u062a\u0648\u06a9\u0646_xss_\u0647\u062f\u0631\u0647\u0627_client_secret", + "target": "prompt_fix_token_storage_xss_headers_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", + "source_location": "L36", + "weight": 1.0, + "source": "prompt_fix_token_storage_xss_headers_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u0627\u0645\u0646\u06cc\u062a\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0630\u062e\u06cc\u0631\u0647_\u06cc_\u062a\u0648\u06a9\u0646_xss_\u0647\u062f\u0631\u0647\u0627_client_secret", + "target": "prompt_fix_token_storage_xss_headers_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", + "source_location": "L74", + "weight": 1.0, + "source": "prompt_fix_token_storage_xss_headers_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u0627\u0645\u0646\u06cc\u062a\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0630\u062e\u06cc\u0631\u0647_\u06cc_\u062a\u0648\u06a9\u0646_xss_\u0647\u062f\u0631\u0647\u0627_client_secret", + "target": "prompt_fix_token_storage_xss_headers_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_fix_token_storage_xss_headers_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u0627\u0645\u0646\u06cc\u062a\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_\u0630\u062e\u06cc\u0631\u0647_\u06cc_\u062a\u0648\u06a9\u0646_xss_\u0647\u062f\u0631\u0647\u0627_client_secret", + "target": "prompt_fix_token_storage_xss_headers_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", + "source_location": "L76", + "weight": 1.0, + "source": "prompt_fix_token_storage_xss_headers_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_token_storage_xss_headers_\u06f1_oauth_\u0633\u062a_\u06a9\u0648\u06a9\u06cc_\u062f\u0631_\u06cc\u06a9_route_handler_\u0633\u0631\u0648\u0631_\u0633\u0627\u06cc\u062f_c_2_h_3", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", + "source_location": "L109", + "weight": 1.0, + "source": "prompt_fix_token_storage_xss_headers_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_token_storage_xss_headers_\u06f2_\u0645\u062f\u06cc\u0631\u06cc\u062a_access_token_\u062f\u0631_memory_\u0628\u0647_\u062c\u0627\u06cc_\u06a9\u0648\u06a9\u06cc_js_c_2", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", + "source_location": "L118", + "weight": 1.0, + "source": "prompt_fix_token_storage_xss_headers_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_token_storage_xss_headers_\u06f3_\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc_sanitizer_\u0628\u0627_dompurify_c_3", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/fix-token-storage-xss-headers.md", + "source_location": "L136", + "weight": 1.0, + "source": "prompt_fix_token_storage_xss_headers_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_fix_token_storage_xss_headers_\u06f4_security_headers_\u062f\u0631_next_config_js_h_2", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/liara-deploy.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_liara_deploy", + "target": "prompt_liara_deploy_\u062f\u06cc\u067e\u0644\u0648\u06cc_nobat724_front_\u0631\u0648\u06cc_liara_\u067e\u0644\u062a\u0641\u0631\u0645_next_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/liara-deploy.md", + "source_location": "L9", + "weight": 1.0, + "source": "prompt_liara_deploy_\u062f\u06cc\u067e\u0644\u0648\u06cc_nobat724_front_\u0631\u0648\u06cc_liara_\u067e\u0644\u062a\u0641\u0631\u0645_next_js", + "target": "prompt_liara_deploy_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/liara-deploy.md", + "source_location": "L22", + "weight": 1.0, + "source": "prompt_liara_deploy_\u062f\u06cc\u067e\u0644\u0648\u06cc_nobat724_front_\u0631\u0648\u06cc_liara_\u067e\u0644\u062a\u0641\u0631\u0645_next_js", + "target": "prompt_liara_deploy_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/liara-deploy.md", + "source_location": "L18", + "weight": 1.0, + "source": "prompt_liara_deploy_\u062f\u06cc\u067e\u0644\u0648\u06cc_nobat724_front_\u0631\u0648\u06cc_liara_\u067e\u0644\u062a\u0641\u0631\u0645_next_js", + "target": "prompt_liara_deploy_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/liara-deploy.md", + "source_location": "L181", + "weight": 1.0, + "source": "prompt_liara_deploy_\u062f\u06cc\u067e\u0644\u0648\u06cc_nobat724_front_\u0631\u0648\u06cc_liara_\u067e\u0644\u062a\u0641\u0631\u0645_next_js", + "target": "prompt_liara_deploy_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/liara-deploy.md", + "source_location": "L34", + "weight": 1.0, + "source": "prompt_liara_deploy_\u062f\u06cc\u067e\u0644\u0648\u06cc_nobat724_front_\u0631\u0648\u06cc_liara_\u067e\u0644\u062a\u0641\u0631\u0645_next_js", + "target": "prompt_liara_deploy_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/liara-deploy.md", + "source_location": "L76", + "weight": 1.0, + "source": "prompt_liara_deploy_\u062f\u06cc\u067e\u0644\u0648\u06cc_nobat724_front_\u0631\u0648\u06cc_liara_\u067e\u0644\u062a\u0641\u0631\u0645_next_js", + "target": "prompt_liara_deploy_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/liara-deploy.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_liara_deploy_\u062f\u06cc\u067e\u0644\u0648\u06cc_nobat724_front_\u0631\u0648\u06cc_liara_\u067e\u0644\u062a\u0641\u0631\u0645_next_js", + "target": "prompt_liara_deploy_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/liara-deploy.md", + "source_location": "L78", + "weight": 1.0, + "source": "prompt_liara_deploy_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_liara_deploy_\u06f1_\u062d\u0630\u0641_\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0646\u0641\u06cc\u06af_\u062a\u06a9\u0631\u0627\u0631\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/liara-deploy.md", + "source_location": "L87", + "weight": 1.0, + "source": "prompt_liara_deploy_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_liara_deploy_\u06f2_\u062a\u0639\u06cc\u06cc\u0646_\u0646\u0633\u062e\u0647_node_\u062f\u0631_package_json", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/liara-deploy.md", + "source_location": "L97", + "weight": 1.0, + "source": "prompt_liara_deploy_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_liara_deploy_\u06f3_\u0633\u0627\u062e\u062a_liara_json", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/liara-deploy.md", + "source_location": "L113", + "weight": 1.0, + "source": "prompt_liara_deploy_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_liara_deploy_\u06f4_\u0633\u0627\u062e\u062a_liaraignore", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/liara-deploy.md", + "source_location": "L143", + "weight": 1.0, + "source": "prompt_liara_deploy_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_liara_deploy_\u06f5_\u0633\u062a_\u06a9\u0631\u062f\u0646_env_\u0631\u0648\u06cc_liara_\u0642\u0628\u0644_\u0627\u0632_\u0627\u0648\u0644\u06cc\u0646_build", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/liara-deploy.md", + "source_location": "L162", + "weight": 1.0, + "source": "prompt_liara_deploy_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_liara_deploy_\u06f6_\u0627\u062a\u0635\u0627\u0644_\u062f\u0627\u0645\u0646\u0647_\u0647\u0627\u06cc_\u0686\u0646\u062f_\u0634\u0647\u0631\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/liara-deploy.md", + "source_location": "L166", + "weight": 1.0, + "source": "prompt_liara_deploy_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_liara_deploy_\u06f7_\u062f\u0631_\u0635\u0648\u0631\u062a_\u0646\u06cc\u0627\u0632_\u0627\u0641\u0632\u0648\u062f\u0646_\u062f\u0627\u0645\u0646\u0647_backend_\u0628\u0647_images_remotepatterns", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/liara-deploy.md", + "source_location": "L174", + "weight": 1.0, + "source": "prompt_liara_deploy_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_liara_deploy_\u06f8_\u062f\u06cc\u067e\u0644\u0648\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_nobat724_root_domain_not_city", + "target": "prompt_nobat724_root_domain_not_city_\u062f\u0627\u0645\u0646\u0647_\u0631\u06cc\u0634\u0647_nobat724_com_\u0646\u0628\u0627\u06cc\u062f_\u0645\u062b\u0644_\u0634\u0647\u0631_\u0631\u0641\u062a\u0627\u0631_\u06a9\u0646\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L7", + "weight": 1.0, + "source": "prompt_nobat724_root_domain_not_city_\u062f\u0627\u0645\u0646\u0647_\u0631\u06cc\u0634\u0647_nobat724_com_\u0646\u0628\u0627\u06cc\u062f_\u0645\u062b\u0644_\u0634\u0647\u0631_\u0631\u0641\u062a\u0627\u0631_\u06a9\u0646\u062f", + "target": "prompt_nobat724_root_domain_not_city_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L24", + "weight": 1.0, + "source": "prompt_nobat724_root_domain_not_city_\u062f\u0627\u0645\u0646\u0647_\u0631\u06cc\u0634\u0647_nobat724_com_\u0646\u0628\u0627\u06cc\u062f_\u0645\u062b\u0644_\u0634\u0647\u0631_\u0631\u0641\u062a\u0627\u0631_\u06a9\u0646\u062f", + "target": "prompt_nobat724_root_domain_not_city_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L17", + "weight": 1.0, + "source": "prompt_nobat724_root_domain_not_city_\u062f\u0627\u0645\u0646\u0647_\u0631\u06cc\u0634\u0647_nobat724_com_\u0646\u0628\u0627\u06cc\u062f_\u0645\u062b\u0644_\u0634\u0647\u0631_\u0631\u0641\u062a\u0627\u0631_\u06a9\u0646\u062f", + "target": "prompt_nobat724_root_domain_not_city_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L154", + "weight": 1.0, + "source": "prompt_nobat724_root_domain_not_city_\u062f\u0627\u0645\u0646\u0647_\u0631\u06cc\u0634\u0647_nobat724_com_\u0646\u0628\u0627\u06cc\u062f_\u0645\u062b\u0644_\u0634\u0647\u0631_\u0631\u0641\u062a\u0627\u0631_\u06a9\u0646\u062f", + "target": "prompt_nobat724_root_domain_not_city_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L35", + "weight": 1.0, + "source": "prompt_nobat724_root_domain_not_city_\u062f\u0627\u0645\u0646\u0647_\u0631\u06cc\u0634\u0647_nobat724_com_\u0646\u0628\u0627\u06cc\u062f_\u0645\u062b\u0644_\u0634\u0647\u0631_\u0631\u0641\u062a\u0627\u0631_\u06a9\u0646\u062f", + "target": "prompt_nobat724_root_domain_not_city_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L86", + "weight": 1.0, + "source": "prompt_nobat724_root_domain_not_city_\u062f\u0627\u0645\u0646\u0647_\u0631\u06cc\u0634\u0647_nobat724_com_\u0646\u0628\u0627\u06cc\u062f_\u0645\u062b\u0644_\u0634\u0647\u0631_\u0631\u0641\u062a\u0627\u0631_\u06a9\u0646\u062f", + "target": "prompt_nobat724_root_domain_not_city_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_nobat724_root_domain_not_city_\u062f\u0627\u0645\u0646\u0647_\u0631\u06cc\u0634\u0647_nobat724_com_\u0646\u0628\u0627\u06cc\u062f_\u0645\u062b\u0644_\u0634\u0647\u0631_\u0631\u0641\u062a\u0627\u0631_\u06a9\u0646\u062f", + "target": "prompt_nobat724_root_domain_not_city_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L49", + "weight": 1.0, + "source": "prompt_nobat724_root_domain_not_city_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "target": "prompt_nobat724_root_domain_not_city_app_doctors_page_js_\u0628\u0627\u06af_\u0646\u0648\u0639", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L73", + "weight": 1.0, + "source": "prompt_nobat724_root_domain_not_city_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "target": "prompt_nobat724_root_domain_not_city_app_specialties_page_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L57", + "weight": 1.0, + "source": "prompt_nobat724_root_domain_not_city_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "target": "prompt_nobat724_root_domain_not_city_components_doctors_index_js_\u0628\u0627\u06af_\u0646\u0648\u0639_\u062f\u0631_defaultfilter", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L65", + "weight": 1.0, + "source": "prompt_nobat724_root_domain_not_city_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "target": "prompt_nobat724_root_domain_not_city_context_provinceprovider_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L37", + "weight": 1.0, + "source": "prompt_nobat724_root_domain_not_city_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "target": "prompt_nobat724_root_domain_not_city_lib_getstateinfo_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L78", + "weight": 1.0, + "source": "prompt_nobat724_root_domain_not_city_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "target": "prompt_nobat724_root_domain_not_city_services_response_js_\u0628\u062f\u0648\u0646_\u062a\u063a\u06cc\u06cc\u0631_\u0641\u0642\u0637_\u0628\u0631\u0627\u06cc_\u0645\u0631\u062c\u0639", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L88", + "weight": 1.0, + "source": "prompt_nobat724_root_domain_not_city_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_nobat724_root_domain_not_city_\u06f1_\u062a\u0639\u0631\u06cc\u0641_\u0645\u0631\u06a9\u0632\u06cc_\u0631\u06cc\u0634\u0647_isroot_\u062f\u0631_getstateinfo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L106", + "weight": 1.0, + "source": "prompt_nobat724_root_domain_not_city_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_nobat724_root_domain_not_city_\u06f2_app_doctors_page_js_\u0631\u0648\u06cc_\u0631\u06cc\u0634\u0647_city_\u062a\u0632\u0631\u06cc\u0642_\u0646\u0634\u0648\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L117", + "weight": 1.0, + "source": "prompt_nobat724_root_domain_not_city_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_nobat724_root_domain_not_city_\u06f3_components_doctors_index_js_defaultfilter_\u0628\u062f\u0648\u0646_\u0634\u0647\u0631_\u0631\u0648\u06cc_\u0631\u06cc\u0634\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L128", + "weight": 1.0, + "source": "prompt_nobat724_root_domain_not_city_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_nobat724_root_domain_not_city_\u06f4_context_provinceprovider_js_cityid_\u0631\u0648\u06cc_\u0631\u06cc\u0634\u0647_null", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L139", + "weight": 1.0, + "source": "prompt_nobat724_root_domain_not_city_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_nobat724_root_domain_not_city_\u06f5_app_specialties_page_js_\u0648_\u0647\u0631_getspecialtydoctorcounts_\u0634\u0645\u0627\u0631\u0634_\u0645\u0628\u062a\u0646\u06cc_\u0628\u0631_\u0634\u0647\u0631", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/nobat724-root-domain-not-city.md", + "source_location": "L147", + "weight": 1.0, + "source": "prompt_nobat724_root_domain_not_city_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_nobat724_root_domain_not_city_\u06f6_\u062c\u0633\u062a\u062c\u0648\u06cc_\u0628\u0627\u0642\u06cc_\u0645\u0627\u0646\u062f\u0647_\u0627\u0644\u06af\u0648\u06cc_\u0628\u0627\u06af", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/nobat724-test-suite.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_nobat724_test_suite", + "target": "prompt_nobat724_test_suite_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u062a\u0633\u062a_\u0648_\u0646\u0648\u0634\u062a\u0646_\u062a\u0633\u062a_\u0633\u0648\u0626\u06cc\u062a_\u0628\u0631\u0627\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_nobat724_front", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/nobat724-test-suite.md", + "source_location": "L9", + "weight": 1.0, + "source": "prompt_nobat724_test_suite_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u062a\u0633\u062a_\u0648_\u0646\u0648\u0634\u062a\u0646_\u062a\u0633\u062a_\u0633\u0648\u0626\u06cc\u062a_\u0628\u0631\u0627\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_nobat724_front", + "target": "prompt_nobat724_test_suite_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/nobat724-test-suite.md", + "source_location": "L19", + "weight": 1.0, + "source": "prompt_nobat724_test_suite_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u062a\u0633\u062a_\u0648_\u0646\u0648\u0634\u062a\u0646_\u062a\u0633\u062a_\u0633\u0648\u0626\u06cc\u062a_\u0628\u0631\u0627\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_nobat724_front", + "target": "prompt_nobat724_test_suite_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/nobat724-test-suite.md", + "source_location": "L13", + "weight": 1.0, + "source": "prompt_nobat724_test_suite_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u062a\u0633\u062a_\u0648_\u0646\u0648\u0634\u062a\u0646_\u062a\u0633\u062a_\u0633\u0648\u0626\u06cc\u062a_\u0628\u0631\u0627\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_nobat724_front", + "target": "prompt_nobat724_test_suite_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/nobat724-test-suite.md", + "source_location": "L323", + "weight": 1.0, + "source": "prompt_nobat724_test_suite_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u062a\u0633\u062a_\u0648_\u0646\u0648\u0634\u062a\u0646_\u062a\u0633\u062a_\u0633\u0648\u0626\u06cc\u062a_\u0628\u0631\u0627\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_nobat724_front", + "target": "prompt_nobat724_test_suite_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/nobat724-test-suite.md", + "source_location": "L42", + "weight": 1.0, + "source": "prompt_nobat724_test_suite_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u062a\u0633\u062a_\u0648_\u0646\u0648\u0634\u062a\u0646_\u062a\u0633\u062a_\u0633\u0648\u0626\u06cc\u062a_\u0628\u0631\u0627\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_nobat724_front", + "target": "prompt_nobat724_test_suite_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/nobat724-test-suite.md", + "source_location": "L102", + "weight": 1.0, + "source": "prompt_nobat724_test_suite_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u062a\u0633\u062a_\u0648_\u0646\u0648\u0634\u062a\u0646_\u062a\u0633\u062a_\u0633\u0648\u0626\u06cc\u062a_\u0628\u0631\u0627\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_nobat724_front", + "target": "prompt_nobat724_test_suite_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/nobat724-test-suite.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_nobat724_test_suite_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u062a\u0633\u062a_\u0648_\u0646\u0648\u0634\u062a\u0646_\u062a\u0633\u062a_\u0633\u0648\u0626\u06cc\u062a_\u0628\u0631\u0627\u06cc_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc_nobat724_front", + "target": "prompt_nobat724_test_suite_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/nobat724-test-suite.md", + "source_location": "L104", + "weight": 1.0, + "source": "prompt_nobat724_test_suite_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_nobat724_test_suite_\u06f1_\u0646\u0635\u0628_\u0627\u0628\u0632\u0627\u0631_\u0648_\u06a9\u0627\u0646\u0641\u06cc\u06af_runner", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/nobat724-test-suite.md", + "source_location": "L171", + "weight": 1.0, + "source": "prompt_nobat724_test_suite_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_nobat724_test_suite_\u06f2_\u062a\u0633\u062a_\u062a\u0648\u0627\u0628\u0639_\u062e\u0627\u0644\u0635_utils_index_js_\u0627\u0648\u0644_\u0648_\u0633\u0646\u06af\u06cc\u0646_\u062a\u0631\u06cc\u0646", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/nobat724-test-suite.md", + "source_location": "L219", + "weight": 1.0, + "source": "prompt_nobat724_test_suite_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_nobat724_test_suite_\u06f3_\u062a\u0633\u062a_\u062e\u0627\u0644\u0635_lib", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/nobat724-test-suite.md", + "source_location": "L233", + "weight": 1.0, + "source": "prompt_nobat724_test_suite_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_nobat724_test_suite_\u06f4_\u062a\u0634\u062e\u06cc\u0635_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc_mock_host_window_next_headers", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/nobat724-test-suite.md", + "source_location": "L256", + "weight": 1.0, + "source": "prompt_nobat724_test_suite_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_nobat724_test_suite_\u06f5_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/nobat724-test-suite.md", + "source_location": "L295", + "weight": 1.0, + "source": "prompt_nobat724_test_suite_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_nobat724_test_suite_\u06f6_casl_context_\u0648_\u06cc\u06a9_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/nobat724-test-suite.md", + "source_location": "L314", + "weight": 1.0, + "source": "prompt_nobat724_test_suite_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_nobat724_test_suite_\u06f7_\u0627\u062c\u0631\u0627_\u0648_\u0633\u0628\u0632\u06a9\u0631\u062f\u0646_lint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/otp-sms-site-name.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_otp_sms_site_name", + "target": "prompt_otp_sms_site_name_\u0627\u0631\u0633\u0627\u0644_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0634\u0647\u0631_\u0647\u0645\u0631\u0627\u0647_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u06a9\u062f_\u062a\u0623\u06cc\u06cc\u062f_\u0628\u0631\u0627\u06cc_\u0627\u0633\u0645_\u0633\u0627\u06cc\u062a_\u062f\u0631_\u067e\u06cc\u0627\u0645\u06a9_otp", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/otp-sms-site-name.md", + "source_location": "L7", + "weight": 1.0, + "source": "prompt_otp_sms_site_name_\u0627\u0631\u0633\u0627\u0644_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0634\u0647\u0631_\u0647\u0645\u0631\u0627\u0647_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u06a9\u062f_\u062a\u0623\u06cc\u06cc\u062f_\u0628\u0631\u0627\u06cc_\u0627\u0633\u0645_\u0633\u0627\u06cc\u062a_\u062f\u0631_\u067e\u06cc\u0627\u0645\u06a9_otp", + "target": "prompt_otp_sms_site_name_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/otp-sms-site-name.md", + "source_location": "L15", + "weight": 1.0, + "source": "prompt_otp_sms_site_name_\u0627\u0631\u0633\u0627\u0644_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0634\u0647\u0631_\u0647\u0645\u0631\u0627\u0647_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u06a9\u062f_\u062a\u0623\u06cc\u06cc\u062f_\u0628\u0631\u0627\u06cc_\u0627\u0633\u0645_\u0633\u0627\u06cc\u062a_\u062f\u0631_\u067e\u06cc\u0627\u0645\u06a9_otp", + "target": "prompt_otp_sms_site_name_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/otp-sms-site-name.md", + "source_location": "L11", + "weight": 1.0, + "source": "prompt_otp_sms_site_name_\u0627\u0631\u0633\u0627\u0644_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0634\u0647\u0631_\u0647\u0645\u0631\u0627\u0647_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u06a9\u062f_\u062a\u0623\u06cc\u06cc\u062f_\u0628\u0631\u0627\u06cc_\u0627\u0633\u0645_\u0633\u0627\u06cc\u062a_\u062f\u0631_\u067e\u06cc\u0627\u0645\u06a9_otp", + "target": "prompt_otp_sms_site_name_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/otp-sms-site-name.md", + "source_location": "L90", + "weight": 1.0, + "source": "prompt_otp_sms_site_name_\u0627\u0631\u0633\u0627\u0644_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0634\u0647\u0631_\u0647\u0645\u0631\u0627\u0647_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u06a9\u062f_\u062a\u0623\u06cc\u06cc\u062f_\u0628\u0631\u0627\u06cc_\u0627\u0633\u0645_\u0633\u0627\u06cc\u062a_\u062f\u0631_\u067e\u06cc\u0627\u0645\u06a9_otp", + "target": "prompt_otp_sms_site_name_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/otp-sms-site-name.md", + "source_location": "L23", + "weight": 1.0, + "source": "prompt_otp_sms_site_name_\u0627\u0631\u0633\u0627\u0644_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0634\u0647\u0631_\u0647\u0645\u0631\u0627\u0647_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u06a9\u062f_\u062a\u0623\u06cc\u06cc\u062f_\u0628\u0631\u0627\u06cc_\u0627\u0633\u0645_\u0633\u0627\u06cc\u062a_\u062f\u0631_\u067e\u06cc\u0627\u0645\u06a9_otp", + "target": "prompt_otp_sms_site_name_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/otp-sms-site-name.md", + "source_location": "L49", + "weight": 1.0, + "source": "prompt_otp_sms_site_name_\u0627\u0631\u0633\u0627\u0644_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0634\u0647\u0631_\u0647\u0645\u0631\u0627\u0647_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u06a9\u062f_\u062a\u0623\u06cc\u06cc\u062f_\u0628\u0631\u0627\u06cc_\u0627\u0633\u0645_\u0633\u0627\u06cc\u062a_\u062f\u0631_\u067e\u06cc\u0627\u0645\u06a9_otp", + "target": "prompt_otp_sms_site_name_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/otp-sms-site-name.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_otp_sms_site_name_\u0627\u0631\u0633\u0627\u0644_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0634\u0647\u0631_\u0647\u0645\u0631\u0627\u0647_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u06a9\u062f_\u062a\u0623\u06cc\u06cc\u062f_\u0628\u0631\u0627\u06cc_\u0627\u0633\u0645_\u0633\u0627\u06cc\u062a_\u062f\u0631_\u067e\u06cc\u0627\u0645\u06a9_otp", + "target": "prompt_otp_sms_site_name_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/otp-sms-site-name.md", + "source_location": "L51", + "weight": 1.0, + "source": "prompt_otp_sms_site_name_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_otp_sms_site_name_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_domain_\u0628\u0647_wrapper_sendcode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/otp-sms-site-name.md", + "source_location": "L68", + "weight": 1.0, + "source": "prompt_otp_sms_site_name_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_otp_sms_site_name_\u06f2_\u067e\u0627\u0633_\u062f\u0627\u062f\u0646_\u062f\u0627\u0645\u0646\u0647_\u06cc_\u0641\u0639\u0644\u06cc_\u0627\u0632_\u0635\u0641\u062d\u0647_\u0647\u0627\u06cc_\u0641\u0631\u0627\u062e\u0648\u0627\u0646", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/payment-flow-frontend.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_payment_flow_frontend", + "target": "prompt_payment_flow_frontend_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0633\u0645\u062a_\u06a9\u0644\u0627\u06cc\u0646\u062a_\u0627\u0646\u062a\u0642\u0627\u0644_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u0628\u06a9_\u0627\u0646\u062f_\u0635\u0641\u062d\u0627\u062a_\u0646\u062a\u06cc\u062c\u0647_frontend", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/payment-flow-frontend.md", + "source_location": "L7", + "weight": 1.0, + "source": "prompt_payment_flow_frontend_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0633\u0645\u062a_\u06a9\u0644\u0627\u06cc\u0646\u062a_\u0627\u0646\u062a\u0642\u0627\u0644_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u0628\u06a9_\u0627\u0646\u062f_\u0635\u0641\u062d\u0627\u062a_\u0646\u062a\u06cc\u062c\u0647_frontend", + "target": "prompt_payment_flow_frontend_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/payment-flow-frontend.md", + "source_location": "L24", + "weight": 1.0, + "source": "prompt_payment_flow_frontend_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0633\u0645\u062a_\u06a9\u0644\u0627\u06cc\u0646\u062a_\u0627\u0646\u062a\u0642\u0627\u0644_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u0628\u06a9_\u0627\u0646\u062f_\u0635\u0641\u062d\u0627\u062a_\u0646\u062a\u06cc\u062c\u0647_frontend", + "target": "prompt_payment_flow_frontend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/payment-flow-frontend.md", + "source_location": "L15", + "weight": 1.0, + "source": "prompt_payment_flow_frontend_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0633\u0645\u062a_\u06a9\u0644\u0627\u06cc\u0646\u062a_\u0627\u0646\u062a\u0642\u0627\u0644_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u0628\u06a9_\u0627\u0646\u062f_\u0635\u0641\u062d\u0627\u062a_\u0646\u062a\u06cc\u062c\u0647_frontend", + "target": "prompt_payment_flow_frontend_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/payment-flow-frontend.md", + "source_location": "L94", + "weight": 1.0, + "source": "prompt_payment_flow_frontend_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0633\u0645\u062a_\u06a9\u0644\u0627\u06cc\u0646\u062a_\u0627\u0646\u062a\u0642\u0627\u0644_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u0628\u06a9_\u0627\u0646\u062f_\u0635\u0641\u062d\u0627\u062a_\u0646\u062a\u06cc\u062c\u0647_frontend", + "target": "prompt_payment_flow_frontend_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/payment-flow-frontend.md", + "source_location": "L33", + "weight": 1.0, + "source": "prompt_payment_flow_frontend_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0633\u0645\u062a_\u06a9\u0644\u0627\u06cc\u0646\u062a_\u0627\u0646\u062a\u0642\u0627\u0644_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u0628\u06a9_\u0627\u0646\u062f_\u0635\u0641\u062d\u0627\u062a_\u0646\u062a\u06cc\u062c\u0647_frontend", + "target": "prompt_payment_flow_frontend_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/payment-flow-frontend.md", + "source_location": "L53", + "weight": 1.0, + "source": "prompt_payment_flow_frontend_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0633\u0645\u062a_\u06a9\u0644\u0627\u06cc\u0646\u062a_\u0627\u0646\u062a\u0642\u0627\u0644_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u0628\u06a9_\u0627\u0646\u062f_\u0635\u0641\u062d\u0627\u062a_\u0646\u062a\u06cc\u062c\u0647_frontend", + "target": "prompt_payment_flow_frontend_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/payment-flow-frontend.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_payment_flow_frontend_\u062c\u0631\u06cc\u0627\u0646_\u067e\u0631\u062f\u0627\u062e\u062a_\u0633\u0645\u062a_\u06a9\u0644\u0627\u06cc\u0646\u062a_\u0627\u0646\u062a\u0642\u0627\u0644_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u0628\u06a9_\u0627\u0646\u062f_\u0635\u0641\u062d\u0627\u062a_\u0646\u062a\u06cc\u062c\u0647_frontend", + "target": "prompt_payment_flow_frontend_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/payment-flow-frontend.md", + "source_location": "L55", + "weight": 1.0, + "source": "prompt_payment_flow_frontend_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_payment_flow_frontend_\u06f1_\u062a\u062b\u0628\u06cc\u062a_\u0627\u0646\u062a\u0642\u0627\u0644_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u0628\u06a9_\u0627\u0646\u062f_\u0628\u062f\u0648\u0646_\u062a\u0645\u0627\u0633_\u0645\u0633\u062a\u0642\u06cc\u0645_\u0628\u0627_\u0628\u0627\u0646\u06a9", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/payment-flow-frontend.md", + "source_location": "L68", + "weight": 1.0, + "source": "prompt_payment_flow_frontend_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_payment_flow_frontend_\u06f2_\u0635\u0641\u062d\u0647_\u0646\u062a\u06cc\u062c\u0647_\u0628\u0631_\u0627\u0633\u0627\u0633_status", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/payment-flow-frontend.md", + "source_location": "L81", + "weight": 1.0, + "source": "prompt_payment_flow_frontend_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_payment_flow_frontend_\u06f3_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u0628\u0627_\u0634\u06a9\u0644_\u067e\u0627\u0633\u062e_getpayment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/payment-flow-frontend.md", + "source_location": "L90", + "weight": 1.0, + "source": "prompt_payment_flow_frontend_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_payment_flow_frontend_\u06f4_ux_\u0627\u0646\u0635\u0631\u0627\u0641_\u0634\u06a9\u0633\u062a", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/payment-single-flow-frontend.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_payment_single_flow_frontend", + "target": "prompt_payment_single_flow_frontend_entry_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a_\u062e\u0627\u0644\u0635_\u0628\u0647_backend_\u0628\u062f\u0648\u0646_xhr_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/payment-single-flow-frontend.md", + "source_location": "L7", + "weight": 1.0, + "source": "prompt_payment_single_flow_frontend_entry_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a_\u062e\u0627\u0644\u0635_\u0628\u0647_backend_\u0628\u062f\u0648\u0646_xhr_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", + "target": "prompt_payment_single_flow_frontend_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/payment-single-flow-frontend.md", + "source_location": "L23", + "weight": 1.0, + "source": "prompt_payment_single_flow_frontend_entry_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a_\u062e\u0627\u0644\u0635_\u0628\u0647_backend_\u0628\u062f\u0648\u0646_xhr_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", + "target": "prompt_payment_single_flow_frontend_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/payment-single-flow-frontend.md", + "source_location": "L19", + "weight": 1.0, + "source": "prompt_payment_single_flow_frontend_entry_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a_\u062e\u0627\u0644\u0635_\u0628\u0647_backend_\u0628\u062f\u0648\u0646_xhr_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", + "target": "prompt_payment_single_flow_frontend_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/payment-single-flow-frontend.md", + "source_location": "L91", + "weight": 1.0, + "source": "prompt_payment_single_flow_frontend_entry_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a_\u062e\u0627\u0644\u0635_\u0628\u0647_backend_\u0628\u062f\u0648\u0646_xhr_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", + "target": "prompt_payment_single_flow_frontend_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/payment-single-flow-frontend.md", + "source_location": "L32", + "weight": 1.0, + "source": "prompt_payment_single_flow_frontend_entry_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a_\u062e\u0627\u0644\u0635_\u0628\u0647_backend_\u0628\u062f\u0648\u0646_xhr_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", + "target": "prompt_payment_single_flow_frontend_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/payment-single-flow-frontend.md", + "source_location": "L55", + "weight": 1.0, + "source": "prompt_payment_single_flow_frontend_entry_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a_\u062e\u0627\u0644\u0635_\u0628\u0647_backend_\u0628\u062f\u0648\u0646_xhr_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", + "target": "prompt_payment_single_flow_frontend_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/payment-single-flow-frontend.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_payment_single_flow_frontend_entry_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0647_\u0635\u0648\u0631\u062a_\u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a_\u062e\u0627\u0644\u0635_\u0628\u0647_backend_\u0628\u062f\u0648\u0646_xhr_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", + "target": "prompt_payment_single_flow_frontend_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/payment-single-flow-frontend.md", + "source_location": "L57", + "weight": 1.0, + "source": "prompt_payment_single_flow_frontend_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_payment_single_flow_frontend_\u06f1_\u062a\u0628\u062f\u06cc\u0644_\u062f\u06a9\u0645\u0647_\u067e\u0631\u062f\u0627\u062e\u062a_\u0628\u0647_\u0631\u06cc\u062f\u0627\u06cc\u0631\u06a9\u062a_\u062e\u0627\u0644\u0635_\u062d\u0630\u0641_xhr", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/payment-single-flow-frontend.md", + "source_location": "L80", + "weight": 1.0, + "source": "prompt_payment_single_flow_frontend_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_payment_single_flow_frontend_\u06f2_\u062d\u0641\u0638_\u0627\u0646\u062a\u062e\u0627\u0628_\u062f\u0631\u06af\u0627\u0647_\u0645\u0631\u062d\u0644\u0647_\u06f2_\u0646\u06cc\u0627\u0632", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/payment-single-flow-frontend.md", + "source_location": "L86", + "weight": 1.0, + "source": "prompt_payment_single_flow_frontend_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_payment_single_flow_frontend_\u06f3_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_profile_birthday_send_direction_fix", + "target": "prompt_profile_birthday_send_direction_fix_\u0631\u0641\u0639_\u062c\u0647\u062a_\u062a\u0628\u062f\u06cc\u0644_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0647\u0646\u06af\u0627\u0645_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", + "source_location": "L9", + "weight": 1.0, + "source": "prompt_profile_birthday_send_direction_fix_\u0631\u0641\u0639_\u062c\u0647\u062a_\u062a\u0628\u062f\u06cc\u0644_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0647\u0646\u06af\u0627\u0645_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", + "target": "prompt_profile_birthday_send_direction_fix_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", + "source_location": "L21", + "weight": 1.0, + "source": "prompt_profile_birthday_send_direction_fix_\u0631\u0641\u0639_\u062c\u0647\u062a_\u062a\u0628\u062f\u06cc\u0644_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0647\u0646\u06af\u0627\u0645_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", + "target": "prompt_profile_birthday_send_direction_fix_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", + "source_location": "L17", + "weight": 1.0, + "source": "prompt_profile_birthday_send_direction_fix_\u0631\u0641\u0639_\u062c\u0647\u062a_\u062a\u0628\u062f\u06cc\u0644_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0647\u0646\u06af\u0627\u0645_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", + "target": "prompt_profile_birthday_send_direction_fix_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", + "source_location": "L53", + "weight": 1.0, + "source": "prompt_profile_birthday_send_direction_fix_\u0631\u0641\u0639_\u062c\u0647\u062a_\u062a\u0628\u062f\u06cc\u0644_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0647\u0646\u06af\u0627\u0645_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", + "target": "prompt_profile_birthday_send_direction_fix_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", + "source_location": "L28", + "weight": 1.0, + "source": "prompt_profile_birthday_send_direction_fix_\u0631\u0641\u0639_\u062c\u0647\u062a_\u062a\u0628\u062f\u06cc\u0644_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0647\u0646\u06af\u0627\u0645_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", + "target": "prompt_profile_birthday_send_direction_fix_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", + "source_location": "L45", + "weight": 1.0, + "source": "prompt_profile_birthday_send_direction_fix_\u0631\u0641\u0639_\u062c\u0647\u062a_\u062a\u0628\u062f\u06cc\u0644_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0647\u0646\u06af\u0627\u0645_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", + "target": "prompt_profile_birthday_send_direction_fix_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_profile_birthday_send_direction_fix_\u0631\u0641\u0639_\u062c\u0647\u062a_\u062a\u0628\u062f\u06cc\u0644_\u062a\u0627\u0631\u06cc\u062e_\u062a\u0648\u0644\u062f_\u0647\u0646\u06af\u0627\u0645_\u0627\u06cc\u062c\u0627\u062f_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", + "target": "prompt_profile_birthday_send_direction_fix_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/profile-birthday-send-direction-fix.md", + "source_location": "L47", + "weight": 1.0, + "source": "prompt_profile_birthday_send_direction_fix_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_profile_birthday_send_direction_fix_\u06f1_\u0627\u0635\u0644\u0627\u062d_\u062c\u0647\u062a_\u062f\u0631_postdata", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/rating-rich-ui-wiring.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_rating_rich_ui_wiring", + "target": "prompt_rating_rich_ui_wiring_\u0627\u062a\u0635\u0627\u0644_ui_\u063a\u0646\u06cc_\u0646\u0638\u0631\u0627\u062a_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0628\u0647_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u062c\u062f\u06cc\u062f_\u0628\u06a9_\u0627\u0646\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/rating-rich-ui-wiring.md", + "source_location": "L9", + "weight": 1.0, + "source": "prompt_rating_rich_ui_wiring_\u0627\u062a\u0635\u0627\u0644_ui_\u063a\u0646\u06cc_\u0646\u0638\u0631\u0627\u062a_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0628\u0647_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u062c\u062f\u06cc\u062f_\u0628\u06a9_\u0627\u0646\u062f", + "target": "prompt_rating_rich_ui_wiring_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/rating-rich-ui-wiring.md", + "source_location": "L25", + "weight": 1.0, + "source": "prompt_rating_rich_ui_wiring_\u0627\u062a\u0635\u0627\u0644_ui_\u063a\u0646\u06cc_\u0646\u0638\u0631\u0627\u062a_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0628\u0647_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u062c\u062f\u06cc\u062f_\u0628\u06a9_\u0627\u0646\u062f", + "target": "prompt_rating_rich_ui_wiring_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637_ui_\u0645\u0648\u062c\u0648\u062f_\u06a9\u0647_\u0628\u0627\u06cc\u062f_\u0648\u0635\u0644_\u0634\u0648\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/rating-rich-ui-wiring.md", + "source_location": "L15", + "weight": 1.0, + "source": "prompt_rating_rich_ui_wiring_\u0627\u062a\u0635\u0627\u0644_ui_\u063a\u0646\u06cc_\u0646\u0638\u0631\u0627\u062a_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0628\u0647_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u062c\u062f\u06cc\u062f_\u0628\u06a9_\u0627\u0646\u062f", + "target": "prompt_rating_rich_ui_wiring_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0628\u06a9_\u0627\u0646\u062f_\u0645\u0631\u062c\u0639_\u0627\u0632_\u067e\u0631\u0627\u0645\u067e\u062a_\u0647\u0645\u062a\u0627", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/rating-rich-ui-wiring.md", + "source_location": "L90", + "weight": 1.0, + "source": "prompt_rating_rich_ui_wiring_\u0627\u062a\u0635\u0627\u0644_ui_\u063a\u0646\u06cc_\u0646\u0638\u0631\u0627\u062a_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0628\u0647_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u062c\u062f\u06cc\u062f_\u0628\u06a9_\u0627\u0646\u062f", + "target": "prompt_rating_rich_ui_wiring_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/rating-rich-ui-wiring.md", + "source_location": "L40", + "weight": 1.0, + "source": "prompt_rating_rich_ui_wiring_\u0627\u062a\u0635\u0627\u0644_ui_\u063a\u0646\u06cc_\u0646\u0638\u0631\u0627\u062a_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0628\u0647_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u062c\u062f\u06cc\u062f_\u0628\u06a9_\u0627\u0646\u062f", + "target": "prompt_rating_rich_ui_wiring_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/rating-rich-ui-wiring.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_rating_rich_ui_wiring_\u0627\u062a\u0635\u0627\u0644_ui_\u063a\u0646\u06cc_\u0646\u0638\u0631\u0627\u062a_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0635\u0641\u062d\u0647_\u067e\u0632\u0634\u06a9_\u0628\u0647_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u062c\u062f\u06cc\u062f_\u0628\u06a9_\u0627\u0646\u062f", + "target": "prompt_rating_rich_ui_wiring_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/rating-rich-ui-wiring.md", + "source_location": "L42", + "weight": 1.0, + "source": "prompt_rating_rich_ui_wiring_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_rating_rich_ui_wiring_\u06f1_fetch_\u062a\u062c\u0645\u06cc\u0639_\u0627\u0645\u062a\u06cc\u0627\u0632_\u062f\u0631_\u0635\u0641\u062d\u0647_\u0648_\u0639\u0628\u0648\u0631_prop", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/rating-rich-ui-wiring.md", + "source_location": "L50", + "weight": 1.0, + "source": "prompt_rating_rich_ui_wiring_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_rating_rich_ui_wiring_\u06f2_\u0627\u062a\u0635\u0627\u0644_\u0686\u0627\u0631\u062a_\u0628\u0647_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u062c\u062f\u06cc\u062f_chart_index_js_progressall_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/rating-rich-ui-wiring.md", + "source_location": "L56", + "weight": 1.0, + "source": "prompt_rating_rich_ui_wiring_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_rating_rich_ui_wiring_\u06f3_\u0641\u0631\u0645_\u062b\u0628\u062a_\u0627\u0645\u062a\u06cc\u0627\u0632_\u0686\u0646\u062f\u0628_\u0639\u062f\u06cc_form_js_modalanswer_js_content_index_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/rating-rich-ui-wiring.md", + "source_location": "L76", + "weight": 1.0, + "source": "prompt_rating_rich_ui_wiring_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_rating_rich_ui_wiring_\u06f4_\u0644\u0627\u06cc\u06a9_\u062f\u06cc\u0633\u0644\u0627\u06cc\u06a9_\u0648\u0627\u0642\u0639\u06cc_itemuser_js_services_response_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/rating-rich-ui-wiring.md", + "source_location": "L81", + "weight": 1.0, + "source": "prompt_rating_rich_ui_wiring_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_rating_rich_ui_wiring_\u06f5_\u062b\u0628\u062a_\u067e\u0627\u0633\u062e_sendanswer_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/rating-rich-ui-wiring.md", + "source_location": "L85", + "weight": 1.0, + "source": "prompt_rating_rich_ui_wiring_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_rating_rich_ui_wiring_\u06f6_wrapper\u0647\u0627_services_response_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_seo_performance_rendering_audit", + "target": "prompt_seo_performance_rendering_audit_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_\u06a9\u0627\u0645\u0644_rendering_strategy_seo_performance_\u0648_\u0627\u0645\u0646\u06cc\u062a_next_js_15", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L7", + "weight": 1.0, + "source": "prompt_seo_performance_rendering_audit_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_\u06a9\u0627\u0645\u0644_rendering_strategy_seo_performance_\u0648_\u0627\u0645\u0646\u06cc\u062a_next_js_15", + "target": "prompt_seo_performance_rendering_audit_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L18", + "weight": 1.0, + "source": "prompt_seo_performance_rendering_audit_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_\u06a9\u0627\u0645\u0644_rendering_strategy_seo_performance_\u0648_\u0627\u0645\u0646\u06cc\u062a_next_js_15", + "target": "prompt_seo_performance_rendering_audit_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L268", + "weight": 1.0, + "source": "prompt_seo_performance_rendering_audit_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_\u06a9\u0627\u0645\u0644_rendering_strategy_seo_performance_\u0648_\u0627\u0645\u0646\u06cc\u062a_next_js_15", + "target": "prompt_seo_performance_rendering_audit_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L34", + "weight": 1.0, + "source": "prompt_seo_performance_rendering_audit_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_\u06a9\u0627\u0645\u0644_rendering_strategy_seo_performance_\u0648_\u0627\u0645\u0646\u06cc\u062a_next_js_15", + "target": "prompt_seo_performance_rendering_audit_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L110", + "weight": 1.0, + "source": "prompt_seo_performance_rendering_audit_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_\u06a9\u0627\u0645\u0644_rendering_strategy_seo_performance_\u0648_\u0627\u0645\u0646\u06cc\u062a_next_js_15", + "target": "prompt_seo_performance_rendering_audit_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_seo_performance_rendering_audit_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_\u06a9\u0627\u0645\u0644_rendering_strategy_seo_performance_\u0648_\u0627\u0645\u0646\u06cc\u062a_next_js_15", + "target": "prompt_seo_performance_rendering_audit_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L59", + "weight": 1.0, + "source": "prompt_seo_performance_rendering_audit_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "target": "prompt_seo_performance_rendering_audit_app_doctor_slug_page_js_\u062f\u0648_\u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc_\u062a\u06a9\u0631\u0627\u0631\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L91", + "weight": 1.0, + "source": "prompt_seo_performance_rendering_audit_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "target": "prompt_seo_performance_rendering_audit_app_doctors_page_js_\u0628\u062f\u0648\u0646_og_images_\u0628\u062f\u0648\u0646_cache", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L36", + "weight": 1.0, + "source": "prompt_seo_performance_rendering_audit_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "target": "prompt_seo_performance_rendering_audit_lib_req_js_\u0645\u0634\u06a9\u0644_\u0627\u0635\u0644\u06cc_caching", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L77", + "weight": 1.0, + "source": "prompt_seo_performance_rendering_audit_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "target": "prompt_seo_performance_rendering_audit_middleware_js_\u0627\u062c\u0631\u0627_\u0631\u0648\u06cc_\u0647\u0645\u0647_\u0645\u0633\u06cc\u0631\u0647\u0627", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L112", + "weight": 1.0, + "source": "prompt_seo_performance_rendering_audit_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_seo_performance_rendering_audit_\u06f1_\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc_fetch_\u0644\u0627\u06cc\u0647_\u06cc_axios_\u0628\u0627_fetch_\u0628\u0648\u0645\u06cc_next_js_\u06cc\u0627_wrapper_\u0631\u0648\u06cc_\u0622\u0646_\u0628\u0631\u0627\u06cc_\u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc_\u0647\u0627\u06cc_server_component", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L130", + "weight": 1.0, + "source": "prompt_seo_performance_rendering_audit_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_seo_performance_rendering_audit_\u06f2_\u062d\u0630\u0641_\u0641\u0631\u0627\u062e\u0648\u0627\u0646\u06cc_\u062a\u06a9\u0631\u0627\u0631\u06cc_\u062f\u0631_doctor_slug_page_js_\u0648_\u0627\u0644\u06af\u0648\u06cc_\u0645\u0634\u0627\u0628\u0647_\u062f\u0631_clinic_slug_blog_slug", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L161", + "weight": 1.0, + "source": "prompt_seo_performance_rendering_audit_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_seo_performance_rendering_audit_\u06f3_\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc_middleware_js_\u0645\u062d\u062f\u0648\u062f_\u06a9\u0631\u062f\u0646_matcher_\u06cc\u0627_\u062d\u0630\u0641_\u0648\u0627\u0628\u0633\u062a\u06af\u06cc_\u063a\u06cc\u0631\u0636\u0631\u0648\u0631\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L181", + "weight": 1.0, + "source": "prompt_seo_performance_rendering_audit_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_seo_performance_rendering_audit_\u06f4_\u0627\u0641\u0632\u0648\u062f\u0646_json_ld_\u0633\u0631\u0627\u0633\u0631\u06cc_\u062f\u0631_app_layout_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L219", + "weight": 1.0, + "source": "prompt_seo_performance_rendering_audit_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_seo_performance_rendering_audit_\u06f5_\u062a\u06a9\u0645\u06cc\u0644_og_image_twitter_image_\u062f\u0631_\u0647\u0645\u0647_\u0635\u0641\u062d\u0627\u062a", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L232", + "weight": 1.0, + "source": "prompt_seo_performance_rendering_audit_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_seo_performance_rendering_audit_\u06f6_\u0627\u0636\u0627\u0641\u0647_\u06a9\u0631\u062f\u0646_loading_js_\u0628\u0631\u0627\u06cc_\u0645\u0633\u06cc\u0631\u0647\u0627\u06cc_\u062f\u0627\u062f\u0647_\u0645\u062d\u0648\u0631", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L236", + "weight": 1.0, + "source": "prompt_seo_performance_rendering_audit_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_seo_performance_rendering_audit_\u06f7_\u0627\u0636\u0627\u0641\u0647_\u06a9\u0631\u062f\u0646_error_js_\u062f\u0631_\u0633\u0637\u062d_root_\u0648_\u0628\u0631\u0627\u06cc_\u0645\u0633\u06cc\u0631\u0647\u0627\u06cc_\u067e\u0631\u062a\u0642\u0627\u0636\u0627", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L252", + "weight": 1.0, + "source": "prompt_seo_performance_rendering_audit_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_seo_performance_rendering_audit_\u06f8_\u0628\u0631\u0631\u0633\u06cc_app_sitemap_js_\u0648_app_robots_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/seo-performance-rendering-audit.md", + "source_location": "L259", + "weight": 1.0, + "source": "prompt_seo_performance_rendering_audit_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_seo_performance_rendering_audit_\u06f9_\u06af\u0632\u0627\u0631\u0634_\u0646\u0647\u0627\u06cc\u06cc_\u0628\u0647_\u0635\u0648\u0631\u062a_\u062c\u062f\u0648\u0644", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/specialties-doctor-count-wire.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_specialties_doctor_count_wire", + "target": "prompt_specialties_doctor_count_wire_\u0646\u0645\u0627\u06cc\u0634_\u062a\u0639\u062f\u0627\u062f_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0647\u0631_\u062a\u062e\u0635\u0635_\u062f\u0631_\u0635\u0641\u062d\u0647_specialties", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/specialties-doctor-count-wire.md", + "source_location": "L9", + "weight": 1.0, + "source": "prompt_specialties_doctor_count_wire_\u0646\u0645\u0627\u06cc\u0634_\u062a\u0639\u062f\u0627\u062f_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0647\u0631_\u062a\u062e\u0635\u0635_\u062f\u0631_\u0635\u0641\u062d\u0647_specialties", + "target": "prompt_specialties_doctor_count_wire_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/specialties-doctor-count-wire.md", + "source_location": "L19", + "weight": 1.0, + "source": "prompt_specialties_doctor_count_wire_\u0646\u0645\u0627\u06cc\u0634_\u062a\u0639\u062f\u0627\u062f_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0647\u0631_\u062a\u062e\u0635\u0635_\u062f\u0631_\u0635\u0641\u062d\u0647_specialties", + "target": "prompt_specialties_doctor_count_wire_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/specialties-doctor-count-wire.md", + "source_location": "L15", + "weight": 1.0, + "source": "prompt_specialties_doctor_count_wire_\u0646\u0645\u0627\u06cc\u0634_\u062a\u0639\u062f\u0627\u062f_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0647\u0631_\u062a\u062e\u0635\u0635_\u062f\u0631_\u0635\u0641\u062d\u0647_specialties", + "target": "prompt_specialties_doctor_count_wire_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/specialties-doctor-count-wire.md", + "source_location": "L97", + "weight": 1.0, + "source": "prompt_specialties_doctor_count_wire_\u0646\u0645\u0627\u06cc\u0634_\u062a\u0639\u062f\u0627\u062f_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0647\u0631_\u062a\u062e\u0635\u0635_\u062f\u0631_\u0635\u0641\u062d\u0647_specialties", + "target": "prompt_specialties_doctor_count_wire_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/specialties-doctor-count-wire.md", + "source_location": "L28", + "weight": 1.0, + "source": "prompt_specialties_doctor_count_wire_\u0646\u0645\u0627\u06cc\u0634_\u062a\u0639\u062f\u0627\u062f_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0647\u0631_\u062a\u062e\u0635\u0635_\u062f\u0631_\u0635\u0641\u062d\u0647_specialties", + "target": "prompt_specialties_doctor_count_wire_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/specialties-doctor-count-wire.md", + "source_location": "L53", + "weight": 1.0, + "source": "prompt_specialties_doctor_count_wire_\u0646\u0645\u0627\u06cc\u0634_\u062a\u0639\u062f\u0627\u062f_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0647\u0631_\u062a\u062e\u0635\u0635_\u062f\u0631_\u0635\u0641\u062d\u0647_specialties", + "target": "prompt_specialties_doctor_count_wire_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/specialties-doctor-count-wire.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_specialties_doctor_count_wire_\u0646\u0645\u0627\u06cc\u0634_\u062a\u0639\u062f\u0627\u062f_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0647\u0631_\u062a\u062e\u0635\u0635_\u062f\u0631_\u0635\u0641\u062d\u0647_specialties", + "target": "prompt_specialties_doctor_count_wire_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/specialties-doctor-count-wire.md", + "source_location": "L55", + "weight": 1.0, + "source": "prompt_specialties_doctor_count_wire_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_specialties_doctor_count_wire_\u06f1_wrapper_\u062f\u0631_services_response_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/specialties-doctor-count-wire.md", + "source_location": "L61", + "weight": 1.0, + "source": "prompt_specialties_doctor_count_wire_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_specialties_doctor_count_wire_\u06f2_\u067e\u0627\u0633_\u062f\u0627\u062f\u0646_city_id_\u0627\u0632_\u0635\u0641\u062d\u0647_\u06cc_server_\u0628\u0647_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a_client", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/specialties-doctor-count-wire.md", + "source_location": "L76", + "weight": 1.0, + "source": "prompt_specialties_doctor_count_wire_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_specialties_doctor_count_wire_\u06f3_fetch_\u062f\u0631_components_specialties_index_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/specialties-doctor-count-wire.md", + "source_location": "L94", + "weight": 1.0, + "source": "prompt_specialties_doctor_count_wire_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_specialties_doctor_count_wire_\u06f4_itemspecialties_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_technical_seo_audit_multidomain", + "target": "prompt_technical_seo_audit_multidomain_\u0645\u0645\u06cc\u0632\u06cc_\u0648_\u0631\u0641\u0639_\u06a9\u0627\u0645\u0644_technical_seo_\u0628\u0627_\u0645\u062d\u0648\u0631\u06cc\u062a_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L11", + "weight": 1.0, + "source": "prompt_technical_seo_audit_multidomain_\u0645\u0645\u06cc\u0632\u06cc_\u0648_\u0631\u0641\u0639_\u06a9\u0627\u0645\u0644_technical_seo_\u0628\u0627_\u0645\u062d\u0648\u0631\u06cc\u062a_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc", + "target": "prompt_technical_seo_audit_multidomain_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L23", + "weight": 1.0, + "source": "prompt_technical_seo_audit_multidomain_\u0645\u0645\u06cc\u0632\u06cc_\u0648_\u0631\u0641\u0639_\u06a9\u0627\u0645\u0644_technical_seo_\u0628\u0627_\u0645\u062d\u0648\u0631\u06cc\u062a_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc", + "target": "prompt_technical_seo_audit_multidomain_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L17", + "weight": 1.0, + "source": "prompt_technical_seo_audit_multidomain_\u0645\u0645\u06cc\u0632\u06cc_\u0648_\u0631\u0641\u0639_\u06a9\u0627\u0645\u0644_technical_seo_\u0628\u0627_\u0645\u062d\u0648\u0631\u06cc\u062a_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc", + "target": "prompt_technical_seo_audit_multidomain_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L7", + "weight": 1.0, + "source": "prompt_technical_seo_audit_multidomain_\u0645\u0645\u06cc\u0632\u06cc_\u0648_\u0631\u0641\u0639_\u06a9\u0627\u0645\u0644_technical_seo_\u0628\u0627_\u0645\u062d\u0648\u0631\u06cc\u062a_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc", + "target": "prompt_technical_seo_audit_multidomain_\u0646\u0642\u0634", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L201", + "weight": 1.0, + "source": "prompt_technical_seo_audit_multidomain_\u0645\u0645\u06cc\u0632\u06cc_\u0648_\u0631\u0641\u0639_\u06a9\u0627\u0645\u0644_technical_seo_\u0628\u0627_\u0645\u062d\u0648\u0631\u06cc\u062a_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc", + "target": "prompt_technical_seo_audit_multidomain_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L42", + "weight": 1.0, + "source": "prompt_technical_seo_audit_multidomain_\u0645\u0645\u06cc\u0632\u06cc_\u0648_\u0631\u0641\u0639_\u06a9\u0627\u0645\u0644_technical_seo_\u0628\u0627_\u0645\u062d\u0648\u0631\u06cc\u062a_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc", + "target": "prompt_technical_seo_audit_multidomain_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627\u06cc_\u0645\u0645\u06cc\u0632\u06cc_\u0627\u0648\u0644\u06cc\u0647_\u0627\u0632_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L131", + "weight": 1.0, + "source": "prompt_technical_seo_audit_multidomain_\u0645\u0645\u06cc\u0632\u06cc_\u0648_\u0631\u0641\u0639_\u06a9\u0627\u0645\u0644_technical_seo_\u0628\u0627_\u0645\u062d\u0648\u0631\u06cc\u062a_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc", + "target": "prompt_technical_seo_audit_multidomain_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_technical_seo_audit_multidomain_\u0645\u0645\u06cc\u0632\u06cc_\u0648_\u0631\u0641\u0639_\u06a9\u0627\u0645\u0644_technical_seo_\u0628\u0627_\u0645\u062d\u0648\u0631\u06cc\u062a_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc", + "target": "prompt_technical_seo_audit_multidomain_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L44", + "weight": 1.0, + "source": "prompt_technical_seo_audit_multidomain_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627\u06cc_\u0645\u0645\u06cc\u0632\u06cc_\u0627\u0648\u0644\u06cc\u0647_\u0627\u0632_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_technical_seo_audit_multidomain_\u06f1_canonical_\u0647\u0645\u0647_\u062f\u0627\u0645\u0646\u0647_\u0647\u0627\u06cc_\u0634\u0647\u0631\u06cc_\u0631\u0627_\u0646\u0627\u0628\u0648\u062f_\u0645\u06cc_\u06a9\u0646\u062f_critical", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L66", + "weight": 1.0, + "source": "prompt_technical_seo_audit_multidomain_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627\u06cc_\u0645\u0645\u06cc\u0632\u06cc_\u0627\u0648\u0644\u06cc\u0647_\u0627\u0632_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_technical_seo_audit_multidomain_\u06f2_sitemap_high", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L83", + "weight": 1.0, + "source": "prompt_technical_seo_audit_multidomain_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627\u06cc_\u0645\u0645\u06cc\u0632\u06cc_\u0627\u0648\u0644\u06cc\u0647_\u0627\u0632_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_technical_seo_audit_multidomain_\u06f3_robots_high", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L97", + "weight": 1.0, + "source": "prompt_technical_seo_audit_multidomain_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627\u06cc_\u0645\u0645\u06cc\u0632\u06cc_\u0627\u0648\u0644\u06cc\u0647_\u0627\u0632_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_technical_seo_audit_multidomain_\u06f4_metadata_\u0633\u0637\u062d_\u0631\u06cc\u0634\u0647_high", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L111", + "weight": 1.0, + "source": "prompt_technical_seo_audit_multidomain_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627\u06cc_\u0645\u0645\u06cc\u0632\u06cc_\u0627\u0648\u0644\u06cc\u0647_\u0627\u0632_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_technical_seo_audit_multidomain_\u06f5_\u0635\u0641\u062d\u0627\u062a_dynamic_soft_404_\u0648_metadata_\u0646\u0627\u0642\u0635_high", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L123", + "weight": 1.0, + "source": "prompt_technical_seo_audit_multidomain_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627\u06cc_\u0645\u0645\u06cc\u0632\u06cc_\u0627\u0648\u0644\u06cc\u0647_\u0627\u0632_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_technical_seo_audit_multidomain_\u06f6_\u0635\u0641\u062d\u0627\u062a_\u0644\u06cc\u0633\u062a\u06cc_\u0648_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u06cc_medium", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L127", + "weight": 1.0, + "source": "prompt_technical_seo_audit_multidomain_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627\u06cc_\u0645\u0645\u06cc\u0632\u06cc_\u0627\u0648\u0644\u06cc\u0647_\u0627\u0632_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_technical_seo_audit_multidomain_\u06f7_security_headers_\u0648\u0636\u0639\u06cc\u062a_\u062e\u0648\u0628", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L133", + "weight": 1.0, + "source": "prompt_technical_seo_audit_multidomain_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_technical_seo_audit_multidomain_\u06f0_\u062a\u0635\u0645\u06cc\u0645_\u0627\u0633\u062a\u0631\u0627\u062a\u0698\u06cc_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632_\u0647\u0645\u0647_\u0686\u06cc\u0632", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L142", + "weight": 1.0, + "source": "prompt_technical_seo_audit_multidomain_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_technical_seo_audit_multidomain_\u06f1_metadatabase_\u0648_canonical_per_page", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L159", + "weight": 1.0, + "source": "prompt_technical_seo_audit_multidomain_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_technical_seo_audit_multidomain_\u06f2_\u0627\u0635\u0644\u0627\u062d_sitemap", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L167", + "weight": 1.0, + "source": "prompt_technical_seo_audit_multidomain_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_technical_seo_audit_multidomain_\u06f3_\u0627\u0635\u0644\u0627\u062d_robots", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L173", + "weight": 1.0, + "source": "prompt_technical_seo_audit_multidomain_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_technical_seo_audit_multidomain_\u06f4_json_ld_\u0686\u0646\u062f_\u062f\u0627\u0645\u0646\u0647_\u0627\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L180", + "weight": 1.0, + "source": "prompt_technical_seo_audit_multidomain_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_technical_seo_audit_multidomain_\u06f5_soft_404_\u0648_status_codes", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L185", + "weight": 1.0, + "source": "prompt_technical_seo_audit_multidomain_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_technical_seo_audit_multidomain_\u06f6_\u0645\u0645\u06cc\u0632\u06cc_rendering_\u0648_performance", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L192", + "weight": 1.0, + "source": "prompt_technical_seo_audit_multidomain_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_technical_seo_audit_multidomain_\u06f7_pagination_\u0648_\u0635\u0641\u062d\u0627\u062a_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/technical-seo-audit-multidomain.md", + "source_location": "L197", + "weight": 1.0, + "source": "prompt_technical_seo_audit_multidomain_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_technical_seo_audit_multidomain_\u06f8_\u06af\u0632\u0627\u0631\u0634_\u0646\u0647\u0627\u06cc\u06cc_\u0645\u0645\u06cc\u0632\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/upgrade-next-16.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_upgrade_next_16", + "target": "prompt_upgrade_next_16_\u0627\u0631\u062a\u0642\u0627\u06cc_next_js_\u0627\u0632_15_\u0628\u0647_16_\u0622\u062e\u0631\u06cc\u0646_\u0646\u0633\u062e\u0647_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0627\u0645\u06a9\u0627\u0646\u0627\u062a_\u062c\u062f\u06cc\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/upgrade-next-16.md", + "source_location": "L7", + "weight": 1.0, + "source": "prompt_upgrade_next_16_\u0627\u0631\u062a\u0642\u0627\u06cc_next_js_\u0627\u0632_15_\u0628\u0647_16_\u0622\u062e\u0631\u06cc\u0646_\u0646\u0633\u062e\u0647_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0627\u0645\u06a9\u0627\u0646\u0627\u062a_\u062c\u062f\u06cc\u062f", + "target": "prompt_upgrade_next_16_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/upgrade-next-16.md", + "source_location": "L20", + "weight": 1.0, + "source": "prompt_upgrade_next_16_\u0627\u0631\u062a\u0642\u0627\u06cc_next_js_\u0627\u0632_15_\u0628\u0647_16_\u0622\u062e\u0631\u06cc\u0646_\u0646\u0633\u062e\u0647_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0627\u0645\u06a9\u0627\u0646\u0627\u062a_\u062c\u062f\u06cc\u062f", + "target": "prompt_upgrade_next_16_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/upgrade-next-16.md", + "source_location": "L13", + "weight": 1.0, + "source": "prompt_upgrade_next_16_\u0627\u0631\u062a\u0642\u0627\u06cc_next_js_\u0627\u0632_15_\u0628\u0647_16_\u0622\u062e\u0631\u06cc\u0646_\u0646\u0633\u062e\u0647_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0627\u0645\u06a9\u0627\u0646\u0627\u062a_\u062c\u062f\u06cc\u062f", + "target": "prompt_upgrade_next_16_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/upgrade-next-16.md", + "source_location": "L226", + "weight": 1.0, + "source": "prompt_upgrade_next_16_\u0627\u0631\u062a\u0642\u0627\u06cc_next_js_\u0627\u0632_15_\u0628\u0647_16_\u0622\u062e\u0631\u06cc\u0646_\u0646\u0633\u062e\u0647_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0627\u0645\u06a9\u0627\u0646\u0627\u062a_\u062c\u062f\u06cc\u062f", + "target": "prompt_upgrade_next_16_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/upgrade-next-16.md", + "source_location": "L33", + "weight": 1.0, + "source": "prompt_upgrade_next_16_\u0627\u0631\u062a\u0642\u0627\u06cc_next_js_\u0627\u0632_15_\u0628\u0647_16_\u0622\u062e\u0631\u06cc\u0646_\u0646\u0633\u062e\u0647_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0627\u0645\u06a9\u0627\u0646\u0627\u062a_\u062c\u062f\u06cc\u062f", + "target": "prompt_upgrade_next_16_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/upgrade-next-16.md", + "source_location": "L81", + "weight": 1.0, + "source": "prompt_upgrade_next_16_\u0627\u0631\u062a\u0642\u0627\u06cc_next_js_\u0627\u0632_15_\u0628\u0647_16_\u0622\u062e\u0631\u06cc\u0646_\u0646\u0633\u062e\u0647_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0627\u0645\u06a9\u0627\u0646\u0627\u062a_\u062c\u062f\u06cc\u062f", + "target": "prompt_upgrade_next_16_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/upgrade-next-16.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_upgrade_next_16_\u0627\u0631\u062a\u0642\u0627\u06cc_next_js_\u0627\u0632_15_\u0628\u0647_16_\u0622\u062e\u0631\u06cc\u0646_\u0646\u0633\u062e\u0647_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0627\u0645\u06a9\u0627\u0646\u0627\u062a_\u062c\u062f\u06cc\u062f", + "target": "prompt_upgrade_next_16_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/upgrade-next-16.md", + "source_location": "L83", + "weight": 1.0, + "source": "prompt_upgrade_next_16_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_upgrade_next_16_\u06f1_\u0633\u0627\u062e\u062a_\u0628\u0631\u0646\u0686", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/upgrade-next-16.md", + "source_location": "L92", + "weight": 1.0, + "source": "prompt_upgrade_next_16_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_upgrade_next_16_\u06f2_\u0627\u0631\u062a\u0642\u0627\u06cc_\u067e\u06a9\u06cc\u062c_\u0647\u0627", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/upgrade-next-16.md", + "source_location": "L108", + "weight": 1.0, + "source": "prompt_upgrade_next_16_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_upgrade_next_16_\u06f3_\u062a\u0628\u062f\u06cc\u0644_middleware_js_\u0628\u0647_proxy_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/upgrade-next-16.md", + "source_location": "L131", + "weight": 1.0, + "source": "prompt_upgrade_next_16_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_upgrade_next_16_\u06f4_\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc_next_lint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/upgrade-next-16.md", + "source_location": "L159", + "weight": 1.0, + "source": "prompt_upgrade_next_16_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_upgrade_next_16_\u06f5_turbopack_\u067e\u06cc\u0634_\u0641\u0631\u0636_\u062c\u062f\u06cc\u062f_dev_\u0648_build", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/upgrade-next-16.md", + "source_location": "L169", + "weight": 1.0, + "source": "prompt_upgrade_next_16_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_upgrade_next_16_\u06f6_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_react_compiler", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/upgrade-next-16.md", + "source_location": "L187", + "weight": 1.0, + "source": "prompt_upgrade_next_16_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_upgrade_next_16_\u06f7_cache_components_\u0627\u0631\u0632\u06cc\u0627\u0628\u06cc_\u0645\u062d\u062a\u0627\u0637\u0627\u0646\u0647_\u0641\u0639\u0627\u0644_\u0633\u0627\u0632\u06cc_\u0645\u0634\u0631\u0648\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/upgrade-next-16.md", + "source_location": "L200", + "weight": 1.0, + "source": "prompt_upgrade_next_16_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_upgrade_next_16_\u06f8_\u062a\u0645\u06cc\u0632\u06a9\u0627\u0631\u06cc_\u0647\u0627\u06cc_\u06a9\u0627\u0646\u0641\u06cc\u06af_\u0646\u0633\u062e\u0647_16", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/upgrade-next-16.md", + "source_location": "L208", + "weight": 1.0, + "source": "prompt_upgrade_next_16_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_upgrade_next_16_\u06f9_\u062a\u0633\u062a_\u0646\u0647\u0627\u06cc\u06cc_\u0648_commit", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/user-profile-no-404.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_user_profile_no_404", + "target": "prompt_user_profile_no_404_\u0647\u0645_\u062e\u0648\u0627\u0646_\u06a9\u0631\u062f\u0646_\u0645\u0635\u0631\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0627_endpoint_\u0627\u0635\u0644\u0627\u062d_\u0634\u062f\u0647_\u0628\u062f\u0648\u0646_404_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062c\u062f\u06cc\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/user-profile-no-404.md", + "source_location": "L11", + "weight": 1.0, + "source": "prompt_user_profile_no_404_\u0647\u0645_\u062e\u0648\u0627\u0646_\u06a9\u0631\u062f\u0646_\u0645\u0635\u0631\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0627_endpoint_\u0627\u0635\u0644\u0627\u062d_\u0634\u062f\u0647_\u0628\u062f\u0648\u0646_404_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062c\u062f\u06cc\u062f", + "target": "prompt_user_profile_no_404_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/user-profile-no-404.md", + "source_location": "L22", + "weight": 1.0, + "source": "prompt_user_profile_no_404_\u0647\u0645_\u062e\u0648\u0627\u0646_\u06a9\u0631\u062f\u0646_\u0645\u0635\u0631\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0627_endpoint_\u0627\u0635\u0644\u0627\u062d_\u0634\u062f\u0647_\u0628\u062f\u0648\u0646_404_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062c\u062f\u06cc\u062f", + "target": "prompt_user_profile_no_404_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/user-profile-no-404.md", + "source_location": "L16", + "weight": 1.0, + "source": "prompt_user_profile_no_404_\u0647\u0645_\u062e\u0648\u0627\u0646_\u06a9\u0631\u062f\u0646_\u0645\u0635\u0631\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0627_endpoint_\u0627\u0635\u0644\u0627\u062d_\u0634\u062f\u0647_\u0628\u062f\u0648\u0646_404_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062c\u062f\u06cc\u062f", + "target": "prompt_user_profile_no_404_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/user-profile-no-404.md", + "source_location": "L79", + "weight": 1.0, + "source": "prompt_user_profile_no_404_\u0647\u0645_\u062e\u0648\u0627\u0646_\u06a9\u0631\u062f\u0646_\u0645\u0635\u0631\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0627_endpoint_\u0627\u0635\u0644\u0627\u062d_\u0634\u062f\u0647_\u0628\u062f\u0648\u0646_404_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062c\u062f\u06cc\u062f", + "target": "prompt_user_profile_no_404_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/user-profile-no-404.md", + "source_location": "L31", + "weight": 1.0, + "source": "prompt_user_profile_no_404_\u0647\u0645_\u062e\u0648\u0627\u0646_\u06a9\u0631\u062f\u0646_\u0645\u0635\u0631\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0627_endpoint_\u0627\u0635\u0644\u0627\u062d_\u0634\u062f\u0647_\u0628\u062f\u0648\u0646_404_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062c\u062f\u06cc\u062f", + "target": "prompt_user_profile_no_404_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/user-profile-no-404.md", + "source_location": "L62", + "weight": 1.0, + "source": "prompt_user_profile_no_404_\u0647\u0645_\u062e\u0648\u0627\u0646_\u06a9\u0631\u062f\u0646_\u0645\u0635\u0631\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0627_endpoint_\u0627\u0635\u0644\u0627\u062d_\u0634\u062f\u0647_\u0628\u062f\u0648\u0646_404_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062c\u062f\u06cc\u062f", + "target": "prompt_user_profile_no_404_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/user-profile-no-404.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_user_profile_no_404_\u0647\u0645_\u062e\u0648\u0627\u0646_\u06a9\u0631\u062f\u0646_\u0645\u0635\u0631\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0631\u0628\u0631_\u0628\u0627_endpoint_\u0627\u0635\u0644\u0627\u062d_\u0634\u062f\u0647_\u0628\u062f\u0648\u0646_404_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062c\u062f\u06cc\u062f", + "target": "prompt_user_profile_no_404_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/user-profile-no-404.md", + "source_location": "L33", + "weight": 1.0, + "source": "prompt_user_profile_no_404_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_user_profile_no_404_components_appointment_index_js_\u0647\u0646\u062f\u0644_\u0648\u06cc\u0698\u0647_\u06cc_404", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/user-profile-no-404.md", + "source_location": "L50", + "weight": 1.0, + "source": "prompt_user_profile_no_404_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_user_profile_no_404_submitdata_js_\u0627\u0646\u062a\u062e\u0627\u0628_post_\u06cc\u0627_patch_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0648\u062c\u0648\u062f_uuid", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/user-profile-no-404.md", + "source_location": "L64", + "weight": 1.0, + "source": "prompt_user_profile_no_404_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_user_profile_no_404_\u06f1_\u062a\u0623\u06cc\u06cc\u062f_\u062c\u0631\u06cc\u0627\u0646_\u0644\u0648\u062f_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_appointment_dashboard", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/user-profile-no-404.md", + "source_location": "L69", + "weight": 1.0, + "source": "prompt_user_profile_no_404_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_user_profile_no_404_\u06f2_\u0633\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u0647\u0646\u062f\u0644_404_\u0645\u0646\u0633\u0648\u062e", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/user-profile-no-404.md", + "source_location": "L74", + "weight": 1.0, + "source": "prompt_user_profile_no_404_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_user_profile_no_404_\u06f3_\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_post_patch_\u062f\u0631_submitdata_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/verify-past-slots-disabled.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_verify_past_slots_disabled", + "target": "prompt_verify_past_slots_disabled_\u062a\u0623\u06cc\u06cc\u062f_\u0648_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/verify-past-slots-disabled.md", + "source_location": "L11", + "weight": 1.0, + "source": "prompt_verify_past_slots_disabled_\u062a\u0623\u06cc\u06cc\u062f_\u0648_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a", + "target": "prompt_verify_past_slots_disabled_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/verify-past-slots-disabled.md", + "source_location": "L20", + "weight": 1.0, + "source": "prompt_verify_past_slots_disabled_\u062a\u0623\u06cc\u06cc\u062f_\u0648_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a", + "target": "prompt_verify_past_slots_disabled_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/verify-past-slots-disabled.md", + "source_location": "L15", + "weight": 1.0, + "source": "prompt_verify_past_slots_disabled_\u062a\u0623\u06cc\u06cc\u062f_\u0648_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a", + "target": "prompt_verify_past_slots_disabled_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/verify-past-slots-disabled.md", + "source_location": "L74", + "weight": 1.0, + "source": "prompt_verify_past_slots_disabled_\u062a\u0623\u06cc\u06cc\u062f_\u0648_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a", + "target": "prompt_verify_past_slots_disabled_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/verify-past-slots-disabled.md", + "source_location": "L28", + "weight": 1.0, + "source": "prompt_verify_past_slots_disabled_\u062a\u0623\u06cc\u06cc\u062f_\u0648_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a", + "target": "prompt_verify_past_slots_disabled_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/verify-past-slots-disabled.md", + "source_location": "L51", + "weight": 1.0, + "source": "prompt_verify_past_slots_disabled_\u062a\u0623\u06cc\u06cc\u062f_\u0648_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a", + "target": "prompt_verify_past_slots_disabled_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/verify-past-slots-disabled.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_verify_past_slots_disabled_\u062a\u0623\u06cc\u06cc\u062f_\u0648_\u0633\u062e\u062a_\u0633\u0627\u0632\u06cc_\u063a\u06cc\u0631\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u0635\u0641\u062d\u0647_\u06cc_\u0646\u0648\u0628\u062a", + "target": "prompt_verify_past_slots_disabled_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/verify-past-slots-disabled.md", + "source_location": "L30", + "weight": 1.0, + "source": "prompt_verify_past_slots_disabled_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_verify_past_slots_disabled_hours_list_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/verify-past-slots-disabled.md", + "source_location": "L45", + "weight": 1.0, + "source": "prompt_verify_past_slots_disabled_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_verify_past_slots_disabled_\u0622\u0628\u062c\u06a9\u062a_\u0627\u0633\u0644\u0627\u062a_\u0627\u0632_adaptslots_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/verify-past-slots-disabled.md", + "source_location": "L53", + "weight": 1.0, + "source": "prompt_verify_past_slots_disabled_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_verify_past_slots_disabled_\u06f1_\u06af\u0627\u0631\u062f_\u0632\u0645\u0627\u0646_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_\u06af\u0631\u06cc\u062f_\u0633\u0627\u0639\u062a", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/verify-past-slots-disabled.md", + "source_location": "L66", + "weight": 1.0, + "source": "prompt_verify_past_slots_disabled_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_verify_past_slots_disabled_\u06f2_\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc_\u0639\u062f\u0645_\u0627\u0646\u062a\u062e\u0627\u0628_\u0627\u0633\u0644\u0627\u062a_\u06af\u0630\u0634\u062a\u0647_\u062f\u0631_sendappo", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/verify-past-slots-disabled.md", + "source_location": "L70", + "weight": 1.0, + "source": "prompt_verify_past_slots_disabled_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_verify_past_slots_disabled_\u06f3_\u062a\u0623\u06cc\u06cc\u062f_\u0631\u0641\u062a\u0627\u0631_end_to_end", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "CLAUDE.md", + "source_location": "L1", + "weight": 1.0, + "source": "claude", + "target": "claude_claude_md", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "CLAUDE.md", + "source_location": "L27", + "weight": 1.0, + "source": "claude_claude_md", + "target": "claude_architecture_overview", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "CLAUDE.md", + "source_location": "L5", + "weight": 1.0, + "source": "claude_claude_md", + "target": "claude_commands", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "CLAUDE.md", + "source_location": "L16", + "weight": 1.0, + "source": "claude_claude_md", + "target": "claude_environment_variables", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "CLAUDE.md", + "source_location": "L72", + "weight": 1.0, + "source": "claude_architecture_overview", + "target": "claude_authentication_authorization", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "CLAUDE.md", + "source_location": "L62", + "weight": 1.0, + "source": "claude_architecture_overview", + "target": "claude_data_fetching", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "CLAUDE.md", + "source_location": "L114", + "weight": 1.0, + "source": "claude_architecture_overview", + "target": "claude_doctor_clinic_slugs", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "CLAUDE.md", + "source_location": "L118", + "weight": 1.0, + "source": "claude_architecture_overview", + "target": "claude_json_ld_structured_data", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "CLAUDE.md", + "source_location": "L108", + "weight": 1.0, + "source": "claude_architecture_overview", + "target": "claude_key_data_files", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "CLAUDE.md", + "source_location": "L31", + "weight": 1.0, + "source": "claude_architecture_overview", + "target": "claude_multi_domain_system_core_concept", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "CLAUDE.md", + "source_location": "L41", + "weight": 1.0, + "source": "claude_architecture_overview", + "target": "claude_page_metadata_pattern", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "CLAUDE.md", + "source_location": "L90", + "weight": 1.0, + "source": "claude_architecture_overview", + "target": "claude_routing_structure", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "CLAUDE.md", + "source_location": "L82", + "weight": 1.0, + "source": "claude_architecture_overview", + "target": "claude_styling", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L1", + "weight": 1.0, + "source": "readme", + "target": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L540", + "weight": 1.0, + "source": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", + "target": "readme_api_\u0648_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L692", + "weight": 1.0, + "source": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", + "target": "readme_deployment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L826", + "weight": 1.0, + "source": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", + "target": "readme_troubleshooting", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L384", + "weight": 1.0, + "source": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", + "target": "readme_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_\u0648_\u0645\u062c\u0648\u0632\u0647\u0627", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L632", + "weight": 1.0, + "source": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", + "target": "readme_\u0627\u0633\u062a\u0627\u06cc\u0644_\u062f\u0647\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L866", + "weight": 1.0, + "source": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", + "target": "readme_\u062a\u06cc\u0645_\u062a\u0648\u0633\u0639\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L259", + "weight": 1.0, + "source": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", + "target": "readme_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L81", + "weight": 1.0, + "source": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", + "target": "readme_\u0633\u0627\u062e\u062a\u0627\u0631_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L323", + "weight": 1.0, + "source": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", + "target": "readme_\u0633\u06cc\u0633\u062a\u0645_multi_domain", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L3", + "weight": 1.0, + "source": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", + "target": "readme_\u0641\u0647\u0631\u0633\u062a_\u0645\u0637\u0627\u0644\u0628", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L437", + "weight": 1.0, + "source": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", + "target": "readme_\u0645\u0633\u06cc\u0631\u0647\u0627_\u0648_\u0635\u0641\u062d\u0627\u062a", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L19", + "weight": 1.0, + "source": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", + "target": "readme_\u0645\u0639\u0631\u0641\u06cc_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L36", + "weight": 1.0, + "source": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", + "target": "readme_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0648_\u062a\u06a9\u0646\u0648\u0644\u0648\u0698\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L856", + "weight": 1.0, + "source": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", + "target": "readme_\u0645\u0646\u0627\u0628\u0639_\u0645\u0641\u06cc\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L756", + "weight": 1.0, + "source": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", + "target": "readme_\u0646\u06a9\u0627\u062a_\u062a\u0648\u0633\u0639\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L171", + "weight": 1.0, + "source": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", + "target": "readme_\u0648\u06cc\u0698\u06af\u06cc_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u062f\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L883", + "weight": 1.0, + "source": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", + "target": "readme_\u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L478", + "weight": 1.0, + "source": "readme_\u0646\u0648\u0628\u062a724_nobat724_\u0633\u06cc\u0633\u062a\u0645_\u0646\u0648\u0628\u062a_\u062f\u0647\u06cc_\u0622\u0646\u0644\u0627\u06cc\u0646_\u067e\u0632\u0634\u06a9\u06cc", + "target": "readme_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a_\u0647\u0627\u06cc_\u0627\u0635\u0644\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L23", + "weight": 1.0, + "source": "readme_\u0645\u0639\u0631\u0641\u06cc_\u067e\u0631\u0648\u0698\u0647", + "target": "readme_\u0648\u06cc\u0698\u06af\u06cc_\u0647\u0627\u06cc_\u0627\u0635\u0644\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L58", + "weight": 1.0, + "source": "readme_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0648_\u062a\u06a9\u0646\u0648\u0644\u0648\u0698\u06cc", + "target": "readme_authentication_authorization", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L73", + "weight": 1.0, + "source": "readme_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0648_\u062a\u06a9\u0646\u0648\u0644\u0648\u0698\u06cc", + "target": "readme_development_tools", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L38", + "weight": 1.0, + "source": "readme_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0648_\u062a\u06a9\u0646\u0648\u0644\u0648\u0698\u06cc", + "target": "readme_frontend_framework", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L52", + "weight": 1.0, + "source": "readme_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0648_\u062a\u06a9\u0646\u0648\u0644\u0648\u0698\u06cc", + "target": "readme_state_management_data_fetching", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L44", + "weight": 1.0, + "source": "readme_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0648_\u062a\u06a9\u0646\u0648\u0644\u0648\u0698\u06cc", + "target": "readme_ui_ux", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L64", + "weight": 1.0, + "source": "readme_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0648_\u062a\u06a9\u0646\u0648\u0644\u0648\u0698\u06cc", + "target": "readme_\u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647_\u0647\u0627\u06cc_\u062a\u062e\u0635\u0635\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L173", + "weight": 1.0, + "source": "readme_\u0648\u06cc\u0698\u06af\u06cc_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u062f\u06cc", + "target": "readme_1_multi_domain_architecture", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L194", + "weight": 1.0, + "source": "readme_\u0648\u06cc\u0698\u06af\u06cc_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u062f\u06cc", + "target": "readme_2_\u0633\u06cc\u0633\u062a\u0645_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L222", + "weight": 1.0, + "source": "readme_\u0648\u06cc\u0698\u06af\u06cc_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u062f\u06cc", + "target": "readme_3_\u0633\u06cc\u0633\u062a\u0645_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L232", + "weight": 1.0, + "source": "readme_\u0648\u06cc\u0698\u06af\u06cc_\u0647\u0627\u06cc_\u06a9\u0644\u06cc\u062f\u06cc", + "target": "readme_4_\u067e\u0646\u0644_\u0645\u062f\u06cc\u0631\u06cc\u062a\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L297", + "weight": 1.0, + "source": "readme_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", + "target": "readme_\u0627\u0633\u06a9\u0631\u06cc\u067e\u062a_\u0647\u0627\u06cc_\u0645\u0648\u062c\u0648\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L308", + "weight": 1.0, + "source": "readme_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", + "target": "readme_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0628\u0627_docker", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L267", + "weight": 1.0, + "source": "readme_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", + "target": "readme_\u0646\u0635\u0628_\u0648_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L261", + "weight": 1.0, + "source": "readme_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u067e\u0631\u0648\u0698\u0647", + "target": "readme_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L367", + "weight": 1.0, + "source": "readme_\u0633\u06cc\u0633\u062a\u0645_multi_domain", + "target": "readme_metadata_\u062f\u0627\u06cc\u0646\u0627\u0645\u06cc\u06a9_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0634\u0647\u0631", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L325", + "weight": 1.0, + "source": "readme_\u0633\u06cc\u0633\u062a\u0645_multi_domain", + "target": "readme_\u0633\u0627\u062e\u062a\u0627\u0631_\u062f\u0627\u0645\u0646\u0647_\u0647\u0627", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L336", + "weight": 1.0, + "source": "readme_\u0633\u06cc\u0633\u062a\u0645_multi_domain", + "target": "readme_\u0641\u0631\u0622\u06cc\u0646\u062f_\u062a\u0634\u062e\u06cc\u0635_\u0634\u0647\u0631", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L394", + "weight": 1.0, + "source": "readme_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_\u0648_\u0645\u062c\u0648\u0632\u0647\u0627", + "target": "readme_cookies_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0634\u062f\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L386", + "weight": 1.0, + "source": "readme_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_\u0648_\u0645\u062c\u0648\u0632\u0647\u0627", + "target": "readme_\u0641\u0631\u0622\u06cc\u0646\u062f_\u0648\u0631\u0648\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L401", + "weight": 1.0, + "source": "readme_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_\u0648_\u0645\u062c\u0648\u0632\u0647\u0627", + "target": "readme_\u0645\u062d\u0627\u0641\u0638\u062a_\u0627\u0632_\u0645\u0633\u06cc\u0631\u0647\u0627", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L460", + "weight": 1.0, + "source": "readme_\u0645\u0633\u06cc\u0631\u0647\u0627_\u0648_\u0635\u0641\u062d\u0627\u062a", + "target": "readme_\u0635\u0641\u062d\u0627\u062a_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L454", + "weight": 1.0, + "source": "readme_\u0645\u0633\u06cc\u0631\u0647\u0627_\u0648_\u0635\u0641\u062d\u0627\u062a", + "target": "readme_\u0635\u0641\u062d\u0627\u062a_\u0631\u0632\u0631\u0648_\u0646\u0648\u0628\u062a", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L439", + "weight": 1.0, + "source": "readme_\u0645\u0633\u06cc\u0631\u0647\u0627_\u0648_\u0635\u0641\u062d\u0627\u062a", + "target": "readme_\u0635\u0641\u062d\u0627\u062a_\u0639\u0645\u0648\u0645\u06cc_public", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L467", + "weight": 1.0, + "source": "readme_\u0645\u0633\u06cc\u0631\u0647\u0627_\u0648_\u0635\u0641\u062d\u0627\u062a", + "target": "readme_\u067e\u0646\u0644_\u0645\u062f\u06cc\u0631\u06cc\u062a\u06cc_protected", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L502", + "weight": 1.0, + "source": "readme_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a_\u0647\u0627\u06cc_\u0627\u0635\u0644\u06cc", + "target": "readme_feature_components", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L480", + "weight": 1.0, + "source": "readme_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a_\u0647\u0627\u06cc_\u0627\u0635\u0644\u06cc", + "target": "readme_layout_components", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L562", + "weight": 1.0, + "source": "readme_api_\u0648_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627", + "target": "readme_api_endpoints_services_response_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L604", + "weight": 1.0, + "source": "readme_api_\u0648_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627", + "target": "readme_helper_functions_helper_index_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L542", + "weight": 1.0, + "source": "readme_api_\u0648_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627", + "target": "readme_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_axios_services_api_js", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L671", + "weight": 1.0, + "source": "readme_\u0627\u0633\u062a\u0627\u06cc\u0644_\u062f\u0647\u06cc", + "target": "readme_dark_mode", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L655", + "weight": 1.0, + "source": "readme_\u0627\u0633\u062a\u0627\u06cc\u0644_\u062f\u0647\u06cc", + "target": "readme_material_ui_theme", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L634", + "weight": 1.0, + "source": "readme_\u0627\u0633\u062a\u0627\u06cc\u0644_\u062f\u0647\u06cc", + "target": "readme_tailwind_css", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L712", + "weight": 1.0, + "source": "readme_deployment", + "target": "readme_build_production", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L735", + "weight": 1.0, + "source": "readme_deployment", + "target": "readme_docker_compose", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L722", + "weight": 1.0, + "source": "readme_deployment", + "target": "readme_docker_deployment", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L694", + "weight": 1.0, + "source": "readme_deployment", + "target": "readme_\u0645\u062a\u063a\u06cc\u0631\u0647\u0627\u06cc_\u0645\u062d\u06cc\u0637\u06cc_\u0645\u0648\u0631\u062f_\u0646\u06cc\u0627\u0632", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L758", + "weight": 1.0, + "source": "readme_\u0646\u06a9\u0627\u062a_\u062a\u0648\u0633\u0639\u0647", + "target": "readme_1_\u0627\u0641\u0632\u0648\u062f\u0646_\u0635\u0641\u062d\u0647_\u062c\u062f\u06cc\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L773", + "weight": 1.0, + "source": "readme_\u0646\u06a9\u0627\u062a_\u062a\u0648\u0633\u0639\u0647", + "target": "readme_2_\u0627\u0641\u0632\u0648\u062f\u0646_api_endpoint_\u062c\u062f\u06cc\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L784", + "weight": 1.0, + "source": "readme_\u0646\u06a9\u0627\u062a_\u062a\u0648\u0633\u0639\u0647", + "target": "readme_3_\u0627\u0641\u0632\u0648\u062f\u0646_\u06a9\u0627\u0645\u067e\u0648\u0646\u0646\u062a_\u062c\u062f\u06cc\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L797", + "weight": 1.0, + "source": "readme_\u0646\u06a9\u0627\u062a_\u062a\u0648\u0633\u0639\u0647", + "target": "readme_4_\u06a9\u0627\u0631_\u0628\u0627_\u062a\u0627\u0631\u06cc\u062e_\u0634\u0645\u0633\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L811", + "weight": 1.0, + "source": "readme_\u0646\u06a9\u0627\u062a_\u062a\u0648\u0633\u0639\u0647", + "target": "readme_5_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_context", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "README.md", + "source_location": "L828", + "weight": 1.0, + "source": "readme_troubleshooting", + "target": "readme_\u0645\u0634\u06a9\u0644\u0627\u062a_\u0631\u0627\u06cc\u062c", + "confidence_score": 1.0 + } + ], + "hyperedges": [], + "built_at_commit": "fd5935a150207f3a73a5faecb16d65b48e99ba8a" +} \ No newline at end of file diff --git a/next.config.js b/next.config.js index 06bda8f..563f6bf 100644 --- a/next.config.js +++ b/next.config.js @@ -5,6 +5,12 @@ const nextConfig = { // متادیتا (canonical/OG/keywords) باید داخل رندر شود نه استریم در . // از Next 15.2 استریم متادیتا پیش‌فرض است؛ این regex همه‌ی UAها را blocking می‌کند. htmlLimitedBots: /.*/, + // React Compiler (پایدار در Next 16) — memoization خودکار کامپوننت‌ها. + reactCompiler: true, + // نکته: cacheComponents فعال نشد. معماری multi-domain به headers() (هدر host) در + // layout و generateMetadata وابسته است؛ با cacheComponents هر دسترسی uncached به + // headers() باید داخل بسته شود (build روی /_not-found شکست خورد). این کار + // نیازمند Suspenseگذاری گسترده و ریسک نشت محتوای شهر بین دامنه‌هاست — فعلاً امن نیست. images: { remotePatterns: [ { diff --git a/package-lock.json b/package-lock.json index 5e2e2cc..1f02e21 100644 --- a/package-lock.json +++ b/package-lock.json @@ -19,7 +19,7 @@ "@mui/styled-engine": "^5.18.0", "@mui/x-charts": "^7.29.1", "@mui/x-date-pickers": "^7.29.4", - "@next/third-parties": "^15.5.7", + "@next/third-parties": "^16.2.10", "aos": "^2.3.4", "axios": "^1.13.2", "date-fns": "^4.1.0", @@ -33,14 +33,14 @@ "js-cookie": "^3.0.5", "jspdf": "^3.0.4", "moment-jalaali": "^0.10.4", - "next": "^15.5.7", + "next": "^16.2.10", "next-themes": "^0.4.6", "npm": "^11.7.0", "postcss": "^8.5.6", "qrcode": "^1.5.4", "qrcode.react": "^4.2.0", - "react": "^18.3.1", - "react-dom": "^18.3.1", + "react": "^19.2.7", + "react-dom": "^19.2.7", "react-easy-crop": "^5.5.6", "react-google-map-picker": "^1.2.3", "react-images-uploading": "^3.1.7", @@ -54,14 +54,19 @@ "uninstall": "^0.0.0" }, "devDependencies": { + "@eslint/eslintrc": "^3.3.5", "@testing-library/dom": "^10.4.1", "@testing-library/jest-dom": "^6.9.1", "@testing-library/react": "^16.3.2", "@testing-library/user-event": "^14.6.1", "@vitejs/plugin-react": "^4.7.0", + "babel-plugin-react-compiler": "^1.0.0", "cross-env": "^10.1.0", + "eslint": "^9.39.4", + "eslint-config-next": "^16.2.10", "jsdom": "^29.1.1", "prettier": "^3.7.4", + "typescript": "^6.0.3", "vitest": "^2.1.9" }, "engines": { @@ -542,6 +547,40 @@ "node": ">=20.19.0" } }, + "node_modules/@emnapi/core": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.10.0.tgz", + "integrity": "sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/wasi-threads": "1.2.1", + "tslib": "^2.4.0" + } + }, + "node_modules/@emnapi/runtime": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.10.0.tgz", + "integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@emnapi/wasi-threads": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz", + "integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, "node_modules/@emotion/babel-plugin": { "version": "11.13.5", "license": "MIT", @@ -690,6 +729,150 @@ "node": ">=12" } }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz", + "integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.12.2", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", + "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/config-array": { + "version": "0.21.2", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.2.tgz", + "integrity": "sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/object-schema": "^2.1.7", + "debug": "^4.3.1", + "minimatch": "^3.1.5" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/config-helpers": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.2.tgz", + "integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.17.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/core": { + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.17.0.tgz", + "integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@types/json-schema": "^7.0.15" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.5.tgz", + "integrity": "sha512-4IlJx0X0qftVsN5E+/vGujTRIFtwuLbNsVUe7TO6zYPDR1O6nFwvwhIKEKSrl6dZchmYBITazxKoUYOjdtjlRg==", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.14.0", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.1", + "minimatch": "^3.1.5", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/js": { + "version": "9.39.4", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.4.tgz", + "integrity": "sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + } + }, + "node_modules/@eslint/object-schema": { + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.7.tgz", + "integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/plugin-kit": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz", + "integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.17.0", + "levn": "^0.4.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, "node_modules/@exodus/bytes": { "version": "1.15.1", "license": "MIT", @@ -705,6 +888,72 @@ } } }, + "node_modules/@humanfs/core": { + "version": "0.19.2", + "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.2.tgz", + "integrity": "sha512-UhXNm+CFMWcbChXywFwkmhqjs3PRCmcSa/hfBgLIb7oQ5HNb1wS0icWsGtSAUNgefHeI+eBrA8I1fxmbHsGdvA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanfs/types": "^0.15.0" + }, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node": { + "version": "0.16.8", + "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.8.tgz", + "integrity": "sha512-gE1eQNZ3R++kTzFUpdGlpmy8kDZD/MLyHqDwqjkVQI0JMdI1D51sy1H958PNXYkM2rAac7e5/CnIKZrHtPh3BQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanfs/core": "^0.19.2", + "@humanfs/types": "^0.15.0", + "@humanwhocodes/retry": "^0.4.0" + }, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/types": { + "version": "0.15.0", + "resolved": "https://registry.npmjs.org/@humanfs/types/-/types-0.15.0.tgz", + "integrity": "sha512-ZZ1w0aoQkwuUuC7Yf+7sdeaNfqQiiLcSRbfI08oAxqLtpXQr9AIVX7Ay7HLDuiLYAaFPu8oBYNq/QIi9URHJ3Q==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/retry": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz", + "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, "node_modules/@img/colour": { "version": "1.0.0", "license": "MIT", @@ -1242,12 +1491,75 @@ "react": "^17.0.0 || ^18.0.0 || ^19.0.0" } }, + "node_modules/@napi-rs/wasm-runtime": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.6.tgz", + "integrity": "sha512-ZLv/JdUfkvOy9eCnnBaGfiO+XimbjebAeO+MRQqD/B+FR1tnRN0tpKSJHRbE8sFfS6aqsXZ67TQjfwfsxULVbg==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@tybys/wasm-util": "^0.10.3" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Brooooooklyn" + }, + "peerDependencies": { + "@emnapi/core": "^1.7.1", + "@emnapi/runtime": "^1.7.1" + } + }, "node_modules/@next/env": { - "version": "15.5.9", + "version": "16.2.10", + "resolved": "https://registry.npmjs.org/@next/env/-/env-16.2.10.tgz", + "integrity": "sha512-zLPxg9M0MEHmygpj5OuxjQ+vHMiy/K7cSp74G8ecYolmgUWw0RwN02tF56npup/+qaI8JB97hQgS/r2Hb6QwVA==", "license": "MIT" }, + "node_modules/@next/eslint-plugin-next": { + "version": "16.2.10", + "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-16.2.10.tgz", + "integrity": "sha512-Gs8D2m21VnJeFo9qvYIIqJH94frWerWYu41BprU1pLtRVF7PCQNLiFZZ3fG+iPuj3K83Cwv/rt+msLOy8Qgu3Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-glob": "3.3.1" + } + }, + "node_modules/@next/eslint-plugin-next/node_modules/fast-glob": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/@next/eslint-plugin-next/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/@next/swc-darwin-arm64": { - "version": "15.5.7", + "version": "16.2.10", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-16.2.10.tgz", + "integrity": "sha512-v9IdJCa0H0mbo+8z5zwUpOk1Vj7RjkcI5uNYf5Ws1y6szf/p3Mzl9hLaST8SCt6L9h8NGnruZcd2+o0NTNwDhA==", "cpu": [ "arm64" ], @@ -1260,14 +1572,128 @@ "node": ">= 10" } }, + "node_modules/@next/swc-darwin-x64": { + "version": "16.2.10", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-16.2.10.tgz", + "integrity": "sha512-17IS0jJRViROGmA9uGdNR8VPJpfbnaVG7E9qhso5jDLkmyd0lSDORWxbcKINzcFqzZqGwGtMSnrFRxBpuUYjLQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-gnu": { + "version": "16.2.10", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-16.2.10.tgz", + "integrity": "sha512-GRQRsRtuciNJvB54AvvuQTiq0oZtFwa1owQqtZD8wwnGpM2L39MV22kpI72YSXLKIyY40LC66EiLFv4PiicXxg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-musl": { + "version": "16.2.10", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-16.2.10.tgz", + "integrity": "sha512-zkN9MQYS7UQBro+FnISUq1itaQjXI9xqISzuQ+2bc921NcJ1x4yPCqrn77tVN6/dOOXaaWVX3k6/bR07pPwK+A==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-gnu": { + "version": "16.2.10", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-16.2.10.tgz", + "integrity": "sha512-iCVJnwvrPYECvA6WM/7+oo+OiTvedIKLxtCLAZP4xZR3nXa1zmzZyLPbYCmWvpd4CvMYF1EMTafd0ii3DygLvA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-musl": { + "version": "16.2.10", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-16.2.10.tgz", + "integrity": "sha512-ov2g4H0dHY9bPoOU83m91hWT7Iq5qy13bUnyyshLU3HGR1Ownn0X9QpmDPc5iIUaahTp7f7LeGAhV4DSFtackw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-arm64-msvc": { + "version": "16.2.10", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-16.2.10.tgz", + "integrity": "sha512-DwAnhLX76HQiFFQNgWlcK+JzlnD1rZ+UK/WY0ZMI/deXpvgnesjNYrqcfo1JzBuz4Kf7o3brIBL0glI1junatA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-x64-msvc": { + "version": "16.2.10", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-16.2.10.tgz", + "integrity": "sha512-0JXq3b85Jk9Jg4ntLUbXSPvoDw3gpZou7twuKdoFG2jOw635v7+IiXfTaa0TxVMyx78pUjnrVYwLgjKfX4e6/A==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, "node_modules/@next/third-parties": { - "version": "15.5.9", + "version": "16.2.10", + "resolved": "https://registry.npmjs.org/@next/third-parties/-/third-parties-16.2.10.tgz", + "integrity": "sha512-H3yxCMLziM1JKXnjQv83WBH2cp1fB1vMxpC1/bBTpvvaesBEuRuprpzq5RI32atis0VhUZflgdpJdGNZIGpQaQ==", "license": "MIT", "dependencies": { "third-party-capital": "1.0.20" }, "peerDependencies": { - "next": "^13.0.0 || ^14.0.0 || ^15.0.0", + "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" } }, @@ -1300,6 +1726,16 @@ "node": ">= 8" } }, + "node_modules/@nolyfill/is-core-module": { + "version": "1.0.39", + "resolved": "https://registry.npmjs.org/@nolyfill/is-core-module/-/is-core-module-1.0.39.tgz", + "integrity": "sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.4.0" + } + }, "node_modules/@popperjs/core": { "version": "2.11.8", "license": "MIT", @@ -1385,6 +1821,13 @@ "darwin" ] }, + "node_modules/@rtsao/scc": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz", + "integrity": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==", + "dev": true, + "license": "MIT" + }, "node_modules/@swc/helpers": { "version": "0.5.15", "license": "Apache-2.0", @@ -1471,6 +1914,17 @@ "@testing-library/dom": ">=7.21.4" } }, + "node_modules/@tybys/wasm-util": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.3.tgz", + "integrity": "sha512-F3fo1MYrRJYL3zER0OUOmkutjr1Vp23m7OsSgp7nq4SP6OqX6C/56XFIPAl5bt3zaBRjmW7SGz3u/6LwFpYcOg==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, "node_modules/@types/aria-query": { "version": "5.0.4", "dev": true, @@ -1566,6 +2020,20 @@ "@types/geojson": "*" } }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "dev": true, + "license": "MIT" + }, "node_modules/@types/pako": { "version": "2.0.4", "license": "MIT" @@ -1606,6 +2074,275 @@ "license": "MIT", "optional": true }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "8.62.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.62.1.tgz", + "integrity": "sha512-4EQM77WgVNxj7OkL/5b/D/xZsw00G577+UriYTC7JF5opcF3T2AuoeY7ueLaZgSVjSgCS6yOAJB5bRGLPSJUzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/regexpp": "^4.12.2", + "@typescript-eslint/scope-manager": "8.62.1", + "@typescript-eslint/type-utils": "8.62.1", + "@typescript-eslint/utils": "8.62.1", + "@typescript-eslint/visitor-keys": "8.62.1", + "ignore": "^7.0.5", + "natural-compare": "^1.4.0", + "ts-api-utils": "^2.5.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^8.62.1", + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.1.0" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz", + "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "8.62.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.62.1.tgz", + "integrity": "sha512-sPhE4iHuJDSvoAiec+Ro8JyXw8f0ql13HFR82P99nCm9GwTEKG0KYLvDe6REk8BCXuit6vJAv/Yxg5ABaNS2rA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/scope-manager": "8.62.1", + "@typescript-eslint/types": "8.62.1", + "@typescript-eslint/typescript-estree": "8.62.1", + "@typescript-eslint/visitor-keys": "8.62.1", + "debug": "^4.4.3" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.1.0" + } + }, + "node_modules/@typescript-eslint/project-service": { + "version": "8.62.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.62.1.tgz", + "integrity": "sha512-yQ3RgY5RkSBpsNS1Bx/JQEcA24FOSdfGktoyprAr5u18390UQdtVcfnEv4nIrIshNnavlVyZBKxQwT1fIAE6cg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/tsconfig-utils": "^8.62.1", + "@typescript-eslint/types": "^8.62.1", + "debug": "^4.4.3" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.1.0" + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "8.62.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.62.1.tgz", + "integrity": "sha512-r4d249KbQ1SFdpeStvob8Ih6aPPIzfqllPVOtvhve6ZcpuVcYo5/7zUWckKpHE7StASX4kTKZTLf0WQm/wPkcg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.62.1", + "@typescript-eslint/visitor-keys": "8.62.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/tsconfig-utils": { + "version": "8.62.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.62.1.tgz", + "integrity": "sha512-xadytJqX9vJVQ2fdQjkcIVigwaOJNWkpjdLt6cEQ+xPnrI1fkp+/jZE/I97k9KUjqtpd25i0HeyZf3T6dutv2g==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.1.0" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "8.62.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.62.1.tgz", + "integrity": "sha512-aXM5xlqXiTxPibXB93cLAURfT3rlizf7uMXISCXy66Isr/9hISJx3yDsKl0L7lKa51b8JpFuNKby0/O0pEm9jg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.62.1", + "@typescript-eslint/typescript-estree": "8.62.1", + "@typescript-eslint/utils": "8.62.1", + "debug": "^4.4.3", + "ts-api-utils": "^2.5.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.1.0" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "8.62.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.62.1.tgz", + "integrity": "sha512-ooCzJFaf+Hg+uG6fA3NRFGuFjlfNlDhBthbv4ZPU/0elCAFUfnyXUvf/WOpHz/jYwSmvU2GkR2LtyUfy1AxZ1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "8.62.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.62.1.tgz", + "integrity": "sha512-xMcW9oP9u7fAMXYs9A65CVmtLQe2r//oXINHfi8HV+oiqhih17sbLdhXr4540YWlgpDKQdY854OL5ZrdCiQsAA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/project-service": "8.62.1", + "@typescript-eslint/tsconfig-utils": "8.62.1", + "@typescript-eslint/types": "8.62.1", + "@typescript-eslint/visitor-keys": "8.62.1", + "debug": "^4.4.3", + "minimatch": "^10.2.2", + "semver": "^7.7.3", + "tinyglobby": "^0.2.15", + "ts-api-utils": "^2.5.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.1.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz", + "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "18 || 20 || >=22" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.7.tgz", + "integrity": "sha512-7oFy703dxfY3/NLxC1fh2SUCQ0H9rmAY+5EpDVfXjUTTs+HEwR2nYaqLv+GWcTsumwxPfiz6CzCNkwXwBUwqCA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^4.0.2" + }, + "engines": { + "node": "18 || 20 || >=22" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { + "version": "10.2.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz", + "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "brace-expansion": "^5.0.5" + }, + "engines": { + "node": "18 || 20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "8.62.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.62.1.tgz", + "integrity": "sha512-sHtbPfuKNZCG+ih8SyjjucqRntSVmp8XgL5u6o9mAhiSn8ds5o/M/XdM0abweme2Tln3szOstOrZ9OXitvPh0g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.9.1", + "@typescript-eslint/scope-manager": "8.62.1", + "@typescript-eslint/types": "8.62.1", + "@typescript-eslint/typescript-estree": "8.62.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.1.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "8.62.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.62.1.tgz", + "integrity": "sha512-4g3BLxfdTMy8iZG0MaBkadnlRrCJ74cQiFbyEVMrkwIoqdyaXXQM22cotDvrl4x28wgIZ9rEJRoM+mmhSJpJ1g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.62.1", + "eslint-visitor-keys": "^5.0.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, "node_modules/@ucast/core": { "version": "1.10.2", "license": "Apache-2.0" @@ -1633,6 +2370,319 @@ "@ucast/mongo": "^2.4.0" } }, + "node_modules/@unrs/resolver-binding-android-arm-eabi": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm-eabi/-/resolver-binding-android-arm-eabi-1.12.2.tgz", + "integrity": "sha512-g5T90pqg1bo/7mytQx6F4iBNC0Wsh9cu+z9veDbFjc7HjpesJFWD7QMS0NGStXM075+7dJPPVvBbpZlnrdpi/w==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@unrs/resolver-binding-android-arm64": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm64/-/resolver-binding-android-arm64-1.12.2.tgz", + "integrity": "sha512-YGCRZv/9GLhwmz6mYDeTsm/92BAyR28l6c2ReweVW5pWgfsitWLY8upvfRlGdoyD8HjeTHSYJWyZGD4KJA/nFQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@unrs/resolver-binding-darwin-arm64": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-arm64/-/resolver-binding-darwin-arm64-1.12.2.tgz", + "integrity": "sha512-u9DiNT1auQMO20A9SyTuG3wUgQWB9Z7KjAg0uFuCDR1FsAY8A0CG2S6JpHS1xwm/w1G08bjXZDcyOCjv1WAm2w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@unrs/resolver-binding-darwin-x64": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-x64/-/resolver-binding-darwin-x64-1.12.2.tgz", + "integrity": "sha512-f7rPLi/T1HVKZu/u6t87lroib16n8vrSzcyxI7lg4BGO9UF26KhQL44sd9eOUgrTYhvRXtWOIZT5PejdPyJfUA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@unrs/resolver-binding-freebsd-x64": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-freebsd-x64/-/resolver-binding-freebsd-x64-1.12.2.tgz", + "integrity": "sha512-BpcOjWCJub6nRZUS2zA20pmLvjtqAtGejETaIyRLiZiQf++cbrjltLA5NN/xaXfqeOBOSlMFbemIl5/S5tljmg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm-gnueabihf": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-gnueabihf/-/resolver-binding-linux-arm-gnueabihf-1.12.2.tgz", + "integrity": "sha512-vZTDvdSISZjJx66OzJqtsOhzifbqRjbmI1Mnu49fQDwog5GtDI4QidRiEAYbZCRj9C8YZEW+3ZjqsyS9GR4k2A==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm-musleabihf": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-musleabihf/-/resolver-binding-linux-arm-musleabihf-1.12.2.tgz", + "integrity": "sha512-BiPI+IrIlwcW4nLLMM21+B1dFPzd55yAVgVGrdgDjNef+ch03GdxrcyaIz8X9SsQirh/kCQ7mviyWlMxdh2D7g==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm64-gnu": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-gnu/-/resolver-binding-linux-arm64-gnu-1.12.2.tgz", + "integrity": "sha512-zJc0H99FEPoFfSrNpa91HYfxzfAJCr502oxNK1cfdC9hlaFI43RT+JFCann9JUgZmLzzntChHyn13Sgn9ljHNg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm64-musl": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-musl/-/resolver-binding-linux-arm64-musl-1.12.2.tgz", + "integrity": "sha512-KQ3Lki6l+Pz1k/eBipN41ES+YUK30beLGb9YqcB1O542cyLCNE6GaxrfcY3T6EezmGGk84wb5XyO9loTM9tkcA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-loong64-gnu": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-loong64-gnu/-/resolver-binding-linux-loong64-gnu-1.12.2.tgz", + "integrity": "sha512-3SJGEh1DborhG6pyxvhPzCT4bbSIVihsvgJc13P1bHG7KLdNDaF9T3gsTwFc7Jw/5Y5/iWOjkEx7Zy0NvCGX3Q==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-loong64-musl": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-loong64-musl/-/resolver-binding-linux-loong64-musl-1.12.2.tgz", + "integrity": "sha512-jiuG/Obbel7uw1PwHNFfrkiKhLAF6mnyZ6aWlOAVN9WqKm8v0OFGnciJIHu8+CMvXLQ8AD51LPzAoUfT21D5Ew==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-ppc64-gnu": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-ppc64-gnu/-/resolver-binding-linux-ppc64-gnu-1.12.2.tgz", + "integrity": "sha512-q7xRvVpmcfeL+LlZg8Pbbo6QaTZwDU5BaGZbwfhkEsXJn3Was8xYfE0RBH266xZt0rM6B7i8xAYIvjthuUIWHg==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-riscv64-gnu": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-gnu/-/resolver-binding-linux-riscv64-gnu-1.12.2.tgz", + "integrity": "sha512-0CVdx6lcnT3Q9inOH8tsMIOJ6ImndllMjqJHg8RLVdB7Vq4SfkEXl9mCSsVNuNA4MCYycRicCUxPCabVHJRr6A==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-riscv64-musl": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-musl/-/resolver-binding-linux-riscv64-musl-1.12.2.tgz", + "integrity": "sha512-iOwlRo9vnp6R6ohHQS11n0NnfdXx/omhkocmIfaPRpQhKZ+3BDMkkdRVh53qjkFkpPddf+FETA28NwGN7l5l+w==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-s390x-gnu": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-s390x-gnu/-/resolver-binding-linux-s390x-gnu-1.12.2.tgz", + "integrity": "sha512-HYJtLfXq94q8iZNFT1lknx258wlkkWhZeUXJRqzKBBUJ00CvZ+N33zgbCqimLjsyw5Va6uUxhVa12mI+kaveEw==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-x64-gnu": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-gnu/-/resolver-binding-linux-x64-gnu-1.12.2.tgz", + "integrity": "sha512-mPsUhunKKDih5O96Y6enDQyHc1SqBPlY1E/SfMWDM3EdJ95Z9CArPeCVwCCqbP45ljvivdEk8Fxn+SIb1rDAJQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-x64-musl": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-musl/-/resolver-binding-linux-x64-musl-1.12.2.tgz", + "integrity": "sha512-azrt6+5ydLd8Vt210AAFis/lZevSfPw93EJRIJG+xPu4WCJ8K0kppCTpMyLPcKT7H15M4Jnt2tMp5bOvCkRC6A==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-openharmony-arm64": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-openharmony-arm64/-/resolver-binding-openharmony-arm64-1.12.2.tgz", + "integrity": "sha512-YZ9hP4O0X9PQb8eO980qmLNGH4zT3I9+SZTdt0Pr0YyuGQhYKoOZkV02VzrzyOZJ5xIJ3UFIenKkUkGg8GjgWQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ] + }, + "node_modules/@unrs/resolver-binding-wasm32-wasi": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-wasm32-wasi/-/resolver-binding-wasm32-wasi-1.12.2.tgz", + "integrity": "sha512-tYFDIkMxSflfEc/h92ZWNsZlHSwgimbNHSO3PL2JWQHfCuC2q316jMyYU9TIWZsFK2bQwyK5VAdYgn8ygPj69A==", + "cpu": [ + "wasm32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/core": "1.10.0", + "@emnapi/runtime": "1.10.0", + "@napi-rs/wasm-runtime": "^1.1.4" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@unrs/resolver-binding-win32-arm64-msvc": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-arm64-msvc/-/resolver-binding-win32-arm64-msvc-1.12.2.tgz", + "integrity": "sha512-qzNyg3xL0VPQmCaUh+N5jSitce6k+uCBfMDesWRnlULOZaqUkaJ0ybdT+UqlAWJoQjuqfIU/0Ptx9bteN4D82g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@unrs/resolver-binding-win32-ia32-msvc": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-ia32-msvc/-/resolver-binding-win32-ia32-msvc-1.12.2.tgz", + "integrity": "sha512-WD9sY00OfpHVGfsnHZoA8jVT+esS/Bg8z8jzxp5BnDCjjwsuKsPQrzswwpFy4J1AUJbXPRfkpcX0mXrzeXW79g==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@unrs/resolver-binding-win32-x64-msvc": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-x64-msvc/-/resolver-binding-win32-x64-msvc-1.12.2.tgz", + "integrity": "sha512-nAB74NfSNKknqQ1RrYj6uz8FcXEomu/MATJZxh/x+BArzN2U3JbOYC0APYzUIGhVY3m5hRxA8VPNdPBoG8txlA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, "node_modules/@vitejs/plugin-react": { "version": "4.7.0", "dev": true, @@ -1751,6 +2801,46 @@ "url": "https://opencollective.com/vitest" } }, + "node_modules/acorn": { + "version": "8.17.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.17.0.tgz", + "integrity": "sha512-xRQbDb9BnwDafYNn6Vwl839DYVjqXYb1XVGtWAZ1kcDc6iwAL4hg3B1dZlRiuENFeO2H53gFG3in621AdERVAg==", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.15.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.15.0.tgz", + "integrity": "sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, "node_modules/ansi-escapes": { "version": "4.3.2", "license": "MIT", @@ -1812,6 +2902,13 @@ "version": "5.0.2", "license": "MIT" }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "license": "Python-2.0" + }, "node_modules/aria-query": { "version": "5.3.0", "dev": true, @@ -1820,6 +2917,166 @@ "dequal": "^2.0.3" } }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz", + "integrity": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "is-array-buffer": "^3.0.5" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-includes": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.9.tgz", + "integrity": "sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.24.0", + "es-object-atoms": "^1.1.1", + "get-intrinsic": "^1.3.0", + "is-string": "^1.1.1", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.findlast": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", + "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.findlastindex": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.6.tgz", + "integrity": "sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.9", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "es-shim-unscopables": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz", + "integrity": "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz", + "integrity": "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz", + "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3", + "es-errors": "^1.3.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz", + "integrity": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/assertion-error": { "version": "2.0.1", "dev": true, @@ -1828,10 +3085,53 @@ "node": ">=12" } }, + "node_modules/ast-types-flow": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", + "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/async-function": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/async-function/-/async-function-1.0.0.tgz", + "integrity": "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, "node_modules/asynckit": { "version": "0.4.0", "license": "MIT" }, + "node_modules/available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/axe-core": { + "version": "4.12.1", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.12.1.tgz", + "integrity": "sha512-s7iGf5GaVMxEG0ENN9x+xTr7GFZCb1ZP/1uATUpCEK2X78nDB3RwbtFCo9pGAf9ru+VwoQ464DkaLEeRM08wJA==", + "dev": true, + "license": "MPL-2.0", + "engines": { + "node": ">=4" + } + }, "node_modules/axios": { "version": "1.13.2", "license": "MIT", @@ -1841,6 +3141,16 @@ "proxy-from-env": "^1.1.0" } }, + "node_modules/axobject-query": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz", + "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">= 0.4" + } + }, "node_modules/babel-plugin-macros": { "version": "3.1.0", "license": "MIT", @@ -1854,6 +3164,23 @@ "npm": ">=6" } }, + "node_modules/babel-plugin-react-compiler": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/babel-plugin-react-compiler/-/babel-plugin-react-compiler-1.0.0.tgz", + "integrity": "sha512-Ixm8tFfoKKIPYdCCKYTsqv+Fd4IJ0DQqMyEimo+pxUOMUR9cVPlwTrFt9Avu+3cb6Zp3mAzl+t1MrG2fxxKsxw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.26.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, "node_modules/base64-arraybuffer": { "version": "1.0.2", "license": "MIT", @@ -1881,7 +3208,6 @@ }, "node_modules/baseline-browser-mapping": { "version": "2.10.40", - "dev": true, "license": "Apache-2.0", "bin": { "baseline-browser-mapping": "dist/cli.cjs" @@ -1916,6 +3242,17 @@ "readable-stream": "^3.4.0" } }, + "node_modules/brace-expansion": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.15.tgz", + "integrity": "sha512-EwOCDEex4quD37XhqM3omwtMoJjr//isUZz1JopUNWms+4Z2ViyM/k1YIRePpoVNnQhENnxtFjLaxNHrT7xIUg==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, "node_modules/braces": { "version": "3.0.3", "license": "MIT", @@ -1988,6 +3325,25 @@ "node": ">=8" } }, + "node_modules/call-bind": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.9.tgz", + "integrity": "sha512-a/hy+pNsFUTR+Iz8TCJvXudKVLAnz/DyeSUo10I5yvFDQJBFU2s9uqQpoSrJlroHUKoKqzg+epxyP9lqFdzfBQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "get-intrinsic": "^1.3.0", + "set-function-length": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/call-bind-apply-helpers": { "version": "1.0.2", "license": "MIT", @@ -1999,6 +3355,23 @@ "node": ">= 0.4" } }, + "node_modules/call-bound": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", + "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "get-intrinsic": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/callsites": { "version": "3.1.0", "license": "MIT", @@ -2071,6 +3444,22 @@ "node": ">=18" } }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, "node_modules/chardet": { "version": "2.1.1", "license": "MIT" @@ -2204,6 +3593,13 @@ "node": ">= 10" } }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, "node_modules/convert-source-map": { "version": "1.9.0", "license": "MIT" @@ -2416,6 +3812,13 @@ "node": ">=12" } }, + "node_modules/damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", + "dev": true, + "license": "BSD-2-Clause" + }, "node_modules/data-urls": { "version": "7.0.0", "license": "MIT", @@ -2427,6 +3830,60 @@ "node": "^20.19.0 || ^22.12.0 || >=24.0.0" } }, + "node_modules/data-view-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz", + "integrity": "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-length": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz", + "integrity": "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/inspect-js" + } + }, + "node_modules/data-view-byte-offset": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz", + "integrity": "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/date-fns": { "version": "4.1.0", "license": "MIT", @@ -2473,6 +3930,13 @@ "node": ">=6" } }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true, + "license": "MIT" + }, "node_modules/defaults": { "version": "1.0.4", "license": "MIT", @@ -2483,6 +3947,42 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/delaunator": { "version": "5.0.1", "license": "ISC", @@ -2524,6 +4024,19 @@ "version": "1.1.3", "license": "MIT" }, + "node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/dom-accessibility-api": { "version": "0.5.16", "dev": true, @@ -2565,6 +4078,13 @@ "dev": true, "license": "ISC" }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true, + "license": "MIT" + }, "node_modules/entities": { "version": "8.0.0", "license": "BSD-2-Clause", @@ -2582,6 +4102,94 @@ "is-arrayish": "^0.2.1" } }, + "node_modules/es-abstract": { + "version": "1.24.2", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.2.tgz", + "integrity": "sha512-2FpH9Q5i2RRwyEP1AylXe6nYLR5OhaJTZwmlcP0dL/+JCbgg7yyEo/sEK6HeGZRf3dFpWwThaRHVApXSkW3xeg==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.2", + "arraybuffer.prototype.slice": "^1.0.4", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "data-view-buffer": "^1.0.2", + "data-view-byte-length": "^1.0.2", + "data-view-byte-offset": "^1.0.1", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "es-set-tostringtag": "^2.1.0", + "es-to-primitive": "^1.3.0", + "function.prototype.name": "^1.1.8", + "get-intrinsic": "^1.3.0", + "get-proto": "^1.0.1", + "get-symbol-description": "^1.1.0", + "globalthis": "^1.0.4", + "gopd": "^1.2.0", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "internal-slot": "^1.1.0", + "is-array-buffer": "^3.0.5", + "is-callable": "^1.2.7", + "is-data-view": "^1.0.2", + "is-negative-zero": "^2.0.3", + "is-regex": "^1.2.1", + "is-set": "^2.0.3", + "is-shared-array-buffer": "^1.0.4", + "is-string": "^1.1.1", + "is-typed-array": "^1.1.15", + "is-weakref": "^1.1.1", + "math-intrinsics": "^1.1.0", + "object-inspect": "^1.13.4", + "object-keys": "^1.1.1", + "object.assign": "^4.1.7", + "own-keys": "^1.0.1", + "regexp.prototype.flags": "^1.5.4", + "safe-array-concat": "^1.1.3", + "safe-push-apply": "^1.0.0", + "safe-regex-test": "^1.1.0", + "set-proto": "^1.0.0", + "stop-iteration-iterator": "^1.1.0", + "string.prototype.trim": "^1.2.10", + "string.prototype.trimend": "^1.0.9", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.3", + "typed-array-byte-length": "^1.0.3", + "typed-array-byte-offset": "^1.0.4", + "typed-array-length": "^1.0.7", + "unbox-primitive": "^1.1.0", + "which-typed-array": "^1.1.19" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-abstract-get": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-abstract-get/-/es-abstract-get-1.0.0.tgz", + "integrity": "sha512-6PMWXpdhshVvFp+FoWYs1EvG1Nj0tvk0dZM+XcK0xMEM1czRVcP6ohqPWHy6qPagSpC8j4+p89WXlT+xXJs/fg==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.2", + "is-callable": "^1.2.7", + "object-inspect": "^1.13.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/es-define-property": { "version": "1.0.1", "license": "MIT", @@ -2596,13 +4204,43 @@ "node": ">= 0.4" } }, + "node_modules/es-iterator-helpers": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.3.3.tgz", + "integrity": "sha512-0PuBxFi+4uPanB97iDxCLWuHeYud2FALrw5HFZGtAF38UpJDbDC8frwp2cnDyae692CQ0dou60UwWfhgsa4U/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.9", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.24.2", + "es-errors": "^1.3.0", + "es-set-tostringtag": "^2.1.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.3.0", + "globalthis": "^1.0.4", + "gopd": "^1.2.0", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.2.0", + "has-symbols": "^1.1.0", + "internal-slot": "^1.1.0", + "iterator.prototype": "^1.1.5", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/es-module-lexer": { "version": "1.7.0", "dev": true, "license": "MIT" }, "node_modules/es-object-atoms": { - "version": "1.1.1", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.2.tgz", + "integrity": "sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==", "license": "MIT", "dependencies": { "es-errors": "^1.3.0" @@ -2624,6 +4262,40 @@ "node": ">= 0.4" } }, + "node_modules/es-shim-unscopables": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz", + "integrity": "sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-to-primitive": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.4.tgz", + "integrity": "sha512-yPDz7wqpg1/mmHLmS3tcfTfbw5f1eryXvyghYBffGdERwe+mV7ZcWzTR8LR17Kvqt3qfPurjlonmnq3MKXIOXw==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-abstract-get": "^1.0.0", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "is-callable": "^1.2.7", + "is-date-object": "^1.1.0", + "is-symbol": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/esbuild": { "version": "0.21.5", "dev": true, @@ -2679,6 +4351,571 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/eslint": { + "version": "9.39.4", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.4.tgz", + "integrity": "sha512-XoMjdBOwe/esVgEvLmNsD3IRHkm7fbKIUGvrleloJXUZgDHig2IPWNniv+GwjyJXzuNqVjlr5+4yVUZjycJwfQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.8.0", + "@eslint-community/regexpp": "^4.12.1", + "@eslint/config-array": "^0.21.2", + "@eslint/config-helpers": "^0.4.2", + "@eslint/core": "^0.17.0", + "@eslint/eslintrc": "^3.3.5", + "@eslint/js": "9.39.4", + "@eslint/plugin-kit": "^0.4.1", + "@humanfs/node": "^0.16.6", + "@humanwhocodes/module-importer": "^1.0.1", + "@humanwhocodes/retry": "^0.4.2", + "@types/estree": "^1.0.6", + "ajv": "^6.14.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.6", + "debug": "^4.3.2", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^8.4.0", + "eslint-visitor-keys": "^4.2.1", + "espree": "^10.4.0", + "esquery": "^1.5.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^8.0.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.5", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + }, + "peerDependencies": { + "jiti": "*" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + } + } + }, + "node_modules/eslint-config-next": { + "version": "16.2.10", + "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-16.2.10.tgz", + "integrity": "sha512-HSybLOY0QKf39i4FWUqPN0xWiNDi6A6UqJmZtgDkS3zMqjXTqULvj/sueXx3cdCG0mVG+qH6k5/qdegklH1d1w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@next/eslint-plugin-next": "16.2.10", + "eslint-import-resolver-node": "^0.3.6", + "eslint-import-resolver-typescript": "^3.5.2", + "eslint-plugin-import": "^2.32.0", + "eslint-plugin-jsx-a11y": "^6.10.0", + "eslint-plugin-react": "^7.37.0", + "eslint-plugin-react-hooks": "^7.0.0", + "globals": "16.4.0", + "typescript-eslint": "^8.46.0" + }, + "peerDependencies": { + "eslint": ">=9.0.0", + "typescript": ">=3.3.1" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/eslint-config-next/node_modules/globals": { + "version": "16.4.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-16.4.0.tgz", + "integrity": "sha512-ob/2LcVVaVGCYN+r14cnwnoDPUufjiYgSqRhiFD0Q1iI4Odora5RE8Iv1D24hAz5oMophRGkGz+yuvQmmUMnMw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.10", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.10.tgz", + "integrity": "sha512-tRrKqFyCaKict5hOd244sL6EQFNycnMQnBe+j8uqGNXYzsImGbGUU4ibtoaBmv5FLwJwcFJNeg1GeVjQfbMrDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.16.1", + "resolve": "^2.0.0-next.6" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/resolve": { + "version": "2.0.0-next.7", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.7.tgz", + "integrity": "sha512-tqt+NBWwyaMgw3zDsnygx4CByWjQEJHOPMdslYhppaQSJUtL/D4JO9CcBBlhPoI8lz9oJIDXkwXfhF4aWqP8xQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "is-core-module": "^2.16.2", + "node-exports-info": "^1.6.0", + "object-keys": "^1.1.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/eslint-import-resolver-typescript": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.10.1.tgz", + "integrity": "sha512-A1rHYb06zjMGAxdLSkN2fXPBwuSaQ0iO5M/hdyS0Ajj1VBaRp0sPD3dn1FhME3c/JluGFbwSxyCfqdSbtQLAHQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "@nolyfill/is-core-module": "1.0.39", + "debug": "^4.4.0", + "get-tsconfig": "^4.10.0", + "is-bun-module": "^2.0.0", + "stable-hash": "^0.0.5", + "tinyglobby": "^0.2.13", + "unrs-resolver": "^1.6.2" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint-import-resolver-typescript" + }, + "peerDependencies": { + "eslint": "*", + "eslint-plugin-import": "*", + "eslint-plugin-import-x": "*" + }, + "peerDependenciesMeta": { + "eslint-plugin-import": { + "optional": true + }, + "eslint-plugin-import-x": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils": { + "version": "2.14.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.14.0.tgz", + "integrity": "sha512-W2WCRZ9Dqntd+2u8jJcVMV2PKulc6RdLgUUoh/yQr3uB6lo/ZOeGx11sv60/8S4QFFKNslAlWhr9u0Ef7ZW6Ig==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.32.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.32.0.tgz", + "integrity": "sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rtsao/scc": "^1.1.0", + "array-includes": "^3.1.9", + "array.prototype.findlastindex": "^1.2.6", + "array.prototype.flat": "^1.3.3", + "array.prototype.flatmap": "^1.3.3", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.9", + "eslint-module-utils": "^2.12.1", + "hasown": "^2.0.2", + "is-core-module": "^2.16.1", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.8", + "object.groupby": "^1.0.3", + "object.values": "^1.2.1", + "semver": "^6.3.1", + "string.prototype.trimend": "^1.0.9", + "tsconfig-paths": "^3.15.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.10.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.10.2.tgz", + "integrity": "sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "aria-query": "^5.3.2", + "array-includes": "^3.1.8", + "array.prototype.flatmap": "^1.3.2", + "ast-types-flow": "^0.0.8", + "axe-core": "^4.10.0", + "axobject-query": "^4.1.0", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "hasown": "^2.0.2", + "jsx-ast-utils": "^3.3.5", + "language-tags": "^1.0.9", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.8", + "safe-regex-test": "^1.0.3", + "string.prototype.includes": "^2.0.1" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9" + } + }, + "node_modules/eslint-plugin-jsx-a11y/node_modules/aria-query": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz", + "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/eslint-plugin-react": { + "version": "7.37.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.5.tgz", + "integrity": "sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.8", + "array.prototype.findlast": "^1.2.5", + "array.prototype.flatmap": "^1.3.3", + "array.prototype.tosorted": "^1.1.4", + "doctrine": "^2.1.0", + "es-iterator-helpers": "^1.2.1", + "estraverse": "^5.3.0", + "hasown": "^2.0.2", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.9", + "object.fromentries": "^2.0.8", + "object.values": "^1.2.1", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.5", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.12", + "string.prototype.repeat": "^1.0.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-7.1.1.tgz", + "integrity": "sha512-f2I7Gw6JbvCexzIInuSbZpfdQ44D7iqdWX01FKLvrPgqxoE7oMj8clOfto8U6vYiz4yd5oKu39rRSVOe1zRu0g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.24.4", + "@babel/parser": "^7.24.4", + "hermes-parser": "^0.25.1", + "zod": "^3.25.0 || ^4.0.0", + "zod-validation-error": "^3.5.0 || ^4.0.0" + }, + "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 || ^10.0.0" + } + }, + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.7", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.7.tgz", + "integrity": "sha512-tqt+NBWwyaMgw3zDsnygx4CByWjQEJHOPMdslYhppaQSJUtL/D4JO9CcBBlhPoI8lz9oJIDXkwXfhF4aWqP8xQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "is-core-module": "^2.16.2", + "node-exports-info": "^1.6.0", + "object-keys": "^1.1.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/eslint-plugin-react/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-scope": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz", + "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz", + "integrity": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^20.19.0 || ^22.13.0 || >=24" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/eslint-visitor-keys": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", + "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/espree": { + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz", + "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.15.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.2.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree/node_modules/eslint-visitor-keys": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", + "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.7.0.tgz", + "integrity": "sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, "node_modules/estree-walker": { "version": "3.0.3", "dev": true, @@ -2687,6 +4924,16 @@ "@types/estree": "^1.0.0" } }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/events": { "version": "3.3.0", "license": "MIT", @@ -2702,6 +4949,13 @@ "node": ">=12.0.0" } }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true, + "license": "MIT" + }, "node_modules/fast-glob": { "version": "3.3.3", "license": "MIT", @@ -2726,6 +4980,20 @@ "node": ">= 6" } }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true, + "license": "MIT" + }, "node_modules/fast-png": { "version": "6.4.0", "license": "MIT", @@ -2781,6 +5049,19 @@ "node": ">=0.8.0" } }, + "node_modules/file-entry-cache": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "flat-cache": "^4.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, "node_modules/fill-range": { "version": "7.1.1", "license": "MIT", @@ -2806,6 +5087,27 @@ "node": ">=8" } }, + "node_modules/flat-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.4" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/flatted": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.2.tgz", + "integrity": "sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==", + "dev": true, + "license": "ISC" + }, "node_modules/follow-redirects": { "version": "1.15.11", "funding": [ @@ -2824,6 +5126,22 @@ } } }, + "node_modules/for-each": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz", + "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-callable": "^1.2.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/form-data": { "version": "4.0.5", "license": "MIT", @@ -2856,6 +5174,50 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/function.prototype.name": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.2.0.tgz", + "integrity": "sha512-jObKIik1P2QjPHP5nz5BaOtUlfgS0fWo8IUByNXkM+o+02sJOi94em77GwJKQSJ3gfPHdgzLNrHc1uokV4P/ew==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.9", + "call-bound": "^1.0.4", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2", + "hasown": "^2.0.4", + "is-callable": "^1.2.7", + "is-document.all": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/generator-function": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/generator-function/-/generator-function-2.0.1.tgz", + "integrity": "sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, "node_modules/gensync": { "version": "1.0.0-beta.2", "dev": true, @@ -2918,6 +5280,37 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/get-symbol-description": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz", + "integrity": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-tsconfig": { + "version": "4.14.0", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.14.0.tgz", + "integrity": "sha512-yTb+8DXzDREzgvYmh6s9vHsSVCHeC0G3PI5bEXNBHtmshPnO+S5O7qgLEOn0I5QvMy6kpZN8K1NKGyilLb93wA==", + "dev": true, + "license": "MIT", + "dependencies": { + "resolve-pkg-maps": "^1.0.0" + }, + "funding": { + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" + } + }, "node_modules/gl-matrix": { "version": "3.4.4", "license": "MIT" @@ -2932,6 +5325,36 @@ "node": ">=10.13.0" } }, + "node_modules/globals": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globalthis": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-properties": "^1.2.1", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/gopd": { "version": "1.2.0", "license": "MIT", @@ -2942,6 +5365,19 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/has-bigints": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz", + "integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/has-flag": { "version": "4.0.0", "license": "MIT", @@ -2949,6 +5385,35 @@ "node": ">=8" } }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz", + "integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/has-symbols": { "version": "1.1.0", "license": "MIT", @@ -2973,7 +5438,9 @@ } }, "node_modules/hasown": { - "version": "2.0.2", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.4.tgz", + "integrity": "sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==", "license": "MIT", "dependencies": { "function-bind": "^1.1.2" @@ -2982,6 +5449,23 @@ "node": ">= 0.4" } }, + "node_modules/hermes-estree": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.25.1.tgz", + "integrity": "sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==", + "dev": true, + "license": "MIT" + }, + "node_modules/hermes-parser": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.25.1.tgz", + "integrity": "sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==", + "dev": true, + "license": "MIT", + "dependencies": { + "hermes-estree": "0.25.1" + } + }, "node_modules/hoist-non-react-statics": { "version": "3.3.2", "license": "BSD-3-Clause", @@ -3058,6 +5542,16 @@ ], "license": "BSD-3-Clause" }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, "node_modules/import-fresh": { "version": "3.3.1", "license": "MIT", @@ -3072,6 +5566,16 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, "node_modules/indent-string": { "version": "4.0.0", "dev": true, @@ -3108,18 +5612,19 @@ "node": ">=12.0.0" } }, - "node_modules/inquirer/node_modules/chalk": { - "version": "4.1.2", + "node_modules/internal-slot": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz", + "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==", + "dev": true, "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "es-errors": "^1.3.0", + "hasown": "^2.0.2", + "side-channel": "^1.1.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">= 0.4" } }, "node_modules/internmap": { @@ -3133,10 +5638,64 @@ "version": "5.4.0", "license": "MIT" }, + "node_modules/is-array-buffer": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz", + "integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-arrayish": { "version": "0.2.1", "license": "MIT" }, + "node_modules/is-async-function": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.1.tgz", + "integrity": "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "async-function": "^1.0.0", + "call-bound": "^1.0.3", + "get-proto": "^1.0.1", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bigint": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz", + "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-bigints": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-binary-path": { "version": "2.1.0", "license": "MIT", @@ -3147,11 +5706,104 @@ "node": ">=8" } }, - "node_modules/is-core-module": { - "version": "2.16.1", + "node_modules/is-boolean-object": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz", + "integrity": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==", + "dev": true, "license": "MIT", "dependencies": { - "hasown": "^2.0.2" + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bun-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-bun-module/-/is-bun-module-2.0.0.tgz", + "integrity": "sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.7.1" + } + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.16.2", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.2.tgz", + "integrity": "sha512-evOr8xfXKxE6qSR0hSXL2r3sd7ALj8+7jQEUvPYcm5sgZFdJ+AYzT6yNmJenvIYQBgIGwfwz08sL8zoL7yq2BA==", + "license": "MIT", + "dependencies": { + "hasown": "^2.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-view": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz", + "integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "get-intrinsic": "^1.2.6", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz", + "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-document.all": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-document.all/-/is-document.all-1.0.0.tgz", + "integrity": "sha512-+XSoyS05OdBbhFuELhgTCpFNHkpBOJqtsZfUFFpe5QTw+9Sjbh8zitxhQkYAo6wV7e1Vb8cAPvpCk9jGam/82g==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.4" }, "engines": { "node": ">= 0.4" @@ -3167,6 +5819,22 @@ "node": ">=0.10.0" } }, + "node_modules/is-finalizationregistry": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz", + "integrity": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-fullwidth-code-point": { "version": "3.0.0", "license": "MIT", @@ -3174,6 +5842,26 @@ "node": ">=8" } }, + "node_modules/is-generator-function": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.2.tgz", + "integrity": "sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.4", + "generator-function": "^2.0.0", + "get-proto": "^1.0.1", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-glob": { "version": "4.0.3", "license": "MIT", @@ -3191,6 +5879,32 @@ "node": ">=8" } }, + "node_modules/is-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", + "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-number": { "version": "7.0.0", "license": "MIT", @@ -3198,10 +5912,126 @@ "node": ">=0.12.0" } }, + "node_modules/is-number-object": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz", + "integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-potential-custom-element-name": { "version": "1.0.1", "license": "MIT" }, + "node_modules/is-regex": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", + "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-set": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", + "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz", + "integrity": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-string": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz", + "integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz", + "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "has-symbols": "^1.1.0", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz", + "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "which-typed-array": "^1.1.16" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-unicode-supported": { "version": "0.1.0", "license": "MIT", @@ -3212,6 +6042,59 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/is-weakmap": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", + "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.1.tgz", + "integrity": "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakset": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz", + "integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true, + "license": "MIT" + }, "node_modules/isexe": { "version": "2.0.0", "dev": true, @@ -3228,6 +6111,24 @@ "node": "^20.19.0 || ^22.13.0 || >=24.0.0" } }, + "node_modules/iterator.prototype": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.5.tgz", + "integrity": "sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.6", + "get-proto": "^1.0.0", + "has-symbols": "^1.1.0", + "set-function-name": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/jalaali-js": { "version": "1.2.8", "license": "MIT" @@ -3266,6 +6167,29 @@ "version": "4.0.0", "license": "MIT" }, + "node_modules/js-yaml": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.3.0.tgz", + "integrity": "sha512-1td788aAnnZ5qs7V2QIRl1owjtYpbKt749Y3xauqQgwIIGF/xXWz1wMTEBx5O3LK3lXLVuqXPdPxj2BoFHaW9Q==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/puzrin" + }, + { + "type": "github", + "url": "https://github.com/sponsors/nodeca" + } + ], + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, "node_modules/jsdom": { "version": "29.1.1", "license": "MIT", @@ -3314,10 +6238,31 @@ "node": ">=6" } }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true, + "license": "MIT" + }, "node_modules/json-parse-even-better-errors": { "version": "2.3.1", "license": "MIT" }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true, + "license": "MIT" + }, "node_modules/json-stringify-pretty-compact": { "version": "4.0.0", "license": "MIT" @@ -3348,10 +6293,70 @@ "html2canvas": "^1.0.0-rc.5" } }, + "node_modules/jsx-ast-utils": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" + }, + "engines": { + "node": ">=4.0" + } + }, "node_modules/kdbush": { "version": "4.0.2", "license": "ISC" }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/language-subtag-registry": { + "version": "0.3.23", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.23.tgz", + "integrity": "sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==", + "dev": true, + "license": "CC0-1.0" + }, + "node_modules/language-tags": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz", + "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==", + "dev": true, + "license": "MIT", + "dependencies": { + "language-subtag-registry": "^0.3.20" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, "node_modules/lines-and-columns": { "version": "1.2.4", "license": "MIT" @@ -3374,6 +6379,13 @@ "version": "4.0.8", "license": "MIT" }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true, + "license": "MIT" + }, "node_modules/lodash.throttle": { "version": "4.1.1", "license": "MIT" @@ -3392,20 +6404,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/log-symbols/node_modules/chalk": { - "version": "4.1.2", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, "node_modules/loose-envify": { "version": "1.4.0", "license": "MIT", @@ -3540,6 +6538,19 @@ "node": ">=4" } }, + "node_modules/minimatch": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz", + "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, "node_modules/minimist": { "version": "1.2.8", "license": "MIT", @@ -3610,12 +6621,38 @@ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" } }, + "node_modules/napi-postinstall": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/napi-postinstall/-/napi-postinstall-0.3.4.tgz", + "integrity": "sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==", + "dev": true, + "license": "MIT", + "bin": { + "napi-postinstall": "lib/cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/napi-postinstall" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true, + "license": "MIT" + }, "node_modules/next": { - "version": "15.5.9", + "version": "16.2.10", + "resolved": "https://registry.npmjs.org/next/-/next-16.2.10.tgz", + "integrity": "sha512-2som5AVXb3kE6Yjine3/mNbBayYF58eguBWIVVUdr1y/L426xyVEgYxgBG+1QC34P2x5E+tcDup6XkuOAX3dCA==", "license": "MIT", "dependencies": { - "@next/env": "15.5.9", + "@next/env": "16.2.10", "@swc/helpers": "0.5.15", + "baseline-browser-mapping": "^2.9.19", "caniuse-lite": "^1.0.30001579", "postcss": "8.4.31", "styled-jsx": "5.1.6" @@ -3624,18 +6661,18 @@ "next": "dist/bin/next" }, "engines": { - "node": "^18.18.0 || ^19.8.0 || >= 20.0.0" + "node": ">=20.9.0" }, "optionalDependencies": { - "@next/swc-darwin-arm64": "15.5.7", - "@next/swc-darwin-x64": "15.5.7", - "@next/swc-linux-arm64-gnu": "15.5.7", - "@next/swc-linux-arm64-musl": "15.5.7", - "@next/swc-linux-x64-gnu": "15.5.7", - "@next/swc-linux-x64-musl": "15.5.7", - "@next/swc-win32-arm64-msvc": "15.5.7", - "@next/swc-win32-x64-msvc": "15.5.7", - "sharp": "^0.34.3" + "@next/swc-darwin-arm64": "16.2.10", + "@next/swc-darwin-x64": "16.2.10", + "@next/swc-linux-arm64-gnu": "16.2.10", + "@next/swc-linux-arm64-musl": "16.2.10", + "@next/swc-linux-x64-gnu": "16.2.10", + "@next/swc-linux-x64-musl": "16.2.10", + "@next/swc-win32-arm64-msvc": "16.2.10", + "@next/swc-win32-x64-msvc": "16.2.10", + "sharp": "^0.34.5" }, "peerDependencies": { "@opentelemetry/api": "^1.1.0", @@ -3694,6 +6731,35 @@ "node": "^10 || ^12 || >=14" } }, + "node_modules/node-exports-info": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/node-exports-info/-/node-exports-info-1.6.2.tgz", + "integrity": "sha512-kXs9Go0cah0qHVV2v389IXQLdLCeE1xfFtjOAF+iobu0OIoG1pje8At2vMHyaPMiPMnG/LWP50twML21eMcAag==", + "dev": true, + "license": "MIT", + "dependencies": { + "array.prototype.flatmap": "^1.3.3", + "es-errors": "^1.3.0", + "object.entries": "^1.1.9", + "semver": "^6.3.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/node-exports-info/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, "node_modules/node-releases": { "version": "2.0.50", "dev": true, @@ -5697,6 +8763,119 @@ "node": ">= 6" } }, + "node_modules/object-inspect": { + "version": "1.13.4", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", + "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.7", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz", + "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0", + "has-symbols": "^1.1.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.entries": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.9.tgz", + "integrity": "sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", + "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.groupby": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz", + "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.values": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.1.tgz", + "integrity": "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/onetime": { "version": "5.1.2", "license": "MIT", @@ -5710,6 +8889,24 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, "node_modules/ora": { "version": "5.4.1", "license": "MIT", @@ -5731,18 +8928,22 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/ora/node_modules/chalk": { - "version": "4.1.2", + "node_modules/own-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz", + "integrity": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==", + "dev": true, "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "get-intrinsic": "^1.2.6", + "object-keys": "^1.1.1", + "safe-push-apply": "^1.0.0" }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/p-limit": { @@ -5904,6 +9105,16 @@ "node": ">=10.13.0" } }, + "node_modules/possible-typed-array-names": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz", + "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, "node_modules/postcss": { "version": "8.5.6", "funding": [ @@ -6060,6 +9271,16 @@ "version": "2.1.0", "license": "ISC" }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, "node_modules/prettier": { "version": "3.7.4", "dev": true, @@ -6194,24 +9415,24 @@ } }, "node_modules/react": { - "version": "18.3.1", + "version": "19.2.7", + "resolved": "https://registry.npmjs.org/react/-/react-19.2.7.tgz", + "integrity": "sha512-HNe9WslTbXmFK8o8cmwgAeJFSBvt1bPdHCVKtaaV+WlAN36mpT4hcRpwbf3fY56ar2oIXzsBpOAiIRHAdY0OlQ==", "license": "MIT", - "dependencies": { - "loose-envify": "^1.1.0" - }, "engines": { "node": ">=0.10.0" } }, "node_modules/react-dom": { - "version": "18.3.1", + "version": "19.2.7", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.7.tgz", + "integrity": "sha512-t0BRVXvbiE/o20Hfw669rLbMCDWtYZLvmJigy2f0MxsXF+71pxhR3xOkspmsO8h3ZlNzyibAmtCa3l4lYKk6gQ==", "license": "MIT", "dependencies": { - "loose-envify": "^1.1.0", - "scheduler": "^0.23.2" + "scheduler": "^0.27.0" }, "peerDependencies": { - "react": "^18.3.1" + "react": "^19.2.7" } }, "node_modules/react-easy-crop": { @@ -6326,11 +9547,55 @@ "node": ">=8" } }, + "node_modules/reflect.getprototypeof": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz", + "integrity": "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.9", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.7", + "get-proto": "^1.0.1", + "which-builtin-type": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/regenerator-runtime": { "version": "0.13.11", "license": "MIT", "optional": true }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz", + "integrity": "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "set-function-name": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/require-directory": { "version": "2.1.1", "license": "MIT", @@ -6374,6 +9639,16 @@ "node": ">=4" } }, + "node_modules/resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" + } + }, "node_modules/resolve-protobuf-schema": { "version": "2.1.0", "license": "MIT", @@ -6494,6 +9769,26 @@ "tslib": "^2.1.0" } }, + "node_modules/safe-array-concat": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.4.tgz", + "integrity": "sha512-wtZlHyOje6OZTGqAoaDKxFkgRtkF9CnHAVnCHKfuj200wAgL+bSJhdsCD2l0Qx/2ekEXjPWcyKkfGb5CPboslg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.9", + "call-bound": "^1.0.4", + "get-intrinsic": "^1.3.0", + "has-symbols": "^1.1.0", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/safe-buffer": { "version": "5.2.1", "funding": [ @@ -6512,6 +9807,41 @@ ], "license": "MIT" }, + "node_modules/safe-push-apply": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-push-apply/-/safe-push-apply-1.0.0.tgz", + "integrity": "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-regex-test": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz", + "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-regex": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/safer-buffer": { "version": "2.1.2", "license": "MIT" @@ -6527,11 +9857,10 @@ } }, "node_modules/scheduler": { - "version": "0.23.2", - "license": "MIT", - "dependencies": { - "loose-envify": "^1.1.0" - } + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz", + "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==", + "license": "MIT" }, "node_modules/semver": { "version": "7.7.3", @@ -6547,6 +9876,55 @@ "version": "2.0.0", "license": "ISC" }, + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-proto": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/set-proto/-/set-proto-1.0.0.tgz", + "integrity": "sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==", + "dev": true, + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/shallowequal": { "version": "1.1.0", "license": "MIT" @@ -6612,6 +9990,82 @@ "node": ">=8" } }, + "node_modules/side-channel": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.1.tgz", + "integrity": "sha512-6x6dK6zJdpTzF4sQeNYxwtvBzf6Eg4GtlesS94HOvTudUeyK2WXAaIfmDgsyslYrRBeFIlsi54AYsFGUuhmvrQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.4", + "side-channel-list": "^1.0.1", + "side-channel-map": "^1.0.1", + "side-channel-weakmap": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-list": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.1.tgz", + "integrity": "sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", + "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-weakmap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", + "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3", + "side-channel-map": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/siginfo": { "version": "2.0.0", "dev": true, @@ -6635,6 +10089,13 @@ "node": ">=0.10.0" } }, + "node_modules/stable-hash": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/stable-hash/-/stable-hash-0.0.5.tgz", + "integrity": "sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA==", + "dev": true, + "license": "MIT" + }, "node_modules/stackback": { "version": "0.0.2", "dev": true, @@ -6653,6 +10114,20 @@ "dev": true, "license": "MIT" }, + "node_modules/stop-iteration-iterator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz", + "integrity": "sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "internal-slot": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/string_decoder": { "version": "1.3.0", "license": "MIT", @@ -6676,6 +10151,120 @@ "version": "8.0.0", "license": "MIT" }, + "node_modules/string.prototype.includes": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/string.prototype.includes/-/string.prototype.includes-2.0.1.tgz", + "integrity": "sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.12", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.12.tgz", + "integrity": "sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.6", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.6", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "internal-slot": "^1.1.0", + "regexp.prototype.flags": "^1.5.3", + "set-function-name": "^2.0.2", + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.repeat": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz", + "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.5" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.11", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.11.tgz", + "integrity": "sha512-PwvK7BU+CMTJGYQCTZb5RWXIML92lftJLhQz1tBzgKiqGxJaMlBAa48POXaNAC2s4y8jr3EFqrkF9+44neS46w==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.9", + "call-bound": "^1.0.4", + "define-data-property": "^1.1.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.24.2", + "es-object-atoms": "^1.1.2", + "has-property-descriptors": "^1.0.2", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.10.tgz", + "integrity": "sha512-2+3aDAOmPTmuFwjDnmJG2ctEkQKVki7vOSqaxkv42Mowj1V6PnvuwFCRrR5lChUux1TBskPjfkeTOhqczDMxTw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.9", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", + "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/strip-ansi": { "version": "6.0.1", "license": "MIT", @@ -6686,6 +10275,16 @@ "node": ">=8" } }, + "node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, "node_modules/strip-indent": { "version": "3.0.0", "dev": true, @@ -6697,6 +10296,19 @@ "node": ">=8" } }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/styled-components": { "version": "6.1.19", "license": "MIT", @@ -7077,14 +10689,66 @@ "node": ">=20" } }, + "node_modules/ts-api-utils": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.5.0.tgz", + "integrity": "sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.12" + }, + "peerDependencies": { + "typescript": ">=4.8.4" + } + }, "node_modules/ts-interface-checker": { "version": "0.1.13", "license": "Apache-2.0" }, + "node_modules/tsconfig-paths": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", + "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, "node_modules/tslib": { "version": "2.8.1", "license": "0BSD" }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, "node_modules/type-fest": { "version": "0.21.3", "license": "(MIT OR CC0-1.0)", @@ -7095,6 +10759,141 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/typed-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz", + "integrity": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz", + "integrity": "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "for-each": "^0.3.3", + "gopd": "^1.2.0", + "has-proto": "^1.2.0", + "is-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz", + "integrity": "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "for-each": "^0.3.3", + "gopd": "^1.2.0", + "has-proto": "^1.2.0", + "is-typed-array": "^1.1.15", + "reflect.getprototypeof": "^1.0.9" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.8.tgz", + "integrity": "sha512-phPGCwqr2+Qo0fwniCE8e4pKnGu/yFb5nD5Y8bf0EEeiI5GklnACYA9GFy/DrAeRrKHXvHn+1SUsOWgJp6RO+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.9", + "for-each": "^0.3.5", + "gopd": "^1.2.0", + "is-typed-array": "^1.1.15", + "possible-typed-array-names": "^1.1.0", + "reflect.getprototypeof": "^1.0.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typescript": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.3.tgz", + "integrity": "sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/typescript-eslint": { + "version": "8.62.1", + "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.62.1.tgz", + "integrity": "sha512-vymnnM5g0AKQDSAyfP12nMIBvgwgA42syg74kkuZ4x1VuTzwQKwc5h9rGxeShCjny5o+zWAb6OEoz7XLgrIkIw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/eslint-plugin": "8.62.1", + "@typescript-eslint/parser": "8.62.1", + "@typescript-eslint/typescript-estree": "8.62.1", + "@typescript-eslint/utils": "8.62.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.1.0" + } + }, + "node_modules/unbox-primitive": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz", + "integrity": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-bigints": "^1.0.2", + "has-symbols": "^1.1.0", + "which-boxed-primitive": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/undici": { "version": "7.28.0", "license": "MIT", @@ -7106,6 +10905,44 @@ "version": "0.0.0", "license": "MIT" }, + "node_modules/unrs-resolver": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/unrs-resolver/-/unrs-resolver-1.12.2.tgz", + "integrity": "sha512-dmlRxBJJayXjqTwC+JtF1HhJmgf3ftQ3YejFcZrf4+KKtJv0qDsK1pjqaaVjG7wJ5NJ6UVP1OqRMQ71Z4C3rxQ==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "napi-postinstall": "^0.3.4" + }, + "funding": { + "url": "https://opencollective.com/unrs-resolver" + }, + "optionalDependencies": { + "@unrs/resolver-binding-android-arm-eabi": "1.12.2", + "@unrs/resolver-binding-android-arm64": "1.12.2", + "@unrs/resolver-binding-darwin-arm64": "1.12.2", + "@unrs/resolver-binding-darwin-x64": "1.12.2", + "@unrs/resolver-binding-freebsd-x64": "1.12.2", + "@unrs/resolver-binding-linux-arm-gnueabihf": "1.12.2", + "@unrs/resolver-binding-linux-arm-musleabihf": "1.12.2", + "@unrs/resolver-binding-linux-arm64-gnu": "1.12.2", + "@unrs/resolver-binding-linux-arm64-musl": "1.12.2", + "@unrs/resolver-binding-linux-loong64-gnu": "1.12.2", + "@unrs/resolver-binding-linux-loong64-musl": "1.12.2", + "@unrs/resolver-binding-linux-ppc64-gnu": "1.12.2", + "@unrs/resolver-binding-linux-riscv64-gnu": "1.12.2", + "@unrs/resolver-binding-linux-riscv64-musl": "1.12.2", + "@unrs/resolver-binding-linux-s390x-gnu": "1.12.2", + "@unrs/resolver-binding-linux-x64-gnu": "1.12.2", + "@unrs/resolver-binding-linux-x64-musl": "1.12.2", + "@unrs/resolver-binding-openharmony-arm64": "1.12.2", + "@unrs/resolver-binding-wasm32-wasi": "1.12.2", + "@unrs/resolver-binding-win32-arm64-msvc": "1.12.2", + "@unrs/resolver-binding-win32-ia32-msvc": "1.12.2", + "@unrs/resolver-binding-win32-x64-msvc": "1.12.2" + } + }, "node_modules/update-browserslist-db": { "version": "1.2.3", "dev": true, @@ -7135,6 +10972,16 @@ "browserslist": ">= 4.21.0" } }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, "node_modules/util-deprecate": { "version": "1.0.2", "license": "MIT" @@ -7357,10 +11204,99 @@ "node": ">= 8" } }, + "node_modules/which-boxed-primitive": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz", + "integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-bigint": "^1.1.0", + "is-boolean-object": "^1.2.1", + "is-number-object": "^1.1.1", + "is-string": "^1.1.1", + "is-symbol": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-builtin-type": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz", + "integrity": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "function.prototype.name": "^1.1.6", + "has-tostringtag": "^1.0.2", + "is-async-function": "^2.0.0", + "is-date-object": "^1.1.0", + "is-finalizationregistry": "^1.1.0", + "is-generator-function": "^1.0.10", + "is-regex": "^1.2.1", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.1.0", + "which-collection": "^1.0.2", + "which-typed-array": "^1.1.16" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-collection": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", + "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-map": "^2.0.3", + "is-set": "^2.0.3", + "is-weakmap": "^2.0.2", + "is-weakset": "^2.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/which-module": { "version": "2.0.1", "license": "ISC" }, + "node_modules/which-typed-array": { + "version": "1.1.22", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.22.tgz", + "integrity": "sha512-fvO4ExWMFsqyhG3AiPAObMuY1lxaqgYcxbc49CNdWDDECOJNgQyvsOWVwbZc+qf3rzRtxojBK+CMEv0Ld5CYpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.9", + "call-bound": "^1.0.4", + "for-each": "^0.3.5", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/why-is-node-running": { "version": "2.3.0", "dev": true, @@ -7376,6 +11312,16 @@ "node": ">=8" } }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/wrap-ansi": { "version": "6.2.0", "license": "MIT", @@ -7452,6 +11398,42 @@ "engines": { "node": ">=6" } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zod": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/zod/-/zod-4.4.3.tgz", + "integrity": "sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + }, + "node_modules/zod-validation-error": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/zod-validation-error/-/zod-validation-error-4.0.2.tgz", + "integrity": "sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "zod": "^3.25.0 || ^4.0.0" + } } } } diff --git a/package.json b/package.json index 915b04f..c37e252 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "dev": "cross-env HOST=yazd-nobat.localhost PORT=3000 NODE_TLS_REJECT_UNAUTHORIZED=0 next dev", "build": "next build", "start": "next start", - "lint": "next lint", + "lint": "eslint .", "test": "vitest run", "test:watch": "vitest", "test:cov": "vitest run --coverage" @@ -26,7 +26,7 @@ "@mui/styled-engine": "^5.18.0", "@mui/x-charts": "^7.29.1", "@mui/x-date-pickers": "^7.29.4", - "@next/third-parties": "^15.5.7", + "@next/third-parties": "^16.2.10", "aos": "^2.3.4", "axios": "^1.13.2", "date-fns": "^4.1.0", @@ -40,14 +40,14 @@ "js-cookie": "^3.0.5", "jspdf": "^3.0.4", "moment-jalaali": "^0.10.4", - "next": "^15.5.7", + "next": "^16.2.10", "next-themes": "^0.4.6", "npm": "^11.7.0", "postcss": "^8.5.6", "qrcode": "^1.5.4", "qrcode.react": "^4.2.0", - "react": "^18.3.1", - "react-dom": "^18.3.1", + "react": "^19.2.7", + "react-dom": "^19.2.7", "react-easy-crop": "^5.5.6", "react-google-map-picker": "^1.2.3", "react-images-uploading": "^3.1.7", @@ -61,18 +61,19 @@ "uninstall": "^0.0.0" }, "devDependencies": { + "@eslint/eslintrc": "^3.3.5", "@testing-library/dom": "^10.4.1", "@testing-library/jest-dom": "^6.9.1", "@testing-library/react": "^16.3.2", "@testing-library/user-event": "^14.6.1", "@vitejs/plugin-react": "^4.7.0", + "babel-plugin-react-compiler": "^1.0.0", "cross-env": "^10.1.0", + "eslint": "^9.39.4", + "eslint-config-next": "^16.2.10", "jsdom": "^29.1.1", "prettier": "^3.7.4", + "typescript": "^6.0.3", "vitest": "^2.1.9" - }, - "overrides": { - "react": "^18.3.1", - "react-dom": "^18.3.1" } } diff --git a/middleware.js b/proxy.js similarity index 95% rename from middleware.js rename to proxy.js index d8a439f..f00464c 100644 --- a/middleware.js +++ b/proxy.js @@ -1,6 +1,6 @@ import { NextResponse } from 'next/server'; -export function middleware(request) { +export function proxy(request) { const response = NextResponse.next(); // Add pathname to headers so we can access it in getCanonicalUrl