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/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